From d312edf0240554141dcc9bc909a6bdc84f3f6500 Mon Sep 17 00:00:00 2001 From: jespergravgaard Date: Tue, 24 Sep 2019 07:58:48 +0200 Subject: [PATCH] Added keyword for declaring memory-variables and properties on variable type. #328 --- .../kickc/model/symbols/SymbolVariable.java | 55 + .../kickc/model/symbols/VariableVersion.java | 6 +- .../dk/camelot64/kickc/parser/KickCLexer.g4 | 1 + .../dk/camelot64/kickc/parser/KickCLexer.java | 1029 +++++------ .../camelot64/kickc/parser/KickCLexer.tokens | 226 +-- .../dk/camelot64/kickc/parser/KickCParser.g4 | 1 + .../camelot64/kickc/parser/KickCParser.java | 1544 +++++++++-------- .../camelot64/kickc/parser/KickCParser.tokens | 226 +-- .../kickc/parser/KickCParserBaseListener.java | 12 + .../kickc/parser/KickCParserBaseVisitor.java | 7 + .../kickc/parser/KickCParserListener.java | 12 + .../kickc/parser/KickCParserVisitor.java | 7 + .../Pass0GenerateStatementSequence.java | 47 + .../kickc/passes/Pass1ProcedureInline.java | 4 + .../passes/Pass2ConstantIdentification.java | 4 + .../passes/Pass2IdenticalPhiElimination.java | 2 +- .../kickc/passes/Pass3LoopDepthAnalysis.java | 8 +- ...ass4RegisterUpliftPotentialInitialize.java | 2 +- .../kickc/passes/Pass4RegistersFinalize.java | 5 +- .../kickc/passes/utils/Unroller.java | 4 + 20 files changed, 1708 insertions(+), 1494 deletions(-) diff --git a/src/main/java/dk/camelot64/kickc/model/symbols/SymbolVariable.java b/src/main/java/dk/camelot64/kickc/model/symbols/SymbolVariable.java index fcfc4b575..4f1438517 100644 --- a/src/main/java/dk/camelot64/kickc/model/symbols/SymbolVariable.java +++ b/src/main/java/dk/camelot64/kickc/model/symbols/SymbolVariable.java @@ -44,6 +44,27 @@ public abstract class SymbolVariable implements Symbol { /** Specifies that the variable must always be added to the output ASM even if it is never used anywhere. */ private boolean declaredExport; + /** Specifies that the variable must live in a register if possible (CPU register or ZP-address). */ + private boolean declaredAsRegister; + + /** Specifies that the variable must live in memory. */ + private boolean declaredAsMemory; + + /** Specifies a specific address where the variable must reside in memory. */ + private Long declaredMemoryAddress; + + /** Strategy being used for storing and accessing the variable. The value depends on the directives memory/register/volatile/const - and on the compilers optimization decisions. + * + **/ + public enum StorageStrategy { REGISTER, MEMORY, CONSTANT } + + /** The storage strategy for the variable. */ + private StorageStrategy storageStrategy; + /** Comments preceding the procedure in the source code. */ private List comments; @@ -53,6 +74,7 @@ public abstract class SymbolVariable implements Symbol { /** The data segment to put the variable into (if it is allocated in memory). */ private String dataSegment; + public SymbolVariable(String name, Scope scope, SymbolType type, String dataSegment) { this.name = name; this.scope = scope; @@ -60,6 +82,7 @@ public abstract class SymbolVariable implements Symbol { this.inferredType = false; this.comments = new ArrayList<>(); this.dataSegment = dataSegment; + this.storageStrategy = StorageStrategy.REGISTER; setFullName(); } @@ -190,6 +213,38 @@ public abstract class SymbolVariable implements Symbol { this.declaredExport = declaredExport; } + public boolean isDeclaredAsRegister() { + return declaredAsRegister; + } + + public void setDeclaredAsRegister(boolean declaredAsRegister) { + this.declaredAsRegister = declaredAsRegister; + } + + public boolean isDeclaredAsMemory() { + return declaredAsMemory; + } + + public void setDeclaredAsMemory(boolean declaredAsMemory) { + this.declaredAsMemory = declaredAsMemory; + } + + public Long getDeclaredMemoryAddress() { + return declaredMemoryAddress; + } + + public void setDeclaredMemoryAddress(Long declaredMemoryAddress) { + this.declaredMemoryAddress = declaredMemoryAddress; + } + + public StorageStrategy getStorageStrategy() { + return storageStrategy; + } + + public void setStorageStrategy(StorageStrategy storageStrategy) { + this.storageStrategy = storageStrategy; + } + public List getComments() { return comments; } diff --git a/src/main/java/dk/camelot64/kickc/model/symbols/VariableVersion.java b/src/main/java/dk/camelot64/kickc/model/symbols/VariableVersion.java index a7d038d96..098b49141 100644 --- a/src/main/java/dk/camelot64/kickc/model/symbols/VariableVersion.java +++ b/src/main/java/dk/camelot64/kickc/model/symbols/VariableVersion.java @@ -2,7 +2,7 @@ package dk.camelot64.kickc.model.symbols; import dk.camelot64.kickc.model.types.SymbolType; -/** A Symbol (variable, jump label, etc.) */ +/** A Versioned variable. Versions are created for REGISTER-variables that are handled through PHI-nodes. */ public class VariableVersion extends Variable { private String versionOfName; @@ -10,7 +10,11 @@ public class VariableVersion extends Variable { public VariableVersion(VariableUnversioned versionOf, int version) { super(versionOf.getLocalName() + "#" + version, versionOf.getScope(), versionOf.getType(), versionOf.getDataSegment()); this.setDeclaredAlignment(versionOf.getDeclaredAlignment()); + this.setDeclaredAsRegister(versionOf.isDeclaredAsRegister()); + this.setDeclaredAsMemory(versionOf.isDeclaredAsMemory()); this.setDeclaredRegister(versionOf.getDeclaredRegister()); + this.setDeclaredMemoryAddress(versionOf.getDeclaredMemoryAddress()); + this.setStorageStrategy(versionOf.getStorageStrategy()); this.setDeclaredVolatile(versionOf.isDeclaredVolatile()); this.setDeclaredExport(versionOf.isDeclaredExport()); this.setInferedVolatile(versionOf.isInferedVolatile()); diff --git a/src/main/java/dk/camelot64/kickc/parser/KickCLexer.g4 b/src/main/java/dk/camelot64/kickc/parser/KickCLexer.g4 index e5e568e60..7bb7ab416 100644 --- a/src/main/java/dk/camelot64/kickc/parser/KickCLexer.g4 +++ b/src/main/java/dk/camelot64/kickc/parser/KickCLexer.g4 @@ -78,6 +78,7 @@ EXTERN: 'extern' ; EXPORT: 'export' ; ALIGN: 'align' ; REGISTER: 'register' ; +MEMORY: 'memory' ; INLINE: 'inline' ; VOLATILE: 'volatile' ; INTERRUPT: 'interrupt' ; diff --git a/src/main/java/dk/camelot64/kickc/parser/KickCLexer.java b/src/main/java/dk/camelot64/kickc/parser/KickCLexer.java index 66c1235ce..384551034 100644 --- a/src/main/java/dk/camelot64/kickc/parser/KickCLexer.java +++ b/src/main/java/dk/camelot64/kickc/parser/KickCLexer.java @@ -27,23 +27,23 @@ public class KickCLexer extends Lexer { GREATER_THAN_EQUAL=32, GREATER_THAN=33, LOGIC_AND=34, LOGIC_OR=35, ASSIGN=36, ASSIGN_COMPOUND=37, IMPORT=38, TYPEDEF=39, PRAGMA=40, RESERVE=41, PC=42, TARGET=43, LINK=44, CPU=45, CODESEG=46, DATASEG=47, ENCODING=48, CONST=49, - EXTERN=50, EXPORT=51, ALIGN=52, REGISTER=53, INLINE=54, VOLATILE=55, INTERRUPT=56, - CALLING=57, CALLINGCONVENTION=58, IF=59, ELSE=60, WHILE=61, DO=62, FOR=63, - SWITCH=64, RETURN=65, BREAK=66, CONTINUE=67, ASM=68, DEFAULT=69, CASE=70, - STRUCT=71, ENUM=72, SIZEOF=73, TYPEID=74, KICKASM=75, RESOURCE=76, USES=77, - CLOBBERS=78, BYTES=79, CYCLES=80, LOGIC_NOT=81, SIGNEDNESS=82, SIMPLETYPE=83, - BOOLEAN=84, KICKASM_BODY=85, STRING=86, CHAR=87, NUMBER=88, NUMFLOAT=89, - BINFLOAT=90, DECFLOAT=91, HEXFLOAT=92, NUMINT=93, BININTEGER=94, DECINTEGER=95, - HEXINTEGER=96, NAME=97, WS=98, COMMENT_LINE=99, COMMENT_BLOCK=100, ASM_BYTE=101, - ASM_MNEMONIC=102, ASM_IMM=103, ASM_COLON=104, ASM_COMMA=105, ASM_PAR_BEGIN=106, - ASM_PAR_END=107, ASM_BRACKET_BEGIN=108, ASM_BRACKET_END=109, ASM_DOT=110, - ASM_SHIFT_LEFT=111, ASM_SHIFT_RIGHT=112, ASM_PLUS=113, ASM_MINUS=114, - ASM_LESS_THAN=115, ASM_GREATER_THAN=116, ASM_MULTIPLY=117, ASM_DIVIDE=118, - ASM_CURLY_BEGIN=119, ASM_CURLY_END=120, ASM_NUMBER=121, ASM_NUMFLOAT=122, - ASM_BINFLOAT=123, ASM_DECFLOAT=124, ASM_HEXFLOAT=125, ASM_NUMINT=126, - ASM_BININTEGER=127, ASM_DECINTEGER=128, ASM_HEXINTEGER=129, ASM_CHAR=130, - ASM_MULTI_REL=131, ASM_MULTI_NAME=132, ASM_NAME=133, ASM_WS=134, ASM_COMMENT_LINE=135, - ASM_COMMENT_BLOCK=136; + EXTERN=50, EXPORT=51, ALIGN=52, REGISTER=53, MEMORY=54, INLINE=55, VOLATILE=56, + INTERRUPT=57, CALLING=58, CALLINGCONVENTION=59, IF=60, ELSE=61, WHILE=62, + DO=63, FOR=64, SWITCH=65, RETURN=66, BREAK=67, CONTINUE=68, ASM=69, DEFAULT=70, + CASE=71, STRUCT=72, ENUM=73, SIZEOF=74, TYPEID=75, KICKASM=76, RESOURCE=77, + USES=78, CLOBBERS=79, BYTES=80, CYCLES=81, LOGIC_NOT=82, SIGNEDNESS=83, + SIMPLETYPE=84, BOOLEAN=85, KICKASM_BODY=86, STRING=87, CHAR=88, NUMBER=89, + NUMFLOAT=90, BINFLOAT=91, DECFLOAT=92, HEXFLOAT=93, NUMINT=94, BININTEGER=95, + DECINTEGER=96, HEXINTEGER=97, NAME=98, WS=99, COMMENT_LINE=100, COMMENT_BLOCK=101, + ASM_BYTE=102, ASM_MNEMONIC=103, ASM_IMM=104, ASM_COLON=105, ASM_COMMA=106, + ASM_PAR_BEGIN=107, ASM_PAR_END=108, ASM_BRACKET_BEGIN=109, ASM_BRACKET_END=110, + ASM_DOT=111, ASM_SHIFT_LEFT=112, ASM_SHIFT_RIGHT=113, ASM_PLUS=114, ASM_MINUS=115, + ASM_LESS_THAN=116, ASM_GREATER_THAN=117, ASM_MULTIPLY=118, ASM_DIVIDE=119, + ASM_CURLY_BEGIN=120, ASM_CURLY_END=121, ASM_NUMBER=122, ASM_NUMFLOAT=123, + ASM_BINFLOAT=124, ASM_DECFLOAT=125, ASM_HEXFLOAT=126, ASM_NUMINT=127, + ASM_BININTEGER=128, ASM_DECINTEGER=129, ASM_HEXINTEGER=130, ASM_CHAR=131, + ASM_MULTI_REL=132, ASM_MULTI_NAME=133, ASM_NAME=134, ASM_WS=135, ASM_COMMENT_LINE=136, + ASM_COMMENT_BLOCK=137; public static final int ASM_MODE=1; public static String[] channelNames = { @@ -62,16 +62,16 @@ public class KickCLexer extends Lexer { "NOT_EQUAL", "LESS_THAN", "LESS_THAN_EQUAL", "GREATER_THAN_EQUAL", "GREATER_THAN", "LOGIC_AND", "LOGIC_OR", "ASSIGN", "ASSIGN_COMPOUND", "IMPORT", "TYPEDEF", "PRAGMA", "RESERVE", "PC", "TARGET", "LINK", "CPU", "CODESEG", "DATASEG", - "ENCODING", "CONST", "EXTERN", "EXPORT", "ALIGN", "REGISTER", "INLINE", - "VOLATILE", "INTERRUPT", "CALLING", "CALLINGCONVENTION", "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", "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", + "ENCODING", "CONST", "EXTERN", "EXPORT", "ALIGN", "REGISTER", "MEMORY", + "INLINE", "VOLATILE", "INTERRUPT", "CALLING", "CALLINGCONVENTION", "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", "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", @@ -88,12 +88,13 @@ public class KickCLexer extends Lexer { null, "'&&'", "'||'", "'='", null, "'import'", "'typedef'", "'#pragma'", "'reserve'", "'pc'", "'target'", "'link'", "'cpu'", "'code_seg'", "'data_seg'", "'encoding'", "'const'", "'extern'", "'export'", "'align'", "'register'", - "'inline'", "'volatile'", "'interrupt'", "'calling'", null, "'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, null, null, null, null, null, - null, null, null, null, null, null, null, null, "'.byte'", null, "'#'" + "'memory'", "'inline'", "'volatile'", "'interrupt'", "'calling'", null, + "'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, null, + null, null, null, null, null, null, null, null, null, null, null, null, + "'.byte'", null, "'#'" }; private static final String[] _SYMBOLIC_NAMES = { null, "TYPEDEFNAME", "CURLY_BEGIN", "CURLY_END", "BRACKET_BEGIN", "BRACKET_END", @@ -104,7 +105,7 @@ public class KickCLexer extends Lexer { "GREATER_THAN", "LOGIC_AND", "LOGIC_OR", "ASSIGN", "ASSIGN_COMPOUND", "IMPORT", "TYPEDEF", "PRAGMA", "RESERVE", "PC", "TARGET", "LINK", "CPU", "CODESEG", "DATASEG", "ENCODING", "CONST", "EXTERN", "EXPORT", "ALIGN", - "REGISTER", "INLINE", "VOLATILE", "INTERRUPT", "CALLING", "CALLINGCONVENTION", + "REGISTER", "MEMORY", "INLINE", "VOLATILE", "INTERRUPT", "CALLING", "CALLINGCONVENTION", "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", @@ -201,19 +202,19 @@ public class KickCLexer extends Lexer { case 36: IMPORT_action((RuleContext)_localctx, actionIndex); break; - case 66: + case 67: ASM_action((RuleContext)_localctx, actionIndex); break; - case 84: + case 85: STRING_action((RuleContext)_localctx, actionIndex); break; - case 98: + case 99: NAME_action((RuleContext)_localctx, actionIndex); break; - case 122: + case 123: ASM_CURLY_BEGIN_action((RuleContext)_localctx, actionIndex); break; - case 123: + case 124: ASM_CURLY_END_action((RuleContext)_localctx, actionIndex); break; } @@ -269,7 +270,7 @@ public class KickCLexer extends Lexer { } public static final String _serializedATN = - "\3\u608b\ua72a\u8133\ub9ed\u417c\u3be7\u7786\u5964\2\u008a\u0567\b\1\b"+ + "\3\u608b\ua72a\u8133\ub9ed\u417c\u3be7\u7786\u5964\2\u008b\u0570\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"+ @@ -287,91 +288,92 @@ public class KickCLexer extends Lexer { "\4\u0085\t\u0085\4\u0086\t\u0086\4\u0087\t\u0087\4\u0088\t\u0088\4\u0089"+ "\t\u0089\4\u008a\t\u008a\4\u008b\t\u008b\4\u008c\t\u008c\4\u008d\t\u008d"+ "\4\u008e\t\u008e\4\u008f\t\u008f\4\u0090\t\u0090\4\u0091\t\u0091\4\u0092"+ - "\t\u0092\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%\u0190\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\65\3\65\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\3\67\3\67\38\3"+ - "8\38\38\38\38\38\38\38\38\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:\5:\u023a\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"+ - "A\3A\3A\3A\3A\3A\3A\3B\3B\3B\3B\3B\3B\3C\3C\3C\3C\3C\3C\3C\3C\3C\3D\3"+ - "D\3D\3D\3D\3D\3E\3E\3E\3E\3E\3E\3E\3E\3F\3F\3F\3F\3F\3G\3G\3G\3G\3G\3"+ - "G\3G\3H\3H\3H\3H\3H\3I\3I\3I\3I\3I\3I\3I\3J\3J\3J\3J\3J\3J\3J\3K\3K\3"+ - "K\3K\3K\3K\3K\3K\3L\3L\3L\3L\3L\3L\3L\3L\3L\3M\3M\3M\3M\3M\3N\3N\3N\3"+ - "N\3N\3N\3N\3N\3N\3O\3O\3O\3O\3O\3O\3P\3P\3P\3P\3P\3P\3P\3Q\3Q\3R\3R\3"+ - "R\3R\3R\3R\3R\3R\3R\3R\3R\3R\3R\3R\5R\u02d7\nR\3S\3S\3S\3S\3S\3S\3S\3"+ - "S\3S\3S\3S\3S\3S\3S\3S\3S\3S\3S\3S\3S\3S\3S\3S\3S\3S\3S\3S\3S\3S\3S\3"+ - "S\3S\3S\3S\3S\3S\3S\5S\u02fe\nS\3T\3T\3T\3T\3T\3T\3T\3T\3T\5T\u0309\n"+ - "T\3U\3U\3U\3U\7U\u030f\nU\fU\16U\u0312\13U\3U\3U\3U\3V\3V\3V\3V\7V\u031b"+ - "\nV\fV\16V\u031e\13V\3V\3V\5V\u0322\nV\3V\3V\5V\u0326\nV\5V\u0328\nV\3"+ - "V\5V\u032b\nV\3V\3V\3W\3W\3W\3W\5W\u0333\nW\3W\3W\3X\3X\5X\u0339\nX\3"+ - "Y\3Y\3Y\5Y\u033e\nY\3Z\3Z\3Z\3Z\3Z\5Z\u0345\nZ\3Z\7Z\u0348\nZ\fZ\16Z\u034b"+ - "\13Z\3Z\3Z\6Z\u034f\nZ\rZ\16Z\u0350\3[\7[\u0354\n[\f[\16[\u0357\13[\3"+ - "[\3[\6[\u035b\n[\r[\16[\u035c\3\\\3\\\3\\\3\\\3\\\5\\\u0364\n\\\3\\\7"+ - "\\\u0367\n\\\f\\\16\\\u036a\13\\\3\\\3\\\6\\\u036e\n\\\r\\\16\\\u036f"+ - "\3]\3]\3]\5]\u0375\n]\3]\3]\3]\5]\u037a\n]\3^\3^\3^\6^\u037f\n^\r^\16"+ - "^\u0380\3^\3^\6^\u0385\n^\r^\16^\u0386\5^\u0389\n^\3_\6_\u038c\n_\r_\16"+ - "_\u038d\3`\3`\3`\3`\3`\5`\u0395\n`\3`\6`\u0398\n`\r`\16`\u0399\3a\3a\3"+ - "b\3b\3c\3c\3d\3d\7d\u03a4\nd\fd\16d\u03a7\13d\3d\3d\3e\3e\3f\3f\3g\6g"+ - "\u03b0\ng\rg\16g\u03b1\3g\3g\3h\3h\3h\3h\7h\u03ba\nh\fh\16h\u03bd\13h"+ - "\3h\3h\3i\3i\3i\3i\7i\u03c5\ni\fi\16i\u03c8\13i\3i\3i\3i\3i\3i\3j\3j\3"+ - "j\3j\3j\3j\3k\3k\3k\3k\3k\3k\3k\3k\3k\3k\3k\3k\3k\3k\3k\3k\3k\3k\3k\3"+ - "k\3k\3k\3k\3k\3k\3k\3k\3k\3k\3k\3k\3k\3k\3k\3k\3k\3k\3k\3k\3k\3k\3k\3"+ - "k\3k\3k\3k\3k\3k\3k\3k\3k\3k\3k\3k\3k\3k\3k\3k\3k\3k\3k\3k\3k\3k\3k\3"+ - "k\3k\3k\3k\3k\3k\3k\3k\3k\3k\3k\3k\3k\3k\3k\3k\3k\3k\3k\3k\3k\3k\3k\3"+ - "k\3k\3k\3k\3k\3k\3k\3k\3k\3k\3k\3k\3k\3k\3k\3k\3k\3k\3k\3k\3k\3k\3k\3"+ - "k\3k\3k\3k\3k\3k\3k\3k\3k\3k\3k\3k\3k\3k\3k\3k\3k\3k\3k\3k\3k\3k\3k\3"+ - "k\3k\3k\3k\3k\3k\3k\3k\3k\3k\3k\3k\3k\3k\3k\3k\3k\3k\3k\3k\3k\3k\3k\3"+ - "k\3k\3k\3k\3k\3k\3k\3k\3k\3k\3k\3k\3k\3k\3k\3k\3k\3k\3k\3k\3k\3k\3k\3"+ - "k\3k\3k\3k\3k\3k\3k\3k\3k\3k\3k\3k\3k\3k\3k\3k\3k\3k\3k\3k\3k\3k\3k\3"+ - "k\3k\3k\3k\3k\3k\3k\3k\3k\3k\3k\3k\3k\3k\3k\3k\3k\3k\3k\5k\u04b3\nk\3"+ - "l\3l\3m\3m\3n\3n\3o\3o\3p\3p\3q\3q\3r\3r\3s\3s\3t\3t\3t\3u\3u\3u\3v\3"+ - "v\3w\3w\3x\3x\3y\3y\3z\3z\3{\3{\3|\3|\3|\3}\3}\3}\3~\3~\5~\u04df\n~\3"+ - "\177\3\177\3\177\5\177\u04e4\n\177\3\u0080\3\u0080\7\u0080\u04e8\n\u0080"+ - "\f\u0080\16\u0080\u04eb\13\u0080\3\u0080\3\u0080\6\u0080\u04ef\n\u0080"+ - "\r\u0080\16\u0080\u04f0\3\u0081\7\u0081\u04f4\n\u0081\f\u0081\16\u0081"+ - "\u04f7\13\u0081\3\u0081\3\u0081\6\u0081\u04fb\n\u0081\r\u0081\16\u0081"+ - "\u04fc\3\u0082\3\u0082\7\u0082\u0501\n\u0082\f\u0082\16\u0082\u0504\13"+ - "\u0082\3\u0082\3\u0082\6\u0082\u0508\n\u0082\r\u0082\16\u0082\u0509\3"+ - "\u0083\3\u0083\3\u0083\5\u0083\u050f\n\u0083\3\u0084\3\u0084\6\u0084\u0513"+ - "\n\u0084\r\u0084\16\u0084\u0514\3\u0085\6\u0085\u0518\n\u0085\r\u0085"+ - "\16\u0085\u0519\3\u0086\3\u0086\6\u0086\u051e\n\u0086\r\u0086\16\u0086"+ - "\u051f\3\u0087\3\u0087\3\u0088\3\u0088\3\u0089\3\u0089\3\u008a\3\u008a"+ - "\3\u008a\3\u008a\5\u008a\u052c\n\u008a\3\u008a\3\u008a\3\u008b\3\u008b"+ - "\6\u008b\u0532\n\u008b\r\u008b\16\u008b\u0533\3\u008c\3\u008c\7\u008c"+ - "\u0538\n\u008c\f\u008c\16\u008c\u053b\13\u008c\3\u008d\3\u008d\7\u008d"+ - "\u053f\n\u008d\f\u008d\16\u008d\u0542\13\u008d\3\u008e\3\u008e\3\u008f"+ - "\3\u008f\3\u0090\6\u0090\u0549\n\u0090\r\u0090\16\u0090\u054a\3\u0090"+ - "\3\u0090\3\u0091\3\u0091\3\u0091\3\u0091\7\u0091\u0553\n\u0091\f\u0091"+ - "\16\u0091\u0556\13\u0091\3\u0091\3\u0091\3\u0092\3\u0092\3\u0092\3\u0092"+ - "\7\u0092\u055e\n\u0092\f\u0092\16\u0092\u0561\13\u0092\3\u0092\3\u0092"+ - "\3\u0092\3\u0092\3\u0092\5\u0310\u03c6\u055f\2\u0093\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\u0080"+ - "B\u0082C\u0084D\u0086E\u0088F\u008aG\u008cH\u008eI\u0090J\u0092K\u0094"+ - "L\u0096M\u0098N\u009aO\u009cP\u009eQ\u00a0R\u00a2S\u00a4T\u00a6U\u00a8"+ - "V\u00aaW\u00acX\u00aeY\u00b0Z\u00b2[\u00b4\\\u00b6]\u00b8^\u00ba_\u00bc"+ - "`\u00bea\u00c0b\u00c2\2\u00c4\2\u00c6\2\u00c8c\u00ca\2\u00cc\2\u00ced"+ - "\u00d0e\u00d2f\u00d4g\u00d6h\u00d8i\u00daj\u00dck\u00del\u00e0m\u00e2"+ - "n\u00e4o\u00e6p\u00e8q\u00ear\u00ecs\u00eet\u00f0u\u00f2v\u00f4w\u00f6"+ - "x\u00f8y\u00faz\u00fc{\u00fe|\u0100}\u0102~\u0104\177\u0106\u0080\u0108"+ - "\u0081\u010a\u0082\u010c\u0083\u010e\2\u0110\2\u0112\2\u0114\u0084\u0116"+ - "\u0085\u0118\u0086\u011a\u0087\u011c\2\u011e\2\u0120\u0088\u0122\u0089"+ - "\u0124\u008a\4\2\3\23\3\2$$\3\2||\4\2rruu\4\2ooww\7\2$$))hhpptt\3\2))"+ + "\t\u0092\4\u0093\t\u0093\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%\u0192\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\65\3\65"+ + "\3\66\3\66\3\66\3\66\3\66\3\66\3\66\3\67\3\67\3\67\3\67\3\67\3\67\3\67"+ + "\38\38\38\38\38\38\38\38\38\39\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;\5;\u0243\n;\3<\3<\3<\3=\3=\3=\3=\3=\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"+ + "\3D\3D\3D\3D\3D\3D\3D\3D\3D\3E\3E\3E\3E\3E\3E\3F\3F\3F\3F\3F\3F\3F\3F"+ + "\3G\3G\3G\3G\3G\3H\3H\3H\3H\3H\3H\3H\3I\3I\3I\3I\3I\3J\3J\3J\3J\3J\3J"+ + "\3J\3K\3K\3K\3K\3K\3K\3K\3L\3L\3L\3L\3L\3L\3L\3L\3M\3M\3M\3M\3M\3M\3M"+ + "\3M\3M\3N\3N\3N\3N\3N\3O\3O\3O\3O\3O\3O\3O\3O\3O\3P\3P\3P\3P\3P\3P\3Q"+ + "\3Q\3Q\3Q\3Q\3Q\3Q\3R\3R\3S\3S\3S\3S\3S\3S\3S\3S\3S\3S\3S\3S\3S\3S\5S"+ + "\u02e0\nS\3T\3T\3T\3T\3T\3T\3T\3T\3T\3T\3T\3T\3T\3T\3T\3T\3T\3T\3T\3T"+ + "\3T\3T\3T\3T\3T\3T\3T\3T\3T\3T\3T\3T\3T\3T\3T\3T\3T\5T\u0307\nT\3U\3U"+ + "\3U\3U\3U\3U\3U\3U\3U\5U\u0312\nU\3V\3V\3V\3V\7V\u0318\nV\fV\16V\u031b"+ + "\13V\3V\3V\3V\3W\3W\3W\3W\7W\u0324\nW\fW\16W\u0327\13W\3W\3W\5W\u032b"+ + "\nW\3W\3W\5W\u032f\nW\5W\u0331\nW\3W\5W\u0334\nW\3W\3W\3X\3X\3X\3X\5X"+ + "\u033c\nX\3X\3X\3Y\3Y\5Y\u0342\nY\3Z\3Z\3Z\5Z\u0347\nZ\3[\3[\3[\3[\3["+ + "\5[\u034e\n[\3[\7[\u0351\n[\f[\16[\u0354\13[\3[\3[\6[\u0358\n[\r[\16["+ + "\u0359\3\\\7\\\u035d\n\\\f\\\16\\\u0360\13\\\3\\\3\\\6\\\u0364\n\\\r\\"+ + "\16\\\u0365\3]\3]\3]\3]\3]\5]\u036d\n]\3]\7]\u0370\n]\f]\16]\u0373\13"+ + "]\3]\3]\6]\u0377\n]\r]\16]\u0378\3^\3^\3^\5^\u037e\n^\3^\3^\3^\5^\u0383"+ + "\n^\3_\3_\3_\6_\u0388\n_\r_\16_\u0389\3_\3_\6_\u038e\n_\r_\16_\u038f\5"+ + "_\u0392\n_\3`\6`\u0395\n`\r`\16`\u0396\3a\3a\3a\3a\3a\5a\u039e\na\3a\6"+ + "a\u03a1\na\ra\16a\u03a2\3b\3b\3c\3c\3d\3d\3e\3e\7e\u03ad\ne\fe\16e\u03b0"+ + "\13e\3e\3e\3f\3f\3g\3g\3h\6h\u03b9\nh\rh\16h\u03ba\3h\3h\3i\3i\3i\3i\7"+ + "i\u03c3\ni\fi\16i\u03c6\13i\3i\3i\3j\3j\3j\3j\7j\u03ce\nj\fj\16j\u03d1"+ + "\13j\3j\3j\3j\3j\3j\3k\3k\3k\3k\3k\3k\3l\3l\3l\3l\3l\3l\3l\3l\3l\3l\3"+ + "l\3l\3l\3l\3l\3l\3l\3l\3l\3l\3l\3l\3l\3l\3l\3l\3l\3l\3l\3l\3l\3l\3l\3"+ + "l\3l\3l\3l\3l\3l\3l\3l\3l\3l\3l\3l\3l\3l\3l\3l\3l\3l\3l\3l\3l\3l\3l\3"+ + "l\3l\3l\3l\3l\3l\3l\3l\3l\3l\3l\3l\3l\3l\3l\3l\3l\3l\3l\3l\3l\3l\3l\3"+ + "l\3l\3l\3l\3l\3l\3l\3l\3l\3l\3l\3l\3l\3l\3l\3l\3l\3l\3l\3l\3l\3l\3l\3"+ + "l\3l\3l\3l\3l\3l\3l\3l\3l\3l\3l\3l\3l\3l\3l\3l\3l\3l\3l\3l\3l\3l\3l\3"+ + "l\3l\3l\3l\3l\3l\3l\3l\3l\3l\3l\3l\3l\3l\3l\3l\3l\3l\3l\3l\3l\3l\3l\3"+ + "l\3l\3l\3l\3l\3l\3l\3l\3l\3l\3l\3l\3l\3l\3l\3l\3l\3l\3l\3l\3l\3l\3l\3"+ + "l\3l\3l\3l\3l\3l\3l\3l\3l\3l\3l\3l\3l\3l\3l\3l\3l\3l\3l\3l\3l\3l\3l\3"+ + "l\3l\3l\3l\3l\3l\3l\3l\3l\3l\3l\3l\3l\3l\3l\3l\3l\3l\3l\3l\3l\3l\3l\3"+ + "l\3l\3l\3l\3l\5l\u04bc\nl\3m\3m\3n\3n\3o\3o\3p\3p\3q\3q\3r\3r\3s\3s\3"+ + "t\3t\3u\3u\3u\3v\3v\3v\3w\3w\3x\3x\3y\3y\3z\3z\3{\3{\3|\3|\3}\3}\3}\3"+ + "~\3~\3~\3\177\3\177\5\177\u04e8\n\177\3\u0080\3\u0080\3\u0080\5\u0080"+ + "\u04ed\n\u0080\3\u0081\3\u0081\7\u0081\u04f1\n\u0081\f\u0081\16\u0081"+ + "\u04f4\13\u0081\3\u0081\3\u0081\6\u0081\u04f8\n\u0081\r\u0081\16\u0081"+ + "\u04f9\3\u0082\7\u0082\u04fd\n\u0082\f\u0082\16\u0082\u0500\13\u0082\3"+ + "\u0082\3\u0082\6\u0082\u0504\n\u0082\r\u0082\16\u0082\u0505\3\u0083\3"+ + "\u0083\7\u0083\u050a\n\u0083\f\u0083\16\u0083\u050d\13\u0083\3\u0083\3"+ + "\u0083\6\u0083\u0511\n\u0083\r\u0083\16\u0083\u0512\3\u0084\3\u0084\3"+ + "\u0084\5\u0084\u0518\n\u0084\3\u0085\3\u0085\6\u0085\u051c\n\u0085\r\u0085"+ + "\16\u0085\u051d\3\u0086\6\u0086\u0521\n\u0086\r\u0086\16\u0086\u0522\3"+ + "\u0087\3\u0087\6\u0087\u0527\n\u0087\r\u0087\16\u0087\u0528\3\u0088\3"+ + "\u0088\3\u0089\3\u0089\3\u008a\3\u008a\3\u008b\3\u008b\3\u008b\3\u008b"+ + "\5\u008b\u0535\n\u008b\3\u008b\3\u008b\3\u008c\3\u008c\6\u008c\u053b\n"+ + "\u008c\r\u008c\16\u008c\u053c\3\u008d\3\u008d\7\u008d\u0541\n\u008d\f"+ + "\u008d\16\u008d\u0544\13\u008d\3\u008e\3\u008e\7\u008e\u0548\n\u008e\f"+ + "\u008e\16\u008e\u054b\13\u008e\3\u008f\3\u008f\3\u0090\3\u0090\3\u0091"+ + "\6\u0091\u0552\n\u0091\r\u0091\16\u0091\u0553\3\u0091\3\u0091\3\u0092"+ + "\3\u0092\3\u0092\3\u0092\7\u0092\u055c\n\u0092\f\u0092\16\u0092\u055f"+ + "\13\u0092\3\u0092\3\u0092\3\u0093\3\u0093\3\u0093\3\u0093\7\u0093\u0567"+ + "\n\u0093\f\u0093\16\u0093\u056a\13\u0093\3\u0093\3\u0093\3\u0093\3\u0093"+ + "\3\u0093\5\u0319\u03cf\u0568\2\u0094\4\4\6\5\b\6\n\7\f\b\16\t\20\n\22"+ + "\13\24\f\26\r\30\16\32\17\34\20\36\21 \22\"\23$\24&\25(\26*\27,\30.\31"+ + "\60\32\62\33\64\34\66\358\36:\37< >!@\"B#D$F%H&J\'L(N)P*R+T,V-X.Z/\\\60"+ + "^\61`\62b\63d\64f\65h\66j\67l8n9p:r;tz?|@~A\u0080B\u0082C\u0084D"+ + "\u0086E\u0088F\u008aG\u008cH\u008eI\u0090J\u0092K\u0094L\u0096M\u0098"+ + "N\u009aO\u009cP\u009eQ\u00a0R\u00a2S\u00a4T\u00a6U\u00a8V\u00aaW\u00ac"+ + "X\u00aeY\u00b0Z\u00b2[\u00b4\\\u00b6]\u00b8^\u00ba_\u00bc`\u00bea\u00c0"+ + "b\u00c2c\u00c4\2\u00c6\2\u00c8\2\u00cad\u00cc\2\u00ce\2\u00d0e\u00d2f"+ + "\u00d4g\u00d6h\u00d8i\u00daj\u00dck\u00del\u00e0m\u00e2n\u00e4o\u00e6"+ + "p\u00e8q\u00ear\u00ecs\u00eet\u00f0u\u00f2v\u00f4w\u00f6x\u00f8y\u00fa"+ + "z\u00fc{\u00fe|\u0100}\u0102~\u0104\177\u0106\u0080\u0108\u0081\u010a"+ + "\u0082\u010c\u0083\u010e\u0084\u0110\2\u0112\2\u0114\2\u0116\u0085\u0118"+ + "\u0086\u011a\u0087\u011c\u0088\u011e\2\u0120\2\u0122\u0089\u0124\u008a"+ + "\u0126\u008b\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\\aa"+ "c|\6\2\62;C\\aac|\6\2\13\f\17\17\"\"\u00a2\u00a2\4\2\f\f\17\17\4\2--/"+ - "/\2\u05f1\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\u05fa\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"+ @@ -388,401 +390,404 @@ public class KickCLexer extends Lexer { "\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\u00c8\3\2\2"+ - "\2\2\u00ce\3\2\2\2\2\u00d0\3\2\2\2\2\u00d2\3\2\2\2\3\u00d4\3\2\2\2\3\u00d6"+ + "\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\u00ca\3\2\2\2\2\u00d0\3\2\2\2\2\u00d2\3\2\2\2\2\u00d4\3\2\2\2\3\u00d6"+ "\3\2\2\2\3\u00d8\3\2\2\2\3\u00da\3\2\2\2\3\u00dc\3\2\2\2\3\u00de\3\2\2"+ "\2\3\u00e0\3\2\2\2\3\u00e2\3\2\2\2\3\u00e4\3\2\2\2\3\u00e6\3\2\2\2\3\u00e8"+ "\3\2\2\2\3\u00ea\3\2\2\2\3\u00ec\3\2\2\2\3\u00ee\3\2\2\2\3\u00f0\3\2\2"+ "\2\3\u00f2\3\2\2\2\3\u00f4\3\2\2\2\3\u00f6\3\2\2\2\3\u00f8\3\2\2\2\3\u00fa"+ "\3\2\2\2\3\u00fc\3\2\2\2\3\u00fe\3\2\2\2\3\u0100\3\2\2\2\3\u0102\3\2\2"+ "\2\3\u0104\3\2\2\2\3\u0106\3\2\2\2\3\u0108\3\2\2\2\3\u010a\3\2\2\2\3\u010c"+ - "\3\2\2\2\3\u0114\3\2\2\2\3\u0116\3\2\2\2\3\u0118\3\2\2\2\3\u011a\3\2\2"+ - "\2\3\u0120\3\2\2\2\3\u0122\3\2\2\2\3\u0124\3\2\2\2\4\u0126\3\2\2\2\6\u0129"+ - "\3\2\2\2\b\u012b\3\2\2\2\n\u012d\3\2\2\2\f\u012f\3\2\2\2\16\u0131\3\2"+ - "\2\2\20\u0133\3\2\2\2\22\u0135\3\2\2\2\24\u0137\3\2\2\2\26\u0139\3\2\2"+ - "\2\30\u013c\3\2\2\2\32\u013e\3\2\2\2\34\u0140\3\2\2\2\36\u0143\3\2\2\2"+ - " \u0145\3\2\2\2\"\u0147\3\2\2\2$\u0149\3\2\2\2&\u014b\3\2\2\2(\u014d\3"+ - "\2\2\2*\u0150\3\2\2\2,\u0153\3\2\2\2.\u0155\3\2\2\2\60\u0157\3\2\2\2\62"+ - "\u0159\3\2\2\2\64\u015b\3\2\2\2\66\u015e\3\2\2\28\u0161\3\2\2\2:\u0164"+ - "\3\2\2\2<\u0167\3\2\2\2>\u0169\3\2\2\2@\u016c\3\2\2\2B\u016f\3\2\2\2D"+ - "\u0171\3\2\2\2F\u0174\3\2\2\2H\u0177\3\2\2\2J\u018f\3\2\2\2L\u0191\3\2"+ - "\2\2N\u019a\3\2\2\2P\u01a2\3\2\2\2R\u01aa\3\2\2\2T\u01b2\3\2\2\2V\u01b5"+ - "\3\2\2\2X\u01bc\3\2\2\2Z\u01c1\3\2\2\2\\\u01c5\3\2\2\2^\u01ce\3\2\2\2"+ - "`\u01d7\3\2\2\2b\u01e0\3\2\2\2d\u01e6\3\2\2\2f\u01ed\3\2\2\2h\u01f4\3"+ - "\2\2\2j\u01fa\3\2\2\2l\u0203\3\2\2\2n\u020a\3\2\2\2p\u0213\3\2\2\2r\u021d"+ - "\3\2\2\2t\u0239\3\2\2\2v\u023b\3\2\2\2x\u023e\3\2\2\2z\u0243\3\2\2\2|"+ - "\u0249\3\2\2\2~\u024c\3\2\2\2\u0080\u0250\3\2\2\2\u0082\u0257\3\2\2\2"+ - "\u0084\u025e\3\2\2\2\u0086\u0264\3\2\2\2\u0088\u026d\3\2\2\2\u008a\u0273"+ - "\3\2\2\2\u008c\u027b\3\2\2\2\u008e\u0280\3\2\2\2\u0090\u0287\3\2\2\2\u0092"+ - "\u028c\3\2\2\2\u0094\u0293\3\2\2\2\u0096\u029a\3\2\2\2\u0098\u02a2\3\2"+ - "\2\2\u009a\u02ab\3\2\2\2\u009c\u02b0\3\2\2\2\u009e\u02b9\3\2\2\2\u00a0"+ - "\u02bf\3\2\2\2\u00a2\u02c6\3\2\2\2\u00a4\u02d6\3\2\2\2\u00a6\u02fd\3\2"+ - "\2\2\u00a8\u0308\3\2\2\2\u00aa\u030a\3\2\2\2\u00ac\u0316\3\2\2\2\u00ae"+ - "\u032e\3\2\2\2\u00b0\u0338\3\2\2\2\u00b2\u033d\3\2\2\2\u00b4\u0344\3\2"+ - "\2\2\u00b6\u0355\3\2\2\2\u00b8\u0363\3\2\2\2\u00ba\u0374\3\2\2\2\u00bc"+ - "\u0388\3\2\2\2\u00be\u038b\3\2\2\2\u00c0\u0394\3\2\2\2\u00c2\u039b\3\2"+ - "\2\2\u00c4\u039d\3\2\2\2\u00c6\u039f\3\2\2\2\u00c8\u03a1\3\2\2\2\u00ca"+ - "\u03aa\3\2\2\2\u00cc\u03ac\3\2\2\2\u00ce\u03af\3\2\2\2\u00d0\u03b5\3\2"+ - "\2\2\u00d2\u03c0\3\2\2\2\u00d4\u03ce\3\2\2\2\u00d6\u04b2\3\2\2\2\u00d8"+ - "\u04b4\3\2\2\2\u00da\u04b6\3\2\2\2\u00dc\u04b8\3\2\2\2\u00de\u04ba\3\2"+ - "\2\2\u00e0\u04bc\3\2\2\2\u00e2\u04be\3\2\2\2\u00e4\u04c0\3\2\2\2\u00e6"+ - "\u04c2\3\2\2\2\u00e8\u04c4\3\2\2\2\u00ea\u04c7\3\2\2\2\u00ec\u04ca\3\2"+ - "\2\2\u00ee\u04cc\3\2\2\2\u00f0\u04ce\3\2\2\2\u00f2\u04d0\3\2\2\2\u00f4"+ - "\u04d2\3\2\2\2\u00f6\u04d4\3\2\2\2\u00f8\u04d6\3\2\2\2\u00fa\u04d9\3\2"+ - "\2\2\u00fc\u04de\3\2\2\2\u00fe\u04e3\3\2\2\2\u0100\u04e5\3\2\2\2\u0102"+ - "\u04f5\3\2\2\2\u0104\u04fe\3\2\2\2\u0106\u050e\3\2\2\2\u0108\u0510\3\2"+ - "\2\2\u010a\u0517\3\2\2\2\u010c\u051b\3\2\2\2\u010e\u0521\3\2\2\2\u0110"+ - "\u0523\3\2\2\2\u0112\u0525\3\2\2\2\u0114\u0527\3\2\2\2\u0116\u052f\3\2"+ - "\2\2\u0118\u0535\3\2\2\2\u011a\u053c\3\2\2\2\u011c\u0543\3\2\2\2\u011e"+ - "\u0545\3\2\2\2\u0120\u0548\3\2\2\2\u0122\u054e\3\2\2\2\u0124\u0559\3\2"+ - "\2\2\u0126\u0127\7}\2\2\u0127\u0128\b\2\2\2\u0128\5\3\2\2\2\u0129\u012a"+ - "\7\177\2\2\u012a\7\3\2\2\2\u012b\u012c\7]\2\2\u012c\t\3\2\2\2\u012d\u012e"+ - "\7_\2\2\u012e\13\3\2\2\2\u012f\u0130\7*\2\2\u0130\r\3\2\2\2\u0131\u0132"+ - "\7+\2\2\u0132\17\3\2\2\2\u0133\u0134\7=\2\2\u0134\21\3\2\2\2\u0135\u0136"+ - "\7<\2\2\u0136\23\3\2\2\2\u0137\u0138\7.\2\2\u0138\25\3\2\2\2\u0139\u013a"+ - "\7\60\2\2\u013a\u013b\7\60\2\2\u013b\27\3\2\2\2\u013c\u013d\7A\2\2\u013d"+ - "\31\3\2\2\2\u013e\u013f\7\60\2\2\u013f\33\3\2\2\2\u0140\u0141\7/\2\2\u0141"+ - "\u0142\7@\2\2\u0142\35\3\2\2\2\u0143\u0144\7-\2\2\u0144\37\3\2\2\2\u0145"+ - "\u0146\7/\2\2\u0146!\3\2\2\2\u0147\u0148\7,\2\2\u0148#\3\2\2\2\u0149\u014a"+ - "\7\61\2\2\u014a%\3\2\2\2\u014b\u014c\7\'\2\2\u014c\'\3\2\2\2\u014d\u014e"+ - "\7-\2\2\u014e\u014f\7-\2\2\u014f)\3\2\2\2\u0150\u0151\7/\2\2\u0151\u0152"+ - "\7/\2\2\u0152+\3\2\2\2\u0153\u0154\7(\2\2\u0154-\3\2\2\2\u0155\u0156\7"+ - "\u0080\2\2\u0156/\3\2\2\2\u0157\u0158\7`\2\2\u0158\61\3\2\2\2\u0159\u015a"+ - "\7~\2\2\u015a\63\3\2\2\2\u015b\u015c\7>\2\2\u015c\u015d\7>\2\2\u015d\65"+ - "\3\2\2\2\u015e\u015f\7@\2\2\u015f\u0160\7@\2\2\u0160\67\3\2\2\2\u0161"+ - "\u0162\7?\2\2\u0162\u0163\7?\2\2\u01639\3\2\2\2\u0164\u0165\7#\2\2\u0165"+ - "\u0166\7?\2\2\u0166;\3\2\2\2\u0167\u0168\7>\2\2\u0168=\3\2\2\2\u0169\u016a"+ - "\7>\2\2\u016a\u016b\7?\2\2\u016b?\3\2\2\2\u016c\u016d\7@\2\2\u016d\u016e"+ - "\7?\2\2\u016eA\3\2\2\2\u016f\u0170\7@\2\2\u0170C\3\2\2\2\u0171\u0172\7"+ - "(\2\2\u0172\u0173\7(\2\2\u0173E\3\2\2\2\u0174\u0175\7~\2\2\u0175\u0176"+ - "\7~\2\2\u0176G\3\2\2\2\u0177\u0178\7?\2\2\u0178I\3\2\2\2\u0179\u017a\7"+ - "-\2\2\u017a\u0190\7?\2\2\u017b\u017c\7/\2\2\u017c\u0190\7?\2\2\u017d\u017e"+ - "\7,\2\2\u017e\u0190\7?\2\2\u017f\u0180\7\61\2\2\u0180\u0190\7?\2\2\u0181"+ - "\u0182\7\'\2\2\u0182\u0190\7?\2\2\u0183\u0184\7>\2\2\u0184\u0185\7>\2"+ - "\2\u0185\u0190\7?\2\2\u0186\u0187\7@\2\2\u0187\u0188\7@\2\2\u0188\u0190"+ - "\7?\2\2\u0189\u018a\7(\2\2\u018a\u0190\7?\2\2\u018b\u018c\7~\2\2\u018c"+ - "\u0190\7?\2\2\u018d\u018e\7`\2\2\u018e\u0190\7?\2\2\u018f\u0179\3\2\2"+ - "\2\u018f\u017b\3\2\2\2\u018f\u017d\3\2\2\2\u018f\u017f\3\2\2\2\u018f\u0181"+ - "\3\2\2\2\u018f\u0183\3\2\2\2\u018f\u0186\3\2\2\2\u018f\u0189\3\2\2\2\u018f"+ - "\u018b\3\2\2\2\u018f\u018d\3\2\2\2\u0190K\3\2\2\2\u0191\u0192\7k\2\2\u0192"+ - "\u0193\7o\2\2\u0193\u0194\7r\2\2\u0194\u0195\7q\2\2\u0195\u0196\7t\2\2"+ - "\u0196\u0197\7v\2\2\u0197\u0198\3\2\2\2\u0198\u0199\b&\3\2\u0199M\3\2"+ - "\2\2\u019a\u019b\7v\2\2\u019b\u019c\7{\2\2\u019c\u019d\7r\2\2\u019d\u019e"+ - "\7g\2\2\u019e\u019f\7f\2\2\u019f\u01a0\7g\2\2\u01a0\u01a1\7h\2\2\u01a1"+ - "O\3\2\2\2\u01a2\u01a3\7%\2\2\u01a3\u01a4\7r\2\2\u01a4\u01a5\7t\2\2\u01a5"+ - "\u01a6\7c\2\2\u01a6\u01a7\7i\2\2\u01a7\u01a8\7o\2\2\u01a8\u01a9\7c\2\2"+ - "\u01a9Q\3\2\2\2\u01aa\u01ab\7t\2\2\u01ab\u01ac\7g\2\2\u01ac\u01ad\7u\2"+ - "\2\u01ad\u01ae\7g\2\2\u01ae\u01af\7t\2\2\u01af\u01b0\7x\2\2\u01b0\u01b1"+ - "\7g\2\2\u01b1S\3\2\2\2\u01b2\u01b3\7r\2\2\u01b3\u01b4\7e\2\2\u01b4U\3"+ - "\2\2\2\u01b5\u01b6\7v\2\2\u01b6\u01b7\7c\2\2\u01b7\u01b8\7t\2\2\u01b8"+ - "\u01b9\7i\2\2\u01b9\u01ba\7g\2\2\u01ba\u01bb\7v\2\2\u01bbW\3\2\2\2\u01bc"+ - "\u01bd\7n\2\2\u01bd\u01be\7k\2\2\u01be\u01bf\7p\2\2\u01bf\u01c0\7m\2\2"+ - "\u01c0Y\3\2\2\2\u01c1\u01c2\7e\2\2\u01c2\u01c3\7r\2\2\u01c3\u01c4\7w\2"+ - "\2\u01c4[\3\2\2\2\u01c5\u01c6\7e\2\2\u01c6\u01c7\7q\2\2\u01c7\u01c8\7"+ - "f\2\2\u01c8\u01c9\7g\2\2\u01c9\u01ca\7a\2\2\u01ca\u01cb\7u\2\2\u01cb\u01cc"+ - "\7g\2\2\u01cc\u01cd\7i\2\2\u01cd]\3\2\2\2\u01ce\u01cf\7f\2\2\u01cf\u01d0"+ - "\7c\2\2\u01d0\u01d1\7v\2\2\u01d1\u01d2\7c\2\2\u01d2\u01d3\7a\2\2\u01d3"+ - "\u01d4\7u\2\2\u01d4\u01d5\7g\2\2\u01d5\u01d6\7i\2\2\u01d6_\3\2\2\2\u01d7"+ - "\u01d8\7g\2\2\u01d8\u01d9\7p\2\2\u01d9\u01da\7e\2\2\u01da\u01db\7q\2\2"+ - "\u01db\u01dc\7f\2\2\u01dc\u01dd\7k\2\2\u01dd\u01de\7p\2\2\u01de\u01df"+ - "\7i\2\2\u01dfa\3\2\2\2\u01e0\u01e1\7e\2\2\u01e1\u01e2\7q\2\2\u01e2\u01e3"+ - "\7p\2\2\u01e3\u01e4\7u\2\2\u01e4\u01e5\7v\2\2\u01e5c\3\2\2\2\u01e6\u01e7"+ - "\7g\2\2\u01e7\u01e8\7z\2\2\u01e8\u01e9\7v\2\2\u01e9\u01ea\7g\2\2\u01ea"+ - "\u01eb\7t\2\2\u01eb\u01ec\7p\2\2\u01ece\3\2\2\2\u01ed\u01ee\7g\2\2\u01ee"+ - "\u01ef\7z\2\2\u01ef\u01f0\7r\2\2\u01f0\u01f1\7q\2\2\u01f1\u01f2\7t\2\2"+ - "\u01f2\u01f3\7v\2\2\u01f3g\3\2\2\2\u01f4\u01f5\7c\2\2\u01f5\u01f6\7n\2"+ - "\2\u01f6\u01f7\7k\2\2\u01f7\u01f8\7i\2\2\u01f8\u01f9\7p\2\2\u01f9i\3\2"+ - "\2\2\u01fa\u01fb\7t\2\2\u01fb\u01fc\7g\2\2\u01fc\u01fd\7i\2\2\u01fd\u01fe"+ - "\7k\2\2\u01fe\u01ff\7u\2\2\u01ff\u0200\7v\2\2\u0200\u0201\7g\2\2\u0201"+ - "\u0202\7t\2\2\u0202k\3\2\2\2\u0203\u0204\7k\2\2\u0204\u0205\7p\2\2\u0205"+ - "\u0206\7n\2\2\u0206\u0207\7k\2\2\u0207\u0208\7p\2\2\u0208\u0209\7g\2\2"+ - "\u0209m\3\2\2\2\u020a\u020b\7x\2\2\u020b\u020c\7q\2\2\u020c\u020d\7n\2"+ - "\2\u020d\u020e\7c\2\2\u020e\u020f\7v\2\2\u020f\u0210\7k\2\2\u0210\u0211"+ - "\7n\2\2\u0211\u0212\7g\2\2\u0212o\3\2\2\2\u0213\u0214\7k\2\2\u0214\u0215"+ - "\7p\2\2\u0215\u0216\7v\2\2\u0216\u0217\7g\2\2\u0217\u0218\7t\2\2\u0218"+ - "\u0219\7t\2\2\u0219\u021a\7w\2\2\u021a\u021b\7r\2\2\u021b\u021c\7v\2\2"+ - "\u021cq\3\2\2\2\u021d\u021e\7e\2\2\u021e\u021f\7c\2\2\u021f\u0220\7n\2"+ - "\2\u0220\u0221\7n\2\2\u0221\u0222\7k\2\2\u0222\u0223\7p\2\2\u0223\u0224"+ - "\7i\2\2\u0224s\3\2\2\2\u0225\u0226\7a\2\2\u0226\u0227\7a\2\2\u0227\u0228"+ - "\7u\2\2\u0228\u0229\7v\2\2\u0229\u022a\7c\2\2\u022a\u022b\7e\2\2\u022b"+ - "\u022c\7m\2\2\u022c\u022d\7e\2\2\u022d\u022e\7c\2\2\u022e\u022f\7n\2\2"+ - "\u022f\u023a\7n\2\2\u0230\u0231\7a\2\2\u0231\u0232\7a\2\2\u0232\u0233"+ - "\7r\2\2\u0233\u0234\7j\2\2\u0234\u0235\7k\2\2\u0235\u0236\7e\2\2\u0236"+ - "\u0237\7c\2\2\u0237\u0238\7n\2\2\u0238\u023a\7n\2\2\u0239\u0225\3\2\2"+ - "\2\u0239\u0230\3\2\2\2\u023au\3\2\2\2\u023b\u023c\7k\2\2\u023c\u023d\7"+ - "h\2\2\u023dw\3\2\2\2\u023e\u023f\7g\2\2\u023f\u0240\7n\2\2\u0240\u0241"+ - "\7u\2\2\u0241\u0242\7g\2\2\u0242y\3\2\2\2\u0243\u0244\7y\2\2\u0244\u0245"+ - "\7j\2\2\u0245\u0246\7k\2\2\u0246\u0247\7n\2\2\u0247\u0248\7g\2\2\u0248"+ - "{\3\2\2\2\u0249\u024a\7f\2\2\u024a\u024b\7q\2\2\u024b}\3\2\2\2\u024c\u024d"+ - "\7h\2\2\u024d\u024e\7q\2\2\u024e\u024f\7t\2\2\u024f\177\3\2\2\2\u0250"+ - "\u0251\7u\2\2\u0251\u0252\7y\2\2\u0252\u0253\7k\2\2\u0253\u0254\7v\2\2"+ - "\u0254\u0255\7e\2\2\u0255\u0256\7j\2\2\u0256\u0081\3\2\2\2\u0257\u0258"+ - "\7t\2\2\u0258\u0259\7g\2\2\u0259\u025a\7v\2\2\u025a\u025b\7w\2\2\u025b"+ - "\u025c\7t\2\2\u025c\u025d\7p\2\2\u025d\u0083\3\2\2\2\u025e\u025f\7d\2"+ - "\2\u025f\u0260\7t\2\2\u0260\u0261\7g\2\2\u0261\u0262\7c\2\2\u0262\u0263"+ - "\7m\2\2\u0263\u0085\3\2\2\2\u0264\u0265\7e\2\2\u0265\u0266\7q\2\2\u0266"+ - "\u0267\7p\2\2\u0267\u0268\7v\2\2\u0268\u0269\7k\2\2\u0269\u026a\7p\2\2"+ - "\u026a\u026b\7w\2\2\u026b\u026c\7g\2\2\u026c\u0087\3\2\2\2\u026d\u026e"+ - "\7c\2\2\u026e\u026f\7u\2\2\u026f\u0270\7o\2\2\u0270\u0271\3\2\2\2\u0271"+ - "\u0272\bD\4\2\u0272\u0089\3\2\2\2\u0273\u0274\7f\2\2\u0274\u0275\7g\2"+ - "\2\u0275\u0276\7h\2\2\u0276\u0277\7c\2\2\u0277\u0278\7w\2\2\u0278\u0279"+ - "\7n\2\2\u0279\u027a\7v\2\2\u027a\u008b\3\2\2\2\u027b\u027c\7e\2\2\u027c"+ - "\u027d\7c\2\2\u027d\u027e\7u\2\2\u027e\u027f\7g\2\2\u027f\u008d\3\2\2"+ - "\2\u0280\u0281\7u\2\2\u0281\u0282\7v\2\2\u0282\u0283\7t\2\2\u0283\u0284"+ - "\7w\2\2\u0284\u0285\7e\2\2\u0285\u0286\7v\2\2\u0286\u008f\3\2\2\2\u0287"+ - "\u0288\7g\2\2\u0288\u0289\7p\2\2\u0289\u028a\7w\2\2\u028a\u028b\7o\2\2"+ - "\u028b\u0091\3\2\2\2\u028c\u028d\7u\2\2\u028d\u028e\7k\2\2\u028e\u028f"+ - "\7|\2\2\u028f\u0290\7g\2\2\u0290\u0291\7q\2\2\u0291\u0292\7h\2\2\u0292"+ - "\u0093\3\2\2\2\u0293\u0294\7v\2\2\u0294\u0295\7{\2\2\u0295\u0296\7r\2"+ - "\2\u0296\u0297\7g\2\2\u0297\u0298\7k\2\2\u0298\u0299\7f\2\2\u0299\u0095"+ - "\3\2\2\2\u029a\u029b\7m\2\2\u029b\u029c\7k\2\2\u029c\u029d\7e\2\2\u029d"+ - "\u029e\7m\2\2\u029e\u029f\7c\2\2\u029f\u02a0\7u\2\2\u02a0\u02a1\7o\2\2"+ - "\u02a1\u0097\3\2\2\2\u02a2\u02a3\7t\2\2\u02a3\u02a4\7g\2\2\u02a4\u02a5"+ - "\7u\2\2\u02a5\u02a6\7q\2\2\u02a6\u02a7\7w\2\2\u02a7\u02a8\7t\2\2\u02a8"+ - "\u02a9\7e\2\2\u02a9\u02aa\7g\2\2\u02aa\u0099\3\2\2\2\u02ab\u02ac\7w\2"+ - "\2\u02ac\u02ad\7u\2\2\u02ad\u02ae\7g\2\2\u02ae\u02af\7u\2\2\u02af\u009b"+ - "\3\2\2\2\u02b0\u02b1\7e\2\2\u02b1\u02b2\7n\2\2\u02b2\u02b3\7q\2\2\u02b3"+ - "\u02b4\7d\2\2\u02b4\u02b5\7d\2\2\u02b5\u02b6\7g\2\2\u02b6\u02b7\7t\2\2"+ - "\u02b7\u02b8\7u\2\2\u02b8\u009d\3\2\2\2\u02b9\u02ba\7d\2\2\u02ba\u02bb"+ - "\7{\2\2\u02bb\u02bc\7v\2\2\u02bc\u02bd\7g\2\2\u02bd\u02be\7u\2\2\u02be"+ - "\u009f\3\2\2\2\u02bf\u02c0\7e\2\2\u02c0\u02c1\7{\2\2\u02c1\u02c2\7e\2"+ - "\2\u02c2\u02c3\7n\2\2\u02c3\u02c4\7g\2\2\u02c4\u02c5\7u\2\2\u02c5\u00a1"+ - "\3\2\2\2\u02c6\u02c7\7#\2\2\u02c7\u00a3\3\2\2\2\u02c8\u02c9\7u\2\2\u02c9"+ - "\u02ca\7k\2\2\u02ca\u02cb\7i\2\2\u02cb\u02cc\7p\2\2\u02cc\u02cd\7g\2\2"+ - "\u02cd\u02d7\7f\2\2\u02ce\u02cf\7w\2\2\u02cf\u02d0\7p\2\2\u02d0\u02d1"+ - "\7u\2\2\u02d1\u02d2\7k\2\2\u02d2\u02d3\7i\2\2\u02d3\u02d4\7p\2\2\u02d4"+ - "\u02d5\7g\2\2\u02d5\u02d7\7f\2\2\u02d6\u02c8\3\2\2\2\u02d6\u02ce\3\2\2"+ - "\2\u02d7\u00a5\3\2\2\2\u02d8\u02d9\7d\2\2\u02d9\u02da\7{\2\2\u02da\u02db"+ - "\7v\2\2\u02db\u02fe\7g\2\2\u02dc\u02dd\7y\2\2\u02dd\u02de\7q\2\2\u02de"+ - "\u02df\7t\2\2\u02df\u02fe\7f\2\2\u02e0\u02e1\7f\2\2\u02e1\u02e2\7y\2\2"+ - "\u02e2\u02e3\7q\2\2\u02e3\u02e4\7t\2\2\u02e4\u02fe\7f\2\2\u02e5\u02e6"+ - "\7d\2\2\u02e6\u02e7\7q\2\2\u02e7\u02e8\7q\2\2\u02e8\u02fe\7n\2\2\u02e9"+ - "\u02ea\7e\2\2\u02ea\u02eb\7j\2\2\u02eb\u02ec\7c\2\2\u02ec\u02fe\7t\2\2"+ - "\u02ed\u02ee\7u\2\2\u02ee\u02ef\7j\2\2\u02ef\u02f0\7q\2\2\u02f0\u02f1"+ - "\7t\2\2\u02f1\u02fe\7v\2\2\u02f2\u02f3\7k\2\2\u02f3\u02f4\7p\2\2\u02f4"+ - "\u02fe\7v\2\2\u02f5\u02f6\7n\2\2\u02f6\u02f7\7q\2\2\u02f7\u02f8\7p\2\2"+ - "\u02f8\u02fe\7i\2\2\u02f9\u02fa\7x\2\2\u02fa\u02fb\7q\2\2\u02fb\u02fc"+ - "\7k\2\2\u02fc\u02fe\7f\2\2\u02fd\u02d8\3\2\2\2\u02fd\u02dc\3\2\2\2\u02fd"+ - "\u02e0\3\2\2\2\u02fd\u02e5\3\2\2\2\u02fd\u02e9\3\2\2\2\u02fd\u02ed\3\2"+ - "\2\2\u02fd\u02f2\3\2\2\2\u02fd\u02f5\3\2\2\2\u02fd\u02f9\3\2\2\2\u02fe"+ - "\u00a7\3\2\2\2\u02ff\u0300\7v\2\2\u0300\u0301\7t\2\2\u0301\u0302\7w\2"+ - "\2\u0302\u0309\7g\2\2\u0303\u0304\7h\2\2\u0304\u0305\7c\2\2\u0305\u0306"+ - "\7n\2\2\u0306\u0307\7u\2\2\u0307\u0309\7g\2\2\u0308\u02ff\3\2\2\2\u0308"+ - "\u0303\3\2\2\2\u0309\u00a9\3\2\2\2\u030a\u030b\7}\2\2\u030b\u030c\7}\2"+ - "\2\u030c\u0310\3\2\2\2\u030d\u030f\13\2\2\2\u030e\u030d\3\2\2\2\u030f"+ - "\u0312\3\2\2\2\u0310\u0311\3\2\2\2\u0310\u030e\3\2\2\2\u0311\u0313\3\2"+ - "\2\2\u0312\u0310\3\2\2\2\u0313\u0314\7\177\2\2\u0314\u0315\7\177\2\2\u0315"+ - "\u00ab\3\2\2\2\u0316\u031c\7$\2\2\u0317\u0318\7^\2\2\u0318\u031b\7$\2"+ - "\2\u0319\u031b\n\2\2\2\u031a\u0317\3\2\2\2\u031a\u0319\3\2\2\2\u031b\u031e"+ - "\3\2\2\2\u031c\u031a\3\2\2\2\u031c\u031d\3\2\2\2\u031d\u031f\3\2\2\2\u031e"+ - "\u031c\3\2\2\2\u031f\u0321\7$\2\2\u0320\u0322\t\3\2\2\u0321\u0320\3\2"+ - "\2\2\u0321\u0322\3\2\2\2\u0322\u0327\3\2\2\2\u0323\u0325\t\4\2\2\u0324"+ - "\u0326\t\5\2\2\u0325\u0324\3\2\2\2\u0325\u0326\3\2\2\2\u0326\u0328\3\2"+ - "\2\2\u0327\u0323\3\2\2\2\u0327\u0328\3\2\2\2\u0328\u032a\3\2\2\2\u0329"+ - "\u032b\t\3\2\2\u032a\u0329\3\2\2\2\u032a\u032b\3\2\2\2\u032b\u032c\3\2"+ - "\2\2\u032c\u032d\bV\5\2\u032d\u00ad\3\2\2\2\u032e\u0332\7)\2\2\u032f\u0330"+ - "\7^\2\2\u0330\u0333\t\6\2\2\u0331\u0333\n\7\2\2\u0332\u032f\3\2\2\2\u0332"+ - "\u0331\3\2\2\2\u0333\u0334\3\2\2\2\u0334\u0335\7)\2\2\u0335\u00af\3\2"+ - "\2\2\u0336\u0339\5\u00b2Y\2\u0337\u0339\5\u00ba]\2\u0338\u0336\3\2\2\2"+ - "\u0338\u0337\3\2\2\2\u0339\u00b1\3\2\2\2\u033a\u033e\5\u00b4Z\2\u033b"+ - "\u033e\5\u00b6[\2\u033c\u033e\5\u00b8\\\2\u033d\u033a\3\2\2\2\u033d\u033b"+ - "\3\2\2\2\u033d\u033c\3\2\2\2\u033e\u00b3\3\2\2\2\u033f\u0345\7\'\2\2\u0340"+ - "\u0341\7\62\2\2\u0341\u0345\7d\2\2\u0342\u0343\7\62\2\2\u0343\u0345\7"+ - "D\2\2\u0344\u033f\3\2\2\2\u0344\u0340\3\2\2\2\u0344\u0342\3\2\2\2\u0345"+ - "\u0349\3\2\2\2\u0346\u0348\5\u00c2a\2\u0347\u0346\3\2\2\2\u0348\u034b"+ - "\3\2\2\2\u0349\u0347\3\2\2\2\u0349\u034a\3\2\2\2\u034a\u034c\3\2\2\2\u034b"+ - "\u0349\3\2\2\2\u034c\u034e\7\60\2\2\u034d\u034f\5\u00c2a\2\u034e\u034d"+ - "\3\2\2\2\u034f\u0350\3\2\2\2\u0350\u034e\3\2\2\2\u0350\u0351\3\2\2\2\u0351"+ - "\u00b5\3\2\2\2\u0352\u0354\5\u00c4b\2\u0353\u0352\3\2\2\2\u0354\u0357"+ - "\3\2\2\2\u0355\u0353\3\2\2\2\u0355\u0356\3\2\2\2\u0356\u0358\3\2\2\2\u0357"+ - "\u0355\3\2\2\2\u0358\u035a\7\60\2\2\u0359\u035b\5\u00c4b\2\u035a\u0359"+ - "\3\2\2\2\u035b\u035c\3\2\2\2\u035c\u035a\3\2\2\2\u035c\u035d\3\2\2\2\u035d"+ - "\u00b7\3\2\2\2\u035e\u0364\7&\2\2\u035f\u0360\7\62\2\2\u0360\u0364\7z"+ - "\2\2\u0361\u0362\7\62\2\2\u0362\u0364\7Z\2\2\u0363\u035e\3\2\2\2\u0363"+ - "\u035f\3\2\2\2\u0363\u0361\3\2\2\2\u0364\u0368\3\2\2\2\u0365\u0367\5\u00c6"+ - "c\2\u0366\u0365\3\2\2\2\u0367\u036a\3\2\2\2\u0368\u0366\3\2\2\2\u0368"+ - "\u0369\3\2\2\2\u0369\u036b\3\2\2\2\u036a\u0368\3\2\2\2\u036b\u036d\7\60"+ - "\2\2\u036c\u036e\5\u00c6c\2\u036d\u036c\3\2\2\2\u036e\u036f\3\2\2\2\u036f"+ - "\u036d\3\2\2\2\u036f\u0370\3\2\2\2\u0370\u00b9\3\2\2\2\u0371\u0375\5\u00be"+ - "_\2\u0372\u0375\5\u00c0`\2\u0373\u0375\5\u00bc^\2\u0374\u0371\3\2\2\2"+ - "\u0374\u0372\3\2\2\2\u0374\u0373\3\2\2\2\u0375\u0379\3\2\2\2\u0376\u0377"+ - "\t\b\2\2\u0377\u037a\t\t\2\2\u0378\u037a\7n\2\2\u0379\u0376\3\2\2\2\u0379"+ - "\u0378\3\2\2\2\u0379\u037a\3\2\2\2\u037a\u00bb\3\2\2\2\u037b\u037c\7\62"+ - "\2\2\u037c\u037e\t\n\2\2\u037d\u037f\5\u00c2a\2\u037e\u037d\3\2\2\2\u037f"+ - "\u0380\3\2\2\2\u0380\u037e\3\2\2\2\u0380\u0381\3\2\2\2\u0381\u0389\3\2"+ - "\2\2\u0382\u0384\7\'\2\2\u0383\u0385\5\u00c2a\2\u0384\u0383\3\2\2\2\u0385"+ - "\u0386\3\2\2\2\u0386\u0384\3\2\2\2\u0386\u0387\3\2\2\2\u0387\u0389\3\2"+ - "\2\2\u0388\u037b\3\2\2\2\u0388\u0382\3\2\2\2\u0389\u00bd\3\2\2\2\u038a"+ - "\u038c\5\u00c4b\2\u038b\u038a\3\2\2\2\u038c\u038d\3\2\2\2\u038d\u038b"+ - "\3\2\2\2\u038d\u038e\3\2\2\2\u038e\u00bf\3\2\2\2\u038f\u0395\7&\2\2\u0390"+ - "\u0391\7\62\2\2\u0391\u0395\7z\2\2\u0392\u0393\7\62\2\2\u0393\u0395\7"+ - "Z\2\2\u0394\u038f\3\2\2\2\u0394\u0390\3\2\2\2\u0394\u0392\3\2\2\2\u0395"+ - "\u0397\3\2\2\2\u0396\u0398\5\u00c6c\2\u0397\u0396\3\2\2\2\u0398\u0399"+ - "\3\2\2\2\u0399\u0397\3\2\2\2\u0399\u039a\3\2\2\2\u039a\u00c1\3\2\2\2\u039b"+ - "\u039c\t\13\2\2\u039c\u00c3\3\2\2\2\u039d\u039e\t\f\2\2\u039e\u00c5\3"+ - "\2\2\2\u039f\u03a0\t\r\2\2\u03a0\u00c7\3\2\2\2\u03a1\u03a5\5\u00cae\2"+ - "\u03a2\u03a4\5\u00ccf\2\u03a3\u03a2\3\2\2\2\u03a4\u03a7\3\2\2\2\u03a5"+ - "\u03a3\3\2\2\2\u03a5\u03a6\3\2\2\2\u03a6\u03a8\3\2\2\2\u03a7\u03a5\3\2"+ - "\2\2\u03a8\u03a9\bd\6\2\u03a9\u00c9\3\2\2\2\u03aa\u03ab\t\16\2\2\u03ab"+ - "\u00cb\3\2\2\2\u03ac\u03ad\t\17\2\2\u03ad\u00cd\3\2\2\2\u03ae\u03b0\t"+ - "\20\2\2\u03af\u03ae\3\2\2\2\u03b0\u03b1\3\2\2\2\u03b1\u03af\3\2\2\2\u03b1"+ - "\u03b2\3\2\2\2\u03b2\u03b3\3\2\2\2\u03b3\u03b4\bg\7\2\u03b4\u00cf\3\2"+ - "\2\2\u03b5\u03b6\7\61\2\2\u03b6\u03b7\7\61\2\2\u03b7\u03bb\3\2\2\2\u03b8"+ - "\u03ba\n\21\2\2\u03b9\u03b8\3\2\2\2\u03ba\u03bd\3\2\2\2\u03bb\u03b9\3"+ - "\2\2\2\u03bb\u03bc\3\2\2\2\u03bc\u03be\3\2\2\2\u03bd\u03bb\3\2\2\2\u03be"+ - "\u03bf\bh\b\2\u03bf\u00d1\3\2\2\2\u03c0\u03c1\7\61\2\2\u03c1\u03c2\7,"+ - "\2\2\u03c2\u03c6\3\2\2\2\u03c3\u03c5\13\2\2\2\u03c4\u03c3\3\2\2\2\u03c5"+ - "\u03c8\3\2\2\2\u03c6\u03c7\3\2\2\2\u03c6\u03c4\3\2\2\2\u03c7\u03c9\3\2"+ - "\2\2\u03c8\u03c6\3\2\2\2\u03c9\u03ca\7,\2\2\u03ca\u03cb\7\61\2\2\u03cb"+ - "\u03cc\3\2\2\2\u03cc\u03cd\bi\b\2\u03cd\u00d3\3\2\2\2\u03ce\u03cf\7\60"+ - "\2\2\u03cf\u03d0\7d\2\2\u03d0\u03d1\7{\2\2\u03d1\u03d2\7v\2\2\u03d2\u03d3"+ - "\7g\2\2\u03d3\u00d5\3\2\2\2\u03d4\u03d5\7d\2\2\u03d5\u03d6\7t\2\2\u03d6"+ - "\u04b3\7m\2\2\u03d7\u03d8\7q\2\2\u03d8\u03d9\7t\2\2\u03d9\u04b3\7c\2\2"+ - "\u03da\u03db\7m\2\2\u03db\u03dc\7k\2\2\u03dc\u04b3\7n\2\2\u03dd\u03de"+ - "\7u\2\2\u03de\u03df\7n\2\2\u03df\u04b3\7q\2\2\u03e0\u03e1\7p\2\2\u03e1"+ - "\u03e2\7q\2\2\u03e2\u04b3\7r\2\2\u03e3\u03e4\7c\2\2\u03e4\u03e5\7u\2\2"+ - "\u03e5\u04b3\7n\2\2\u03e6\u03e7\7r\2\2\u03e7\u03e8\7j\2\2\u03e8\u04b3"+ - "\7r\2\2\u03e9\u03ea\7c\2\2\u03ea\u03eb\7p\2\2\u03eb\u04b3\7e\2\2\u03ec"+ - "\u03ed\7d\2\2\u03ed\u03ee\7r\2\2\u03ee\u04b3\7n\2\2\u03ef\u03f0\7e\2\2"+ - "\u03f0\u03f1\7n\2\2\u03f1\u04b3\7e\2\2\u03f2\u03f3\7l\2\2\u03f3\u03f4"+ - "\7u\2\2\u03f4\u04b3\7t\2\2\u03f5\u03f6\7c\2\2\u03f6\u03f7\7p\2\2\u03f7"+ - "\u04b3\7f\2\2\u03f8\u03f9\7t\2\2\u03f9\u03fa\7n\2\2\u03fa\u04b3\7c\2\2"+ - "\u03fb\u03fc\7d\2\2\u03fc\u03fd\7k\2\2\u03fd\u04b3\7v\2\2\u03fe\u03ff"+ - "\7t\2\2\u03ff\u0400\7q\2\2\u0400\u04b3\7n\2\2\u0401\u0402\7r\2\2\u0402"+ - "\u0403\7n\2\2\u0403\u04b3\7c\2\2\u0404\u0405\7r\2\2\u0405\u0406\7n\2\2"+ - "\u0406\u04b3\7r\2\2\u0407\u0408\7d\2\2\u0408\u0409\7o\2\2\u0409\u04b3"+ - "\7k\2\2\u040a\u040b\7u\2\2\u040b\u040c\7g\2\2\u040c\u04b3\7e\2\2\u040d"+ - "\u040e\7t\2\2\u040e\u040f\7v\2\2\u040f\u04b3\7k\2\2\u0410\u0411\7g\2\2"+ - "\u0411\u0412\7q\2\2\u0412\u04b3\7t\2\2\u0413\u0414\7u\2\2\u0414\u0415"+ - "\7t\2\2\u0415\u04b3\7g\2\2\u0416\u0417\7n\2\2\u0417\u0418\7u\2\2\u0418"+ - "\u04b3\7t\2\2\u0419\u041a\7r\2\2\u041a\u041b\7j\2\2\u041b\u04b3\7c\2\2"+ - "\u041c\u041d\7c\2\2\u041d\u041e\7n\2\2\u041e\u04b3\7t\2\2\u041f\u0420"+ - "\7l\2\2\u0420\u0421\7o\2\2\u0421\u04b3\7r\2\2\u0422\u0423\7d\2\2\u0423"+ - "\u0424\7x\2\2\u0424\u04b3\7e\2\2\u0425\u0426\7e\2\2\u0426\u0427\7n\2\2"+ - "\u0427\u04b3\7k\2\2\u0428\u0429\7t\2\2\u0429\u042a\7v\2\2\u042a\u04b3"+ - "\7u\2\2\u042b\u042c\7c\2\2\u042c\u042d\7f\2\2\u042d\u04b3\7e\2\2\u042e"+ - "\u042f\7t\2\2\u042f\u0430\7t\2\2\u0430\u04b3\7c\2\2\u0431\u0432\7d\2\2"+ - "\u0432\u0433\7x\2\2\u0433\u04b3\7u\2\2\u0434\u0435\7u\2\2\u0435\u0436"+ - "\7g\2\2\u0436\u04b3\7k\2\2\u0437\u0438\7u\2\2\u0438\u0439\7c\2\2\u0439"+ - "\u04b3\7z\2\2\u043a\u043b\7u\2\2\u043b\u043c\7v\2\2\u043c\u04b3\7{\2\2"+ - "\u043d\u043e\7u\2\2\u043e\u043f\7v\2\2\u043f\u04b3\7c\2\2\u0440\u0441"+ - "\7u\2\2\u0441\u0442\7v\2\2\u0442\u04b3\7z\2\2\u0443\u0444\7f\2\2\u0444"+ - "\u0445\7g\2\2\u0445\u04b3\7{\2\2\u0446\u0447\7v\2\2\u0447\u0448\7z\2\2"+ - "\u0448\u04b3\7c\2\2\u0449\u044a\7z\2\2\u044a\u044b\7c\2\2\u044b\u04b3"+ - "\7c\2\2\u044c\u044d\7d\2\2\u044d\u044e\7e\2\2\u044e\u04b3\7e\2\2\u044f"+ - "\u0450\7c\2\2\u0450\u0451\7j\2\2\u0451\u04b3\7z\2\2\u0452\u0453\7v\2\2"+ - "\u0453\u0454\7{\2\2\u0454\u04b3\7c\2\2\u0455\u0456\7v\2\2\u0456\u0457"+ - "\7z\2\2\u0457\u04b3\7u\2\2\u0458\u0459\7v\2\2\u0459\u045a\7c\2\2\u045a"+ - "\u04b3\7u\2\2\u045b\u045c\7u\2\2\u045c\u045d\7j\2\2\u045d\u04b3\7{\2\2"+ - "\u045e\u045f\7u\2\2\u045f\u0460\7j\2\2\u0460\u04b3\7z\2\2\u0461\u0462"+ - "\7n\2\2\u0462\u0463\7f\2\2\u0463\u04b3\7{\2\2\u0464\u0465\7n\2\2\u0465"+ - "\u0466\7f\2\2\u0466\u04b3\7c\2\2\u0467\u0468\7n\2\2\u0468\u0469\7f\2\2"+ - "\u0469\u04b3\7z\2\2\u046a\u046b\7n\2\2\u046b\u046c\7c\2\2\u046c\u04b3"+ - "\7z\2\2\u046d\u046e\7v\2\2\u046e\u046f\7c\2\2\u046f\u04b3\7{\2\2\u0470"+ - "\u0471\7v\2\2\u0471\u0472\7c\2\2\u0472\u04b3\7z\2\2\u0473\u0474\7d\2\2"+ - "\u0474\u0475\7e\2\2\u0475\u04b3\7u\2\2\u0476\u0477\7e\2\2\u0477\u0478"+ - "\7n\2\2\u0478\u04b3\7x\2\2\u0479\u047a\7v\2\2\u047a\u047b\7u\2\2\u047b"+ - "\u04b3\7z\2\2\u047c\u047d\7n\2\2\u047d\u047e\7c\2\2\u047e\u04b3\7u\2\2"+ - "\u047f\u0480\7e\2\2\u0480\u0481\7r\2\2\u0481\u04b3\7{\2\2\u0482\u0483"+ - "\7e\2\2\u0483\u0484\7o\2\2\u0484\u04b3\7r\2\2\u0485\u0486\7e\2\2\u0486"+ - "\u0487\7r\2\2\u0487\u04b3\7z\2\2\u0488\u0489\7f\2\2\u0489\u048a\7e\2\2"+ - "\u048a\u04b3\7r\2\2\u048b\u048c\7f\2\2\u048c\u048d\7g\2\2\u048d\u04b3"+ - "\7e\2\2\u048e\u048f\7k\2\2\u048f\u0490\7p\2\2\u0490\u04b3\7e\2\2\u0491"+ - "\u0492\7c\2\2\u0492\u0493\7z\2\2\u0493\u04b3\7u\2\2\u0494\u0495\7d\2\2"+ - "\u0495\u0496\7p\2\2\u0496\u04b3\7g\2\2\u0497\u0498\7e\2\2\u0498\u0499"+ - "\7n\2\2\u0499\u04b3\7f\2\2\u049a\u049b\7u\2\2\u049b\u049c\7d\2\2\u049c"+ - "\u04b3\7e\2\2\u049d\u049e\7k\2\2\u049e\u049f\7u\2\2\u049f\u04b3\7e\2\2"+ - "\u04a0\u04a1\7k\2\2\u04a1\u04a2\7p\2\2\u04a2\u04b3\7z\2\2\u04a3\u04a4"+ - "\7d\2\2\u04a4\u04a5\7g\2\2\u04a5\u04b3\7s\2\2\u04a6\u04a7\7u\2\2\u04a7"+ - "\u04a8\7g\2\2\u04a8\u04b3\7f\2\2\u04a9\u04aa\7f\2\2\u04aa\u04ab\7g\2\2"+ - "\u04ab\u04b3\7z\2\2\u04ac\u04ad\7k\2\2\u04ad\u04ae\7p\2\2\u04ae\u04b3"+ - "\7{\2\2\u04af\u04b0\7t\2\2\u04b0\u04b1\7q\2\2\u04b1\u04b3\7t\2\2\u04b2"+ - "\u03d4\3\2\2\2\u04b2\u03d7\3\2\2\2\u04b2\u03da\3\2\2\2\u04b2\u03dd\3\2"+ - "\2\2\u04b2\u03e0\3\2\2\2\u04b2\u03e3\3\2\2\2\u04b2\u03e6\3\2\2\2\u04b2"+ - "\u03e9\3\2\2\2\u04b2\u03ec\3\2\2\2\u04b2\u03ef\3\2\2\2\u04b2\u03f2\3\2"+ - "\2\2\u04b2\u03f5\3\2\2\2\u04b2\u03f8\3\2\2\2\u04b2\u03fb\3\2\2\2\u04b2"+ - "\u03fe\3\2\2\2\u04b2\u0401\3\2\2\2\u04b2\u0404\3\2\2\2\u04b2\u0407\3\2"+ - "\2\2\u04b2\u040a\3\2\2\2\u04b2\u040d\3\2\2\2\u04b2\u0410\3\2\2\2\u04b2"+ - "\u0413\3\2\2\2\u04b2\u0416\3\2\2\2\u04b2\u0419\3\2\2\2\u04b2\u041c\3\2"+ - "\2\2\u04b2\u041f\3\2\2\2\u04b2\u0422\3\2\2\2\u04b2\u0425\3\2\2\2\u04b2"+ - "\u0428\3\2\2\2\u04b2\u042b\3\2\2\2\u04b2\u042e\3\2\2\2\u04b2\u0431\3\2"+ - "\2\2\u04b2\u0434\3\2\2\2\u04b2\u0437\3\2\2\2\u04b2\u043a\3\2\2\2\u04b2"+ - "\u043d\3\2\2\2\u04b2\u0440\3\2\2\2\u04b2\u0443\3\2\2\2\u04b2\u0446\3\2"+ - "\2\2\u04b2\u0449\3\2\2\2\u04b2\u044c\3\2\2\2\u04b2\u044f\3\2\2\2\u04b2"+ - "\u0452\3\2\2\2\u04b2\u0455\3\2\2\2\u04b2\u0458\3\2\2\2\u04b2\u045b\3\2"+ - "\2\2\u04b2\u045e\3\2\2\2\u04b2\u0461\3\2\2\2\u04b2\u0464\3\2\2\2\u04b2"+ - "\u0467\3\2\2\2\u04b2\u046a\3\2\2\2\u04b2\u046d\3\2\2\2\u04b2\u0470\3\2"+ - "\2\2\u04b2\u0473\3\2\2\2\u04b2\u0476\3\2\2\2\u04b2\u0479\3\2\2\2\u04b2"+ - "\u047c\3\2\2\2\u04b2\u047f\3\2\2\2\u04b2\u0482\3\2\2\2\u04b2\u0485\3\2"+ - "\2\2\u04b2\u0488\3\2\2\2\u04b2\u048b\3\2\2\2\u04b2\u048e\3\2\2\2\u04b2"+ - "\u0491\3\2\2\2\u04b2\u0494\3\2\2\2\u04b2\u0497\3\2\2\2\u04b2\u049a\3\2"+ - "\2\2\u04b2\u049d\3\2\2\2\u04b2\u04a0\3\2\2\2\u04b2\u04a3\3\2\2\2\u04b2"+ - "\u04a6\3\2\2\2\u04b2\u04a9\3\2\2\2\u04b2\u04ac\3\2\2\2\u04b2\u04af\3\2"+ - "\2\2\u04b3\u00d7\3\2\2\2\u04b4\u04b5\7%\2\2\u04b5\u00d9\3\2\2\2\u04b6"+ - "\u04b7\7<\2\2\u04b7\u00db\3\2\2\2\u04b8\u04b9\7.\2\2\u04b9\u00dd\3\2\2"+ - "\2\u04ba\u04bb\7*\2\2\u04bb\u00df\3\2\2\2\u04bc\u04bd\7+\2\2\u04bd\u00e1"+ - "\3\2\2\2\u04be\u04bf\7]\2\2\u04bf\u00e3\3\2\2\2\u04c0\u04c1\7_\2\2\u04c1"+ - "\u00e5\3\2\2\2\u04c2\u04c3\7\60\2\2\u04c3\u00e7\3\2\2\2\u04c4\u04c5\7"+ - ">\2\2\u04c5\u04c6\7>\2\2\u04c6\u00e9\3\2\2\2\u04c7\u04c8\7@\2\2\u04c8"+ - "\u04c9\7@\2\2\u04c9\u00eb\3\2\2\2\u04ca\u04cb\7-\2\2\u04cb\u00ed\3\2\2"+ - "\2\u04cc\u04cd\7/\2\2\u04cd\u00ef\3\2\2\2\u04ce\u04cf\7>\2\2\u04cf\u00f1"+ - "\3\2\2\2\u04d0\u04d1\7@\2\2\u04d1\u00f3\3\2\2\2\u04d2\u04d3\7,\2\2\u04d3"+ - "\u00f5\3\2\2\2\u04d4\u04d5\7\61\2\2\u04d5\u00f7\3\2\2\2\u04d6\u04d7\7"+ - "}\2\2\u04d7\u04d8\b|\t\2\u04d8\u00f9\3\2\2\2\u04d9\u04da\7\177\2\2\u04da"+ - "\u04db\b}\n\2\u04db\u00fb\3\2\2\2\u04dc\u04df\5\u00fe\177\2\u04dd\u04df"+ - "\5\u0106\u0083\2\u04de\u04dc\3\2\2\2\u04de\u04dd\3\2\2\2\u04df\u00fd\3"+ - "\2\2\2\u04e0\u04e4\5\u0100\u0080\2\u04e1\u04e4\5\u0102\u0081\2\u04e2\u04e4"+ - "\5\u0104\u0082\2\u04e3\u04e0\3\2\2\2\u04e3\u04e1\3\2\2\2\u04e3\u04e2\3"+ - "\2\2\2\u04e4\u00ff\3\2\2\2\u04e5\u04e9\7\'\2\2\u04e6\u04e8\5\u010e\u0087"+ - "\2\u04e7\u04e6\3\2\2\2\u04e8\u04eb\3\2\2\2\u04e9\u04e7\3\2\2\2\u04e9\u04ea"+ - "\3\2\2\2\u04ea\u04ec\3\2\2\2\u04eb\u04e9\3\2\2\2\u04ec\u04ee\7\60\2\2"+ - "\u04ed\u04ef\5\u010e\u0087\2\u04ee\u04ed\3\2\2\2\u04ef\u04f0\3\2\2\2\u04f0"+ - "\u04ee\3\2\2\2\u04f0\u04f1\3\2\2\2\u04f1\u0101\3\2\2\2\u04f2\u04f4\5\u0110"+ - "\u0088\2\u04f3\u04f2\3\2\2\2\u04f4\u04f7\3\2\2\2\u04f5\u04f3\3\2\2\2\u04f5"+ - "\u04f6\3\2\2\2\u04f6\u04f8\3\2\2\2\u04f7\u04f5\3\2\2\2\u04f8\u04fa\7\60"+ - "\2\2\u04f9\u04fb\5\u0110\u0088\2\u04fa\u04f9\3\2\2\2\u04fb\u04fc\3\2\2"+ - "\2\u04fc\u04fa\3\2\2\2\u04fc\u04fd\3\2\2\2\u04fd\u0103\3\2\2\2\u04fe\u0502"+ - "\7&\2\2\u04ff\u0501\5\u0112\u0089\2\u0500\u04ff\3\2\2\2\u0501\u0504\3"+ - "\2\2\2\u0502\u0500\3\2\2\2\u0502\u0503\3\2\2\2\u0503\u0505\3\2\2\2\u0504"+ - "\u0502\3\2\2\2\u0505\u0507\7\60\2\2\u0506\u0508\5\u0112\u0089\2\u0507"+ - "\u0506\3\2\2\2\u0508\u0509\3\2\2\2\u0509\u0507\3\2\2\2\u0509\u050a\3\2"+ - "\2\2\u050a\u0105\3\2\2\2\u050b\u050f\5\u010a\u0085\2\u050c\u050f\5\u010c"+ - "\u0086\2\u050d\u050f\5\u0108\u0084\2\u050e\u050b\3\2\2\2\u050e\u050c\3"+ - "\2\2\2\u050e\u050d\3\2\2\2\u050f\u0107\3\2\2\2\u0510\u0512\7\'\2\2\u0511"+ - "\u0513\5\u010e\u0087\2\u0512\u0511\3\2\2\2\u0513\u0514\3\2\2\2\u0514\u0512"+ - "\3\2\2\2\u0514\u0515\3\2\2\2\u0515\u0109\3\2\2\2\u0516\u0518\5\u0110\u0088"+ - "\2\u0517\u0516\3\2\2\2\u0518\u0519\3\2\2\2\u0519\u0517\3\2\2\2\u0519\u051a"+ - "\3\2\2\2\u051a\u010b\3\2\2\2\u051b\u051d\7&\2\2\u051c\u051e\5\u0112\u0089"+ - "\2\u051d\u051c\3\2\2\2\u051e\u051f\3\2\2\2\u051f\u051d\3\2\2\2\u051f\u0520"+ - "\3\2\2\2\u0520\u010d\3\2\2\2\u0521\u0522\t\13\2\2\u0522\u010f\3\2\2\2"+ - "\u0523\u0524\t\f\2\2\u0524\u0111\3\2\2\2\u0525\u0526\t\r\2\2\u0526\u0113"+ - "\3\2\2\2\u0527\u052b\7)\2\2\u0528\u0529\7^\2\2\u0529\u052c\t\6\2\2\u052a"+ - "\u052c\n\7\2\2\u052b\u0528\3\2\2\2\u052b\u052a\3\2\2\2\u052c\u052d\3\2"+ - "\2\2\u052d\u052e\7)\2\2\u052e\u0115\3\2\2\2\u052f\u0531\5\u0118\u008c"+ - "\2\u0530\u0532\t\22\2\2\u0531\u0530\3\2\2\2\u0532\u0533\3\2\2\2\u0533"+ - "\u0531\3\2\2\2\u0533\u0534\3\2\2\2\u0534\u0117\3\2\2\2\u0535\u0539\7#"+ - "\2\2\u0536\u0538\5\u011e\u008f\2\u0537\u0536\3\2\2\2\u0538\u053b\3\2\2"+ - "\2\u0539\u0537\3\2\2\2\u0539\u053a\3\2\2\2\u053a\u0119\3\2\2\2\u053b\u0539"+ - "\3\2\2\2\u053c\u0540\5\u011c\u008e\2\u053d\u053f\5\u011e\u008f\2\u053e"+ - "\u053d\3\2\2\2\u053f\u0542\3\2\2\2\u0540\u053e\3\2\2\2\u0540\u0541\3\2"+ - "\2\2\u0541\u011b\3\2\2\2\u0542\u0540\3\2\2\2\u0543\u0544\t\16\2\2\u0544"+ - "\u011d\3\2\2\2\u0545\u0546\t\17\2\2\u0546\u011f\3\2\2\2\u0547\u0549\t"+ - "\20\2\2\u0548\u0547\3\2\2\2\u0549\u054a\3\2\2\2\u054a\u0548\3\2\2\2\u054a"+ - "\u054b\3\2\2\2\u054b\u054c\3\2\2\2\u054c\u054d\b\u0090\7\2\u054d\u0121"+ - "\3\2\2\2\u054e\u054f\7\61\2\2\u054f\u0550\7\61\2\2\u0550\u0554\3\2\2\2"+ - "\u0551\u0553\n\21\2\2\u0552\u0551\3\2\2\2\u0553\u0556\3\2\2\2\u0554\u0552"+ - "\3\2\2\2\u0554\u0555\3\2\2\2\u0555\u0557\3\2\2\2\u0556\u0554\3\2\2\2\u0557"+ - "\u0558\b\u0091\b\2\u0558\u0123\3\2\2\2\u0559\u055a\7\61\2\2\u055a\u055b"+ - "\7,\2\2\u055b\u055f\3\2\2\2\u055c\u055e\13\2\2\2\u055d\u055c\3\2\2\2\u055e"+ - "\u0561\3\2\2\2\u055f\u0560\3\2\2\2\u055f\u055d\3\2\2\2\u0560\u0562\3\2"+ - "\2\2\u0561\u055f\3\2\2\2\u0562\u0563\7,\2\2\u0563\u0564\7\61\2\2\u0564"+ - "\u0565\3\2\2\2\u0565\u0566\b\u0092\b\2\u0566\u0125\3\2\2\2;\2\3\u018f"+ - "\u0239\u02d6\u02fd\u0308\u0310\u031a\u031c\u0321\u0325\u0327\u032a\u0332"+ - "\u0338\u033d\u0344\u0349\u0350\u0355\u035c\u0363\u0368\u036f\u0374\u0379"+ - "\u0380\u0386\u0388\u038d\u0394\u0399\u03a5\u03b1\u03bb\u03c6\u04b2\u04de"+ - "\u04e3\u04e9\u04f0\u04f5\u04fc\u0502\u0509\u050e\u0514\u0519\u051f\u052b"+ - "\u0533\u0539\u0540\u054a\u0554\u055f\13\3\2\2\3&\3\3D\4\3V\5\3d\6\2\3"+ - "\2\2\4\2\3|\7\3}\b"; + "\3\2\2\2\3\u010e\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\u0122\3\2\2\2\3\u0124\3\2\2\2\3\u0126\3\2\2\2\4\u0128"+ + "\3\2\2\2\6\u012b\3\2\2\2\b\u012d\3\2\2\2\n\u012f\3\2\2\2\f\u0131\3\2\2"+ + "\2\16\u0133\3\2\2\2\20\u0135\3\2\2\2\22\u0137\3\2\2\2\24\u0139\3\2\2\2"+ + "\26\u013b\3\2\2\2\30\u013e\3\2\2\2\32\u0140\3\2\2\2\34\u0142\3\2\2\2\36"+ + "\u0145\3\2\2\2 \u0147\3\2\2\2\"\u0149\3\2\2\2$\u014b\3\2\2\2&\u014d\3"+ + "\2\2\2(\u014f\3\2\2\2*\u0152\3\2\2\2,\u0155\3\2\2\2.\u0157\3\2\2\2\60"+ + "\u0159\3\2\2\2\62\u015b\3\2\2\2\64\u015d\3\2\2\2\66\u0160\3\2\2\28\u0163"+ + "\3\2\2\2:\u0166\3\2\2\2<\u0169\3\2\2\2>\u016b\3\2\2\2@\u016e\3\2\2\2B"+ + "\u0171\3\2\2\2D\u0173\3\2\2\2F\u0176\3\2\2\2H\u0179\3\2\2\2J\u0191\3\2"+ + "\2\2L\u0193\3\2\2\2N\u019c\3\2\2\2P\u01a4\3\2\2\2R\u01ac\3\2\2\2T\u01b4"+ + "\3\2\2\2V\u01b7\3\2\2\2X\u01be\3\2\2\2Z\u01c3\3\2\2\2\\\u01c7\3\2\2\2"+ + "^\u01d0\3\2\2\2`\u01d9\3\2\2\2b\u01e2\3\2\2\2d\u01e8\3\2\2\2f\u01ef\3"+ + "\2\2\2h\u01f6\3\2\2\2j\u01fc\3\2\2\2l\u0205\3\2\2\2n\u020c\3\2\2\2p\u0213"+ + "\3\2\2\2r\u021c\3\2\2\2t\u0226\3\2\2\2v\u0242\3\2\2\2x\u0244\3\2\2\2z"+ + "\u0247\3\2\2\2|\u024c\3\2\2\2~\u0252\3\2\2\2\u0080\u0255\3\2\2\2\u0082"+ + "\u0259\3\2\2\2\u0084\u0260\3\2\2\2\u0086\u0267\3\2\2\2\u0088\u026d\3\2"+ + "\2\2\u008a\u0276\3\2\2\2\u008c\u027c\3\2\2\2\u008e\u0284\3\2\2\2\u0090"+ + "\u0289\3\2\2\2\u0092\u0290\3\2\2\2\u0094\u0295\3\2\2\2\u0096\u029c\3\2"+ + "\2\2\u0098\u02a3\3\2\2\2\u009a\u02ab\3\2\2\2\u009c\u02b4\3\2\2\2\u009e"+ + "\u02b9\3\2\2\2\u00a0\u02c2\3\2\2\2\u00a2\u02c8\3\2\2\2\u00a4\u02cf\3\2"+ + "\2\2\u00a6\u02df\3\2\2\2\u00a8\u0306\3\2\2\2\u00aa\u0311\3\2\2\2\u00ac"+ + "\u0313\3\2\2\2\u00ae\u031f\3\2\2\2\u00b0\u0337\3\2\2\2\u00b2\u0341\3\2"+ + "\2\2\u00b4\u0346\3\2\2\2\u00b6\u034d\3\2\2\2\u00b8\u035e\3\2\2\2\u00ba"+ + "\u036c\3\2\2\2\u00bc\u037d\3\2\2\2\u00be\u0391\3\2\2\2\u00c0\u0394\3\2"+ + "\2\2\u00c2\u039d\3\2\2\2\u00c4\u03a4\3\2\2\2\u00c6\u03a6\3\2\2\2\u00c8"+ + "\u03a8\3\2\2\2\u00ca\u03aa\3\2\2\2\u00cc\u03b3\3\2\2\2\u00ce\u03b5\3\2"+ + "\2\2\u00d0\u03b8\3\2\2\2\u00d2\u03be\3\2\2\2\u00d4\u03c9\3\2\2\2\u00d6"+ + "\u03d7\3\2\2\2\u00d8\u04bb\3\2\2\2\u00da\u04bd\3\2\2\2\u00dc\u04bf\3\2"+ + "\2\2\u00de\u04c1\3\2\2\2\u00e0\u04c3\3\2\2\2\u00e2\u04c5\3\2\2\2\u00e4"+ + "\u04c7\3\2\2\2\u00e6\u04c9\3\2\2\2\u00e8\u04cb\3\2\2\2\u00ea\u04cd\3\2"+ + "\2\2\u00ec\u04d0\3\2\2\2\u00ee\u04d3\3\2\2\2\u00f0\u04d5\3\2\2\2\u00f2"+ + "\u04d7\3\2\2\2\u00f4\u04d9\3\2\2\2\u00f6\u04db\3\2\2\2\u00f8\u04dd\3\2"+ + "\2\2\u00fa\u04df\3\2\2\2\u00fc\u04e2\3\2\2\2\u00fe\u04e7\3\2\2\2\u0100"+ + "\u04ec\3\2\2\2\u0102\u04ee\3\2\2\2\u0104\u04fe\3\2\2\2\u0106\u0507\3\2"+ + "\2\2\u0108\u0517\3\2\2\2\u010a\u0519\3\2\2\2\u010c\u0520\3\2\2\2\u010e"+ + "\u0524\3\2\2\2\u0110\u052a\3\2\2\2\u0112\u052c\3\2\2\2\u0114\u052e\3\2"+ + "\2\2\u0116\u0530\3\2\2\2\u0118\u0538\3\2\2\2\u011a\u053e\3\2\2\2\u011c"+ + "\u0545\3\2\2\2\u011e\u054c\3\2\2\2\u0120\u054e\3\2\2\2\u0122\u0551\3\2"+ + "\2\2\u0124\u0557\3\2\2\2\u0126\u0562\3\2\2\2\u0128\u0129\7}\2\2\u0129"+ + "\u012a\b\2\2\2\u012a\5\3\2\2\2\u012b\u012c\7\177\2\2\u012c\7\3\2\2\2\u012d"+ + "\u012e\7]\2\2\u012e\t\3\2\2\2\u012f\u0130\7_\2\2\u0130\13\3\2\2\2\u0131"+ + "\u0132\7*\2\2\u0132\r\3\2\2\2\u0133\u0134\7+\2\2\u0134\17\3\2\2\2\u0135"+ + "\u0136\7=\2\2\u0136\21\3\2\2\2\u0137\u0138\7<\2\2\u0138\23\3\2\2\2\u0139"+ + "\u013a\7.\2\2\u013a\25\3\2\2\2\u013b\u013c\7\60\2\2\u013c\u013d\7\60\2"+ + "\2\u013d\27\3\2\2\2\u013e\u013f\7A\2\2\u013f\31\3\2\2\2\u0140\u0141\7"+ + "\60\2\2\u0141\33\3\2\2\2\u0142\u0143\7/\2\2\u0143\u0144\7@\2\2\u0144\35"+ + "\3\2\2\2\u0145\u0146\7-\2\2\u0146\37\3\2\2\2\u0147\u0148\7/\2\2\u0148"+ + "!\3\2\2\2\u0149\u014a\7,\2\2\u014a#\3\2\2\2\u014b\u014c\7\61\2\2\u014c"+ + "%\3\2\2\2\u014d\u014e\7\'\2\2\u014e\'\3\2\2\2\u014f\u0150\7-\2\2\u0150"+ + "\u0151\7-\2\2\u0151)\3\2\2\2\u0152\u0153\7/\2\2\u0153\u0154\7/\2\2\u0154"+ + "+\3\2\2\2\u0155\u0156\7(\2\2\u0156-\3\2\2\2\u0157\u0158\7\u0080\2\2\u0158"+ + "/\3\2\2\2\u0159\u015a\7`\2\2\u015a\61\3\2\2\2\u015b\u015c\7~\2\2\u015c"+ + "\63\3\2\2\2\u015d\u015e\7>\2\2\u015e\u015f\7>\2\2\u015f\65\3\2\2\2\u0160"+ + "\u0161\7@\2\2\u0161\u0162\7@\2\2\u0162\67\3\2\2\2\u0163\u0164\7?\2\2\u0164"+ + "\u0165\7?\2\2\u01659\3\2\2\2\u0166\u0167\7#\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>\2\2\u016c\u016d"+ + "\7?\2\2\u016d?\3\2\2\2\u016e\u016f\7@\2\2\u016f\u0170\7?\2\2\u0170A\3"+ + "\2\2\2\u0171\u0172\7@\2\2\u0172C\3\2\2\2\u0173\u0174\7(\2\2\u0174\u0175"+ + "\7(\2\2\u0175E\3\2\2\2\u0176\u0177\7~\2\2\u0177\u0178\7~\2\2\u0178G\3"+ + "\2\2\2\u0179\u017a\7?\2\2\u017aI\3\2\2\2\u017b\u017c\7-\2\2\u017c\u0192"+ + "\7?\2\2\u017d\u017e\7/\2\2\u017e\u0192\7?\2\2\u017f\u0180\7,\2\2\u0180"+ + "\u0192\7?\2\2\u0181\u0182\7\61\2\2\u0182\u0192\7?\2\2\u0183\u0184\7\'"+ + "\2\2\u0184\u0192\7?\2\2\u0185\u0186\7>\2\2\u0186\u0187\7>\2\2\u0187\u0192"+ + "\7?\2\2\u0188\u0189\7@\2\2\u0189\u018a\7@\2\2\u018a\u0192\7?\2\2\u018b"+ + "\u018c\7(\2\2\u018c\u0192\7?\2\2\u018d\u018e\7~\2\2\u018e\u0192\7?\2\2"+ + "\u018f\u0190\7`\2\2\u0190\u0192\7?\2\2\u0191\u017b\3\2\2\2\u0191\u017d"+ + "\3\2\2\2\u0191\u017f\3\2\2\2\u0191\u0181\3\2\2\2\u0191\u0183\3\2\2\2\u0191"+ + "\u0185\3\2\2\2\u0191\u0188\3\2\2\2\u0191\u018b\3\2\2\2\u0191\u018d\3\2"+ + "\2\2\u0191\u018f\3\2\2\2\u0192K\3\2\2\2\u0193\u0194\7k\2\2\u0194\u0195"+ + "\7o\2\2\u0195\u0196\7r\2\2\u0196\u0197\7q\2\2\u0197\u0198\7t\2\2\u0198"+ + "\u0199\7v\2\2\u0199\u019a\3\2\2\2\u019a\u019b\b&\3\2\u019bM\3\2\2\2\u019c"+ + "\u019d\7v\2\2\u019d\u019e\7{\2\2\u019e\u019f\7r\2\2\u019f\u01a0\7g\2\2"+ + "\u01a0\u01a1\7f\2\2\u01a1\u01a2\7g\2\2\u01a2\u01a3\7h\2\2\u01a3O\3\2\2"+ + "\2\u01a4\u01a5\7%\2\2\u01a5\u01a6\7r\2\2\u01a6\u01a7\7t\2\2\u01a7\u01a8"+ + "\7c\2\2\u01a8\u01a9\7i\2\2\u01a9\u01aa\7o\2\2\u01aa\u01ab\7c\2\2\u01ab"+ + "Q\3\2\2\2\u01ac\u01ad\7t\2\2\u01ad\u01ae\7g\2\2\u01ae\u01af\7u\2\2\u01af"+ + "\u01b0\7g\2\2\u01b0\u01b1\7t\2\2\u01b1\u01b2\7x\2\2\u01b2\u01b3\7g\2\2"+ + "\u01b3S\3\2\2\2\u01b4\u01b5\7r\2\2\u01b5\u01b6\7e\2\2\u01b6U\3\2\2\2\u01b7"+ + "\u01b8\7v\2\2\u01b8\u01b9\7c\2\2\u01b9\u01ba\7t\2\2\u01ba\u01bb\7i\2\2"+ + "\u01bb\u01bc\7g\2\2\u01bc\u01bd\7v\2\2\u01bdW\3\2\2\2\u01be\u01bf\7n\2"+ + "\2\u01bf\u01c0\7k\2\2\u01c0\u01c1\7p\2\2\u01c1\u01c2\7m\2\2\u01c2Y\3\2"+ + "\2\2\u01c3\u01c4\7e\2\2\u01c4\u01c5\7r\2\2\u01c5\u01c6\7w\2\2\u01c6[\3"+ + "\2\2\2\u01c7\u01c8\7e\2\2\u01c8\u01c9\7q\2\2\u01c9\u01ca\7f\2\2\u01ca"+ + "\u01cb\7g\2\2\u01cb\u01cc\7a\2\2\u01cc\u01cd\7u\2\2\u01cd\u01ce\7g\2\2"+ + "\u01ce\u01cf\7i\2\2\u01cf]\3\2\2\2\u01d0\u01d1\7f\2\2\u01d1\u01d2\7c\2"+ + "\2\u01d2\u01d3\7v\2\2\u01d3\u01d4\7c\2\2\u01d4\u01d5\7a\2\2\u01d5\u01d6"+ + "\7u\2\2\u01d6\u01d7\7g\2\2\u01d7\u01d8\7i\2\2\u01d8_\3\2\2\2\u01d9\u01da"+ + "\7g\2\2\u01da\u01db\7p\2\2\u01db\u01dc\7e\2\2\u01dc\u01dd\7q\2\2\u01dd"+ + "\u01de\7f\2\2\u01de\u01df\7k\2\2\u01df\u01e0\7p\2\2\u01e0\u01e1\7i\2\2"+ + "\u01e1a\3\2\2\2\u01e2\u01e3\7e\2\2\u01e3\u01e4\7q\2\2\u01e4\u01e5\7p\2"+ + "\2\u01e5\u01e6\7u\2\2\u01e6\u01e7\7v\2\2\u01e7c\3\2\2\2\u01e8\u01e9\7"+ + "g\2\2\u01e9\u01ea\7z\2\2\u01ea\u01eb\7v\2\2\u01eb\u01ec\7g\2\2\u01ec\u01ed"+ + "\7t\2\2\u01ed\u01ee\7p\2\2\u01eee\3\2\2\2\u01ef\u01f0\7g\2\2\u01f0\u01f1"+ + "\7z\2\2\u01f1\u01f2\7r\2\2\u01f2\u01f3\7q\2\2\u01f3\u01f4\7t\2\2\u01f4"+ + "\u01f5\7v\2\2\u01f5g\3\2\2\2\u01f6\u01f7\7c\2\2\u01f7\u01f8\7n\2\2\u01f8"+ + "\u01f9\7k\2\2\u01f9\u01fa\7i\2\2\u01fa\u01fb\7p\2\2\u01fbi\3\2\2\2\u01fc"+ + "\u01fd\7t\2\2\u01fd\u01fe\7g\2\2\u01fe\u01ff\7i\2\2\u01ff\u0200\7k\2\2"+ + "\u0200\u0201\7u\2\2\u0201\u0202\7v\2\2\u0202\u0203\7g\2\2\u0203\u0204"+ + "\7t\2\2\u0204k\3\2\2\2\u0205\u0206\7o\2\2\u0206\u0207\7g\2\2\u0207\u0208"+ + "\7o\2\2\u0208\u0209\7q\2\2\u0209\u020a\7t\2\2\u020a\u020b\7{\2\2\u020b"+ + "m\3\2\2\2\u020c\u020d\7k\2\2\u020d\u020e\7p\2\2\u020e\u020f\7n\2\2\u020f"+ + "\u0210\7k\2\2\u0210\u0211\7p\2\2\u0211\u0212\7g\2\2\u0212o\3\2\2\2\u0213"+ + "\u0214\7x\2\2\u0214\u0215\7q\2\2\u0215\u0216\7n\2\2\u0216\u0217\7c\2\2"+ + "\u0217\u0218\7v\2\2\u0218\u0219\7k\2\2\u0219\u021a\7n\2\2\u021a\u021b"+ + "\7g\2\2\u021bq\3\2\2\2\u021c\u021d\7k\2\2\u021d\u021e\7p\2\2\u021e\u021f"+ + "\7v\2\2\u021f\u0220\7g\2\2\u0220\u0221\7t\2\2\u0221\u0222\7t\2\2\u0222"+ + "\u0223\7w\2\2\u0223\u0224\7r\2\2\u0224\u0225\7v\2\2\u0225s\3\2\2\2\u0226"+ + "\u0227\7e\2\2\u0227\u0228\7c\2\2\u0228\u0229\7n\2\2\u0229\u022a\7n\2\2"+ + "\u022a\u022b\7k\2\2\u022b\u022c\7p\2\2\u022c\u022d\7i\2\2\u022du\3\2\2"+ + "\2\u022e\u022f\7a\2\2\u022f\u0230\7a\2\2\u0230\u0231\7u\2\2\u0231\u0232"+ + "\7v\2\2\u0232\u0233\7c\2\2\u0233\u0234\7e\2\2\u0234\u0235\7m\2\2\u0235"+ + "\u0236\7e\2\2\u0236\u0237\7c\2\2\u0237\u0238\7n\2\2\u0238\u0243\7n\2\2"+ + "\u0239\u023a\7a\2\2\u023a\u023b\7a\2\2\u023b\u023c\7r\2\2\u023c\u023d"+ + "\7j\2\2\u023d\u023e\7k\2\2\u023e\u023f\7e\2\2\u023f\u0240\7c\2\2\u0240"+ + "\u0241\7n\2\2\u0241\u0243\7n\2\2\u0242\u022e\3\2\2\2\u0242\u0239\3\2\2"+ + "\2\u0243w\3\2\2\2\u0244\u0245\7k\2\2\u0245\u0246\7h\2\2\u0246y\3\2\2\2"+ + "\u0247\u0248\7g\2\2\u0248\u0249\7n\2\2\u0249\u024a\7u\2\2\u024a\u024b"+ + "\7g\2\2\u024b{\3\2\2\2\u024c\u024d\7y\2\2\u024d\u024e\7j\2\2\u024e\u024f"+ + "\7k\2\2\u024f\u0250\7n\2\2\u0250\u0251\7g\2\2\u0251}\3\2\2\2\u0252\u0253"+ + "\7f\2\2\u0253\u0254\7q\2\2\u0254\177\3\2\2\2\u0255\u0256\7h\2\2\u0256"+ + "\u0257\7q\2\2\u0257\u0258\7t\2\2\u0258\u0081\3\2\2\2\u0259\u025a\7u\2"+ + "\2\u025a\u025b\7y\2\2\u025b\u025c\7k\2\2\u025c\u025d\7v\2\2\u025d\u025e"+ + "\7e\2\2\u025e\u025f\7j\2\2\u025f\u0083\3\2\2\2\u0260\u0261\7t\2\2\u0261"+ + "\u0262\7g\2\2\u0262\u0263\7v\2\2\u0263\u0264\7w\2\2\u0264\u0265\7t\2\2"+ + "\u0265\u0266\7p\2\2\u0266\u0085\3\2\2\2\u0267\u0268\7d\2\2\u0268\u0269"+ + "\7t\2\2\u0269\u026a\7g\2\2\u026a\u026b\7c\2\2\u026b\u026c\7m\2\2\u026c"+ + "\u0087\3\2\2\2\u026d\u026e\7e\2\2\u026e\u026f\7q\2\2\u026f\u0270\7p\2"+ + "\2\u0270\u0271\7v\2\2\u0271\u0272\7k\2\2\u0272\u0273\7p\2\2\u0273\u0274"+ + "\7w\2\2\u0274\u0275\7g\2\2\u0275\u0089\3\2\2\2\u0276\u0277\7c\2\2\u0277"+ + "\u0278\7u\2\2\u0278\u0279\7o\2\2\u0279\u027a\3\2\2\2\u027a\u027b\bE\4"+ + "\2\u027b\u008b\3\2\2\2\u027c\u027d\7f\2\2\u027d\u027e\7g\2\2\u027e\u027f"+ + "\7h\2\2\u027f\u0280\7c\2\2\u0280\u0281\7w\2\2\u0281\u0282\7n\2\2\u0282"+ + "\u0283\7v\2\2\u0283\u008d\3\2\2\2\u0284\u0285\7e\2\2\u0285\u0286\7c\2"+ + "\2\u0286\u0287\7u\2\2\u0287\u0288\7g\2\2\u0288\u008f\3\2\2\2\u0289\u028a"+ + "\7u\2\2\u028a\u028b\7v\2\2\u028b\u028c\7t\2\2\u028c\u028d\7w\2\2\u028d"+ + "\u028e\7e\2\2\u028e\u028f\7v\2\2\u028f\u0091\3\2\2\2\u0290\u0291\7g\2"+ + "\2\u0291\u0292\7p\2\2\u0292\u0293\7w\2\2\u0293\u0294\7o\2\2\u0294\u0093"+ + "\3\2\2\2\u0295\u0296\7u\2\2\u0296\u0297\7k\2\2\u0297\u0298\7|\2\2\u0298"+ + "\u0299\7g\2\2\u0299\u029a\7q\2\2\u029a\u029b\7h\2\2\u029b\u0095\3\2\2"+ + "\2\u029c\u029d\7v\2\2\u029d\u029e\7{\2\2\u029e\u029f\7r\2\2\u029f\u02a0"+ + "\7g\2\2\u02a0\u02a1\7k\2\2\u02a1\u02a2\7f\2\2\u02a2\u0097\3\2\2\2\u02a3"+ + "\u02a4\7m\2\2\u02a4\u02a5\7k\2\2\u02a5\u02a6\7e\2\2\u02a6\u02a7\7m\2\2"+ + "\u02a7\u02a8\7c\2\2\u02a8\u02a9\7u\2\2\u02a9\u02aa\7o\2\2\u02aa\u0099"+ + "\3\2\2\2\u02ab\u02ac\7t\2\2\u02ac\u02ad\7g\2\2\u02ad\u02ae\7u\2\2\u02ae"+ + "\u02af\7q\2\2\u02af\u02b0\7w\2\2\u02b0\u02b1\7t\2\2\u02b1\u02b2\7e\2\2"+ + "\u02b2\u02b3\7g\2\2\u02b3\u009b\3\2\2\2\u02b4\u02b5\7w\2\2\u02b5\u02b6"+ + "\7u\2\2\u02b6\u02b7\7g\2\2\u02b7\u02b8\7u\2\2\u02b8\u009d\3\2\2\2\u02b9"+ + "\u02ba\7e\2\2\u02ba\u02bb\7n\2\2\u02bb\u02bc\7q\2\2\u02bc\u02bd\7d\2\2"+ + "\u02bd\u02be\7d\2\2\u02be\u02bf\7g\2\2\u02bf\u02c0\7t\2\2\u02c0\u02c1"+ + "\7u\2\2\u02c1\u009f\3\2\2\2\u02c2\u02c3\7d\2\2\u02c3\u02c4\7{\2\2\u02c4"+ + "\u02c5\7v\2\2\u02c5\u02c6\7g\2\2\u02c6\u02c7\7u\2\2\u02c7\u00a1\3\2\2"+ + "\2\u02c8\u02c9\7e\2\2\u02c9\u02ca\7{\2\2\u02ca\u02cb\7e\2\2\u02cb\u02cc"+ + "\7n\2\2\u02cc\u02cd\7g\2\2\u02cd\u02ce\7u\2\2\u02ce\u00a3\3\2\2\2\u02cf"+ + "\u02d0\7#\2\2\u02d0\u00a5\3\2\2\2\u02d1\u02d2\7u\2\2\u02d2\u02d3\7k\2"+ + "\2\u02d3\u02d4\7i\2\2\u02d4\u02d5\7p\2\2\u02d5\u02d6\7g\2\2\u02d6\u02e0"+ + "\7f\2\2\u02d7\u02d8\7w\2\2\u02d8\u02d9\7p\2\2\u02d9\u02da\7u\2\2\u02da"+ + "\u02db\7k\2\2\u02db\u02dc\7i\2\2\u02dc\u02dd\7p\2\2\u02dd\u02de\7g\2\2"+ + "\u02de\u02e0\7f\2\2\u02df\u02d1\3\2\2\2\u02df\u02d7\3\2\2\2\u02e0\u00a7"+ + "\3\2\2\2\u02e1\u02e2\7d\2\2\u02e2\u02e3\7{\2\2\u02e3\u02e4\7v\2\2\u02e4"+ + "\u0307\7g\2\2\u02e5\u02e6\7y\2\2\u02e6\u02e7\7q\2\2\u02e7\u02e8\7t\2\2"+ + "\u02e8\u0307\7f\2\2\u02e9\u02ea\7f\2\2\u02ea\u02eb\7y\2\2\u02eb\u02ec"+ + "\7q\2\2\u02ec\u02ed\7t\2\2\u02ed\u0307\7f\2\2\u02ee\u02ef\7d\2\2\u02ef"+ + "\u02f0\7q\2\2\u02f0\u02f1\7q\2\2\u02f1\u0307\7n\2\2\u02f2\u02f3\7e\2\2"+ + "\u02f3\u02f4\7j\2\2\u02f4\u02f5\7c\2\2\u02f5\u0307\7t\2\2\u02f6\u02f7"+ + "\7u\2\2\u02f7\u02f8\7j\2\2\u02f8\u02f9\7q\2\2\u02f9\u02fa\7t\2\2\u02fa"+ + "\u0307\7v\2\2\u02fb\u02fc\7k\2\2\u02fc\u02fd\7p\2\2\u02fd\u0307\7v\2\2"+ + "\u02fe\u02ff\7n\2\2\u02ff\u0300\7q\2\2\u0300\u0301\7p\2\2\u0301\u0307"+ + "\7i\2\2\u0302\u0303\7x\2\2\u0303\u0304\7q\2\2\u0304\u0305\7k\2\2\u0305"+ + "\u0307\7f\2\2\u0306\u02e1\3\2\2\2\u0306\u02e5\3\2\2\2\u0306\u02e9\3\2"+ + "\2\2\u0306\u02ee\3\2\2\2\u0306\u02f2\3\2\2\2\u0306\u02f6\3\2\2\2\u0306"+ + "\u02fb\3\2\2\2\u0306\u02fe\3\2\2\2\u0306\u0302\3\2\2\2\u0307\u00a9\3\2"+ + "\2\2\u0308\u0309\7v\2\2\u0309\u030a\7t\2\2\u030a\u030b\7w\2\2\u030b\u0312"+ + "\7g\2\2\u030c\u030d\7h\2\2\u030d\u030e\7c\2\2\u030e\u030f\7n\2\2\u030f"+ + "\u0310\7u\2\2\u0310\u0312\7g\2\2\u0311\u0308\3\2\2\2\u0311\u030c\3\2\2"+ + "\2\u0312\u00ab\3\2\2\2\u0313\u0314\7}\2\2\u0314\u0315\7}\2\2\u0315\u0319"+ + "\3\2\2\2\u0316\u0318\13\2\2\2\u0317\u0316\3\2\2\2\u0318\u031b\3\2\2\2"+ + "\u0319\u031a\3\2\2\2\u0319\u0317\3\2\2\2\u031a\u031c\3\2\2\2\u031b\u0319"+ + "\3\2\2\2\u031c\u031d\7\177\2\2\u031d\u031e\7\177\2\2\u031e\u00ad\3\2\2"+ + "\2\u031f\u0325\7$\2\2\u0320\u0321\7^\2\2\u0321\u0324\7$\2\2\u0322\u0324"+ + "\n\2\2\2\u0323\u0320\3\2\2\2\u0323\u0322\3\2\2\2\u0324\u0327\3\2\2\2\u0325"+ + "\u0323\3\2\2\2\u0325\u0326\3\2\2\2\u0326\u0328\3\2\2\2\u0327\u0325\3\2"+ + "\2\2\u0328\u032a\7$\2\2\u0329\u032b\t\3\2\2\u032a\u0329\3\2\2\2\u032a"+ + "\u032b\3\2\2\2\u032b\u0330\3\2\2\2\u032c\u032e\t\4\2\2\u032d\u032f\t\5"+ + "\2\2\u032e\u032d\3\2\2\2\u032e\u032f\3\2\2\2\u032f\u0331\3\2\2\2\u0330"+ + "\u032c\3\2\2\2\u0330\u0331\3\2\2\2\u0331\u0333\3\2\2\2\u0332\u0334\t\3"+ + "\2\2\u0333\u0332\3\2\2\2\u0333\u0334\3\2\2\2\u0334\u0335\3\2\2\2\u0335"+ + "\u0336\bW\5\2\u0336\u00af\3\2\2\2\u0337\u033b\7)\2\2\u0338\u0339\7^\2"+ + "\2\u0339\u033c\t\6\2\2\u033a\u033c\n\7\2\2\u033b\u0338\3\2\2\2\u033b\u033a"+ + "\3\2\2\2\u033c\u033d\3\2\2\2\u033d\u033e\7)\2\2\u033e\u00b1\3\2\2\2\u033f"+ + "\u0342\5\u00b4Z\2\u0340\u0342\5\u00bc^\2\u0341\u033f\3\2\2\2\u0341\u0340"+ + "\3\2\2\2\u0342\u00b3\3\2\2\2\u0343\u0347\5\u00b6[\2\u0344\u0347\5\u00b8"+ + "\\\2\u0345\u0347\5\u00ba]\2\u0346\u0343\3\2\2\2\u0346\u0344\3\2\2\2\u0346"+ + "\u0345\3\2\2\2\u0347\u00b5\3\2\2\2\u0348\u034e\7\'\2\2\u0349\u034a\7\62"+ + "\2\2\u034a\u034e\7d\2\2\u034b\u034c\7\62\2\2\u034c\u034e\7D\2\2\u034d"+ + "\u0348\3\2\2\2\u034d\u0349\3\2\2\2\u034d\u034b\3\2\2\2\u034e\u0352\3\2"+ + "\2\2\u034f\u0351\5\u00c4b\2\u0350\u034f\3\2\2\2\u0351\u0354\3\2\2\2\u0352"+ + "\u0350\3\2\2\2\u0352\u0353\3\2\2\2\u0353\u0355\3\2\2\2\u0354\u0352\3\2"+ + "\2\2\u0355\u0357\7\60\2\2\u0356\u0358\5\u00c4b\2\u0357\u0356\3\2\2\2\u0358"+ + "\u0359\3\2\2\2\u0359\u0357\3\2\2\2\u0359\u035a\3\2\2\2\u035a\u00b7\3\2"+ + "\2\2\u035b\u035d\5\u00c6c\2\u035c\u035b\3\2\2\2\u035d\u0360\3\2\2\2\u035e"+ + "\u035c\3\2\2\2\u035e\u035f\3\2\2\2\u035f\u0361\3\2\2\2\u0360\u035e\3\2"+ + "\2\2\u0361\u0363\7\60\2\2\u0362\u0364\5\u00c6c\2\u0363\u0362\3\2\2\2\u0364"+ + "\u0365\3\2\2\2\u0365\u0363\3\2\2\2\u0365\u0366\3\2\2\2\u0366\u00b9\3\2"+ + "\2\2\u0367\u036d\7&\2\2\u0368\u0369\7\62\2\2\u0369\u036d\7z\2\2\u036a"+ + "\u036b\7\62\2\2\u036b\u036d\7Z\2\2\u036c\u0367\3\2\2\2\u036c\u0368\3\2"+ + "\2\2\u036c\u036a\3\2\2\2\u036d\u0371\3\2\2\2\u036e\u0370\5\u00c8d\2\u036f"+ + "\u036e\3\2\2\2\u0370\u0373\3\2\2\2\u0371\u036f\3\2\2\2\u0371\u0372\3\2"+ + "\2\2\u0372\u0374\3\2\2\2\u0373\u0371\3\2\2\2\u0374\u0376\7\60\2\2\u0375"+ + "\u0377\5\u00c8d\2\u0376\u0375\3\2\2\2\u0377\u0378\3\2\2\2\u0378\u0376"+ + "\3\2\2\2\u0378\u0379\3\2\2\2\u0379\u00bb\3\2\2\2\u037a\u037e\5\u00c0`"+ + "\2\u037b\u037e\5\u00c2a\2\u037c\u037e\5\u00be_\2\u037d\u037a\3\2\2\2\u037d"+ + "\u037b\3\2\2\2\u037d\u037c\3\2\2\2\u037e\u0382\3\2\2\2\u037f\u0380\t\b"+ + "\2\2\u0380\u0383\t\t\2\2\u0381\u0383\7n\2\2\u0382\u037f\3\2\2\2\u0382"+ + "\u0381\3\2\2\2\u0382\u0383\3\2\2\2\u0383\u00bd\3\2\2\2\u0384\u0385\7\62"+ + "\2\2\u0385\u0387\t\n\2\2\u0386\u0388\5\u00c4b\2\u0387\u0386\3\2\2\2\u0388"+ + "\u0389\3\2\2\2\u0389\u0387\3\2\2\2\u0389\u038a\3\2\2\2\u038a\u0392\3\2"+ + "\2\2\u038b\u038d\7\'\2\2\u038c\u038e\5\u00c4b\2\u038d\u038c\3\2\2\2\u038e"+ + "\u038f\3\2\2\2\u038f\u038d\3\2\2\2\u038f\u0390\3\2\2\2\u0390\u0392\3\2"+ + "\2\2\u0391\u0384\3\2\2\2\u0391\u038b\3\2\2\2\u0392\u00bf\3\2\2\2\u0393"+ + "\u0395\5\u00c6c\2\u0394\u0393\3\2\2\2\u0395\u0396\3\2\2\2\u0396\u0394"+ + "\3\2\2\2\u0396\u0397\3\2\2\2\u0397\u00c1\3\2\2\2\u0398\u039e\7&\2\2\u0399"+ + "\u039a\7\62\2\2\u039a\u039e\7z\2\2\u039b\u039c\7\62\2\2\u039c\u039e\7"+ + "Z\2\2\u039d\u0398\3\2\2\2\u039d\u0399\3\2\2\2\u039d\u039b\3\2\2\2\u039e"+ + "\u03a0\3\2\2\2\u039f\u03a1\5\u00c8d\2\u03a0\u039f\3\2\2\2\u03a1\u03a2"+ + "\3\2\2\2\u03a2\u03a0\3\2\2\2\u03a2\u03a3\3\2\2\2\u03a3\u00c3\3\2\2\2\u03a4"+ + "\u03a5\t\13\2\2\u03a5\u00c5\3\2\2\2\u03a6\u03a7\t\f\2\2\u03a7\u00c7\3"+ + "\2\2\2\u03a8\u03a9\t\r\2\2\u03a9\u00c9\3\2\2\2\u03aa\u03ae\5\u00ccf\2"+ + "\u03ab\u03ad\5\u00ceg\2\u03ac\u03ab\3\2\2\2\u03ad\u03b0\3\2\2\2\u03ae"+ + "\u03ac\3\2\2\2\u03ae\u03af\3\2\2\2\u03af\u03b1\3\2\2\2\u03b0\u03ae\3\2"+ + "\2\2\u03b1\u03b2\be\6\2\u03b2\u00cb\3\2\2\2\u03b3\u03b4\t\16\2\2\u03b4"+ + "\u00cd\3\2\2\2\u03b5\u03b6\t\17\2\2\u03b6\u00cf\3\2\2\2\u03b7\u03b9\t"+ + "\20\2\2\u03b8\u03b7\3\2\2\2\u03b9\u03ba\3\2\2\2\u03ba\u03b8\3\2\2\2\u03ba"+ + "\u03bb\3\2\2\2\u03bb\u03bc\3\2\2\2\u03bc\u03bd\bh\7\2\u03bd\u00d1\3\2"+ + "\2\2\u03be\u03bf\7\61\2\2\u03bf\u03c0\7\61\2\2\u03c0\u03c4\3\2\2\2\u03c1"+ + "\u03c3\n\21\2\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"+ + "\u03c8\bi\b\2\u03c8\u00d3\3\2\2\2\u03c9\u03ca\7\61\2\2\u03ca\u03cb\7,"+ + "\2\2\u03cb\u03cf\3\2\2\2\u03cc\u03ce\13\2\2\2\u03cd\u03cc\3\2\2\2\u03ce"+ + "\u03d1\3\2\2\2\u03cf\u03d0\3\2\2\2\u03cf\u03cd\3\2\2\2\u03d0\u03d2\3\2"+ + "\2\2\u03d1\u03cf\3\2\2\2\u03d2\u03d3\7,\2\2\u03d3\u03d4\7\61\2\2\u03d4"+ + "\u03d5\3\2\2\2\u03d5\u03d6\bj\b\2\u03d6\u00d5\3\2\2\2\u03d7\u03d8\7\60"+ + "\2\2\u03d8\u03d9\7d\2\2\u03d9\u03da\7{\2\2\u03da\u03db\7v\2\2\u03db\u03dc"+ + "\7g\2\2\u03dc\u00d7\3\2\2\2\u03dd\u03de\7d\2\2\u03de\u03df\7t\2\2\u03df"+ + "\u04bc\7m\2\2\u03e0\u03e1\7q\2\2\u03e1\u03e2\7t\2\2\u03e2\u04bc\7c\2\2"+ + "\u03e3\u03e4\7m\2\2\u03e4\u03e5\7k\2\2\u03e5\u04bc\7n\2\2\u03e6\u03e7"+ + "\7u\2\2\u03e7\u03e8\7n\2\2\u03e8\u04bc\7q\2\2\u03e9\u03ea\7p\2\2\u03ea"+ + "\u03eb\7q\2\2\u03eb\u04bc\7r\2\2\u03ec\u03ed\7c\2\2\u03ed\u03ee\7u\2\2"+ + "\u03ee\u04bc\7n\2\2\u03ef\u03f0\7r\2\2\u03f0\u03f1\7j\2\2\u03f1\u04bc"+ + "\7r\2\2\u03f2\u03f3\7c\2\2\u03f3\u03f4\7p\2\2\u03f4\u04bc\7e\2\2\u03f5"+ + "\u03f6\7d\2\2\u03f6\u03f7\7r\2\2\u03f7\u04bc\7n\2\2\u03f8\u03f9\7e\2\2"+ + "\u03f9\u03fa\7n\2\2\u03fa\u04bc\7e\2\2\u03fb\u03fc\7l\2\2\u03fc\u03fd"+ + "\7u\2\2\u03fd\u04bc\7t\2\2\u03fe\u03ff\7c\2\2\u03ff\u0400\7p\2\2\u0400"+ + "\u04bc\7f\2\2\u0401\u0402\7t\2\2\u0402\u0403\7n\2\2\u0403\u04bc\7c\2\2"+ + "\u0404\u0405\7d\2\2\u0405\u0406\7k\2\2\u0406\u04bc\7v\2\2\u0407\u0408"+ + "\7t\2\2\u0408\u0409\7q\2\2\u0409\u04bc\7n\2\2\u040a\u040b\7r\2\2\u040b"+ + "\u040c\7n\2\2\u040c\u04bc\7c\2\2\u040d\u040e\7r\2\2\u040e\u040f\7n\2\2"+ + "\u040f\u04bc\7r\2\2\u0410\u0411\7d\2\2\u0411\u0412\7o\2\2\u0412\u04bc"+ + "\7k\2\2\u0413\u0414\7u\2\2\u0414\u0415\7g\2\2\u0415\u04bc\7e\2\2\u0416"+ + "\u0417\7t\2\2\u0417\u0418\7v\2\2\u0418\u04bc\7k\2\2\u0419\u041a\7g\2\2"+ + "\u041a\u041b\7q\2\2\u041b\u04bc\7t\2\2\u041c\u041d\7u\2\2\u041d\u041e"+ + "\7t\2\2\u041e\u04bc\7g\2\2\u041f\u0420\7n\2\2\u0420\u0421\7u\2\2\u0421"+ + "\u04bc\7t\2\2\u0422\u0423\7r\2\2\u0423\u0424\7j\2\2\u0424\u04bc\7c\2\2"+ + "\u0425\u0426\7c\2\2\u0426\u0427\7n\2\2\u0427\u04bc\7t\2\2\u0428\u0429"+ + "\7l\2\2\u0429\u042a\7o\2\2\u042a\u04bc\7r\2\2\u042b\u042c\7d\2\2\u042c"+ + "\u042d\7x\2\2\u042d\u04bc\7e\2\2\u042e\u042f\7e\2\2\u042f\u0430\7n\2\2"+ + "\u0430\u04bc\7k\2\2\u0431\u0432\7t\2\2\u0432\u0433\7v\2\2\u0433\u04bc"+ + "\7u\2\2\u0434\u0435\7c\2\2\u0435\u0436\7f\2\2\u0436\u04bc\7e\2\2\u0437"+ + "\u0438\7t\2\2\u0438\u0439\7t\2\2\u0439\u04bc\7c\2\2\u043a\u043b\7d\2\2"+ + "\u043b\u043c\7x\2\2\u043c\u04bc\7u\2\2\u043d\u043e\7u\2\2\u043e\u043f"+ + "\7g\2\2\u043f\u04bc\7k\2\2\u0440\u0441\7u\2\2\u0441\u0442\7c\2\2\u0442"+ + "\u04bc\7z\2\2\u0443\u0444\7u\2\2\u0444\u0445\7v\2\2\u0445\u04bc\7{\2\2"+ + "\u0446\u0447\7u\2\2\u0447\u0448\7v\2\2\u0448\u04bc\7c\2\2\u0449\u044a"+ + "\7u\2\2\u044a\u044b\7v\2\2\u044b\u04bc\7z\2\2\u044c\u044d\7f\2\2\u044d"+ + "\u044e\7g\2\2\u044e\u04bc\7{\2\2\u044f\u0450\7v\2\2\u0450\u0451\7z\2\2"+ + "\u0451\u04bc\7c\2\2\u0452\u0453\7z\2\2\u0453\u0454\7c\2\2\u0454\u04bc"+ + "\7c\2\2\u0455\u0456\7d\2\2\u0456\u0457\7e\2\2\u0457\u04bc\7e\2\2\u0458"+ + "\u0459\7c\2\2\u0459\u045a\7j\2\2\u045a\u04bc\7z\2\2\u045b\u045c\7v\2\2"+ + "\u045c\u045d\7{\2\2\u045d\u04bc\7c\2\2\u045e\u045f\7v\2\2\u045f\u0460"+ + "\7z\2\2\u0460\u04bc\7u\2\2\u0461\u0462\7v\2\2\u0462\u0463\7c\2\2\u0463"+ + "\u04bc\7u\2\2\u0464\u0465\7u\2\2\u0465\u0466\7j\2\2\u0466\u04bc\7{\2\2"+ + "\u0467\u0468\7u\2\2\u0468\u0469\7j\2\2\u0469\u04bc\7z\2\2\u046a\u046b"+ + "\7n\2\2\u046b\u046c\7f\2\2\u046c\u04bc\7{\2\2\u046d\u046e\7n\2\2\u046e"+ + "\u046f\7f\2\2\u046f\u04bc\7c\2\2\u0470\u0471\7n\2\2\u0471\u0472\7f\2\2"+ + "\u0472\u04bc\7z\2\2\u0473\u0474\7n\2\2\u0474\u0475\7c\2\2\u0475\u04bc"+ + "\7z\2\2\u0476\u0477\7v\2\2\u0477\u0478\7c\2\2\u0478\u04bc\7{\2\2\u0479"+ + "\u047a\7v\2\2\u047a\u047b\7c\2\2\u047b\u04bc\7z\2\2\u047c\u047d\7d\2\2"+ + "\u047d\u047e\7e\2\2\u047e\u04bc\7u\2\2\u047f\u0480\7e\2\2\u0480\u0481"+ + "\7n\2\2\u0481\u04bc\7x\2\2\u0482\u0483\7v\2\2\u0483\u0484\7u\2\2\u0484"+ + "\u04bc\7z\2\2\u0485\u0486\7n\2\2\u0486\u0487\7c\2\2\u0487\u04bc\7u\2\2"+ + "\u0488\u0489\7e\2\2\u0489\u048a\7r\2\2\u048a\u04bc\7{\2\2\u048b\u048c"+ + "\7e\2\2\u048c\u048d\7o\2\2\u048d\u04bc\7r\2\2\u048e\u048f\7e\2\2\u048f"+ + "\u0490\7r\2\2\u0490\u04bc\7z\2\2\u0491\u0492\7f\2\2\u0492\u0493\7e\2\2"+ + "\u0493\u04bc\7r\2\2\u0494\u0495\7f\2\2\u0495\u0496\7g\2\2\u0496\u04bc"+ + "\7e\2\2\u0497\u0498\7k\2\2\u0498\u0499\7p\2\2\u0499\u04bc\7e\2\2\u049a"+ + "\u049b\7c\2\2\u049b\u049c\7z\2\2\u049c\u04bc\7u\2\2\u049d\u049e\7d\2\2"+ + "\u049e\u049f\7p\2\2\u049f\u04bc\7g\2\2\u04a0\u04a1\7e\2\2\u04a1\u04a2"+ + "\7n\2\2\u04a2\u04bc\7f\2\2\u04a3\u04a4\7u\2\2\u04a4\u04a5\7d\2\2\u04a5"+ + "\u04bc\7e\2\2\u04a6\u04a7\7k\2\2\u04a7\u04a8\7u\2\2\u04a8\u04bc\7e\2\2"+ + "\u04a9\u04aa\7k\2\2\u04aa\u04ab\7p\2\2\u04ab\u04bc\7z\2\2\u04ac\u04ad"+ + "\7d\2\2\u04ad\u04ae\7g\2\2\u04ae\u04bc\7s\2\2\u04af\u04b0\7u\2\2\u04b0"+ + "\u04b1\7g\2\2\u04b1\u04bc\7f\2\2\u04b2\u04b3\7f\2\2\u04b3\u04b4\7g\2\2"+ + "\u04b4\u04bc\7z\2\2\u04b5\u04b6\7k\2\2\u04b6\u04b7\7p\2\2\u04b7\u04bc"+ + "\7{\2\2\u04b8\u04b9\7t\2\2\u04b9\u04ba\7q\2\2\u04ba\u04bc\7t\2\2\u04bb"+ + "\u03dd\3\2\2\2\u04bb\u03e0\3\2\2\2\u04bb\u03e3\3\2\2\2\u04bb\u03e6\3\2"+ + "\2\2\u04bb\u03e9\3\2\2\2\u04bb\u03ec\3\2\2\2\u04bb\u03ef\3\2\2\2\u04bb"+ + "\u03f2\3\2\2\2\u04bb\u03f5\3\2\2\2\u04bb\u03f8\3\2\2\2\u04bb\u03fb\3\2"+ + "\2\2\u04bb\u03fe\3\2\2\2\u04bb\u0401\3\2\2\2\u04bb\u0404\3\2\2\2\u04bb"+ + "\u0407\3\2\2\2\u04bb\u040a\3\2\2\2\u04bb\u040d\3\2\2\2\u04bb\u0410\3\2"+ + "\2\2\u04bb\u0413\3\2\2\2\u04bb\u0416\3\2\2\2\u04bb\u0419\3\2\2\2\u04bb"+ + "\u041c\3\2\2\2\u04bb\u041f\3\2\2\2\u04bb\u0422\3\2\2\2\u04bb\u0425\3\2"+ + "\2\2\u04bb\u0428\3\2\2\2\u04bb\u042b\3\2\2\2\u04bb\u042e\3\2\2\2\u04bb"+ + "\u0431\3\2\2\2\u04bb\u0434\3\2\2\2\u04bb\u0437\3\2\2\2\u04bb\u043a\3\2"+ + "\2\2\u04bb\u043d\3\2\2\2\u04bb\u0440\3\2\2\2\u04bb\u0443\3\2\2\2\u04bb"+ + "\u0446\3\2\2\2\u04bb\u0449\3\2\2\2\u04bb\u044c\3\2\2\2\u04bb\u044f\3\2"+ + "\2\2\u04bb\u0452\3\2\2\2\u04bb\u0455\3\2\2\2\u04bb\u0458\3\2\2\2\u04bb"+ + "\u045b\3\2\2\2\u04bb\u045e\3\2\2\2\u04bb\u0461\3\2\2\2\u04bb\u0464\3\2"+ + "\2\2\u04bb\u0467\3\2\2\2\u04bb\u046a\3\2\2\2\u04bb\u046d\3\2\2\2\u04bb"+ + "\u0470\3\2\2\2\u04bb\u0473\3\2\2\2\u04bb\u0476\3\2\2\2\u04bb\u0479\3\2"+ + "\2\2\u04bb\u047c\3\2\2\2\u04bb\u047f\3\2\2\2\u04bb\u0482\3\2\2\2\u04bb"+ + "\u0485\3\2\2\2\u04bb\u0488\3\2\2\2\u04bb\u048b\3\2\2\2\u04bb\u048e\3\2"+ + "\2\2\u04bb\u0491\3\2\2\2\u04bb\u0494\3\2\2\2\u04bb\u0497\3\2\2\2\u04bb"+ + "\u049a\3\2\2\2\u04bb\u049d\3\2\2\2\u04bb\u04a0\3\2\2\2\u04bb\u04a3\3\2"+ + "\2\2\u04bb\u04a6\3\2\2\2\u04bb\u04a9\3\2\2\2\u04bb\u04ac\3\2\2\2\u04bb"+ + "\u04af\3\2\2\2\u04bb\u04b2\3\2\2\2\u04bb\u04b5\3\2\2\2\u04bb\u04b8\3\2"+ + "\2\2\u04bc\u00d9\3\2\2\2\u04bd\u04be\7%\2\2\u04be\u00db\3\2\2\2\u04bf"+ + "\u04c0\7<\2\2\u04c0\u00dd\3\2\2\2\u04c1\u04c2\7.\2\2\u04c2\u00df\3\2\2"+ + "\2\u04c3\u04c4\7*\2\2\u04c4\u00e1\3\2\2\2\u04c5\u04c6\7+\2\2\u04c6\u00e3"+ + "\3\2\2\2\u04c7\u04c8\7]\2\2\u04c8\u00e5\3\2\2\2\u04c9\u04ca\7_\2\2\u04ca"+ + "\u00e7\3\2\2\2\u04cb\u04cc\7\60\2\2\u04cc\u00e9\3\2\2\2\u04cd\u04ce\7"+ + ">\2\2\u04ce\u04cf\7>\2\2\u04cf\u00eb\3\2\2\2\u04d0\u04d1\7@\2\2\u04d1"+ + "\u04d2\7@\2\2\u04d2\u00ed\3\2\2\2\u04d3\u04d4\7-\2\2\u04d4\u00ef\3\2\2"+ + "\2\u04d5\u04d6\7/\2\2\u04d6\u00f1\3\2\2\2\u04d7\u04d8\7>\2\2\u04d8\u00f3"+ + "\3\2\2\2\u04d9\u04da\7@\2\2\u04da\u00f5\3\2\2\2\u04db\u04dc\7,\2\2\u04dc"+ + "\u00f7\3\2\2\2\u04dd\u04de\7\61\2\2\u04de\u00f9\3\2\2\2\u04df\u04e0\7"+ + "}\2\2\u04e0\u04e1\b}\t\2\u04e1\u00fb\3\2\2\2\u04e2\u04e3\7\177\2\2\u04e3"+ + "\u04e4\b~\n\2\u04e4\u00fd\3\2\2\2\u04e5\u04e8\5\u0100\u0080\2\u04e6\u04e8"+ + "\5\u0108\u0084\2\u04e7\u04e5\3\2\2\2\u04e7\u04e6\3\2\2\2\u04e8\u00ff\3"+ + "\2\2\2\u04e9\u04ed\5\u0102\u0081\2\u04ea\u04ed\5\u0104\u0082\2\u04eb\u04ed"+ + "\5\u0106\u0083\2\u04ec\u04e9\3\2\2\2\u04ec\u04ea\3\2\2\2\u04ec\u04eb\3"+ + "\2\2\2\u04ed\u0101\3\2\2\2\u04ee\u04f2\7\'\2\2\u04ef\u04f1\5\u0110\u0088"+ + "\2\u04f0\u04ef\3\2\2\2\u04f1\u04f4\3\2\2\2\u04f2\u04f0\3\2\2\2\u04f2\u04f3"+ + "\3\2\2\2\u04f3\u04f5\3\2\2\2\u04f4\u04f2\3\2\2\2\u04f5\u04f7\7\60\2\2"+ + "\u04f6\u04f8\5\u0110\u0088\2\u04f7\u04f6\3\2\2\2\u04f8\u04f9\3\2\2\2\u04f9"+ + "\u04f7\3\2\2\2\u04f9\u04fa\3\2\2\2\u04fa\u0103\3\2\2\2\u04fb\u04fd\5\u0112"+ + "\u0089\2\u04fc\u04fb\3\2\2\2\u04fd\u0500\3\2\2\2\u04fe\u04fc\3\2\2\2\u04fe"+ + "\u04ff\3\2\2\2\u04ff\u0501\3\2\2\2\u0500\u04fe\3\2\2\2\u0501\u0503\7\60"+ + "\2\2\u0502\u0504\5\u0112\u0089\2\u0503\u0502\3\2\2\2\u0504\u0505\3\2\2"+ + "\2\u0505\u0503\3\2\2\2\u0505\u0506\3\2\2\2\u0506\u0105\3\2\2\2\u0507\u050b"+ + "\7&\2\2\u0508\u050a\5\u0114\u008a\2\u0509\u0508\3\2\2\2\u050a\u050d\3"+ + "\2\2\2\u050b\u0509\3\2\2\2\u050b\u050c\3\2\2\2\u050c\u050e\3\2\2\2\u050d"+ + "\u050b\3\2\2\2\u050e\u0510\7\60\2\2\u050f\u0511\5\u0114\u008a\2\u0510"+ + "\u050f\3\2\2\2\u0511\u0512\3\2\2\2\u0512\u0510\3\2\2\2\u0512\u0513\3\2"+ + "\2\2\u0513\u0107\3\2\2\2\u0514\u0518\5\u010c\u0086\2\u0515\u0518\5\u010e"+ + "\u0087\2\u0516\u0518\5\u010a\u0085\2\u0517\u0514\3\2\2\2\u0517\u0515\3"+ + "\2\2\2\u0517\u0516\3\2\2\2\u0518\u0109\3\2\2\2\u0519\u051b\7\'\2\2\u051a"+ + "\u051c\5\u0110\u0088\2\u051b\u051a\3\2\2\2\u051c\u051d\3\2\2\2\u051d\u051b"+ + "\3\2\2\2\u051d\u051e\3\2\2\2\u051e\u010b\3\2\2\2\u051f\u0521\5\u0112\u0089"+ + "\2\u0520\u051f\3\2\2\2\u0521\u0522\3\2\2\2\u0522\u0520\3\2\2\2\u0522\u0523"+ + "\3\2\2\2\u0523\u010d\3\2\2\2\u0524\u0526\7&\2\2\u0525\u0527\5\u0114\u008a"+ + "\2\u0526\u0525\3\2\2\2\u0527\u0528\3\2\2\2\u0528\u0526\3\2\2\2\u0528\u0529"+ + "\3\2\2\2\u0529\u010f\3\2\2\2\u052a\u052b\t\13\2\2\u052b\u0111\3\2\2\2"+ + "\u052c\u052d\t\f\2\2\u052d\u0113\3\2\2\2\u052e\u052f\t\r\2\2\u052f\u0115"+ + "\3\2\2\2\u0530\u0534\7)\2\2\u0531\u0532\7^\2\2\u0532\u0535\t\6\2\2\u0533"+ + "\u0535\n\7\2\2\u0534\u0531\3\2\2\2\u0534\u0533\3\2\2\2\u0535\u0536\3\2"+ + "\2\2\u0536\u0537\7)\2\2\u0537\u0117\3\2\2\2\u0538\u053a\5\u011a\u008d"+ + "\2\u0539\u053b\t\22\2\2\u053a\u0539\3\2\2\2\u053b\u053c\3\2\2\2\u053c"+ + "\u053a\3\2\2\2\u053c\u053d\3\2\2\2\u053d\u0119\3\2\2\2\u053e\u0542\7#"+ + "\2\2\u053f\u0541\5\u0120\u0090\2\u0540\u053f\3\2\2\2\u0541\u0544\3\2\2"+ + "\2\u0542\u0540\3\2\2\2\u0542\u0543\3\2\2\2\u0543\u011b\3\2\2\2\u0544\u0542"+ + "\3\2\2\2\u0545\u0549\5\u011e\u008f\2\u0546\u0548\5\u0120\u0090\2\u0547"+ + "\u0546\3\2\2\2\u0548\u054b\3\2\2\2\u0549\u0547\3\2\2\2\u0549\u054a\3\2"+ + "\2\2\u054a\u011d\3\2\2\2\u054b\u0549\3\2\2\2\u054c\u054d\t\16\2\2\u054d"+ + "\u011f\3\2\2\2\u054e\u054f\t\17\2\2\u054f\u0121\3\2\2\2\u0550\u0552\t"+ + "\20\2\2\u0551\u0550\3\2\2\2\u0552\u0553\3\2\2\2\u0553\u0551\3\2\2\2\u0553"+ + "\u0554\3\2\2\2\u0554\u0555\3\2\2\2\u0555\u0556\b\u0091\7\2\u0556\u0123"+ + "\3\2\2\2\u0557\u0558\7\61\2\2\u0558\u0559\7\61\2\2\u0559\u055d\3\2\2\2"+ + "\u055a\u055c\n\21\2\2\u055b\u055a\3\2\2\2\u055c\u055f\3\2\2\2\u055d\u055b"+ + "\3\2\2\2\u055d\u055e\3\2\2\2\u055e\u0560\3\2\2\2\u055f\u055d\3\2\2\2\u0560"+ + "\u0561\b\u0092\b\2\u0561\u0125\3\2\2\2\u0562\u0563\7\61\2\2\u0563\u0564"+ + "\7,\2\2\u0564\u0568\3\2\2\2\u0565\u0567\13\2\2\2\u0566\u0565\3\2\2\2\u0567"+ + "\u056a\3\2\2\2\u0568\u0569\3\2\2\2\u0568\u0566\3\2\2\2\u0569\u056b\3\2"+ + "\2\2\u056a\u0568\3\2\2\2\u056b\u056c\7,\2\2\u056c\u056d\7\61\2\2\u056d"+ + "\u056e\3\2\2\2\u056e\u056f\b\u0093\b\2\u056f\u0127\3\2\2\2;\2\3\u0191"+ + "\u0242\u02df\u0306\u0311\u0319\u0323\u0325\u032a\u032e\u0330\u0333\u033b"+ + "\u0341\u0346\u034d\u0352\u0359\u035e\u0365\u036c\u0371\u0378\u037d\u0382"+ + "\u0389\u038f\u0391\u0396\u039d\u03a2\u03ae\u03ba\u03c4\u03cf\u04bb\u04e7"+ + "\u04ec\u04f2\u04f9\u04fe\u0505\u050b\u0512\u0517\u051d\u0522\u0528\u0534"+ + "\u053c\u0542\u0549\u0553\u055d\u0568\13\3\2\2\3&\3\3E\4\3W\5\3e\6\2\3"+ + "\2\2\4\2\3}\7\3~\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 ac7655c81..3cf934e80 100644 --- a/src/main/java/dk/camelot64/kickc/parser/KickCLexer.tokens +++ b/src/main/java/dk/camelot64/kickc/parser/KickCLexer.tokens @@ -51,89 +51,90 @@ EXTERN=50 EXPORT=51 ALIGN=52 REGISTER=53 -INLINE=54 -VOLATILE=55 -INTERRUPT=56 -CALLING=57 -CALLINGCONVENTION=58 -IF=59 -ELSE=60 -WHILE=61 -DO=62 -FOR=63 -SWITCH=64 -RETURN=65 -BREAK=66 -CONTINUE=67 -ASM=68 -DEFAULT=69 -CASE=70 -STRUCT=71 -ENUM=72 -SIZEOF=73 -TYPEID=74 -KICKASM=75 -RESOURCE=76 -USES=77 -CLOBBERS=78 -BYTES=79 -CYCLES=80 -LOGIC_NOT=81 -SIGNEDNESS=82 -SIMPLETYPE=83 -BOOLEAN=84 -KICKASM_BODY=85 -STRING=86 -CHAR=87 -NUMBER=88 -NUMFLOAT=89 -BINFLOAT=90 -DECFLOAT=91 -HEXFLOAT=92 -NUMINT=93 -BININTEGER=94 -DECINTEGER=95 -HEXINTEGER=96 -NAME=97 -WS=98 -COMMENT_LINE=99 -COMMENT_BLOCK=100 -ASM_BYTE=101 -ASM_MNEMONIC=102 -ASM_IMM=103 -ASM_COLON=104 -ASM_COMMA=105 -ASM_PAR_BEGIN=106 -ASM_PAR_END=107 -ASM_BRACKET_BEGIN=108 -ASM_BRACKET_END=109 -ASM_DOT=110 -ASM_SHIFT_LEFT=111 -ASM_SHIFT_RIGHT=112 -ASM_PLUS=113 -ASM_MINUS=114 -ASM_LESS_THAN=115 -ASM_GREATER_THAN=116 -ASM_MULTIPLY=117 -ASM_DIVIDE=118 -ASM_CURLY_BEGIN=119 -ASM_CURLY_END=120 -ASM_NUMBER=121 -ASM_NUMFLOAT=122 -ASM_BINFLOAT=123 -ASM_DECFLOAT=124 -ASM_HEXFLOAT=125 -ASM_NUMINT=126 -ASM_BININTEGER=127 -ASM_DECINTEGER=128 -ASM_HEXINTEGER=129 -ASM_CHAR=130 -ASM_MULTI_REL=131 -ASM_MULTI_NAME=132 -ASM_NAME=133 -ASM_WS=134 -ASM_COMMENT_LINE=135 -ASM_COMMENT_BLOCK=136 +MEMORY=54 +INLINE=55 +VOLATILE=56 +INTERRUPT=57 +CALLING=58 +CALLINGCONVENTION=59 +IF=60 +ELSE=61 +WHILE=62 +DO=63 +FOR=64 +SWITCH=65 +RETURN=66 +BREAK=67 +CONTINUE=68 +ASM=69 +DEFAULT=70 +CASE=71 +STRUCT=72 +ENUM=73 +SIZEOF=74 +TYPEID=75 +KICKASM=76 +RESOURCE=77 +USES=78 +CLOBBERS=79 +BYTES=80 +CYCLES=81 +LOGIC_NOT=82 +SIGNEDNESS=83 +SIMPLETYPE=84 +BOOLEAN=85 +KICKASM_BODY=86 +STRING=87 +CHAR=88 +NUMBER=89 +NUMFLOAT=90 +BINFLOAT=91 +DECFLOAT=92 +HEXFLOAT=93 +NUMINT=94 +BININTEGER=95 +DECINTEGER=96 +HEXINTEGER=97 +NAME=98 +WS=99 +COMMENT_LINE=100 +COMMENT_BLOCK=101 +ASM_BYTE=102 +ASM_MNEMONIC=103 +ASM_IMM=104 +ASM_COLON=105 +ASM_COMMA=106 +ASM_PAR_BEGIN=107 +ASM_PAR_END=108 +ASM_BRACKET_BEGIN=109 +ASM_BRACKET_END=110 +ASM_DOT=111 +ASM_SHIFT_LEFT=112 +ASM_SHIFT_RIGHT=113 +ASM_PLUS=114 +ASM_MINUS=115 +ASM_LESS_THAN=116 +ASM_GREATER_THAN=117 +ASM_MULTIPLY=118 +ASM_DIVIDE=119 +ASM_CURLY_BEGIN=120 +ASM_CURLY_END=121 +ASM_NUMBER=122 +ASM_NUMFLOAT=123 +ASM_BINFLOAT=124 +ASM_DECFLOAT=125 +ASM_HEXFLOAT=126 +ASM_NUMINT=127 +ASM_BININTEGER=128 +ASM_DECINTEGER=129 +ASM_HEXINTEGER=130 +ASM_CHAR=131 +ASM_MULTI_REL=132 +ASM_MULTI_NAME=133 +ASM_NAME=134 +ASM_WS=135 +ASM_COMMENT_LINE=136 +ASM_COMMENT_BLOCK=137 ';'=8 '..'=11 '?'=12 @@ -168,32 +169,33 @@ ASM_COMMENT_BLOCK=136 'export'=51 'align'=52 'register'=53 -'inline'=54 -'volatile'=55 -'interrupt'=56 -'calling'=57 -'if'=59 -'else'=60 -'while'=61 -'do'=62 -'for'=63 -'switch'=64 -'return'=65 -'break'=66 -'continue'=67 -'asm'=68 -'default'=69 -'case'=70 -'struct'=71 -'enum'=72 -'sizeof'=73 -'typeid'=74 -'kickasm'=75 -'resource'=76 -'uses'=77 -'clobbers'=78 -'bytes'=79 -'cycles'=80 -'!'=81 -'.byte'=101 -'#'=103 +'memory'=54 +'inline'=55 +'volatile'=56 +'interrupt'=57 +'calling'=58 +'if'=60 +'else'=61 +'while'=62 +'do'=63 +'for'=64 +'switch'=65 +'return'=66 +'break'=67 +'continue'=68 +'asm'=69 +'default'=70 +'case'=71 +'struct'=72 +'enum'=73 +'sizeof'=74 +'typeid'=75 +'kickasm'=76 +'resource'=77 +'uses'=78 +'clobbers'=79 +'bytes'=80 +'cycles'=81 +'!'=82 +'.byte'=102 +'#'=104 diff --git a/src/main/java/dk/camelot64/kickc/parser/KickCParser.g4 b/src/main/java/dk/camelot64/kickc/parser/KickCParser.g4 index 4fe202ee7..0de11374d 100644 --- a/src/main/java/dk/camelot64/kickc/parser/KickCParser.g4 +++ b/src/main/java/dk/camelot64/kickc/parser/KickCParser.g4 @@ -100,6 +100,7 @@ directive | EXPORT #directiveExport | ALIGN PAR_BEGIN NUMBER PAR_END #directiveAlign | REGISTER ( PAR_BEGIN ( NAME | NUMBER ) PAR_END)? #directiveRegister + | MEMORY ( PAR_BEGIN ( NUMBER ) PAR_END)? #directiveMemory | INLINE #directiveInline | VOLATILE #directiveVolatile | INTERRUPT ( PAR_BEGIN NAME PAR_END )? #directiveInterrupt diff --git a/src/main/java/dk/camelot64/kickc/parser/KickCParser.java b/src/main/java/dk/camelot64/kickc/parser/KickCParser.java index 9e9efd46e..70331af39 100644 --- a/src/main/java/dk/camelot64/kickc/parser/KickCParser.java +++ b/src/main/java/dk/camelot64/kickc/parser/KickCParser.java @@ -27,23 +27,23 @@ public class KickCParser extends Parser { GREATER_THAN_EQUAL=32, GREATER_THAN=33, LOGIC_AND=34, LOGIC_OR=35, ASSIGN=36, ASSIGN_COMPOUND=37, IMPORT=38, TYPEDEF=39, PRAGMA=40, RESERVE=41, PC=42, TARGET=43, LINK=44, CPU=45, CODESEG=46, DATASEG=47, ENCODING=48, CONST=49, - EXTERN=50, EXPORT=51, ALIGN=52, REGISTER=53, INLINE=54, VOLATILE=55, INTERRUPT=56, - CALLING=57, CALLINGCONVENTION=58, IF=59, ELSE=60, WHILE=61, DO=62, FOR=63, - SWITCH=64, RETURN=65, BREAK=66, CONTINUE=67, ASM=68, DEFAULT=69, CASE=70, - STRUCT=71, ENUM=72, SIZEOF=73, TYPEID=74, KICKASM=75, RESOURCE=76, USES=77, - CLOBBERS=78, BYTES=79, CYCLES=80, LOGIC_NOT=81, SIGNEDNESS=82, SIMPLETYPE=83, - BOOLEAN=84, KICKASM_BODY=85, STRING=86, CHAR=87, NUMBER=88, NUMFLOAT=89, - BINFLOAT=90, DECFLOAT=91, HEXFLOAT=92, NUMINT=93, BININTEGER=94, DECINTEGER=95, - HEXINTEGER=96, NAME=97, WS=98, COMMENT_LINE=99, COMMENT_BLOCK=100, ASM_BYTE=101, - ASM_MNEMONIC=102, ASM_IMM=103, ASM_COLON=104, ASM_COMMA=105, ASM_PAR_BEGIN=106, - ASM_PAR_END=107, ASM_BRACKET_BEGIN=108, ASM_BRACKET_END=109, ASM_DOT=110, - ASM_SHIFT_LEFT=111, ASM_SHIFT_RIGHT=112, ASM_PLUS=113, ASM_MINUS=114, - ASM_LESS_THAN=115, ASM_GREATER_THAN=116, ASM_MULTIPLY=117, ASM_DIVIDE=118, - ASM_CURLY_BEGIN=119, ASM_CURLY_END=120, ASM_NUMBER=121, ASM_NUMFLOAT=122, - ASM_BINFLOAT=123, ASM_DECFLOAT=124, ASM_HEXFLOAT=125, ASM_NUMINT=126, - ASM_BININTEGER=127, ASM_DECINTEGER=128, ASM_HEXINTEGER=129, ASM_CHAR=130, - ASM_MULTI_REL=131, ASM_MULTI_NAME=132, ASM_NAME=133, ASM_WS=134, ASM_COMMENT_LINE=135, - ASM_COMMENT_BLOCK=136; + EXTERN=50, EXPORT=51, ALIGN=52, REGISTER=53, MEMORY=54, INLINE=55, VOLATILE=56, + INTERRUPT=57, CALLING=58, CALLINGCONVENTION=59, IF=60, ELSE=61, WHILE=62, + DO=63, FOR=64, SWITCH=65, RETURN=66, BREAK=67, CONTINUE=68, ASM=69, DEFAULT=70, + CASE=71, STRUCT=72, ENUM=73, SIZEOF=74, TYPEID=75, KICKASM=76, RESOURCE=77, + USES=78, CLOBBERS=79, BYTES=80, CYCLES=81, LOGIC_NOT=82, SIGNEDNESS=83, + SIMPLETYPE=84, BOOLEAN=85, KICKASM_BODY=86, STRING=87, CHAR=88, NUMBER=89, + NUMFLOAT=90, BINFLOAT=91, DECFLOAT=92, HEXFLOAT=93, NUMINT=94, BININTEGER=95, + DECINTEGER=96, HEXINTEGER=97, NAME=98, WS=99, COMMENT_LINE=100, COMMENT_BLOCK=101, + ASM_BYTE=102, ASM_MNEMONIC=103, ASM_IMM=104, ASM_COLON=105, ASM_COMMA=106, + ASM_PAR_BEGIN=107, ASM_PAR_END=108, ASM_BRACKET_BEGIN=109, ASM_BRACKET_END=110, + ASM_DOT=111, ASM_SHIFT_LEFT=112, ASM_SHIFT_RIGHT=113, ASM_PLUS=114, ASM_MINUS=115, + ASM_LESS_THAN=116, ASM_GREATER_THAN=117, ASM_MULTIPLY=118, ASM_DIVIDE=119, + ASM_CURLY_BEGIN=120, ASM_CURLY_END=121, ASM_NUMBER=122, ASM_NUMFLOAT=123, + ASM_BINFLOAT=124, ASM_DECFLOAT=125, ASM_HEXFLOAT=126, ASM_NUMINT=127, + ASM_BININTEGER=128, ASM_DECINTEGER=129, ASM_HEXINTEGER=130, ASM_CHAR=131, + ASM_MULTI_REL=132, ASM_MULTI_NAME=133, ASM_NAME=134, ASM_WS=135, ASM_COMMENT_LINE=136, + ASM_COMMENT_BLOCK=137; public static final int RULE_file = 0, RULE_asmFile = 1, RULE_declSeq = 2, RULE_declOrImport = 3, RULE_importDecl = 4, RULE_decl = 5, RULE_typeDef = 6, RULE_declTypes = 7, @@ -75,12 +75,13 @@ public class KickCParser extends Parser { null, "'&&'", "'||'", "'='", null, "'import'", "'typedef'", "'#pragma'", "'reserve'", "'pc'", "'target'", "'link'", "'cpu'", "'code_seg'", "'data_seg'", "'encoding'", "'const'", "'extern'", "'export'", "'align'", "'register'", - "'inline'", "'volatile'", "'interrupt'", "'calling'", null, "'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, null, null, null, null, null, - null, null, null, null, null, null, null, null, "'.byte'", null, "'#'" + "'memory'", "'inline'", "'volatile'", "'interrupt'", "'calling'", null, + "'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, null, + null, null, null, null, null, null, null, null, null, null, null, null, + "'.byte'", null, "'#'" }; private static final String[] _SYMBOLIC_NAMES = { null, "TYPEDEFNAME", "CURLY_BEGIN", "CURLY_END", "BRACKET_BEGIN", "BRACKET_END", @@ -91,7 +92,7 @@ public class KickCParser extends Parser { "GREATER_THAN", "LOGIC_AND", "LOGIC_OR", "ASSIGN", "ASSIGN_COMPOUND", "IMPORT", "TYPEDEF", "PRAGMA", "RESERVE", "PC", "TARGET", "LINK", "CPU", "CODESEG", "DATASEG", "ENCODING", "CONST", "EXTERN", "EXPORT", "ALIGN", - "REGISTER", "INLINE", "VOLATILE", "INTERRUPT", "CALLING", "CALLINGCONVENTION", + "REGISTER", "MEMORY", "INLINE", "VOLATILE", "INTERRUPT", "CALLING", "CALLINGCONVENTION", "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", @@ -294,7 +295,7 @@ public class KickCParser extends Parser { setState(95); _errHandler.sync(this); _la = _input.LA(1); - while ((((_la) & ~0x3f) == 0 && ((1L << _la) & ((1L << TYPEDEFNAME) | (1L << PAR_BEGIN) | (1L << IMPORT) | (1L << TYPEDEF) | (1L << PRAGMA) | (1L << RESERVE) | (1L << CONST) | (1L << EXTERN) | (1L << EXPORT) | (1L << ALIGN) | (1L << REGISTER) | (1L << INLINE) | (1L << VOLATILE) | (1L << INTERRUPT) | (1L << CALLINGCONVENTION))) != 0) || ((((_la - 71)) & ~0x3f) == 0 && ((1L << (_la - 71)) & ((1L << (STRUCT - 71)) | (1L << (ENUM - 71)) | (1L << (KICKASM - 71)) | (1L << (SIGNEDNESS - 71)) | (1L << (SIMPLETYPE - 71)))) != 0)) { + while ((((_la) & ~0x3f) == 0 && ((1L << _la) & ((1L << TYPEDEFNAME) | (1L << PAR_BEGIN) | (1L << IMPORT) | (1L << TYPEDEF) | (1L << PRAGMA) | (1L << RESERVE) | (1L << CONST) | (1L << EXTERN) | (1L << EXPORT) | (1L << ALIGN) | (1L << REGISTER) | (1L << MEMORY) | (1L << INLINE) | (1L << VOLATILE) | (1L << INTERRUPT) | (1L << CALLINGCONVENTION))) != 0) || ((((_la - 72)) & ~0x3f) == 0 && ((1L << (_la - 72)) & ((1L << (STRUCT - 72)) | (1L << (ENUM - 72)) | (1L << (KICKASM - 72)) | (1L << (SIGNEDNESS - 72)) | (1L << (SIMPLETYPE - 72)))) != 0)) { { { setState(92); @@ -361,6 +362,7 @@ public class KickCParser extends Parser { case EXPORT: case ALIGN: case REGISTER: + case MEMORY: case INLINE: case VOLATILE: case INTERRUPT: @@ -652,7 +654,7 @@ public class KickCParser extends Parser { setState(130); _errHandler.sync(this); _la = _input.LA(1); - while ((((_la) & ~0x3f) == 0 && ((1L << _la) & ((1L << RESERVE) | (1L << CONST) | (1L << EXTERN) | (1L << EXPORT) | (1L << ALIGN) | (1L << REGISTER) | (1L << INLINE) | (1L << VOLATILE) | (1L << INTERRUPT) | (1L << CALLINGCONVENTION))) != 0)) { + while ((((_la) & ~0x3f) == 0 && ((1L << _la) & ((1L << RESERVE) | (1L << CONST) | (1L << EXTERN) | (1L << EXPORT) | (1L << ALIGN) | (1L << REGISTER) | (1L << MEMORY) | (1L << INLINE) | (1L << VOLATILE) | (1L << INTERRUPT) | (1L << CALLINGCONVENTION))) != 0)) { { { setState(127); @@ -668,7 +670,7 @@ public class KickCParser extends Parser { setState(137); _errHandler.sync(this); _la = _input.LA(1); - while ((((_la) & ~0x3f) == 0 && ((1L << _la) & ((1L << RESERVE) | (1L << CONST) | (1L << EXTERN) | (1L << EXPORT) | (1L << ALIGN) | (1L << REGISTER) | (1L << INLINE) | (1L << VOLATILE) | (1L << INTERRUPT) | (1L << CALLINGCONVENTION))) != 0)) { + while ((((_la) & ~0x3f) == 0 && ((1L << _la) & ((1L << RESERVE) | (1L << CONST) | (1L << EXTERN) | (1L << EXPORT) | (1L << ALIGN) | (1L << REGISTER) | (1L << MEMORY) | (1L << INLINE) | (1L << VOLATILE) | (1L << INTERRUPT) | (1L << CALLINGCONVENTION))) != 0)) { { { setState(134); @@ -979,7 +981,7 @@ public class KickCParser extends Parser { setState(168); _errHandler.sync(this); _la = _input.LA(1); - if ((((_la) & ~0x3f) == 0 && ((1L << _la) & ((1L << TYPEDEFNAME) | (1L << PAR_BEGIN) | (1L << RESERVE) | (1L << CONST) | (1L << EXTERN) | (1L << EXPORT) | (1L << ALIGN) | (1L << REGISTER) | (1L << INLINE) | (1L << VOLATILE) | (1L << INTERRUPT) | (1L << CALLINGCONVENTION))) != 0) || ((((_la - 71)) & ~0x3f) == 0 && ((1L << (_la - 71)) & ((1L << (STRUCT - 71)) | (1L << (ENUM - 71)) | (1L << (SIGNEDNESS - 71)) | (1L << (SIMPLETYPE - 71)))) != 0)) { + if ((((_la) & ~0x3f) == 0 && ((1L << _la) & ((1L << TYPEDEFNAME) | (1L << PAR_BEGIN) | (1L << RESERVE) | (1L << CONST) | (1L << EXTERN) | (1L << EXPORT) | (1L << ALIGN) | (1L << REGISTER) | (1L << MEMORY) | (1L << INLINE) | (1L << VOLATILE) | (1L << INTERRUPT) | (1L << CALLINGCONVENTION))) != 0) || ((((_la - 72)) & ~0x3f) == 0 && ((1L << (_la - 72)) & ((1L << (STRUCT - 72)) | (1L << (ENUM - 72)) | (1L << (SIGNEDNESS - 72)) | (1L << (SIMPLETYPE - 72)))) != 0)) { { setState(167); parameterListDecl(); @@ -993,7 +995,7 @@ public class KickCParser extends Parser { setState(173); _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 << REGISTER) | (1L << INLINE) | (1L << VOLATILE) | (1L << INTERRUPT) | (1L << CALLINGCONVENTION) | (1L << IF) | (1L << WHILE) | (1L << DO) | (1L << FOR))) != 0) || ((((_la - 64)) & ~0x3f) == 0 && ((1L << (_la - 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 << REGISTER) | (1L << MEMORY) | (1L << INLINE) | (1L << VOLATILE) | (1L << INTERRUPT) | (1L << CALLINGCONVENTION) | (1L << IF) | (1L << WHILE) | (1L << DO))) != 0) || ((((_la - 64)) & ~0x3f) == 0 && ((1L << (_la - 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)) { { setState(172); stmtSeq(); @@ -1740,6 +1742,26 @@ public class KickCParser extends Parser { else return visitor.visitChildren(this); } } + public static class DirectiveMemoryContext extends DirectiveContext { + public TerminalNode MEMORY() { return getToken(KickCParser.MEMORY, 0); } + public TerminalNode PAR_BEGIN() { return getToken(KickCParser.PAR_BEGIN, 0); } + public TerminalNode PAR_END() { return getToken(KickCParser.PAR_END, 0); } + public TerminalNode NUMBER() { return getToken(KickCParser.NUMBER, 0); } + public DirectiveMemoryContext(DirectiveContext ctx) { copyFrom(ctx); } + @Override + public void enterRule(ParseTreeListener listener) { + if ( listener instanceof KickCParserListener ) ((KickCParserListener)listener).enterDirectiveMemory(this); + } + @Override + public void exitRule(ParseTreeListener listener) { + if ( listener instanceof KickCParserListener ) ((KickCParserListener)listener).exitDirectiveMemory(this); + } + @Override + public T accept(ParseTreeVisitor visitor) { + if ( visitor instanceof KickCParserVisitor ) return ((KickCParserVisitor)visitor).visitDirectiveMemory(this); + else return visitor.visitChildren(this); + } + } public static class DirectiveCallingConventionContext extends DirectiveContext { public TerminalNode CALLINGCONVENTION() { return getToken(KickCParser.CALLINGCONVENTION, 0); } public DirectiveCallingConventionContext(DirectiveContext ctx) { copyFrom(ctx); } @@ -1784,7 +1806,7 @@ public class KickCParser extends Parser { enterRule(_localctx, 30, RULE_directive); int _la; try { - setState(287); + setState(293); _errHandler.sync(this); switch (_input.LA(1)) { case CONST: @@ -1855,38 +1877,62 @@ public class KickCParser extends Parser { } } break; - case INLINE: - _localctx = new DirectiveInlineContext(_localctx); + case MEMORY: + _localctx = new DirectiveMemoryContext(_localctx); enterOuterAlt(_localctx, 6); { setState(267); + match(MEMORY); + setState(271); + _errHandler.sync(this); + switch ( getInterpreter().adaptivePredict(_input,15,_ctx) ) { + case 1: + { + setState(268); + match(PAR_BEGIN); + { + setState(269); + match(NUMBER); + } + setState(270); + match(PAR_END); + } + break; + } + } + break; + case INLINE: + _localctx = new DirectiveInlineContext(_localctx); + enterOuterAlt(_localctx, 7); + { + setState(273); match(INLINE); } break; case VOLATILE: _localctx = new DirectiveVolatileContext(_localctx); - enterOuterAlt(_localctx, 7); + enterOuterAlt(_localctx, 8); { - setState(268); + setState(274); match(VOLATILE); } break; case INTERRUPT: _localctx = new DirectiveInterruptContext(_localctx); - enterOuterAlt(_localctx, 8); + enterOuterAlt(_localctx, 9); { - setState(269); + setState(275); match(INTERRUPT); - setState(273); + setState(279); _errHandler.sync(this); - switch ( getInterpreter().adaptivePredict(_input,15,_ctx) ) { + switch ( getInterpreter().adaptivePredict(_input,16,_ctx) ) { case 1: { - setState(270); + setState(276); match(PAR_BEGIN); - setState(271); + setState(277); match(NAME); - setState(272); + setState(278); match(PAR_END); } break; @@ -1895,39 +1941,39 @@ public class KickCParser extends Parser { break; case RESERVE: _localctx = new DirectiveReserveZpContext(_localctx); - enterOuterAlt(_localctx, 9); + enterOuterAlt(_localctx, 10); { - setState(275); + setState(281); match(RESERVE); - setState(276); - match(PAR_BEGIN); - setState(277); - match(NUMBER); setState(282); + match(PAR_BEGIN); + setState(283); + match(NUMBER); + setState(288); _errHandler.sync(this); _la = _input.LA(1); while (_la==COMMA) { { { - setState(278); + setState(284); match(COMMA); - setState(279); + setState(285); match(NUMBER); } } - setState(284); + setState(290); _errHandler.sync(this); _la = _input.LA(1); } - setState(285); + setState(291); match(PAR_END); } break; case CALLINGCONVENTION: _localctx = new DirectiveCallingConventionContext(_localctx); - enterOuterAlt(_localctx, 10); + enterOuterAlt(_localctx, 11); { - setState(286); + setState(292); match(CALLINGCONVENTION); } break; @@ -1979,20 +2025,20 @@ public class KickCParser extends Parser { try { enterOuterAlt(_localctx, 1); { - setState(290); + setState(296); _errHandler.sync(this); _la = _input.LA(1); do { { { - setState(289); + setState(295); stmt(); } } - setState(292); + setState(298); _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 << REGISTER) | (1L << INLINE) | (1L << VOLATILE) | (1L << INTERRUPT) | (1L << CALLINGCONVENTION) | (1L << IF) | (1L << WHILE) | (1L << DO) | (1L << FOR))) != 0) || ((((_la - 64)) & ~0x3f) == 0 && ((1L << (_la - 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 << REGISTER) | (1L << MEMORY) | (1L << INLINE) | (1L << VOLATILE) | (1L << INTERRUPT) | (1L << CALLINGCONVENTION) | (1L << IF) | (1L << WHILE) | (1L << DO))) != 0) || ((((_la - 64)) & ~0x3f) == 0 && ((1L << (_la - 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) ); } } catch (RecognitionException re) { @@ -2330,16 +2376,16 @@ public class KickCParser extends Parser { enterRule(_localctx, 34, RULE_stmt); int _la; try { - setState(378); + setState(384); _errHandler.sync(this); - switch ( getInterpreter().adaptivePredict(_input,26,_ctx) ) { + switch ( getInterpreter().adaptivePredict(_input,27,_ctx) ) { case 1: _localctx = new StmtDeclVarContext(_localctx); enterOuterAlt(_localctx, 1); { - setState(294); + setState(300); declVariables(); - setState(295); + setState(301); match(SEMICOLON); } break; @@ -2347,19 +2393,19 @@ public class KickCParser extends Parser { _localctx = new StmtBlockContext(_localctx); enterOuterAlt(_localctx, 2); { - setState(297); + setState(303); match(CURLY_BEGIN); - setState(299); + setState(305); _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 << REGISTER) | (1L << INLINE) | (1L << VOLATILE) | (1L << INTERRUPT) | (1L << CALLINGCONVENTION) | (1L << IF) | (1L << WHILE) | (1L << DO) | (1L << FOR))) != 0) || ((((_la - 64)) & ~0x3f) == 0 && ((1L << (_la - 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 << REGISTER) | (1L << MEMORY) | (1L << INLINE) | (1L << VOLATILE) | (1L << INTERRUPT) | (1L << CALLINGCONVENTION) | (1L << IF) | (1L << WHILE) | (1L << DO))) != 0) || ((((_la - 64)) & ~0x3f) == 0 && ((1L << (_la - 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)) { { - setState(298); + setState(304); stmtSeq(); } } - setState(301); + setState(307); match(CURLY_END); } break; @@ -2367,9 +2413,9 @@ public class KickCParser extends Parser { _localctx = new StmtExprContext(_localctx); enterOuterAlt(_localctx, 3); { - setState(302); + setState(308); commaExpr(0); - setState(303); + setState(309); match(SEMICOLON); } break; @@ -2377,24 +2423,24 @@ public class KickCParser extends Parser { _localctx = new StmtIfElseContext(_localctx); enterOuterAlt(_localctx, 4); { - setState(305); + setState(311); match(IF); - setState(306); - match(PAR_BEGIN); - setState(307); - commaExpr(0); - setState(308); - match(PAR_END); - setState(309); - stmt(); setState(312); + match(PAR_BEGIN); + setState(313); + commaExpr(0); + setState(314); + match(PAR_END); + setState(315); + stmt(); + setState(318); _errHandler.sync(this); - switch ( getInterpreter().adaptivePredict(_input,20,_ctx) ) { + switch ( getInterpreter().adaptivePredict(_input,21,_ctx) ) { case 1: { - setState(310); + setState(316); match(ELSE); - setState(311); + setState(317); stmt(); } break; @@ -2405,29 +2451,29 @@ public class KickCParser extends Parser { _localctx = new StmtWhileContext(_localctx); enterOuterAlt(_localctx, 5); { - setState(317); + setState(323); _errHandler.sync(this); _la = _input.LA(1); - while ((((_la) & ~0x3f) == 0 && ((1L << _la) & ((1L << RESERVE) | (1L << CONST) | (1L << EXTERN) | (1L << EXPORT) | (1L << ALIGN) | (1L << REGISTER) | (1L << INLINE) | (1L << VOLATILE) | (1L << INTERRUPT) | (1L << CALLINGCONVENTION))) != 0)) { + while ((((_la) & ~0x3f) == 0 && ((1L << _la) & ((1L << RESERVE) | (1L << CONST) | (1L << EXTERN) | (1L << EXPORT) | (1L << ALIGN) | (1L << REGISTER) | (1L << MEMORY) | (1L << INLINE) | (1L << VOLATILE) | (1L << INTERRUPT) | (1L << CALLINGCONVENTION))) != 0)) { { { - setState(314); + setState(320); directive(); } } - setState(319); + setState(325); _errHandler.sync(this); _la = _input.LA(1); } - setState(320); + setState(326); match(WHILE); - setState(321); + setState(327); match(PAR_BEGIN); - setState(322); + setState(328); commaExpr(0); - setState(323); + setState(329); match(PAR_END); - setState(324); + setState(330); stmt(); } break; @@ -2435,33 +2481,33 @@ public class KickCParser extends Parser { _localctx = new StmtDoWhileContext(_localctx); enterOuterAlt(_localctx, 6); { - setState(329); + setState(335); _errHandler.sync(this); _la = _input.LA(1); - while ((((_la) & ~0x3f) == 0 && ((1L << _la) & ((1L << RESERVE) | (1L << CONST) | (1L << EXTERN) | (1L << EXPORT) | (1L << ALIGN) | (1L << REGISTER) | (1L << INLINE) | (1L << VOLATILE) | (1L << INTERRUPT) | (1L << CALLINGCONVENTION))) != 0)) { + while ((((_la) & ~0x3f) == 0 && ((1L << _la) & ((1L << RESERVE) | (1L << CONST) | (1L << EXTERN) | (1L << EXPORT) | (1L << ALIGN) | (1L << REGISTER) | (1L << MEMORY) | (1L << INLINE) | (1L << VOLATILE) | (1L << INTERRUPT) | (1L << CALLINGCONVENTION))) != 0)) { { { - setState(326); + setState(332); directive(); } } - setState(331); + setState(337); _errHandler.sync(this); _la = _input.LA(1); } - setState(332); - match(DO); - setState(333); - stmt(); - setState(334); - match(WHILE); - setState(335); - match(PAR_BEGIN); - setState(336); - commaExpr(0); - setState(337); - match(PAR_END); setState(338); + match(DO); + setState(339); + stmt(); + setState(340); + match(WHILE); + setState(341); + match(PAR_BEGIN); + setState(342); + commaExpr(0); + setState(343); + match(PAR_END); + setState(344); match(SEMICOLON); } break; @@ -2469,29 +2515,29 @@ public class KickCParser extends Parser { _localctx = new StmtForContext(_localctx); enterOuterAlt(_localctx, 7); { - setState(343); + setState(349); _errHandler.sync(this); _la = _input.LA(1); - while ((((_la) & ~0x3f) == 0 && ((1L << _la) & ((1L << RESERVE) | (1L << CONST) | (1L << EXTERN) | (1L << EXPORT) | (1L << ALIGN) | (1L << REGISTER) | (1L << INLINE) | (1L << VOLATILE) | (1L << INTERRUPT) | (1L << CALLINGCONVENTION))) != 0)) { + while ((((_la) & ~0x3f) == 0 && ((1L << _la) & ((1L << RESERVE) | (1L << CONST) | (1L << EXTERN) | (1L << EXPORT) | (1L << ALIGN) | (1L << REGISTER) | (1L << MEMORY) | (1L << INLINE) | (1L << VOLATILE) | (1L << INTERRUPT) | (1L << CALLINGCONVENTION))) != 0)) { { { - setState(340); + setState(346); directive(); } } - setState(345); + setState(351); _errHandler.sync(this); _la = _input.LA(1); } - setState(346); + setState(352); match(FOR); - setState(347); + setState(353); match(PAR_BEGIN); - setState(348); + setState(354); forLoop(); - setState(349); + setState(355); match(PAR_END); - setState(350); + setState(356); stmt(); } break; @@ -2499,19 +2545,19 @@ public class KickCParser extends Parser { _localctx = new StmtSwitchContext(_localctx); enterOuterAlt(_localctx, 8); { - setState(352); - match(SWITCH); - setState(353); - match(PAR_BEGIN); - setState(354); - commaExpr(0); - setState(355); - match(PAR_END); - setState(356); - match(CURLY_BEGIN); - setState(357); - switchCases(); setState(358); + match(SWITCH); + setState(359); + match(PAR_BEGIN); + setState(360); + commaExpr(0); + setState(361); + match(PAR_END); + setState(362); + match(CURLY_BEGIN); + setState(363); + switchCases(); + setState(364); match(CURLY_END); } break; @@ -2519,19 +2565,19 @@ public class KickCParser extends Parser { _localctx = new StmtReturnContext(_localctx); enterOuterAlt(_localctx, 9); { - setState(360); + setState(366); match(RETURN); - setState(362); + setState(368); _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 - 73)) & ~0x3f) == 0 && ((1L << (_la - 73)) & ((1L << (SIZEOF - 73)) | (1L << (TYPEID - 73)) | (1L << (LOGIC_NOT - 73)) | (1L << (BOOLEAN - 73)) | (1L << (STRING - 73)) | (1L << (CHAR - 73)) | (1L << (NUMBER - 73)) | (1L << (NAME - 73)))) != 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 - 74)) & ~0x3f) == 0 && ((1L << (_la - 74)) & ((1L << (SIZEOF - 74)) | (1L << (TYPEID - 74)) | (1L << (LOGIC_NOT - 74)) | (1L << (BOOLEAN - 74)) | (1L << (STRING - 74)) | (1L << (CHAR - 74)) | (1L << (NUMBER - 74)) | (1L << (NAME - 74)))) != 0)) { { - setState(361); + setState(367); commaExpr(0); } } - setState(364); + setState(370); match(SEMICOLON); } break; @@ -2539,9 +2585,9 @@ public class KickCParser extends Parser { _localctx = new StmtBreakContext(_localctx); enterOuterAlt(_localctx, 10); { - setState(365); + setState(371); match(BREAK); - setState(366); + setState(372); match(SEMICOLON); } break; @@ -2549,9 +2595,9 @@ public class KickCParser extends Parser { _localctx = new StmtContinueContext(_localctx); enterOuterAlt(_localctx, 11); { - setState(367); + setState(373); match(CONTINUE); - setState(368); + setState(374); match(SEMICOLON); } break; @@ -2559,23 +2605,23 @@ public class KickCParser extends Parser { _localctx = new StmtAsmContext(_localctx); enterOuterAlt(_localctx, 12); { - setState(369); + setState(375); match(ASM); - setState(371); + setState(377); _errHandler.sync(this); _la = _input.LA(1); if (_la==PAR_BEGIN) { { - setState(370); + setState(376); asmDirectives(); } } - setState(373); + setState(379); match(CURLY_BEGIN); - setState(374); + setState(380); asmLines(); - setState(375); + setState(381); match(ASM_CURLY_END); } break; @@ -2583,7 +2629,7 @@ public class KickCParser extends Parser { _localctx = new StmtDeclKasmContext(_localctx); enterOuterAlt(_localctx, 13); { - setState(377); + setState(383); declKasm(); } break; @@ -2638,35 +2684,35 @@ public class KickCParser extends Parser { try { enterOuterAlt(_localctx, 1); { - setState(381); + setState(387); _errHandler.sync(this); _la = _input.LA(1); do { { { - setState(380); + setState(386); switchCase(); } } - setState(383); + setState(389); _errHandler.sync(this); _la = _input.LA(1); } while ( _la==CASE ); - setState(390); + setState(396); _errHandler.sync(this); _la = _input.LA(1); if (_la==DEFAULT) { { - setState(385); + setState(391); match(DEFAULT); - setState(386); + setState(392); match(COLON); - setState(388); + setState(394); _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 << REGISTER) | (1L << INLINE) | (1L << VOLATILE) | (1L << INTERRUPT) | (1L << CALLINGCONVENTION) | (1L << IF) | (1L << WHILE) | (1L << DO) | (1L << FOR))) != 0) || ((((_la - 64)) & ~0x3f) == 0 && ((1L << (_la - 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 << REGISTER) | (1L << MEMORY) | (1L << INLINE) | (1L << VOLATILE) | (1L << INTERRUPT) | (1L << CALLINGCONVENTION) | (1L << IF) | (1L << WHILE) | (1L << DO))) != 0) || ((((_la - 64)) & ~0x3f) == 0 && ((1L << (_la - 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)) { { - setState(387); + setState(393); stmtSeq(); } } @@ -2722,18 +2768,18 @@ public class KickCParser extends Parser { try { enterOuterAlt(_localctx, 1); { - setState(392); + setState(398); match(CASE); - setState(393); + setState(399); expr(0); - setState(394); + setState(400); match(COLON); - setState(396); + setState(402); _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 << REGISTER) | (1L << INLINE) | (1L << VOLATILE) | (1L << INTERRUPT) | (1L << CALLINGCONVENTION) | (1L << IF) | (1L << WHILE) | (1L << DO) | (1L << FOR))) != 0) || ((((_la - 64)) & ~0x3f) == 0 && ((1L << (_la - 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 << REGISTER) | (1L << MEMORY) | (1L << INLINE) | (1L << VOLATILE) | (1L << INTERRUPT) | (1L << CALLINGCONVENTION) | (1L << IF) | (1L << WHILE) | (1L << DO))) != 0) || ((((_la - 64)) & ~0x3f) == 0 && ((1L << (_la - 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)) { { - setState(395); + setState(401); stmtSeq(); } } @@ -2820,27 +2866,27 @@ public class KickCParser extends Parser { enterRule(_localctx, 40, RULE_forLoop); int _la; try { - setState(414); + setState(420); _errHandler.sync(this); - switch ( getInterpreter().adaptivePredict(_input,33,_ctx) ) { + switch ( getInterpreter().adaptivePredict(_input,34,_ctx) ) { case 1: _localctx = new ForClassicContext(_localctx); enterOuterAlt(_localctx, 1); { - setState(398); + setState(404); forClassicInit(); - setState(399); + setState(405); match(SEMICOLON); - setState(400); + setState(406); commaExpr(0); - setState(401); + setState(407); match(SEMICOLON); - setState(403); + setState(409); _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 - 73)) & ~0x3f) == 0 && ((1L << (_la - 73)) & ((1L << (SIZEOF - 73)) | (1L << (TYPEID - 73)) | (1L << (LOGIC_NOT - 73)) | (1L << (BOOLEAN - 73)) | (1L << (STRING - 73)) | (1L << (CHAR - 73)) | (1L << (NUMBER - 73)) | (1L << (NAME - 73)))) != 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 - 74)) & ~0x3f) == 0 && ((1L << (_la - 74)) & ((1L << (SIZEOF - 74)) | (1L << (TYPEID - 74)) | (1L << (LOGIC_NOT - 74)) | (1L << (BOOLEAN - 74)) | (1L << (STRING - 74)) | (1L << (CHAR - 74)) | (1L << (NUMBER - 74)) | (1L << (NAME - 74)))) != 0)) { { - setState(402); + setState(408); commaExpr(0); } } @@ -2851,25 +2897,25 @@ public class KickCParser extends Parser { _localctx = new ForRangeContext(_localctx); enterOuterAlt(_localctx, 2); { - setState(406); + setState(412); _errHandler.sync(this); _la = _input.LA(1); - if ((((_la) & ~0x3f) == 0 && ((1L << _la) & ((1L << TYPEDEFNAME) | (1L << PAR_BEGIN) | (1L << RESERVE) | (1L << CONST) | (1L << EXTERN) | (1L << EXPORT) | (1L << ALIGN) | (1L << REGISTER) | (1L << INLINE) | (1L << VOLATILE) | (1L << INTERRUPT) | (1L << CALLINGCONVENTION))) != 0) || ((((_la - 71)) & ~0x3f) == 0 && ((1L << (_la - 71)) & ((1L << (STRUCT - 71)) | (1L << (ENUM - 71)) | (1L << (SIGNEDNESS - 71)) | (1L << (SIMPLETYPE - 71)))) != 0)) { + if ((((_la) & ~0x3f) == 0 && ((1L << _la) & ((1L << TYPEDEFNAME) | (1L << PAR_BEGIN) | (1L << RESERVE) | (1L << CONST) | (1L << EXTERN) | (1L << EXPORT) | (1L << ALIGN) | (1L << REGISTER) | (1L << MEMORY) | (1L << INLINE) | (1L << VOLATILE) | (1L << INTERRUPT) | (1L << CALLINGCONVENTION))) != 0) || ((((_la - 72)) & ~0x3f) == 0 && ((1L << (_la - 72)) & ((1L << (STRUCT - 72)) | (1L << (ENUM - 72)) | (1L << (SIGNEDNESS - 72)) | (1L << (SIMPLETYPE - 72)))) != 0)) { { - setState(405); + setState(411); declTypes(); } } - setState(408); + setState(414); match(NAME); - setState(409); + setState(415); match(COLON); - setState(410); + setState(416); expr(0); - setState(411); + setState(417); match(RANGE); - setState(412); + setState(418); expr(0); } break; @@ -2941,19 +2987,19 @@ public class KickCParser extends Parser { enterRule(_localctx, 42, RULE_forClassicInit); int _la; try { - setState(420); + setState(426); _errHandler.sync(this); - switch ( getInterpreter().adaptivePredict(_input,35,_ctx) ) { + switch ( getInterpreter().adaptivePredict(_input,36,_ctx) ) { case 1: _localctx = new ForClassicInitDeclContext(_localctx); enterOuterAlt(_localctx, 1); { - setState(417); + setState(423); _errHandler.sync(this); _la = _input.LA(1); - if ((((_la) & ~0x3f) == 0 && ((1L << _la) & ((1L << TYPEDEFNAME) | (1L << PAR_BEGIN) | (1L << RESERVE) | (1L << CONST) | (1L << EXTERN) | (1L << EXPORT) | (1L << ALIGN) | (1L << REGISTER) | (1L << INLINE) | (1L << VOLATILE) | (1L << INTERRUPT) | (1L << CALLINGCONVENTION))) != 0) || ((((_la - 71)) & ~0x3f) == 0 && ((1L << (_la - 71)) & ((1L << (STRUCT - 71)) | (1L << (ENUM - 71)) | (1L << (SIGNEDNESS - 71)) | (1L << (SIMPLETYPE - 71)))) != 0)) { + if ((((_la) & ~0x3f) == 0 && ((1L << _la) & ((1L << TYPEDEFNAME) | (1L << PAR_BEGIN) | (1L << RESERVE) | (1L << CONST) | (1L << EXTERN) | (1L << EXPORT) | (1L << ALIGN) | (1L << REGISTER) | (1L << MEMORY) | (1L << INLINE) | (1L << VOLATILE) | (1L << INTERRUPT) | (1L << CALLINGCONVENTION))) != 0) || ((((_la - 72)) & ~0x3f) == 0 && ((1L << (_la - 72)) & ((1L << (STRUCT - 72)) | (1L << (ENUM - 72)) | (1L << (SIGNEDNESS - 72)) | (1L << (SIMPLETYPE - 72)))) != 0)) { { - setState(416); + setState(422); declVariables(); } } @@ -2964,7 +3010,7 @@ public class KickCParser extends Parser { _localctx = new ForClassicInitExprContext(_localctx); enterOuterAlt(_localctx, 2); { - setState(419); + setState(425); commaExpr(0); } break; @@ -3223,20 +3269,20 @@ public class KickCParser extends Parser { int _alt; enterOuterAlt(_localctx, 1); { - setState(437); + setState(443); _errHandler.sync(this); - switch ( getInterpreter().adaptivePredict(_input,37,_ctx) ) { + switch ( getInterpreter().adaptivePredict(_input,38,_ctx) ) { case 1: { _localctx = new TypeParContext(_localctx); _ctx = _localctx; _prevctx = _localctx; - setState(423); + setState(429); match(PAR_BEGIN); - setState(424); + setState(430); typeDecl(0); - setState(425); + setState(431); match(PAR_END); } break; @@ -3245,7 +3291,7 @@ public class KickCParser extends Parser { _localctx = new TypeSimpleContext(_localctx); _ctx = _localctx; _prevctx = _localctx; - setState(427); + setState(433); match(SIMPLETYPE); } break; @@ -3254,14 +3300,14 @@ public class KickCParser extends Parser { _localctx = new TypeSignedSimpleContext(_localctx); _ctx = _localctx; _prevctx = _localctx; - setState(428); + setState(434); match(SIGNEDNESS); - setState(430); + setState(436); _errHandler.sync(this); - switch ( getInterpreter().adaptivePredict(_input,36,_ctx) ) { + switch ( getInterpreter().adaptivePredict(_input,37,_ctx) ) { case 1: { - setState(429); + setState(435); match(SIMPLETYPE); } break; @@ -3273,7 +3319,7 @@ public class KickCParser extends Parser { _localctx = new TypeStructDefContext(_localctx); _ctx = _localctx; _prevctx = _localctx; - setState(432); + setState(438); structDef(); } break; @@ -3282,7 +3328,7 @@ public class KickCParser extends Parser { _localctx = new TypeStructRefContext(_localctx); _ctx = _localctx; _prevctx = _localctx; - setState(433); + setState(439); structRef(); } break; @@ -3291,7 +3337,7 @@ public class KickCParser extends Parser { _localctx = new TypeEnumDefContext(_localctx); _ctx = _localctx; _prevctx = _localctx; - setState(434); + setState(440); enumDef(); } break; @@ -3300,7 +3346,7 @@ public class KickCParser extends Parser { _localctx = new TypeEnumRefContext(_localctx); _ctx = _localctx; _prevctx = _localctx; - setState(435); + setState(441); enumRef(); } break; @@ -3309,30 +3355,30 @@ public class KickCParser extends Parser { _localctx = new TypeNamedRefContext(_localctx); _ctx = _localctx; _prevctx = _localctx; - setState(436); + setState(442); match(TYPEDEFNAME); } break; } _ctx.stop = _input.LT(-1); - setState(452); + setState(458); _errHandler.sync(this); - _alt = getInterpreter().adaptivePredict(_input,40,_ctx); + _alt = getInterpreter().adaptivePredict(_input,41,_ctx); while ( _alt!=2 && _alt!=org.antlr.v4.runtime.atn.ATN.INVALID_ALT_NUMBER ) { if ( _alt==1 ) { if ( _parseListeners!=null ) triggerExitRuleEvent(); _prevctx = _localctx; { - setState(450); + setState(456); _errHandler.sync(this); - switch ( getInterpreter().adaptivePredict(_input,39,_ctx) ) { + switch ( getInterpreter().adaptivePredict(_input,40,_ctx) ) { case 1: { _localctx = new TypePtrContext(new TypeDeclContext(_parentctx, _parentState)); pushNewRecursionContext(_localctx, _startState, RULE_typeDecl); - setState(439); + setState(445); if (!(precpred(_ctx, 8))) throw new FailedPredicateException(this, "precpred(_ctx, 8)"); - setState(440); + setState(446); match(ASTERISK); } break; @@ -3340,21 +3386,21 @@ public class KickCParser extends Parser { { _localctx = new TypeArrayContext(new TypeDeclContext(_parentctx, _parentState)); pushNewRecursionContext(_localctx, _startState, RULE_typeDecl); - setState(441); + setState(447); if (!(precpred(_ctx, 7))) throw new FailedPredicateException(this, "precpred(_ctx, 7)"); - setState(442); + setState(448); match(BRACKET_BEGIN); - setState(444); + setState(450); _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 - 73)) & ~0x3f) == 0 && ((1L << (_la - 73)) & ((1L << (SIZEOF - 73)) | (1L << (TYPEID - 73)) | (1L << (LOGIC_NOT - 73)) | (1L << (BOOLEAN - 73)) | (1L << (STRING - 73)) | (1L << (CHAR - 73)) | (1L << (NUMBER - 73)) | (1L << (NAME - 73)))) != 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 - 74)) & ~0x3f) == 0 && ((1L << (_la - 74)) & ((1L << (SIZEOF - 74)) | (1L << (TYPEID - 74)) | (1L << (LOGIC_NOT - 74)) | (1L << (BOOLEAN - 74)) | (1L << (STRING - 74)) | (1L << (CHAR - 74)) | (1L << (NUMBER - 74)) | (1L << (NAME - 74)))) != 0)) { { - setState(443); + setState(449); expr(0); } } - setState(446); + setState(452); match(BRACKET_END); } break; @@ -3362,20 +3408,20 @@ public class KickCParser extends Parser { { _localctx = new TypeProcedureContext(new TypeDeclContext(_parentctx, _parentState)); pushNewRecursionContext(_localctx, _startState, RULE_typeDecl); - setState(447); + setState(453); if (!(precpred(_ctx, 6))) throw new FailedPredicateException(this, "precpred(_ctx, 6)"); - setState(448); + setState(454); match(PAR_BEGIN); - setState(449); + setState(455); match(PAR_END); } break; } } } - setState(454); + setState(460); _errHandler.sync(this); - _alt = getInterpreter().adaptivePredict(_input,40,_ctx); + _alt = getInterpreter().adaptivePredict(_input,41,_ctx); } } } @@ -3418,9 +3464,9 @@ public class KickCParser extends Parser { try { enterOuterAlt(_localctx, 1); { - setState(455); + setState(461); match(STRUCT); - setState(456); + setState(462); match(NAME); } } @@ -3472,35 +3518,35 @@ public class KickCParser extends Parser { try { enterOuterAlt(_localctx, 1); { - setState(458); + setState(464); match(STRUCT); - setState(460); + setState(466); _errHandler.sync(this); _la = _input.LA(1); if (_la==NAME) { { - setState(459); + setState(465); match(NAME); } } - setState(462); + setState(468); match(CURLY_BEGIN); - setState(464); + setState(470); _errHandler.sync(this); _la = _input.LA(1); do { { { - setState(463); + setState(469); structMembers(); } } - setState(466); + setState(472); _errHandler.sync(this); _la = _input.LA(1); - } while ( (((_la) & ~0x3f) == 0 && ((1L << _la) & ((1L << TYPEDEFNAME) | (1L << PAR_BEGIN) | (1L << RESERVE) | (1L << CONST) | (1L << EXTERN) | (1L << EXPORT) | (1L << ALIGN) | (1L << REGISTER) | (1L << INLINE) | (1L << VOLATILE) | (1L << INTERRUPT) | (1L << CALLINGCONVENTION))) != 0) || ((((_la - 71)) & ~0x3f) == 0 && ((1L << (_la - 71)) & ((1L << (STRUCT - 71)) | (1L << (ENUM - 71)) | (1L << (SIGNEDNESS - 71)) | (1L << (SIMPLETYPE - 71)))) != 0) ); - setState(468); + } while ( (((_la) & ~0x3f) == 0 && ((1L << _la) & ((1L << TYPEDEFNAME) | (1L << PAR_BEGIN) | (1L << RESERVE) | (1L << CONST) | (1L << EXTERN) | (1L << EXPORT) | (1L << ALIGN) | (1L << REGISTER) | (1L << MEMORY) | (1L << INLINE) | (1L << VOLATILE) | (1L << INTERRUPT) | (1L << CALLINGCONVENTION))) != 0) || ((((_la - 72)) & ~0x3f) == 0 && ((1L << (_la - 72)) & ((1L << (STRUCT - 72)) | (1L << (ENUM - 72)) | (1L << (SIGNEDNESS - 72)) | (1L << (SIMPLETYPE - 72)))) != 0) ); + setState(474); match(CURLY_END); } } @@ -3544,9 +3590,9 @@ public class KickCParser extends Parser { try { enterOuterAlt(_localctx, 1); { - setState(470); + setState(476); declVariables(); - setState(471); + setState(477); match(SEMICOLON); } } @@ -3589,9 +3635,9 @@ public class KickCParser extends Parser { try { enterOuterAlt(_localctx, 1); { - setState(473); + setState(479); match(ENUM); - setState(474); + setState(480); match(NAME); } } @@ -3640,23 +3686,23 @@ public class KickCParser extends Parser { try { enterOuterAlt(_localctx, 1); { - setState(476); + setState(482); match(ENUM); - setState(478); + setState(484); _errHandler.sync(this); _la = _input.LA(1); if (_la==NAME) { { - setState(477); + setState(483); match(NAME); } } - setState(480); + setState(486); match(CURLY_BEGIN); - setState(481); + setState(487); enumMemberList(0); - setState(482); + setState(488); match(CURLY_END); } } @@ -3714,13 +3760,13 @@ public class KickCParser extends Parser { enterOuterAlt(_localctx, 1); { { - setState(485); + setState(491); enumMember(); } _ctx.stop = _input.LT(-1); - setState(492); + setState(498); _errHandler.sync(this); - _alt = getInterpreter().adaptivePredict(_input,44,_ctx); + _alt = getInterpreter().adaptivePredict(_input,45,_ctx); while ( _alt!=2 && _alt!=org.antlr.v4.runtime.atn.ATN.INVALID_ALT_NUMBER ) { if ( _alt==1 ) { if ( _parseListeners!=null ) triggerExitRuleEvent(); @@ -3729,18 +3775,18 @@ public class KickCParser extends Parser { { _localctx = new EnumMemberListContext(_parentctx, _parentState); pushNewRecursionContext(_localctx, _startState, RULE_enumMemberList); - setState(487); + setState(493); if (!(precpred(_ctx, 1))) throw new FailedPredicateException(this, "precpred(_ctx, 1)"); - setState(488); + setState(494); match(COMMA); - setState(489); + setState(495); enumMember(); } } } - setState(494); + setState(500); _errHandler.sync(this); - _alt = getInterpreter().adaptivePredict(_input,44,_ctx); + _alt = getInterpreter().adaptivePredict(_input,45,_ctx); } } } @@ -3785,16 +3831,16 @@ public class KickCParser extends Parser { try { enterOuterAlt(_localctx, 1); { - setState(495); + setState(501); match(NAME); - setState(498); + setState(504); _errHandler.sync(this); - switch ( getInterpreter().adaptivePredict(_input,45,_ctx) ) { + switch ( getInterpreter().adaptivePredict(_input,46,_ctx) ) { case 1: { - setState(496); + setState(502); match(ASSIGN); - setState(497); + setState(503); expr(0); } break; @@ -3886,13 +3932,13 @@ public class KickCParser extends Parser { _ctx = _localctx; _prevctx = _localctx; - setState(501); + setState(507); expr(0); } _ctx.stop = _input.LT(-1); - setState(508); + setState(514); _errHandler.sync(this); - _alt = getInterpreter().adaptivePredict(_input,46,_ctx); + _alt = getInterpreter().adaptivePredict(_input,47,_ctx); while ( _alt!=2 && _alt!=org.antlr.v4.runtime.atn.ATN.INVALID_ALT_NUMBER ) { if ( _alt==1 ) { if ( _parseListeners!=null ) triggerExitRuleEvent(); @@ -3901,18 +3947,18 @@ public class KickCParser extends Parser { { _localctx = new CommaSimpleContext(new CommaExprContext(_parentctx, _parentState)); pushNewRecursionContext(_localctx, _startState, RULE_commaExpr); - setState(503); + setState(509); if (!(precpred(_ctx, 1))) throw new FailedPredicateException(this, "precpred(_ctx, 1)"); - setState(504); + setState(510); match(COMMA); - setState(505); + setState(511); expr(0); } } } - setState(510); + setState(516); _errHandler.sync(this); - _alt = getInterpreter().adaptivePredict(_input,46,_ctx); + _alt = getInterpreter().adaptivePredict(_input,47,_ctx); } } } @@ -4435,20 +4481,20 @@ public class KickCParser extends Parser { int _alt; enterOuterAlt(_localctx, 1); { - setState(565); + setState(571); _errHandler.sync(this); - switch ( getInterpreter().adaptivePredict(_input,51,_ctx) ) { + switch ( getInterpreter().adaptivePredict(_input,52,_ctx) ) { case 1: { _localctx = new ExprParContext(_localctx); _ctx = _localctx; _prevctx = _localctx; - setState(512); + setState(518); match(PAR_BEGIN); - setState(513); + setState(519); commaExpr(0); - setState(514); + setState(520); match(PAR_END); } break; @@ -4457,27 +4503,27 @@ public class KickCParser extends Parser { _localctx = new ExprSizeOfContext(_localctx); _ctx = _localctx; _prevctx = _localctx; - setState(516); + setState(522); match(SIZEOF); - setState(517); + setState(523); match(PAR_BEGIN); - setState(520); + setState(526); _errHandler.sync(this); - switch ( getInterpreter().adaptivePredict(_input,47,_ctx) ) { + switch ( getInterpreter().adaptivePredict(_input,48,_ctx) ) { case 1: { - setState(518); + setState(524); expr(0); } break; case 2: { - setState(519); + setState(525); typeDecl(0); } break; } - setState(522); + setState(528); match(PAR_END); } break; @@ -4486,27 +4532,27 @@ public class KickCParser extends Parser { _localctx = new ExprTypeIdContext(_localctx); _ctx = _localctx; _prevctx = _localctx; - setState(524); + setState(530); match(TYPEID); - setState(525); + setState(531); match(PAR_BEGIN); - setState(528); + setState(534); _errHandler.sync(this); - switch ( getInterpreter().adaptivePredict(_input,48,_ctx) ) { + switch ( getInterpreter().adaptivePredict(_input,49,_ctx) ) { case 1: { - setState(526); + setState(532); expr(0); } break; case 2: { - setState(527); + setState(533); typeDecl(0); } break; } - setState(530); + setState(536); match(PAR_END); } break; @@ -4515,13 +4561,13 @@ public class KickCParser extends Parser { _localctx = new ExprCastContext(_localctx); _ctx = _localctx; _prevctx = _localctx; - setState(532); + setState(538); match(PAR_BEGIN); - setState(533); + setState(539); typeDecl(0); - setState(534); + setState(540); match(PAR_END); - setState(535); + setState(541); expr(24); } break; @@ -4530,7 +4576,7 @@ public class KickCParser extends Parser { _localctx = new ExprPreModContext(_localctx); _ctx = _localctx; _prevctx = _localctx; - setState(537); + setState(543); _la = _input.LA(1); if ( !(_la==INC || _la==DEC) ) { _errHandler.recoverInline(this); @@ -4540,7 +4586,7 @@ public class KickCParser extends Parser { _errHandler.reportMatch(this); consume(); } - setState(538); + setState(544); expr(23); } break; @@ -4549,9 +4595,9 @@ public class KickCParser extends Parser { _localctx = new ExprPtrContext(_localctx); _ctx = _localctx; _prevctx = _localctx; - setState(539); + setState(545); match(ASTERISK); - setState(540); + setState(546); expr(21); } break; @@ -4560,7 +4606,7 @@ public class KickCParser extends Parser { _localctx = new ExprUnaryContext(_localctx); _ctx = _localctx; _prevctx = _localctx; - setState(541); + setState(547); _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); @@ -4570,7 +4616,7 @@ public class KickCParser extends Parser { _errHandler.reportMatch(this); consume(); } - setState(542); + setState(548); expr(20); } break; @@ -4579,7 +4625,7 @@ public class KickCParser extends Parser { _localctx = new ExprUnaryContext(_localctx); _ctx = _localctx; _prevctx = _localctx; - setState(543); + setState(549); _la = _input.LA(1); if ( !(_la==LESS_THAN || _la==GREATER_THAN) ) { _errHandler.recoverInline(this); @@ -4589,7 +4635,7 @@ public class KickCParser extends Parser { _errHandler.reportMatch(this); consume(); } - setState(544); + setState(550); expr(16); } break; @@ -4598,27 +4644,27 @@ public class KickCParser extends Parser { _localctx = new InitListContext(_localctx); _ctx = _localctx; _prevctx = _localctx; - setState(545); - match(CURLY_BEGIN); - setState(546); - expr(0); setState(551); + match(CURLY_BEGIN); + setState(552); + expr(0); + setState(557); _errHandler.sync(this); _la = _input.LA(1); while (_la==COMMA) { { { - setState(547); + setState(553); match(COMMA); - setState(548); + setState(554); expr(0); } } - setState(553); + setState(559); _errHandler.sync(this); _la = _input.LA(1); } - setState(554); + setState(560); match(CURLY_END); } break; @@ -4627,7 +4673,7 @@ public class KickCParser extends Parser { _localctx = new ExprIdContext(_localctx); _ctx = _localctx; _prevctx = _localctx; - setState(556); + setState(562); match(NAME); } break; @@ -4636,7 +4682,7 @@ public class KickCParser extends Parser { _localctx = new ExprNumberContext(_localctx); _ctx = _localctx; _prevctx = _localctx; - setState(557); + setState(563); match(NUMBER); } break; @@ -4645,7 +4691,7 @@ public class KickCParser extends Parser { _localctx = new ExprStringContext(_localctx); _ctx = _localctx; _prevctx = _localctx; - setState(559); + setState(565); _errHandler.sync(this); _alt = 1; do { @@ -4653,7 +4699,7 @@ public class KickCParser extends Parser { case 1: { { - setState(558); + setState(564); match(STRING); } } @@ -4661,9 +4707,9 @@ public class KickCParser extends Parser { default: throw new NoViableAltException(this); } - setState(561); + setState(567); _errHandler.sync(this); - _alt = getInterpreter().adaptivePredict(_input,50,_ctx); + _alt = getInterpreter().adaptivePredict(_input,51,_ctx); } while ( _alt!=2 && _alt!=org.antlr.v4.runtime.atn.ATN.INVALID_ALT_NUMBER ); } break; @@ -4672,7 +4718,7 @@ public class KickCParser extends Parser { _localctx = new ExprCharContext(_localctx); _ctx = _localctx; _prevctx = _localctx; - setState(563); + setState(569); match(CHAR); } break; @@ -4681,30 +4727,30 @@ public class KickCParser extends Parser { _localctx = new ExprBoolContext(_localctx); _ctx = _localctx; _prevctx = _localctx; - setState(564); + setState(570); match(BOOLEAN); } break; } _ctx.stop = _input.LT(-1); - setState(627); + setState(633); _errHandler.sync(this); - _alt = getInterpreter().adaptivePredict(_input,54,_ctx); + _alt = getInterpreter().adaptivePredict(_input,55,_ctx); while ( _alt!=2 && _alt!=org.antlr.v4.runtime.atn.ATN.INVALID_ALT_NUMBER ) { if ( _alt==1 ) { if ( _parseListeners!=null ) triggerExitRuleEvent(); _prevctx = _localctx; { - setState(625); + setState(631); _errHandler.sync(this); - switch ( getInterpreter().adaptivePredict(_input,53,_ctx) ) { + switch ( getInterpreter().adaptivePredict(_input,54,_ctx) ) { case 1: { _localctx = new ExprBinaryContext(new ExprContext(_parentctx, _parentState)); pushNewRecursionContext(_localctx, _startState, RULE_expr); - setState(567); + setState(573); if (!(precpred(_ctx, 19))) throw new FailedPredicateException(this, "precpred(_ctx, 19)"); - setState(568); + setState(574); _la = _input.LA(1); if ( !(_la==SHIFT_LEFT || _la==SHIFT_RIGHT) ) { _errHandler.recoverInline(this); @@ -4714,7 +4760,7 @@ public class KickCParser extends Parser { _errHandler.reportMatch(this); consume(); } - setState(569); + setState(575); expr(20); } break; @@ -4722,9 +4768,9 @@ public class KickCParser extends Parser { { _localctx = new ExprBinaryContext(new ExprContext(_parentctx, _parentState)); pushNewRecursionContext(_localctx, _startState, RULE_expr); - setState(570); + setState(576); if (!(precpred(_ctx, 18))) throw new FailedPredicateException(this, "precpred(_ctx, 18)"); - setState(571); + setState(577); _la = _input.LA(1); if ( !((((_la) & ~0x3f) == 0 && ((1L << _la) & ((1L << ASTERISK) | (1L << DIVIDE) | (1L << MODULO))) != 0)) ) { _errHandler.recoverInline(this); @@ -4734,7 +4780,7 @@ public class KickCParser extends Parser { _errHandler.reportMatch(this); consume(); } - setState(572); + setState(578); expr(19); } break; @@ -4742,9 +4788,9 @@ public class KickCParser extends Parser { { _localctx = new ExprBinaryContext(new ExprContext(_parentctx, _parentState)); pushNewRecursionContext(_localctx, _startState, RULE_expr); - setState(573); + setState(579); if (!(precpred(_ctx, 17))) throw new FailedPredicateException(this, "precpred(_ctx, 17)"); - setState(574); + setState(580); _la = _input.LA(1); if ( !(_la==PLUS || _la==MINUS) ) { _errHandler.recoverInline(this); @@ -4754,7 +4800,7 @@ public class KickCParser extends Parser { _errHandler.reportMatch(this); consume(); } - setState(575); + setState(581); expr(18); } break; @@ -4762,9 +4808,9 @@ public class KickCParser extends Parser { { _localctx = new ExprBinaryContext(new ExprContext(_parentctx, _parentState)); pushNewRecursionContext(_localctx, _startState, RULE_expr); - setState(576); + setState(582); if (!(precpred(_ctx, 15))) throw new FailedPredicateException(this, "precpred(_ctx, 15)"); - setState(577); + setState(583); _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); @@ -4774,7 +4820,7 @@ public class KickCParser extends Parser { _errHandler.reportMatch(this); consume(); } - setState(578); + setState(584); expr(16); } break; @@ -4782,13 +4828,13 @@ public class KickCParser extends Parser { { _localctx = new ExprBinaryContext(new ExprContext(_parentctx, _parentState)); pushNewRecursionContext(_localctx, _startState, RULE_expr); - setState(579); + setState(585); if (!(precpred(_ctx, 14))) throw new FailedPredicateException(this, "precpred(_ctx, 14)"); { - setState(580); + setState(586); match(AND); } - setState(581); + setState(587); expr(15); } break; @@ -4796,13 +4842,13 @@ public class KickCParser extends Parser { { _localctx = new ExprBinaryContext(new ExprContext(_parentctx, _parentState)); pushNewRecursionContext(_localctx, _startState, RULE_expr); - setState(582); + setState(588); if (!(precpred(_ctx, 13))) throw new FailedPredicateException(this, "precpred(_ctx, 13)"); { - setState(583); + setState(589); match(BIT_XOR); } - setState(584); + setState(590); expr(14); } break; @@ -4810,13 +4856,13 @@ public class KickCParser extends Parser { { _localctx = new ExprBinaryContext(new ExprContext(_parentctx, _parentState)); pushNewRecursionContext(_localctx, _startState, RULE_expr); - setState(585); + setState(591); if (!(precpred(_ctx, 12))) throw new FailedPredicateException(this, "precpred(_ctx, 12)"); { - setState(586); + setState(592); match(BIT_OR); } - setState(587); + setState(593); expr(13); } break; @@ -4824,13 +4870,13 @@ public class KickCParser extends Parser { { _localctx = new ExprBinaryContext(new ExprContext(_parentctx, _parentState)); pushNewRecursionContext(_localctx, _startState, RULE_expr); - setState(588); + setState(594); if (!(precpred(_ctx, 11))) throw new FailedPredicateException(this, "precpred(_ctx, 11)"); { - setState(589); + setState(595); match(LOGIC_AND); } - setState(590); + setState(596); expr(12); } break; @@ -4838,13 +4884,13 @@ public class KickCParser extends Parser { { _localctx = new ExprBinaryContext(new ExprContext(_parentctx, _parentState)); pushNewRecursionContext(_localctx, _startState, RULE_expr); - setState(591); + setState(597); if (!(precpred(_ctx, 10))) throw new FailedPredicateException(this, "precpred(_ctx, 10)"); { - setState(592); + setState(598); match(LOGIC_OR); } - setState(593); + setState(599); expr(11); } break; @@ -4852,15 +4898,15 @@ public class KickCParser extends Parser { { _localctx = new ExprTernaryContext(new ExprContext(_parentctx, _parentState)); pushNewRecursionContext(_localctx, _startState, RULE_expr); - setState(594); + setState(600); if (!(precpred(_ctx, 9))) throw new FailedPredicateException(this, "precpred(_ctx, 9)"); - setState(595); + setState(601); match(CONDITION); - setState(596); + setState(602); expr(0); - setState(597); + setState(603); match(COLON); - setState(598); + setState(604); expr(10); } break; @@ -4868,11 +4914,11 @@ public class KickCParser extends Parser { { _localctx = new ExprAssignmentContext(new ExprContext(_parentctx, _parentState)); pushNewRecursionContext(_localctx, _startState, RULE_expr); - setState(600); + setState(606); if (!(precpred(_ctx, 8))) throw new FailedPredicateException(this, "precpred(_ctx, 8)"); - setState(601); + setState(607); match(ASSIGN); - setState(602); + setState(608); expr(8); } break; @@ -4880,11 +4926,11 @@ public class KickCParser extends Parser { { _localctx = new ExprAssignmentCompoundContext(new ExprContext(_parentctx, _parentState)); pushNewRecursionContext(_localctx, _startState, RULE_expr); - setState(603); + setState(609); if (!(precpred(_ctx, 7))) throw new FailedPredicateException(this, "precpred(_ctx, 7)"); - setState(604); + setState(610); match(ASSIGN_COMPOUND); - setState(605); + setState(611); expr(7); } break; @@ -4892,11 +4938,11 @@ public class KickCParser extends Parser { { _localctx = new ExprDotContext(new ExprContext(_parentctx, _parentState)); pushNewRecursionContext(_localctx, _startState, RULE_expr); - setState(606); + setState(612); if (!(precpred(_ctx, 30))) throw new FailedPredicateException(this, "precpred(_ctx, 30)"); - setState(607); + setState(613); match(DOT); - setState(608); + setState(614); match(NAME); } break; @@ -4904,11 +4950,11 @@ public class KickCParser extends Parser { { _localctx = new ExprArrowContext(new ExprContext(_parentctx, _parentState)); pushNewRecursionContext(_localctx, _startState, RULE_expr); - setState(609); + setState(615); if (!(precpred(_ctx, 29))) throw new FailedPredicateException(this, "precpred(_ctx, 29)"); - setState(610); + setState(616); match(ARROW); - setState(611); + setState(617); match(NAME); } break; @@ -4916,21 +4962,21 @@ public class KickCParser extends Parser { { _localctx = new ExprCallContext(new ExprContext(_parentctx, _parentState)); pushNewRecursionContext(_localctx, _startState, RULE_expr); - setState(612); + setState(618); if (!(precpred(_ctx, 28))) throw new FailedPredicateException(this, "precpred(_ctx, 28)"); - setState(613); + setState(619); match(PAR_BEGIN); - setState(615); + setState(621); _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 - 73)) & ~0x3f) == 0 && ((1L << (_la - 73)) & ((1L << (SIZEOF - 73)) | (1L << (TYPEID - 73)) | (1L << (LOGIC_NOT - 73)) | (1L << (BOOLEAN - 73)) | (1L << (STRING - 73)) | (1L << (CHAR - 73)) | (1L << (NUMBER - 73)) | (1L << (NAME - 73)))) != 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 - 74)) & ~0x3f) == 0 && ((1L << (_la - 74)) & ((1L << (SIZEOF - 74)) | (1L << (TYPEID - 74)) | (1L << (LOGIC_NOT - 74)) | (1L << (BOOLEAN - 74)) | (1L << (STRING - 74)) | (1L << (CHAR - 74)) | (1L << (NUMBER - 74)) | (1L << (NAME - 74)))) != 0)) { { - setState(614); + setState(620); parameterList(); } } - setState(617); + setState(623); match(PAR_END); } break; @@ -4938,13 +4984,13 @@ public class KickCParser extends Parser { { _localctx = new ExprArrayContext(new ExprContext(_parentctx, _parentState)); pushNewRecursionContext(_localctx, _startState, RULE_expr); - setState(618); + setState(624); if (!(precpred(_ctx, 25))) throw new FailedPredicateException(this, "precpred(_ctx, 25)"); - setState(619); + setState(625); match(BRACKET_BEGIN); - setState(620); + setState(626); commaExpr(0); - setState(621); + setState(627); match(BRACKET_END); } break; @@ -4952,9 +4998,9 @@ public class KickCParser extends Parser { { _localctx = new ExprPostModContext(new ExprContext(_parentctx, _parentState)); pushNewRecursionContext(_localctx, _startState, RULE_expr); - setState(623); + setState(629); if (!(precpred(_ctx, 22))) throw new FailedPredicateException(this, "precpred(_ctx, 22)"); - setState(624); + setState(630); _la = _input.LA(1); if ( !(_la==INC || _la==DEC) ) { _errHandler.recoverInline(this); @@ -4969,9 +5015,9 @@ public class KickCParser extends Parser { } } } - setState(629); + setState(635); _errHandler.sync(this); - _alt = getInterpreter().adaptivePredict(_input,54,_ctx); + _alt = getInterpreter().adaptivePredict(_input,55,_ctx); } } } @@ -5023,21 +5069,21 @@ public class KickCParser extends Parser { try { enterOuterAlt(_localctx, 1); { - setState(630); + setState(636); expr(0); - setState(635); + setState(641); _errHandler.sync(this); _la = _input.LA(1); while (_la==COMMA) { { { - setState(631); + setState(637); match(COMMA); - setState(632); + setState(638); expr(0); } } - setState(637); + setState(643); _errHandler.sync(this); _la = _input.LA(1); } @@ -5086,19 +5132,19 @@ public class KickCParser extends Parser { try { enterOuterAlt(_localctx, 1); { - setState(638); + setState(644); match(KICKASM); - setState(640); + setState(646); _errHandler.sync(this); _la = _input.LA(1); if (_la==PAR_BEGIN) { { - setState(639); + setState(645); asmDirectives(); } } - setState(642); + setState(648); match(KICKASM_BODY); } } @@ -5152,27 +5198,27 @@ public class KickCParser extends Parser { try { enterOuterAlt(_localctx, 1); { - setState(644); - match(PAR_BEGIN); - setState(645); - asmDirective(); setState(650); + match(PAR_BEGIN); + setState(651); + asmDirective(); + setState(656); _errHandler.sync(this); _la = _input.LA(1); while (_la==COMMA) { { { - setState(646); + setState(652); match(COMMA); - setState(647); + setState(653); asmDirective(); } } - setState(652); + setState(658); _errHandler.sync(this); _la = _input.LA(1); } - setState(653); + setState(659); match(PAR_END); } } @@ -5318,16 +5364,16 @@ public class KickCParser extends Parser { AsmDirectiveContext _localctx = new AsmDirectiveContext(_ctx, getState()); enterRule(_localctx, 70, RULE_asmDirective); try { - setState(670); + setState(676); _errHandler.sync(this); switch (_input.LA(1)) { case RESOURCE: _localctx = new AsmDirectiveResourceContext(_localctx); enterOuterAlt(_localctx, 1); { - setState(655); + setState(661); match(RESOURCE); - setState(656); + setState(662); match(STRING); } break; @@ -5335,9 +5381,9 @@ public class KickCParser extends Parser { _localctx = new AsmDirectiveUsesContext(_localctx); enterOuterAlt(_localctx, 2); { - setState(657); + setState(663); match(USES); - setState(658); + setState(664); match(NAME); } break; @@ -5345,9 +5391,9 @@ public class KickCParser extends Parser { _localctx = new AsmDirectiveClobberContext(_localctx); enterOuterAlt(_localctx, 3); { - setState(659); + setState(665); match(CLOBBERS); - setState(660); + setState(666); match(STRING); } break; @@ -5355,9 +5401,9 @@ public class KickCParser extends Parser { _localctx = new AsmDirectiveBytesContext(_localctx); enterOuterAlt(_localctx, 4); { - setState(661); + setState(667); match(BYTES); - setState(662); + setState(668); expr(0); } break; @@ -5365,9 +5411,9 @@ public class KickCParser extends Parser { _localctx = new AsmDirectiveCyclesContext(_localctx); enterOuterAlt(_localctx, 5); { - setState(663); + setState(669); match(CYCLES); - setState(664); + setState(670); expr(0); } break; @@ -5375,14 +5421,14 @@ public class KickCParser extends Parser { _localctx = new AsmDirectiveAddressContext(_localctx); enterOuterAlt(_localctx, 6); { - setState(665); + setState(671); match(PC); - setState(668); + setState(674); _errHandler.sync(this); switch (_input.LA(1)) { case INLINE: { - setState(666); + setState(672); match(INLINE); } break; @@ -5406,7 +5452,7 @@ public class KickCParser extends Parser { case NUMBER: case NAME: { - setState(667); + setState(673); expr(0); } break; @@ -5463,17 +5509,17 @@ public class KickCParser extends Parser { try { enterOuterAlt(_localctx, 1); { - setState(675); + setState(681); _errHandler.sync(this); _la = _input.LA(1); - while (((((_la - 101)) & ~0x3f) == 0 && ((1L << (_la - 101)) & ((1L << (ASM_BYTE - 101)) | (1L << (ASM_MNEMONIC - 101)) | (1L << (ASM_MULTI_NAME - 101)) | (1L << (ASM_NAME - 101)))) != 0)) { + while (((((_la - 102)) & ~0x3f) == 0 && ((1L << (_la - 102)) & ((1L << (ASM_BYTE - 102)) | (1L << (ASM_MNEMONIC - 102)) | (1L << (ASM_MULTI_NAME - 102)) | (1L << (ASM_NAME - 102)))) != 0)) { { { - setState(672); + setState(678); asmLine(); } } - setState(677); + setState(683); _errHandler.sync(this); _la = _input.LA(1); } @@ -5523,28 +5569,28 @@ public class KickCParser extends Parser { AsmLineContext _localctx = new AsmLineContext(_ctx, getState()); enterRule(_localctx, 74, RULE_asmLine); try { - setState(681); + setState(687); _errHandler.sync(this); switch (_input.LA(1)) { case ASM_MULTI_NAME: case ASM_NAME: enterOuterAlt(_localctx, 1); { - setState(678); + setState(684); asmLabel(); } break; case ASM_MNEMONIC: enterOuterAlt(_localctx, 2); { - setState(679); + setState(685); asmInstruction(); } break; case ASM_BYTE: enterOuterAlt(_localctx, 3); { - setState(680); + setState(686); asmBytes(); } break; @@ -5615,16 +5661,16 @@ public class KickCParser extends Parser { AsmLabelContext _localctx = new AsmLabelContext(_ctx, getState()); enterRule(_localctx, 76, RULE_asmLabel); try { - setState(687); + setState(693); _errHandler.sync(this); switch (_input.LA(1)) { case ASM_NAME: _localctx = new AsmLabelNameContext(_localctx); enterOuterAlt(_localctx, 1); { - setState(683); + setState(689); match(ASM_NAME); - setState(684); + setState(690); match(ASM_COLON); } break; @@ -5632,9 +5678,9 @@ public class KickCParser extends Parser { _localctx = new AsmLabelMultiContext(_localctx); enterOuterAlt(_localctx, 2); { - setState(685); + setState(691); match(ASM_MULTI_NAME); - setState(686); + setState(692); match(ASM_COLON); } break; @@ -5683,14 +5729,14 @@ public class KickCParser extends Parser { try { enterOuterAlt(_localctx, 1); { - setState(689); + setState(695); match(ASM_MNEMONIC); - setState(691); + setState(697); _errHandler.sync(this); - switch ( getInterpreter().adaptivePredict(_input,63,_ctx) ) { + switch ( getInterpreter().adaptivePredict(_input,64,_ctx) ) { case 1: { - setState(690); + setState(696); asmParamMode(); } break; @@ -5746,23 +5792,23 @@ public class KickCParser extends Parser { try { enterOuterAlt(_localctx, 1); { - setState(693); - match(ASM_BYTE); - setState(694); - asmExpr(0); setState(699); + match(ASM_BYTE); + setState(700); + asmExpr(0); + setState(705); _errHandler.sync(this); _la = _input.LA(1); while (_la==ASM_COMMA) { { { - setState(695); + setState(701); match(ASM_COMMA); - setState(696); + setState(702); asmExpr(0); } } - setState(701); + setState(707); _errHandler.sync(this); _la = _input.LA(1); } @@ -5922,14 +5968,14 @@ public class KickCParser extends Parser { AsmParamModeContext _localctx = new AsmParamModeContext(_ctx, getState()); enterRule(_localctx, 82, RULE_asmParamMode); try { - setState(725); + setState(731); _errHandler.sync(this); - switch ( getInterpreter().adaptivePredict(_input,65,_ctx) ) { + switch ( getInterpreter().adaptivePredict(_input,66,_ctx) ) { case 1: _localctx = new AsmModeAbsContext(_localctx); enterOuterAlt(_localctx, 1); { - setState(702); + setState(708); asmExpr(0); } break; @@ -5937,9 +5983,9 @@ public class KickCParser extends Parser { _localctx = new AsmModeImmContext(_localctx); enterOuterAlt(_localctx, 2); { - setState(703); + setState(709); match(ASM_IMM); - setState(704); + setState(710); asmExpr(0); } break; @@ -5947,11 +5993,11 @@ public class KickCParser extends Parser { _localctx = new AsmModeAbsXYContext(_localctx); enterOuterAlt(_localctx, 3); { - setState(705); + setState(711); asmExpr(0); - setState(706); + setState(712); match(ASM_COMMA); - setState(707); + setState(713); match(ASM_NAME); } break; @@ -5959,15 +6005,15 @@ public class KickCParser extends Parser { _localctx = new AsmModeIndIdxXYContext(_localctx); enterOuterAlt(_localctx, 4); { - setState(709); + setState(715); match(ASM_PAR_BEGIN); - setState(710); + setState(716); asmExpr(0); - setState(711); + setState(717); match(ASM_PAR_END); - setState(712); + setState(718); match(ASM_COMMA); - setState(713); + setState(719); match(ASM_NAME); } break; @@ -5975,15 +6021,15 @@ public class KickCParser extends Parser { _localctx = new AsmModeIdxIndXYContext(_localctx); enterOuterAlt(_localctx, 5); { - setState(715); + setState(721); match(ASM_PAR_BEGIN); - setState(716); + setState(722); asmExpr(0); - setState(717); + setState(723); match(ASM_COMMA); - setState(718); + setState(724); match(ASM_NAME); - setState(719); + setState(725); match(ASM_PAR_END); } break; @@ -5991,11 +6037,11 @@ public class KickCParser extends Parser { _localctx = new AsmModeIndContext(_localctx); enterOuterAlt(_localctx, 6); { - setState(721); + setState(727); match(ASM_PAR_BEGIN); - setState(722); + setState(728); asmExpr(0); - setState(723); + setState(729); match(ASM_PAR_END); } break; @@ -6200,7 +6246,7 @@ public class KickCParser extends Parser { int _alt; enterOuterAlt(_localctx, 1); { - setState(741); + setState(747); _errHandler.sync(this); switch (_input.LA(1)) { case ASM_BRACKET_BEGIN: @@ -6209,11 +6255,11 @@ public class KickCParser extends Parser { _ctx = _localctx; _prevctx = _localctx; - setState(728); + setState(734); match(ASM_BRACKET_BEGIN); - setState(729); + setState(735); asmExpr(0); - setState(730); + setState(736); match(ASM_BRACKET_END); } break; @@ -6225,9 +6271,9 @@ public class KickCParser extends Parser { _localctx = new AsmExprUnaryContext(_localctx); _ctx = _localctx; _prevctx = _localctx; - setState(732); + setState(738); _la = _input.LA(1); - if ( !(((((_la - 113)) & ~0x3f) == 0 && ((1L << (_la - 113)) & ((1L << (ASM_PLUS - 113)) | (1L << (ASM_MINUS - 113)) | (1L << (ASM_LESS_THAN - 113)) | (1L << (ASM_GREATER_THAN - 113)))) != 0)) ) { + if ( !(((((_la - 114)) & ~0x3f) == 0 && ((1L << (_la - 114)) & ((1L << (ASM_PLUS - 114)) | (1L << (ASM_MINUS - 114)) | (1L << (ASM_LESS_THAN - 114)) | (1L << (ASM_GREATER_THAN - 114)))) != 0)) ) { _errHandler.recoverInline(this); } else { @@ -6235,7 +6281,7 @@ public class KickCParser extends Parser { _errHandler.reportMatch(this); consume(); } - setState(733); + setState(739); asmExpr(8); } break; @@ -6244,7 +6290,7 @@ public class KickCParser extends Parser { _localctx = new AsmExprLabelContext(_localctx); _ctx = _localctx; _prevctx = _localctx; - setState(734); + setState(740); match(ASM_NAME); } break; @@ -6253,7 +6299,7 @@ public class KickCParser extends Parser { _localctx = new AsmExprLabelRelContext(_localctx); _ctx = _localctx; _prevctx = _localctx; - setState(735); + setState(741); match(ASM_MULTI_REL); } break; @@ -6262,11 +6308,11 @@ public class KickCParser extends Parser { _localctx = new AsmExprReplaceContext(_localctx); _ctx = _localctx; _prevctx = _localctx; - setState(736); + setState(742); match(ASM_CURLY_BEGIN); - setState(737); + setState(743); match(ASM_NAME); - setState(738); + setState(744); match(ASM_CURLY_END); } break; @@ -6275,7 +6321,7 @@ public class KickCParser extends Parser { _localctx = new AsmExprIntContext(_localctx); _ctx = _localctx; _prevctx = _localctx; - setState(739); + setState(745); match(ASM_NUMBER); } break; @@ -6284,7 +6330,7 @@ public class KickCParser extends Parser { _localctx = new AsmExprCharContext(_localctx); _ctx = _localctx; _prevctx = _localctx; - setState(740); + setState(746); match(ASM_CHAR); } break; @@ -6292,28 +6338,28 @@ public class KickCParser extends Parser { throw new NoViableAltException(this); } _ctx.stop = _input.LT(-1); - setState(757); + setState(763); _errHandler.sync(this); - _alt = getInterpreter().adaptivePredict(_input,68,_ctx); + _alt = getInterpreter().adaptivePredict(_input,69,_ctx); while ( _alt!=2 && _alt!=org.antlr.v4.runtime.atn.ATN.INVALID_ALT_NUMBER ) { if ( _alt==1 ) { if ( _parseListeners!=null ) triggerExitRuleEvent(); _prevctx = _localctx; { - setState(755); + setState(761); _errHandler.sync(this); - switch ( getInterpreter().adaptivePredict(_input,67,_ctx) ) { + switch ( getInterpreter().adaptivePredict(_input,68,_ctx) ) { case 1: { _localctx = new AsmExprBinaryContext(new AsmExprContext(_parentctx, _parentState)); pushNewRecursionContext(_localctx, _startState, RULE_asmExpr); - setState(743); + setState(749); if (!(precpred(_ctx, 10))) throw new FailedPredicateException(this, "precpred(_ctx, 10)"); { - setState(744); + setState(750); match(ASM_DOT); } - setState(745); + setState(751); asmExpr(11); } break; @@ -6321,9 +6367,9 @@ public class KickCParser extends Parser { { _localctx = new AsmExprBinaryContext(new AsmExprContext(_parentctx, _parentState)); pushNewRecursionContext(_localctx, _startState, RULE_asmExpr); - setState(746); + setState(752); if (!(precpred(_ctx, 9))) throw new FailedPredicateException(this, "precpred(_ctx, 9)"); - setState(747); + setState(753); _la = _input.LA(1); if ( !(_la==ASM_SHIFT_LEFT || _la==ASM_SHIFT_RIGHT) ) { _errHandler.recoverInline(this); @@ -6333,7 +6379,7 @@ public class KickCParser extends Parser { _errHandler.reportMatch(this); consume(); } - setState(748); + setState(754); asmExpr(10); } break; @@ -6341,9 +6387,9 @@ public class KickCParser extends Parser { { _localctx = new AsmExprBinaryContext(new AsmExprContext(_parentctx, _parentState)); pushNewRecursionContext(_localctx, _startState, RULE_asmExpr); - setState(749); + setState(755); if (!(precpred(_ctx, 7))) throw new FailedPredicateException(this, "precpred(_ctx, 7)"); - setState(750); + setState(756); _la = _input.LA(1); if ( !(_la==ASM_MULTIPLY || _la==ASM_DIVIDE) ) { _errHandler.recoverInline(this); @@ -6353,7 +6399,7 @@ public class KickCParser extends Parser { _errHandler.reportMatch(this); consume(); } - setState(751); + setState(757); asmExpr(8); } break; @@ -6361,9 +6407,9 @@ public class KickCParser extends Parser { { _localctx = new AsmExprBinaryContext(new AsmExprContext(_parentctx, _parentState)); pushNewRecursionContext(_localctx, _startState, RULE_asmExpr); - setState(752); + setState(758); if (!(precpred(_ctx, 6))) throw new FailedPredicateException(this, "precpred(_ctx, 6)"); - setState(753); + setState(759); _la = _input.LA(1); if ( !(_la==ASM_PLUS || _la==ASM_MINUS) ) { _errHandler.recoverInline(this); @@ -6373,16 +6419,16 @@ public class KickCParser extends Parser { _errHandler.reportMatch(this); consume(); } - setState(754); + setState(760); asmExpr(7); } break; } } } - setState(759); + setState(765); _errHandler.sync(this); - _alt = getInterpreter().adaptivePredict(_input,68,_ctx); + _alt = getInterpreter().adaptivePredict(_input,69,_ctx); } } } @@ -6500,7 +6546,7 @@ public class KickCParser extends Parser { } public static final String _serializedATN = - "\3\u608b\ua72a\u8133\ub9ed\u417c\u3be7\u7786\u5964\3\u008a\u02fb\4\2\t"+ + "\3\u608b\ua72a\u8133\ub9ed\u417c\u3be7\u7786\u5964\3\u008b\u0301\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"+ @@ -6519,281 +6565,283 @@ public class KickCParser extends Parser { "\3\20\3\20\3\20\3\20\3\20\3\20\3\20\3\20\3\20\3\20\3\20\3\20\3\20\3\20"+ "\3\20\3\20\3\20\3\20\3\20\3\20\3\20\3\20\3\20\3\20\3\20\3\20\3\20\3\20"+ "\3\20\3\20\3\20\3\20\5\20\u00ff\n\20\3\21\3\21\3\21\3\21\3\21\3\21\3\21"+ - "\3\21\3\21\3\21\3\21\5\21\u010c\n\21\3\21\3\21\3\21\3\21\3\21\3\21\5\21"+ - "\u0114\n\21\3\21\3\21\3\21\3\21\3\21\7\21\u011b\n\21\f\21\16\21\u011e"+ - "\13\21\3\21\3\21\5\21\u0122\n\21\3\22\6\22\u0125\n\22\r\22\16\22\u0126"+ - "\3\23\3\23\3\23\3\23\3\23\5\23\u012e\n\23\3\23\3\23\3\23\3\23\3\23\3\23"+ - "\3\23\3\23\3\23\3\23\3\23\5\23\u013b\n\23\3\23\7\23\u013e\n\23\f\23\16"+ - "\23\u0141\13\23\3\23\3\23\3\23\3\23\3\23\3\23\3\23\7\23\u014a\n\23\f\23"+ - "\16\23\u014d\13\23\3\23\3\23\3\23\3\23\3\23\3\23\3\23\3\23\3\23\7\23\u0158"+ - "\n\23\f\23\16\23\u015b\13\23\3\23\3\23\3\23\3\23\3\23\3\23\3\23\3\23\3"+ - "\23\3\23\3\23\3\23\3\23\3\23\3\23\3\23\5\23\u016d\n\23\3\23\3\23\3\23"+ - "\3\23\3\23\3\23\3\23\5\23\u0176\n\23\3\23\3\23\3\23\3\23\3\23\5\23\u017d"+ - "\n\23\3\24\6\24\u0180\n\24\r\24\16\24\u0181\3\24\3\24\3\24\5\24\u0187"+ - "\n\24\5\24\u0189\n\24\3\25\3\25\3\25\3\25\5\25\u018f\n\25\3\26\3\26\3"+ - "\26\3\26\3\26\5\26\u0196\n\26\3\26\5\26\u0199\n\26\3\26\3\26\3\26\3\26"+ - "\3\26\3\26\5\26\u01a1\n\26\3\27\5\27\u01a4\n\27\3\27\5\27\u01a7\n\27\3"+ - "\30\3\30\3\30\3\30\3\30\3\30\3\30\3\30\5\30\u01b1\n\30\3\30\3\30\3\30"+ - "\3\30\3\30\5\30\u01b8\n\30\3\30\3\30\3\30\3\30\3\30\5\30\u01bf\n\30\3"+ - "\30\3\30\3\30\3\30\7\30\u01c5\n\30\f\30\16\30\u01c8\13\30\3\31\3\31\3"+ - "\31\3\32\3\32\5\32\u01cf\n\32\3\32\3\32\6\32\u01d3\n\32\r\32\16\32\u01d4"+ - "\3\32\3\32\3\33\3\33\3\33\3\34\3\34\3\34\3\35\3\35\5\35\u01e1\n\35\3\35"+ - "\3\35\3\35\3\35\3\36\3\36\3\36\3\36\3\36\3\36\7\36\u01ed\n\36\f\36\16"+ - "\36\u01f0\13\36\3\37\3\37\3\37\5\37\u01f5\n\37\3 \3 \3 \3 \3 \3 \7 \u01fd"+ - "\n \f \16 \u0200\13 \3!\3!\3!\3!\3!\3!\3!\3!\3!\5!\u020b\n!\3!\3!\3!\3"+ - "!\3!\3!\5!\u0213\n!\3!\3!\3!\3!\3!\3!\3!\3!\3!\3!\3!\3!\3!\3!\3!\3!\3"+ - "!\3!\3!\7!\u0228\n!\f!\16!\u022b\13!\3!\3!\3!\3!\3!\6!\u0232\n!\r!\16"+ - "!\u0233\3!\3!\5!\u0238\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!\5!\u026a\n!\3!\3!\3!\3!\3!\3!\3!\3!\7"+ - "!\u0274\n!\f!\16!\u0277\13!\3\"\3\"\3\"\7\"\u027c\n\"\f\"\16\"\u027f\13"+ - "\"\3#\3#\5#\u0283\n#\3#\3#\3$\3$\3$\3$\7$\u028b\n$\f$\16$\u028e\13$\3"+ - "$\3$\3%\3%\3%\3%\3%\3%\3%\3%\3%\3%\3%\3%\3%\5%\u029f\n%\5%\u02a1\n%\3"+ - "&\7&\u02a4\n&\f&\16&\u02a7\13&\3\'\3\'\3\'\5\'\u02ac\n\'\3(\3(\3(\3(\5"+ - "(\u02b2\n(\3)\3)\5)\u02b6\n)\3*\3*\3*\3*\7*\u02bc\n*\f*\16*\u02bf\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+\u02d8\n+\3,\3,\3,\3,\3,\3,\3,\3,\3,\3,\3,\3,\3,\3,\5,\u02e8\n,\3,"+ - "\3,\3,\3,\3,\3,\3,\3,\3,\3,\3,\3,\7,\u02f6\n,\f,\16,\u02f9\13,\3,\2\b"+ - "\24.:>@V-\2\4\6\b\n\f\16\20\22\24\26\30\32\34\36 \"$&(*,.\60\62\64\66"+ - "8:<>@BDFHJLNPRTV\2\16\4\2ZZcc\3\2\26\27\5\2\21\22\30\31SS\4\2 ##\3\2"+ - "\34\35\3\2\23\25\3\2\21\22\3\2\36#\3\2sv\3\2qr\3\2wx\3\2st\2\u0365\2X"+ - "\3\2\2\2\4[\3\2\2\2\6a\3\2\2\2\bf\3\2\2\2\nh\3\2\2\2\fz\3\2\2\2\16|\3"+ - "\2\2\2\20\u0084\3\2\2\2\22\u008e\3\2\2\2\24\u0091\3\2\2\2\26\u00a4\3\2"+ - "\2\2\30\u00a6\3\2\2\2\32\u00b3\3\2\2\2\34\u00bf\3\2\2\2\36\u00fe\3\2\2"+ - "\2 \u0121\3\2\2\2\"\u0124\3\2\2\2$\u017c\3\2\2\2&\u017f\3\2\2\2(\u018a"+ - "\3\2\2\2*\u01a0\3\2\2\2,\u01a6\3\2\2\2.\u01b7\3\2\2\2\60\u01c9\3\2\2\2"+ - "\62\u01cc\3\2\2\2\64\u01d8\3\2\2\2\66\u01db\3\2\2\28\u01de\3\2\2\2:\u01e6"+ - "\3\2\2\2<\u01f1\3\2\2\2>\u01f6\3\2\2\2@\u0237\3\2\2\2B\u0278\3\2\2\2D"+ - "\u0280\3\2\2\2F\u0286\3\2\2\2H\u02a0\3\2\2\2J\u02a5\3\2\2\2L\u02ab\3\2"+ - "\2\2N\u02b1\3\2\2\2P\u02b3\3\2\2\2R\u02b7\3\2\2\2T\u02d7\3\2\2\2V\u02e7"+ - "\3\2\2\2XY\5\6\4\2YZ\7\2\2\3Z\3\3\2\2\2[\\\5J&\2\\]\7\2\2\3]\5\3\2\2\2"+ - "^`\5\b\5\2_^\3\2\2\2`c\3\2\2\2a_\3\2\2\2ab\3\2\2\2b\7\3\2\2\2ca\3\2\2"+ - "\2dg\5\f\7\2eg\5\n\6\2fd\3\2\2\2fe\3\2\2\2g\t\3\2\2\2hi\7(\2\2ij\7X\2"+ - "\2j\13\3\2\2\2kl\5\22\n\2lm\7\n\2\2m{\3\2\2\2no\5\62\32\2op\7\n\2\2p{"+ - "\3\2\2\2qr\58\35\2rs\7\n\2\2s{\3\2\2\2t{\5\30\r\2u{\5D#\2v{\5\36\20\2"+ - "wx\5\16\b\2xy\7\n\2\2y{\3\2\2\2zk\3\2\2\2zn\3\2\2\2zq\3\2\2\2zt\3\2\2"+ - "\2zu\3\2\2\2zv\3\2\2\2zw\3\2\2\2{\r\3\2\2\2|}\7)\2\2}~\5.\30\2~\177\7"+ - "c\2\2\177\u0080\b\b\1\2\u0080\17\3\2\2\2\u0081\u0083\5 \21\2\u0082\u0081"+ - "\3\2\2\2\u0083\u0086\3\2\2\2\u0084\u0082\3\2\2\2\u0084\u0085\3\2\2\2\u0085"+ - "\u0087\3\2\2\2\u0086\u0084\3\2\2\2\u0087\u008b\5.\30\2\u0088\u008a\5 "+ - "\21\2\u0089\u0088\3\2\2\2\u008a\u008d\3\2\2\2\u008b\u0089\3\2\2\2\u008b"+ - "\u008c\3\2\2\2\u008c\21\3\2\2\2\u008d\u008b\3\2\2\2\u008e\u008f\5\20\t"+ - "\2\u008f\u0090\5\24\13\2\u0090\23\3\2\2\2\u0091\u0092\b\13\1\2\u0092\u0093"+ - "\5\26\f\2\u0093\u0099\3\2\2\2\u0094\u0095\f\3\2\2\u0095\u0096\7\f\2\2"+ - "\u0096\u0098\5\26\f\2\u0097\u0094\3\2\2\2\u0098\u009b\3\2\2\2\u0099\u0097"+ - "\3\2\2\2\u0099\u009a\3\2\2\2\u009a\25\3\2\2\2\u009b\u0099\3\2\2\2\u009c"+ - "\u009f\7c\2\2\u009d\u009e\7&\2\2\u009e\u00a0\5@!\2\u009f\u009d\3\2\2\2"+ - "\u009f\u00a0\3\2\2\2\u00a0\u00a5\3\2\2\2\u00a1\u00a2\7c\2\2\u00a2\u00a3"+ - "\7&\2\2\u00a3\u00a5\5D#\2\u00a4\u009c\3\2\2\2\u00a4\u00a1\3\2\2\2\u00a5"+ - "\27\3\2\2\2\u00a6\u00a7\5\20\t\2\u00a7\u00a8\7c\2\2\u00a8\u00aa\7\b\2"+ - "\2\u00a9\u00ab\5\32\16\2\u00aa\u00a9\3\2\2\2\u00aa\u00ab\3\2\2\2\u00ab"+ - "\u00ac\3\2\2\2\u00ac\u00ad\7\t\2\2\u00ad\u00af\7\4\2\2\u00ae\u00b0\5\""+ - "\22\2\u00af\u00ae\3\2\2\2\u00af\u00b0\3\2\2\2\u00b0\u00b1\3\2\2\2\u00b1"+ - "\u00b2\7\5\2\2\u00b2\31\3\2\2\2\u00b3\u00b8\5\34\17\2\u00b4\u00b5\7\f"+ - "\2\2\u00b5\u00b7\5\34\17\2\u00b6\u00b4\3\2\2\2\u00b7\u00ba\3\2\2\2\u00b8"+ - "\u00b6\3\2\2\2\u00b8\u00b9\3\2\2\2\u00b9\33\3\2\2\2\u00ba\u00b8\3\2\2"+ - "\2\u00bb\u00bc\5\20\t\2\u00bc\u00bd\7c\2\2\u00bd\u00c0\3\2\2\2\u00be\u00c0"+ - "\7U\2\2\u00bf\u00bb\3\2\2\2\u00bf\u00be\3\2\2\2\u00c0\35\3\2\2\2\u00c1"+ - "\u00c2\7*\2\2\u00c2\u00c3\7+\2\2\u00c3\u00c4\3\2\2\2\u00c4\u00c5\7\b\2"+ - "\2\u00c5\u00ca\7Z\2\2\u00c6\u00c7\7\f\2\2\u00c7\u00c9\7Z\2\2\u00c8\u00c6"+ - "\3\2\2\2\u00c9\u00cc\3\2\2\2\u00ca\u00c8\3\2\2\2\u00ca\u00cb\3\2\2\2\u00cb"+ - "\u00cd\3\2\2\2\u00cc\u00ca\3\2\2\2\u00cd\u00ff\7\t\2\2\u00ce\u00cf\7*"+ - "\2\2\u00cf\u00d0\7,\2\2\u00d0\u00d1\3\2\2\2\u00d1\u00d2\7\b\2\2\u00d2"+ - "\u00d3\7Z\2\2\u00d3\u00ff\7\t\2\2\u00d4\u00d5\7*\2\2\u00d5\u00d6\7-\2"+ - "\2\u00d6\u00d7\3\2\2\2\u00d7\u00d8\7\b\2\2\u00d8\u00d9\7c\2\2\u00d9\u00ff"+ - "\7\t\2\2\u00da\u00db\7*\2\2\u00db\u00dc\7/\2\2\u00dc\u00dd\3\2\2\2\u00dd"+ - "\u00de\7\b\2\2\u00de\u00df\7c\2\2\u00df\u00ff\7\t\2\2\u00e0\u00e1\7*\2"+ - "\2\u00e1\u00e2\7.\2\2\u00e2\u00e3\3\2\2\2\u00e3\u00e4\7\b\2\2\u00e4\u00e5"+ - "\7X\2\2\u00e5\u00ff\7\t\2\2\u00e6\u00e7\7*\2\2\u00e7\u00e8\7\60\2\2\u00e8"+ - "\u00e9\3\2\2\2\u00e9\u00ea\7\b\2\2\u00ea\u00eb\7c\2\2\u00eb\u00ff\7\t"+ - "\2\2\u00ec\u00ed\7*\2\2\u00ed\u00ee\7\61\2\2\u00ee\u00ef\3\2\2\2\u00ef"+ - "\u00f0\7\b\2\2\u00f0\u00f1\7c\2\2\u00f1\u00ff\7\t\2\2\u00f2\u00f3\7*\2"+ - "\2\u00f3\u00f4\7\62\2\2\u00f4\u00f5\3\2\2\2\u00f5\u00f6\7\b\2\2\u00f6"+ - "\u00f7\7c\2\2\u00f7\u00ff\7\t\2\2\u00f8\u00f9\7*\2\2\u00f9\u00fa\7;\2"+ - "\2\u00fa\u00fb\3\2\2\2\u00fb\u00fc\7\b\2\2\u00fc\u00fd\7<\2\2\u00fd\u00ff"+ - "\7\t\2\2\u00fe\u00c1\3\2\2\2\u00fe\u00ce\3\2\2\2\u00fe\u00d4\3\2\2\2\u00fe"+ - "\u00da\3\2\2\2\u00fe\u00e0\3\2\2\2\u00fe\u00e6\3\2\2\2\u00fe\u00ec\3\2"+ - "\2\2\u00fe\u00f2\3\2\2\2\u00fe\u00f8\3\2\2\2\u00ff\37\3\2\2\2\u0100\u0122"+ - "\7\63\2\2\u0101\u0122\7\64\2\2\u0102\u0122\7\65\2\2\u0103\u0104\7\66\2"+ - "\2\u0104\u0105\7\b\2\2\u0105\u0106\7Z\2\2\u0106\u0122\7\t\2\2\u0107\u010b"+ - "\7\67\2\2\u0108\u0109\7\b\2\2\u0109\u010a\t\2\2\2\u010a\u010c\7\t\2\2"+ - "\u010b\u0108\3\2\2\2\u010b\u010c\3\2\2\2\u010c\u0122\3\2\2\2\u010d\u0122"+ - "\78\2\2\u010e\u0122\79\2\2\u010f\u0113\7:\2\2\u0110\u0111\7\b\2\2\u0111"+ - "\u0112\7c\2\2\u0112\u0114\7\t\2\2\u0113\u0110\3\2\2\2\u0113\u0114\3\2"+ - "\2\2\u0114\u0122\3\2\2\2\u0115\u0116\7+\2\2\u0116\u0117\7\b\2\2\u0117"+ - "\u011c\7Z\2\2\u0118\u0119\7\f\2\2\u0119\u011b\7Z\2\2\u011a\u0118\3\2\2"+ - "\2\u011b\u011e\3\2\2\2\u011c\u011a\3\2\2\2\u011c\u011d\3\2\2\2\u011d\u011f"+ - "\3\2\2\2\u011e\u011c\3\2\2\2\u011f\u0122\7\t\2\2\u0120\u0122\7<\2\2\u0121"+ - "\u0100\3\2\2\2\u0121\u0101\3\2\2\2\u0121\u0102\3\2\2\2\u0121\u0103\3\2"+ - "\2\2\u0121\u0107\3\2\2\2\u0121\u010d\3\2\2\2\u0121\u010e\3\2\2\2\u0121"+ - "\u010f\3\2\2\2\u0121\u0115\3\2\2\2\u0121\u0120\3\2\2\2\u0122!\3\2\2\2"+ - "\u0123\u0125\5$\23\2\u0124\u0123\3\2\2\2\u0125\u0126\3\2\2\2\u0126\u0124"+ - "\3\2\2\2\u0126\u0127\3\2\2\2\u0127#\3\2\2\2\u0128\u0129\5\22\n\2\u0129"+ - "\u012a\7\n\2\2\u012a\u017d\3\2\2\2\u012b\u012d\7\4\2\2\u012c\u012e\5\""+ - "\22\2\u012d\u012c\3\2\2\2\u012d\u012e\3\2\2\2\u012e\u012f\3\2\2\2\u012f"+ - "\u017d\7\5\2\2\u0130\u0131\5> \2\u0131\u0132\7\n\2\2\u0132\u017d\3\2\2"+ - "\2\u0133\u0134\7=\2\2\u0134\u0135\7\b\2\2\u0135\u0136\5> \2\u0136\u0137"+ - "\7\t\2\2\u0137\u013a\5$\23\2\u0138\u0139\7>\2\2\u0139\u013b\5$\23\2\u013a"+ - "\u0138\3\2\2\2\u013a\u013b\3\2\2\2\u013b\u017d\3\2\2\2\u013c\u013e\5 "+ - "\21\2\u013d\u013c\3\2\2\2\u013e\u0141\3\2\2\2\u013f\u013d\3\2\2\2\u013f"+ - "\u0140\3\2\2\2\u0140\u0142\3\2\2\2\u0141\u013f\3\2\2\2\u0142\u0143\7?"+ - "\2\2\u0143\u0144\7\b\2\2\u0144\u0145\5> \2\u0145\u0146\7\t\2\2\u0146\u0147"+ - "\5$\23\2\u0147\u017d\3\2\2\2\u0148\u014a\5 \21\2\u0149\u0148\3\2\2\2\u014a"+ - "\u014d\3\2\2\2\u014b\u0149\3\2\2\2\u014b\u014c\3\2\2\2\u014c\u014e\3\2"+ - "\2\2\u014d\u014b\3\2\2\2\u014e\u014f\7@\2\2\u014f\u0150\5$\23\2\u0150"+ - "\u0151\7?\2\2\u0151\u0152\7\b\2\2\u0152\u0153\5> \2\u0153\u0154\7\t\2"+ - "\2\u0154\u0155\7\n\2\2\u0155\u017d\3\2\2\2\u0156\u0158\5 \21\2\u0157\u0156"+ - "\3\2\2\2\u0158\u015b\3\2\2\2\u0159\u0157\3\2\2\2\u0159\u015a\3\2\2\2\u015a"+ - "\u015c\3\2\2\2\u015b\u0159\3\2\2\2\u015c\u015d\7A\2\2\u015d\u015e\7\b"+ - "\2\2\u015e\u015f\5*\26\2\u015f\u0160\7\t\2\2\u0160\u0161\5$\23\2\u0161"+ - "\u017d\3\2\2\2\u0162\u0163\7B\2\2\u0163\u0164\7\b\2\2\u0164\u0165\5> "+ - "\2\u0165\u0166\7\t\2\2\u0166\u0167\7\4\2\2\u0167\u0168\5&\24\2\u0168\u0169"+ - "\7\5\2\2\u0169\u017d\3\2\2\2\u016a\u016c\7C\2\2\u016b\u016d\5> \2\u016c"+ - "\u016b\3\2\2\2\u016c\u016d\3\2\2\2\u016d\u016e\3\2\2\2\u016e\u017d\7\n"+ - "\2\2\u016f\u0170\7D\2\2\u0170\u017d\7\n\2\2\u0171\u0172\7E\2\2\u0172\u017d"+ - "\7\n\2\2\u0173\u0175\7F\2\2\u0174\u0176\5F$\2\u0175\u0174\3\2\2\2\u0175"+ - "\u0176\3\2\2\2\u0176\u0177\3\2\2\2\u0177\u0178\7\4\2\2\u0178\u0179\5J"+ - "&\2\u0179\u017a\7z\2\2\u017a\u017d\3\2\2\2\u017b\u017d\5D#\2\u017c\u0128"+ - "\3\2\2\2\u017c\u012b\3\2\2\2\u017c\u0130\3\2\2\2\u017c\u0133\3\2\2\2\u017c"+ - "\u013f\3\2\2\2\u017c\u014b\3\2\2\2\u017c\u0159\3\2\2\2\u017c\u0162\3\2"+ - "\2\2\u017c\u016a\3\2\2\2\u017c\u016f\3\2\2\2\u017c\u0171\3\2\2\2\u017c"+ - "\u0173\3\2\2\2\u017c\u017b\3\2\2\2\u017d%\3\2\2\2\u017e\u0180\5(\25\2"+ - "\u017f\u017e\3\2\2\2\u0180\u0181\3\2\2\2\u0181\u017f\3\2\2\2\u0181\u0182"+ - "\3\2\2\2\u0182\u0188\3\2\2\2\u0183\u0184\7G\2\2\u0184\u0186\7\13\2\2\u0185"+ - "\u0187\5\"\22\2\u0186\u0185\3\2\2\2\u0186\u0187\3\2\2\2\u0187\u0189\3"+ - "\2\2\2\u0188\u0183\3\2\2\2\u0188\u0189\3\2\2\2\u0189\'\3\2\2\2\u018a\u018b"+ - "\7H\2\2\u018b\u018c\5@!\2\u018c\u018e\7\13\2\2\u018d\u018f\5\"\22\2\u018e"+ - "\u018d\3\2\2\2\u018e\u018f\3\2\2\2\u018f)\3\2\2\2\u0190\u0191\5,\27\2"+ - "\u0191\u0192\7\n\2\2\u0192\u0193\5> \2\u0193\u0195\7\n\2\2\u0194\u0196"+ - "\5> \2\u0195\u0194\3\2\2\2\u0195\u0196\3\2\2\2\u0196\u01a1\3\2\2\2\u0197"+ - "\u0199\5\20\t\2\u0198\u0197\3\2\2\2\u0198\u0199\3\2\2\2\u0199\u019a\3"+ - "\2\2\2\u019a\u019b\7c\2\2\u019b\u019c\7\13\2\2\u019c\u019d\5@!\2\u019d"+ - "\u019e\7\r\2\2\u019e\u019f\5@!\2\u019f\u01a1\3\2\2\2\u01a0\u0190\3\2\2"+ - "\2\u01a0\u0198\3\2\2\2\u01a1+\3\2\2\2\u01a2\u01a4\5\22\n\2\u01a3\u01a2"+ - "\3\2\2\2\u01a3\u01a4\3\2\2\2\u01a4\u01a7\3\2\2\2\u01a5\u01a7\5> \2\u01a6"+ - "\u01a3\3\2\2\2\u01a6\u01a5\3\2\2\2\u01a7-\3\2\2\2\u01a8\u01a9\b\30\1\2"+ - "\u01a9\u01aa\7\b\2\2\u01aa\u01ab\5.\30\2\u01ab\u01ac\7\t\2\2\u01ac\u01b8"+ - "\3\2\2\2\u01ad\u01b8\7U\2\2\u01ae\u01b0\7T\2\2\u01af\u01b1\7U\2\2\u01b0"+ - "\u01af\3\2\2\2\u01b0\u01b1\3\2\2\2\u01b1\u01b8\3\2\2\2\u01b2\u01b8\5\62"+ - "\32\2\u01b3\u01b8\5\60\31\2\u01b4\u01b8\58\35\2\u01b5\u01b8\5\66\34\2"+ - "\u01b6\u01b8\7\3\2\2\u01b7\u01a8\3\2\2\2\u01b7\u01ad\3\2\2\2\u01b7\u01ae"+ - "\3\2\2\2\u01b7\u01b2\3\2\2\2\u01b7\u01b3\3\2\2\2\u01b7\u01b4\3\2\2\2\u01b7"+ - "\u01b5\3\2\2\2\u01b7\u01b6\3\2\2\2\u01b8\u01c6\3\2\2\2\u01b9\u01ba\f\n"+ - "\2\2\u01ba\u01c5\7\23\2\2\u01bb\u01bc\f\t\2\2\u01bc\u01be\7\6\2\2\u01bd"+ - "\u01bf\5@!\2\u01be\u01bd\3\2\2\2\u01be\u01bf\3\2\2\2\u01bf\u01c0\3\2\2"+ - "\2\u01c0\u01c5\7\7\2\2\u01c1\u01c2\f\b\2\2\u01c2\u01c3\7\b\2\2\u01c3\u01c5"+ - "\7\t\2\2\u01c4\u01b9\3\2\2\2\u01c4\u01bb\3\2\2\2\u01c4\u01c1\3\2\2\2\u01c5"+ - "\u01c8\3\2\2\2\u01c6\u01c4\3\2\2\2\u01c6\u01c7\3\2\2\2\u01c7/\3\2\2\2"+ - "\u01c8\u01c6\3\2\2\2\u01c9\u01ca\7I\2\2\u01ca\u01cb\7c\2\2\u01cb\61\3"+ - "\2\2\2\u01cc\u01ce\7I\2\2\u01cd\u01cf\7c\2\2\u01ce\u01cd\3\2\2\2\u01ce"+ - "\u01cf\3\2\2\2\u01cf\u01d0\3\2\2\2\u01d0\u01d2\7\4\2\2\u01d1\u01d3\5\64"+ - "\33\2\u01d2\u01d1\3\2\2\2\u01d3\u01d4\3\2\2\2\u01d4\u01d2\3\2\2\2\u01d4"+ - "\u01d5\3\2\2\2\u01d5\u01d6\3\2\2\2\u01d6\u01d7\7\5\2\2\u01d7\63\3\2\2"+ - "\2\u01d8\u01d9\5\22\n\2\u01d9\u01da\7\n\2\2\u01da\65\3\2\2\2\u01db\u01dc"+ - "\7J\2\2\u01dc\u01dd\7c\2\2\u01dd\67\3\2\2\2\u01de\u01e0\7J\2\2\u01df\u01e1"+ - "\7c\2\2\u01e0\u01df\3\2\2\2\u01e0\u01e1\3\2\2\2\u01e1\u01e2\3\2\2\2\u01e2"+ - "\u01e3\7\4\2\2\u01e3\u01e4\5:\36\2\u01e4\u01e5\7\5\2\2\u01e59\3\2\2\2"+ - "\u01e6\u01e7\b\36\1\2\u01e7\u01e8\5<\37\2\u01e8\u01ee\3\2\2\2\u01e9\u01ea"+ - "\f\3\2\2\u01ea\u01eb\7\f\2\2\u01eb\u01ed\5<\37\2\u01ec\u01e9\3\2\2\2\u01ed"+ - "\u01f0\3\2\2\2\u01ee\u01ec\3\2\2\2\u01ee\u01ef\3\2\2\2\u01ef;\3\2\2\2"+ - "\u01f0\u01ee\3\2\2\2\u01f1\u01f4\7c\2\2\u01f2\u01f3\7&\2\2\u01f3\u01f5"+ - "\5@!\2\u01f4\u01f2\3\2\2\2\u01f4\u01f5\3\2\2\2\u01f5=\3\2\2\2\u01f6\u01f7"+ - "\b \1\2\u01f7\u01f8\5@!\2\u01f8\u01fe\3\2\2\2\u01f9\u01fa\f\3\2\2\u01fa"+ - "\u01fb\7\f\2\2\u01fb\u01fd\5@!\2\u01fc\u01f9\3\2\2\2\u01fd\u0200\3\2\2"+ - "\2\u01fe\u01fc\3\2\2\2\u01fe\u01ff\3\2\2\2\u01ff?\3\2\2\2\u0200\u01fe"+ - "\3\2\2\2\u0201\u0202\b!\1\2\u0202\u0203\7\b\2\2\u0203\u0204\5> \2\u0204"+ - "\u0205\7\t\2\2\u0205\u0238\3\2\2\2\u0206\u0207\7K\2\2\u0207\u020a\7\b"+ - "\2\2\u0208\u020b\5@!\2\u0209\u020b\5.\30\2\u020a\u0208\3\2\2\2\u020a\u0209"+ - "\3\2\2\2\u020b\u020c\3\2\2\2\u020c\u020d\7\t\2\2\u020d\u0238\3\2\2\2\u020e"+ - "\u020f\7L\2\2\u020f\u0212\7\b\2\2\u0210\u0213\5@!\2\u0211\u0213\5.\30"+ - "\2\u0212\u0210\3\2\2\2\u0212\u0211\3\2\2\2\u0213\u0214\3\2\2\2\u0214\u0215"+ - "\7\t\2\2\u0215\u0238\3\2\2\2\u0216\u0217\7\b\2\2\u0217\u0218\5.\30\2\u0218"+ - "\u0219\7\t\2\2\u0219\u021a\5@!\32\u021a\u0238\3\2\2\2\u021b\u021c\t\3"+ - "\2\2\u021c\u0238\5@!\31\u021d\u021e\7\23\2\2\u021e\u0238\5@!\27\u021f"+ - "\u0220\t\4\2\2\u0220\u0238\5@!\26\u0221\u0222\t\5\2\2\u0222\u0238\5@!"+ - "\22\u0223\u0224\7\4\2\2\u0224\u0229\5@!\2\u0225\u0226\7\f\2\2\u0226\u0228"+ - "\5@!\2\u0227\u0225\3\2\2\2\u0228\u022b\3\2\2\2\u0229\u0227\3\2\2\2\u0229"+ - "\u022a\3\2\2\2\u022a\u022c\3\2\2\2\u022b\u0229\3\2\2\2\u022c\u022d\7\5"+ - "\2\2\u022d\u0238\3\2\2\2\u022e\u0238\7c\2\2\u022f\u0238\7Z\2\2\u0230\u0232"+ - "\7X\2\2\u0231\u0230\3\2\2\2\u0232\u0233\3\2\2\2\u0233\u0231\3\2\2\2\u0233"+ - "\u0234\3\2\2\2\u0234\u0238\3\2\2\2\u0235\u0238\7Y\2\2\u0236\u0238\7V\2"+ - "\2\u0237\u0201\3\2\2\2\u0237\u0206\3\2\2\2\u0237\u020e\3\2\2\2\u0237\u0216"+ - "\3\2\2\2\u0237\u021b\3\2\2\2\u0237\u021d\3\2\2\2\u0237\u021f\3\2\2\2\u0237"+ - "\u0221\3\2\2\2\u0237\u0223\3\2\2\2\u0237\u022e\3\2\2\2\u0237\u022f\3\2"+ - "\2\2\u0237\u0231\3\2\2\2\u0237\u0235\3\2\2\2\u0237\u0236\3\2\2\2\u0238"+ - "\u0275\3\2\2\2\u0239\u023a\f\25\2\2\u023a\u023b\t\6\2\2\u023b\u0274\5"+ - "@!\26\u023c\u023d\f\24\2\2\u023d\u023e\t\7\2\2\u023e\u0274\5@!\25\u023f"+ - "\u0240\f\23\2\2\u0240\u0241\t\b\2\2\u0241\u0274\5@!\24\u0242\u0243\f\21"+ - "\2\2\u0243\u0244\t\t\2\2\u0244\u0274\5@!\22\u0245\u0246\f\20\2\2\u0246"+ - "\u0247\7\30\2\2\u0247\u0274\5@!\21\u0248\u0249\f\17\2\2\u0249\u024a\7"+ - "\32\2\2\u024a\u0274\5@!\20\u024b\u024c\f\16\2\2\u024c\u024d\7\33\2\2\u024d"+ - "\u0274\5@!\17\u024e\u024f\f\r\2\2\u024f\u0250\7$\2\2\u0250\u0274\5@!\16"+ - "\u0251\u0252\f\f\2\2\u0252\u0253\7%\2\2\u0253\u0274\5@!\r\u0254\u0255"+ - "\f\13\2\2\u0255\u0256\7\16\2\2\u0256\u0257\5@!\2\u0257\u0258\7\13\2\2"+ - "\u0258\u0259\5@!\f\u0259\u0274\3\2\2\2\u025a\u025b\f\n\2\2\u025b\u025c"+ - "\7&\2\2\u025c\u0274\5@!\n\u025d\u025e\f\t\2\2\u025e\u025f\7\'\2\2\u025f"+ - "\u0274\5@!\t\u0260\u0261\f \2\2\u0261\u0262\7\17\2\2\u0262\u0274\7c\2"+ - "\2\u0263\u0264\f\37\2\2\u0264\u0265\7\20\2\2\u0265\u0274\7c\2\2\u0266"+ - "\u0267\f\36\2\2\u0267\u0269\7\b\2\2\u0268\u026a\5B\"\2\u0269\u0268\3\2"+ - "\2\2\u0269\u026a\3\2\2\2\u026a\u026b\3\2\2\2\u026b\u0274\7\t\2\2\u026c"+ - "\u026d\f\33\2\2\u026d\u026e\7\6\2\2\u026e\u026f\5> \2\u026f\u0270\7\7"+ - "\2\2\u0270\u0274\3\2\2\2\u0271\u0272\f\30\2\2\u0272\u0274\t\3\2\2\u0273"+ - "\u0239\3\2\2\2\u0273\u023c\3\2\2\2\u0273\u023f\3\2\2\2\u0273\u0242\3\2"+ - "\2\2\u0273\u0245\3\2\2\2\u0273\u0248\3\2\2\2\u0273\u024b\3\2\2\2\u0273"+ - "\u024e\3\2\2\2\u0273\u0251\3\2\2\2\u0273\u0254\3\2\2\2\u0273\u025a\3\2"+ - "\2\2\u0273\u025d\3\2\2\2\u0273\u0260\3\2\2\2\u0273\u0263\3\2\2\2\u0273"+ - "\u0266\3\2\2\2\u0273\u026c\3\2\2\2\u0273\u0271\3\2\2\2\u0274\u0277\3\2"+ - "\2\2\u0275\u0273\3\2\2\2\u0275\u0276\3\2\2\2\u0276A\3\2\2\2\u0277\u0275"+ - "\3\2\2\2\u0278\u027d\5@!\2\u0279\u027a\7\f\2\2\u027a\u027c\5@!\2\u027b"+ - "\u0279\3\2\2\2\u027c\u027f\3\2\2\2\u027d\u027b\3\2\2\2\u027d\u027e\3\2"+ - "\2\2\u027eC\3\2\2\2\u027f\u027d\3\2\2\2\u0280\u0282\7M\2\2\u0281\u0283"+ - "\5F$\2\u0282\u0281\3\2\2\2\u0282\u0283\3\2\2\2\u0283\u0284\3\2\2\2\u0284"+ - "\u0285\7W\2\2\u0285E\3\2\2\2\u0286\u0287\7\b\2\2\u0287\u028c\5H%\2\u0288"+ - "\u0289\7\f\2\2\u0289\u028b\5H%\2\u028a\u0288\3\2\2\2\u028b\u028e\3\2\2"+ - "\2\u028c\u028a\3\2\2\2\u028c\u028d\3\2\2\2\u028d\u028f\3\2\2\2\u028e\u028c"+ - "\3\2\2\2\u028f\u0290\7\t\2\2\u0290G\3\2\2\2\u0291\u0292\7N\2\2\u0292\u02a1"+ - "\7X\2\2\u0293\u0294\7O\2\2\u0294\u02a1\7c\2\2\u0295\u0296\7P\2\2\u0296"+ - "\u02a1\7X\2\2\u0297\u0298\7Q\2\2\u0298\u02a1\5@!\2\u0299\u029a\7R\2\2"+ - "\u029a\u02a1\5@!\2\u029b\u029e\7,\2\2\u029c\u029f\78\2\2\u029d\u029f\5"+ - "@!\2\u029e\u029c\3\2\2\2\u029e\u029d\3\2\2\2\u029f\u02a1\3\2\2\2\u02a0"+ - "\u0291\3\2\2\2\u02a0\u0293\3\2\2\2\u02a0\u0295\3\2\2\2\u02a0\u0297\3\2"+ - "\2\2\u02a0\u0299\3\2\2\2\u02a0\u029b\3\2\2\2\u02a1I\3\2\2\2\u02a2\u02a4"+ - "\5L\'\2\u02a3\u02a2\3\2\2\2\u02a4\u02a7\3\2\2\2\u02a5\u02a3\3\2\2\2\u02a5"+ - "\u02a6\3\2\2\2\u02a6K\3\2\2\2\u02a7\u02a5\3\2\2\2\u02a8\u02ac\5N(\2\u02a9"+ - "\u02ac\5P)\2\u02aa\u02ac\5R*\2\u02ab\u02a8\3\2\2\2\u02ab\u02a9\3\2\2\2"+ - "\u02ab\u02aa\3\2\2\2\u02acM\3\2\2\2\u02ad\u02ae\7\u0087\2\2\u02ae\u02b2"+ - "\7j\2\2\u02af\u02b0\7\u0086\2\2\u02b0\u02b2\7j\2\2\u02b1\u02ad\3\2\2\2"+ - "\u02b1\u02af\3\2\2\2\u02b2O\3\2\2\2\u02b3\u02b5\7h\2\2\u02b4\u02b6\5T"+ - "+\2\u02b5\u02b4\3\2\2\2\u02b5\u02b6\3\2\2\2\u02b6Q\3\2\2\2\u02b7\u02b8"+ - "\7g\2\2\u02b8\u02bd\5V,\2\u02b9\u02ba\7k\2\2\u02ba\u02bc\5V,\2\u02bb\u02b9"+ - "\3\2\2\2\u02bc\u02bf\3\2\2\2\u02bd\u02bb\3\2\2\2\u02bd\u02be\3\2\2\2\u02be"+ - "S\3\2\2\2\u02bf\u02bd\3\2\2\2\u02c0\u02d8\5V,\2\u02c1\u02c2\7i\2\2\u02c2"+ - "\u02d8\5V,\2\u02c3\u02c4\5V,\2\u02c4\u02c5\7k\2\2\u02c5\u02c6\7\u0087"+ - "\2\2\u02c6\u02d8\3\2\2\2\u02c7\u02c8\7l\2\2\u02c8\u02c9\5V,\2\u02c9\u02ca"+ - "\7m\2\2\u02ca\u02cb\7k\2\2\u02cb\u02cc\7\u0087\2\2\u02cc\u02d8\3\2\2\2"+ - "\u02cd\u02ce\7l\2\2\u02ce\u02cf\5V,\2\u02cf\u02d0\7k\2\2\u02d0\u02d1\7"+ - "\u0087\2\2\u02d1\u02d2\7m\2\2\u02d2\u02d8\3\2\2\2\u02d3\u02d4\7l\2\2\u02d4"+ - "\u02d5\5V,\2\u02d5\u02d6\7m\2\2\u02d6\u02d8\3\2\2\2\u02d7\u02c0\3\2\2"+ - "\2\u02d7\u02c1\3\2\2\2\u02d7\u02c3\3\2\2\2\u02d7\u02c7\3\2\2\2\u02d7\u02cd"+ - "\3\2\2\2\u02d7\u02d3\3\2\2\2\u02d8U\3\2\2\2\u02d9\u02da\b,\1\2\u02da\u02db"+ - "\7n\2\2\u02db\u02dc\5V,\2\u02dc\u02dd\7o\2\2\u02dd\u02e8\3\2\2\2\u02de"+ - "\u02df\t\n\2\2\u02df\u02e8\5V,\n\u02e0\u02e8\7\u0087\2\2\u02e1\u02e8\7"+ - "\u0085\2\2\u02e2\u02e3\7y\2\2\u02e3\u02e4\7\u0087\2\2\u02e4\u02e8\7z\2"+ - "\2\u02e5\u02e8\7{\2\2\u02e6\u02e8\7\u0084\2\2\u02e7\u02d9\3\2\2\2\u02e7"+ - "\u02de\3\2\2\2\u02e7\u02e0\3\2\2\2\u02e7\u02e1\3\2\2\2\u02e7\u02e2\3\2"+ - "\2\2\u02e7\u02e5\3\2\2\2\u02e7\u02e6\3\2\2\2\u02e8\u02f7\3\2\2\2\u02e9"+ - "\u02ea\f\f\2\2\u02ea\u02eb\7p\2\2\u02eb\u02f6\5V,\r\u02ec\u02ed\f\13\2"+ - "\2\u02ed\u02ee\t\13\2\2\u02ee\u02f6\5V,\f\u02ef\u02f0\f\t\2\2\u02f0\u02f1"+ - "\t\f\2\2\u02f1\u02f6\5V,\n\u02f2\u02f3\f\b\2\2\u02f3\u02f4\t\r\2\2\u02f4"+ - "\u02f6\5V,\t\u02f5\u02e9\3\2\2\2\u02f5\u02ec\3\2\2\2\u02f5\u02ef\3\2\2"+ - "\2\u02f5\u02f2\3\2\2\2\u02f6\u02f9\3\2\2\2\u02f7\u02f5\3\2\2\2\u02f7\u02f8"+ - "\3\2\2\2\u02f8W\3\2\2\2\u02f9\u02f7\3\2\2\2Gafz\u0084\u008b\u0099\u009f"+ - "\u00a4\u00aa\u00af\u00b8\u00bf\u00ca\u00fe\u010b\u0113\u011c\u0121\u0126"+ - "\u012d\u013a\u013f\u014b\u0159\u016c\u0175\u017c\u0181\u0186\u0188\u018e"+ - "\u0195\u0198\u01a0\u01a3\u01a6\u01b0\u01b7\u01be\u01c4\u01c6\u01ce\u01d4"+ - "\u01e0\u01ee\u01f4\u01fe\u020a\u0212\u0229\u0233\u0237\u0269\u0273\u0275"+ - "\u027d\u0282\u028c\u029e\u02a0\u02a5\u02ab\u02b1\u02b5\u02bd\u02d7\u02e7"+ - "\u02f5\u02f7"; + "\3\21\3\21\3\21\3\21\5\21\u010c\n\21\3\21\3\21\3\21\3\21\5\21\u0112\n"+ + "\21\3\21\3\21\3\21\3\21\3\21\3\21\5\21\u011a\n\21\3\21\3\21\3\21\3\21"+ + "\3\21\7\21\u0121\n\21\f\21\16\21\u0124\13\21\3\21\3\21\5\21\u0128\n\21"+ + "\3\22\6\22\u012b\n\22\r\22\16\22\u012c\3\23\3\23\3\23\3\23\3\23\5\23\u0134"+ + "\n\23\3\23\3\23\3\23\3\23\3\23\3\23\3\23\3\23\3\23\3\23\3\23\5\23\u0141"+ + "\n\23\3\23\7\23\u0144\n\23\f\23\16\23\u0147\13\23\3\23\3\23\3\23\3\23"+ + "\3\23\3\23\3\23\7\23\u0150\n\23\f\23\16\23\u0153\13\23\3\23\3\23\3\23"+ + "\3\23\3\23\3\23\3\23\3\23\3\23\7\23\u015e\n\23\f\23\16\23\u0161\13\23"+ + "\3\23\3\23\3\23\3\23\3\23\3\23\3\23\3\23\3\23\3\23\3\23\3\23\3\23\3\23"+ + "\3\23\3\23\5\23\u0173\n\23\3\23\3\23\3\23\3\23\3\23\3\23\3\23\5\23\u017c"+ + "\n\23\3\23\3\23\3\23\3\23\3\23\5\23\u0183\n\23\3\24\6\24\u0186\n\24\r"+ + "\24\16\24\u0187\3\24\3\24\3\24\5\24\u018d\n\24\5\24\u018f\n\24\3\25\3"+ + "\25\3\25\3\25\5\25\u0195\n\25\3\26\3\26\3\26\3\26\3\26\5\26\u019c\n\26"+ + "\3\26\5\26\u019f\n\26\3\26\3\26\3\26\3\26\3\26\3\26\5\26\u01a7\n\26\3"+ + "\27\5\27\u01aa\n\27\3\27\5\27\u01ad\n\27\3\30\3\30\3\30\3\30\3\30\3\30"+ + "\3\30\3\30\5\30\u01b7\n\30\3\30\3\30\3\30\3\30\3\30\5\30\u01be\n\30\3"+ + "\30\3\30\3\30\3\30\3\30\5\30\u01c5\n\30\3\30\3\30\3\30\3\30\7\30\u01cb"+ + "\n\30\f\30\16\30\u01ce\13\30\3\31\3\31\3\31\3\32\3\32\5\32\u01d5\n\32"+ + "\3\32\3\32\6\32\u01d9\n\32\r\32\16\32\u01da\3\32\3\32\3\33\3\33\3\33\3"+ + "\34\3\34\3\34\3\35\3\35\5\35\u01e7\n\35\3\35\3\35\3\35\3\35\3\36\3\36"+ + "\3\36\3\36\3\36\3\36\7\36\u01f3\n\36\f\36\16\36\u01f6\13\36\3\37\3\37"+ + "\3\37\5\37\u01fb\n\37\3 \3 \3 \3 \3 \3 \7 \u0203\n \f \16 \u0206\13 \3"+ + "!\3!\3!\3!\3!\3!\3!\3!\3!\5!\u0211\n!\3!\3!\3!\3!\3!\3!\5!\u0219\n!\3"+ + "!\3!\3!\3!\3!\3!\3!\3!\3!\3!\3!\3!\3!\3!\3!\3!\3!\3!\3!\7!\u022e\n!\f"+ + "!\16!\u0231\13!\3!\3!\3!\3!\3!\6!\u0238\n!\r!\16!\u0239\3!\3!\5!\u023e"+ + "\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!\5!\u0270\n!\3!\3!\3!\3!\3!\3!\3!\3!\7!\u027a\n!\f!\16!\u027d"+ + "\13!\3\"\3\"\3\"\7\"\u0282\n\"\f\"\16\"\u0285\13\"\3#\3#\5#\u0289\n#\3"+ + "#\3#\3$\3$\3$\3$\7$\u0291\n$\f$\16$\u0294\13$\3$\3$\3%\3%\3%\3%\3%\3%"+ + "\3%\3%\3%\3%\3%\3%\3%\5%\u02a5\n%\5%\u02a7\n%\3&\7&\u02aa\n&\f&\16&\u02ad"+ + "\13&\3\'\3\'\3\'\5\'\u02b2\n\'\3(\3(\3(\3(\5(\u02b8\n(\3)\3)\5)\u02bc"+ + "\n)\3*\3*\3*\3*\7*\u02c2\n*\f*\16*\u02c5\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+\u02de\n+\3,\3,\3,\3,\3"+ + ",\3,\3,\3,\3,\3,\3,\3,\3,\3,\5,\u02ee\n,\3,\3,\3,\3,\3,\3,\3,\3,\3,\3"+ + ",\3,\3,\7,\u02fc\n,\f,\16,\u02ff\13,\3,\2\b\24.:>@V-\2\4\6\b\n\f\16\20"+ + "\22\24\26\30\32\34\36 \"$&(*,.\60\62\64\668:<>@BDFHJLNPRTV\2\16\4\2[["+ + "dd\3\2\26\27\5\2\21\22\30\31TT\4\2 ##\3\2\34\35\3\2\23\25\3\2\21\22\3"+ + "\2\36#\3\2tw\3\2rs\3\2xy\3\2tu\2\u036d\2X\3\2\2\2\4[\3\2\2\2\6a\3\2\2"+ + "\2\bf\3\2\2\2\nh\3\2\2\2\fz\3\2\2\2\16|\3\2\2\2\20\u0084\3\2\2\2\22\u008e"+ + "\3\2\2\2\24\u0091\3\2\2\2\26\u00a4\3\2\2\2\30\u00a6\3\2\2\2\32\u00b3\3"+ + "\2\2\2\34\u00bf\3\2\2\2\36\u00fe\3\2\2\2 \u0127\3\2\2\2\"\u012a\3\2\2"+ + "\2$\u0182\3\2\2\2&\u0185\3\2\2\2(\u0190\3\2\2\2*\u01a6\3\2\2\2,\u01ac"+ + "\3\2\2\2.\u01bd\3\2\2\2\60\u01cf\3\2\2\2\62\u01d2\3\2\2\2\64\u01de\3\2"+ + "\2\2\66\u01e1\3\2\2\28\u01e4\3\2\2\2:\u01ec\3\2\2\2<\u01f7\3\2\2\2>\u01fc"+ + "\3\2\2\2@\u023d\3\2\2\2B\u027e\3\2\2\2D\u0286\3\2\2\2F\u028c\3\2\2\2H"+ + "\u02a6\3\2\2\2J\u02ab\3\2\2\2L\u02b1\3\2\2\2N\u02b7\3\2\2\2P\u02b9\3\2"+ + "\2\2R\u02bd\3\2\2\2T\u02dd\3\2\2\2V\u02ed\3\2\2\2XY\5\6\4\2YZ\7\2\2\3"+ + "Z\3\3\2\2\2[\\\5J&\2\\]\7\2\2\3]\5\3\2\2\2^`\5\b\5\2_^\3\2\2\2`c\3\2\2"+ + "\2a_\3\2\2\2ab\3\2\2\2b\7\3\2\2\2ca\3\2\2\2dg\5\f\7\2eg\5\n\6\2fd\3\2"+ + "\2\2fe\3\2\2\2g\t\3\2\2\2hi\7(\2\2ij\7Y\2\2j\13\3\2\2\2kl\5\22\n\2lm\7"+ + "\n\2\2m{\3\2\2\2no\5\62\32\2op\7\n\2\2p{\3\2\2\2qr\58\35\2rs\7\n\2\2s"+ + "{\3\2\2\2t{\5\30\r\2u{\5D#\2v{\5\36\20\2wx\5\16\b\2xy\7\n\2\2y{\3\2\2"+ + "\2zk\3\2\2\2zn\3\2\2\2zq\3\2\2\2zt\3\2\2\2zu\3\2\2\2zv\3\2\2\2zw\3\2\2"+ + "\2{\r\3\2\2\2|}\7)\2\2}~\5.\30\2~\177\7d\2\2\177\u0080\b\b\1\2\u0080\17"+ + "\3\2\2\2\u0081\u0083\5 \21\2\u0082\u0081\3\2\2\2\u0083\u0086\3\2\2\2\u0084"+ + "\u0082\3\2\2\2\u0084\u0085\3\2\2\2\u0085\u0087\3\2\2\2\u0086\u0084\3\2"+ + "\2\2\u0087\u008b\5.\30\2\u0088\u008a\5 \21\2\u0089\u0088\3\2\2\2\u008a"+ + "\u008d\3\2\2\2\u008b\u0089\3\2\2\2\u008b\u008c\3\2\2\2\u008c\21\3\2\2"+ + "\2\u008d\u008b\3\2\2\2\u008e\u008f\5\20\t\2\u008f\u0090\5\24\13\2\u0090"+ + "\23\3\2\2\2\u0091\u0092\b\13\1\2\u0092\u0093\5\26\f\2\u0093\u0099\3\2"+ + "\2\2\u0094\u0095\f\3\2\2\u0095\u0096\7\f\2\2\u0096\u0098\5\26\f\2\u0097"+ + "\u0094\3\2\2\2\u0098\u009b\3\2\2\2\u0099\u0097\3\2\2\2\u0099\u009a\3\2"+ + "\2\2\u009a\25\3\2\2\2\u009b\u0099\3\2\2\2\u009c\u009f\7d\2\2\u009d\u009e"+ + "\7&\2\2\u009e\u00a0\5@!\2\u009f\u009d\3\2\2\2\u009f\u00a0\3\2\2\2\u00a0"+ + "\u00a5\3\2\2\2\u00a1\u00a2\7d\2\2\u00a2\u00a3\7&\2\2\u00a3\u00a5\5D#\2"+ + "\u00a4\u009c\3\2\2\2\u00a4\u00a1\3\2\2\2\u00a5\27\3\2\2\2\u00a6\u00a7"+ + "\5\20\t\2\u00a7\u00a8\7d\2\2\u00a8\u00aa\7\b\2\2\u00a9\u00ab\5\32\16\2"+ + "\u00aa\u00a9\3\2\2\2\u00aa\u00ab\3\2\2\2\u00ab\u00ac\3\2\2\2\u00ac\u00ad"+ + "\7\t\2\2\u00ad\u00af\7\4\2\2\u00ae\u00b0\5\"\22\2\u00af\u00ae\3\2\2\2"+ + "\u00af\u00b0\3\2\2\2\u00b0\u00b1\3\2\2\2\u00b1\u00b2\7\5\2\2\u00b2\31"+ + "\3\2\2\2\u00b3\u00b8\5\34\17\2\u00b4\u00b5\7\f\2\2\u00b5\u00b7\5\34\17"+ + "\2\u00b6\u00b4\3\2\2\2\u00b7\u00ba\3\2\2\2\u00b8\u00b6\3\2\2\2\u00b8\u00b9"+ + "\3\2\2\2\u00b9\33\3\2\2\2\u00ba\u00b8\3\2\2\2\u00bb\u00bc\5\20\t\2\u00bc"+ + "\u00bd\7d\2\2\u00bd\u00c0\3\2\2\2\u00be\u00c0\7V\2\2\u00bf\u00bb\3\2\2"+ + "\2\u00bf\u00be\3\2\2\2\u00c0\35\3\2\2\2\u00c1\u00c2\7*\2\2\u00c2\u00c3"+ + "\7+\2\2\u00c3\u00c4\3\2\2\2\u00c4\u00c5\7\b\2\2\u00c5\u00ca\7[\2\2\u00c6"+ + "\u00c7\7\f\2\2\u00c7\u00c9\7[\2\2\u00c8\u00c6\3\2\2\2\u00c9\u00cc\3\2"+ + "\2\2\u00ca\u00c8\3\2\2\2\u00ca\u00cb\3\2\2\2\u00cb\u00cd\3\2\2\2\u00cc"+ + "\u00ca\3\2\2\2\u00cd\u00ff\7\t\2\2\u00ce\u00cf\7*\2\2\u00cf\u00d0\7,\2"+ + "\2\u00d0\u00d1\3\2\2\2\u00d1\u00d2\7\b\2\2\u00d2\u00d3\7[\2\2\u00d3\u00ff"+ + "\7\t\2\2\u00d4\u00d5\7*\2\2\u00d5\u00d6\7-\2\2\u00d6\u00d7\3\2\2\2\u00d7"+ + "\u00d8\7\b\2\2\u00d8\u00d9\7d\2\2\u00d9\u00ff\7\t\2\2\u00da\u00db\7*\2"+ + "\2\u00db\u00dc\7/\2\2\u00dc\u00dd\3\2\2\2\u00dd\u00de\7\b\2\2\u00de\u00df"+ + "\7d\2\2\u00df\u00ff\7\t\2\2\u00e0\u00e1\7*\2\2\u00e1\u00e2\7.\2\2\u00e2"+ + "\u00e3\3\2\2\2\u00e3\u00e4\7\b\2\2\u00e4\u00e5\7Y\2\2\u00e5\u00ff\7\t"+ + "\2\2\u00e6\u00e7\7*\2\2\u00e7\u00e8\7\60\2\2\u00e8\u00e9\3\2\2\2\u00e9"+ + "\u00ea\7\b\2\2\u00ea\u00eb\7d\2\2\u00eb\u00ff\7\t\2\2\u00ec\u00ed\7*\2"+ + "\2\u00ed\u00ee\7\61\2\2\u00ee\u00ef\3\2\2\2\u00ef\u00f0\7\b\2\2\u00f0"+ + "\u00f1\7d\2\2\u00f1\u00ff\7\t\2\2\u00f2\u00f3\7*\2\2\u00f3\u00f4\7\62"+ + "\2\2\u00f4\u00f5\3\2\2\2\u00f5\u00f6\7\b\2\2\u00f6\u00f7\7d\2\2\u00f7"+ + "\u00ff\7\t\2\2\u00f8\u00f9\7*\2\2\u00f9\u00fa\7<\2\2\u00fa\u00fb\3\2\2"+ + "\2\u00fb\u00fc\7\b\2\2\u00fc\u00fd\7=\2\2\u00fd\u00ff\7\t\2\2\u00fe\u00c1"+ + "\3\2\2\2\u00fe\u00ce\3\2\2\2\u00fe\u00d4\3\2\2\2\u00fe\u00da\3\2\2\2\u00fe"+ + "\u00e0\3\2\2\2\u00fe\u00e6\3\2\2\2\u00fe\u00ec\3\2\2\2\u00fe\u00f2\3\2"+ + "\2\2\u00fe\u00f8\3\2\2\2\u00ff\37\3\2\2\2\u0100\u0128\7\63\2\2\u0101\u0128"+ + "\7\64\2\2\u0102\u0128\7\65\2\2\u0103\u0104\7\66\2\2\u0104\u0105\7\b\2"+ + "\2\u0105\u0106\7[\2\2\u0106\u0128\7\t\2\2\u0107\u010b\7\67\2\2\u0108\u0109"+ + "\7\b\2\2\u0109\u010a\t\2\2\2\u010a\u010c\7\t\2\2\u010b\u0108\3\2\2\2\u010b"+ + "\u010c\3\2\2\2\u010c\u0128\3\2\2\2\u010d\u0111\78\2\2\u010e\u010f\7\b"+ + "\2\2\u010f\u0110\7[\2\2\u0110\u0112\7\t\2\2\u0111\u010e\3\2\2\2\u0111"+ + "\u0112\3\2\2\2\u0112\u0128\3\2\2\2\u0113\u0128\79\2\2\u0114\u0128\7:\2"+ + "\2\u0115\u0119\7;\2\2\u0116\u0117\7\b\2\2\u0117\u0118\7d\2\2\u0118\u011a"+ + "\7\t\2\2\u0119\u0116\3\2\2\2\u0119\u011a\3\2\2\2\u011a\u0128\3\2\2\2\u011b"+ + "\u011c\7+\2\2\u011c\u011d\7\b\2\2\u011d\u0122\7[\2\2\u011e\u011f\7\f\2"+ + "\2\u011f\u0121\7[\2\2\u0120\u011e\3\2\2\2\u0121\u0124\3\2\2\2\u0122\u0120"+ + "\3\2\2\2\u0122\u0123\3\2\2\2\u0123\u0125\3\2\2\2\u0124\u0122\3\2\2\2\u0125"+ + "\u0128\7\t\2\2\u0126\u0128\7=\2\2\u0127\u0100\3\2\2\2\u0127\u0101\3\2"+ + "\2\2\u0127\u0102\3\2\2\2\u0127\u0103\3\2\2\2\u0127\u0107\3\2\2\2\u0127"+ + "\u010d\3\2\2\2\u0127\u0113\3\2\2\2\u0127\u0114\3\2\2\2\u0127\u0115\3\2"+ + "\2\2\u0127\u011b\3\2\2\2\u0127\u0126\3\2\2\2\u0128!\3\2\2\2\u0129\u012b"+ + "\5$\23\2\u012a\u0129\3\2\2\2\u012b\u012c\3\2\2\2\u012c\u012a\3\2\2\2\u012c"+ + "\u012d\3\2\2\2\u012d#\3\2\2\2\u012e\u012f\5\22\n\2\u012f\u0130\7\n\2\2"+ + "\u0130\u0183\3\2\2\2\u0131\u0133\7\4\2\2\u0132\u0134\5\"\22\2\u0133\u0132"+ + "\3\2\2\2\u0133\u0134\3\2\2\2\u0134\u0135\3\2\2\2\u0135\u0183\7\5\2\2\u0136"+ + "\u0137\5> \2\u0137\u0138\7\n\2\2\u0138\u0183\3\2\2\2\u0139\u013a\7>\2"+ + "\2\u013a\u013b\7\b\2\2\u013b\u013c\5> \2\u013c\u013d\7\t\2\2\u013d\u0140"+ + "\5$\23\2\u013e\u013f\7?\2\2\u013f\u0141\5$\23\2\u0140\u013e\3\2\2\2\u0140"+ + "\u0141\3\2\2\2\u0141\u0183\3\2\2\2\u0142\u0144\5 \21\2\u0143\u0142\3\2"+ + "\2\2\u0144\u0147\3\2\2\2\u0145\u0143\3\2\2\2\u0145\u0146\3\2\2\2\u0146"+ + "\u0148\3\2\2\2\u0147\u0145\3\2\2\2\u0148\u0149\7@\2\2\u0149\u014a\7\b"+ + "\2\2\u014a\u014b\5> \2\u014b\u014c\7\t\2\2\u014c\u014d\5$\23\2\u014d\u0183"+ + "\3\2\2\2\u014e\u0150\5 \21\2\u014f\u014e\3\2\2\2\u0150\u0153\3\2\2\2\u0151"+ + "\u014f\3\2\2\2\u0151\u0152\3\2\2\2\u0152\u0154\3\2\2\2\u0153\u0151\3\2"+ + "\2\2\u0154\u0155\7A\2\2\u0155\u0156\5$\23\2\u0156\u0157\7@\2\2\u0157\u0158"+ + "\7\b\2\2\u0158\u0159\5> \2\u0159\u015a\7\t\2\2\u015a\u015b\7\n\2\2\u015b"+ + "\u0183\3\2\2\2\u015c\u015e\5 \21\2\u015d\u015c\3\2\2\2\u015e\u0161\3\2"+ + "\2\2\u015f\u015d\3\2\2\2\u015f\u0160\3\2\2\2\u0160\u0162\3\2\2\2\u0161"+ + "\u015f\3\2\2\2\u0162\u0163\7B\2\2\u0163\u0164\7\b\2\2\u0164\u0165\5*\26"+ + "\2\u0165\u0166\7\t\2\2\u0166\u0167\5$\23\2\u0167\u0183\3\2\2\2\u0168\u0169"+ + "\7C\2\2\u0169\u016a\7\b\2\2\u016a\u016b\5> \2\u016b\u016c\7\t\2\2\u016c"+ + "\u016d\7\4\2\2\u016d\u016e\5&\24\2\u016e\u016f\7\5\2\2\u016f\u0183\3\2"+ + "\2\2\u0170\u0172\7D\2\2\u0171\u0173\5> \2\u0172\u0171\3\2\2\2\u0172\u0173"+ + "\3\2\2\2\u0173\u0174\3\2\2\2\u0174\u0183\7\n\2\2\u0175\u0176\7E\2\2\u0176"+ + "\u0183\7\n\2\2\u0177\u0178\7F\2\2\u0178\u0183\7\n\2\2\u0179\u017b\7G\2"+ + "\2\u017a\u017c\5F$\2\u017b\u017a\3\2\2\2\u017b\u017c\3\2\2\2\u017c\u017d"+ + "\3\2\2\2\u017d\u017e\7\4\2\2\u017e\u017f\5J&\2\u017f\u0180\7{\2\2\u0180"+ + "\u0183\3\2\2\2\u0181\u0183\5D#\2\u0182\u012e\3\2\2\2\u0182\u0131\3\2\2"+ + "\2\u0182\u0136\3\2\2\2\u0182\u0139\3\2\2\2\u0182\u0145\3\2\2\2\u0182\u0151"+ + "\3\2\2\2\u0182\u015f\3\2\2\2\u0182\u0168\3\2\2\2\u0182\u0170\3\2\2\2\u0182"+ + "\u0175\3\2\2\2\u0182\u0177\3\2\2\2\u0182\u0179\3\2\2\2\u0182\u0181\3\2"+ + "\2\2\u0183%\3\2\2\2\u0184\u0186\5(\25\2\u0185\u0184\3\2\2\2\u0186\u0187"+ + "\3\2\2\2\u0187\u0185\3\2\2\2\u0187\u0188\3\2\2\2\u0188\u018e\3\2\2\2\u0189"+ + "\u018a\7H\2\2\u018a\u018c\7\13\2\2\u018b\u018d\5\"\22\2\u018c\u018b\3"+ + "\2\2\2\u018c\u018d\3\2\2\2\u018d\u018f\3\2\2\2\u018e\u0189\3\2\2\2\u018e"+ + "\u018f\3\2\2\2\u018f\'\3\2\2\2\u0190\u0191\7I\2\2\u0191\u0192\5@!\2\u0192"+ + "\u0194\7\13\2\2\u0193\u0195\5\"\22\2\u0194\u0193\3\2\2\2\u0194\u0195\3"+ + "\2\2\2\u0195)\3\2\2\2\u0196\u0197\5,\27\2\u0197\u0198\7\n\2\2\u0198\u0199"+ + "\5> \2\u0199\u019b\7\n\2\2\u019a\u019c\5> \2\u019b\u019a\3\2\2\2\u019b"+ + "\u019c\3\2\2\2\u019c\u01a7\3\2\2\2\u019d\u019f\5\20\t\2\u019e\u019d\3"+ + "\2\2\2\u019e\u019f\3\2\2\2\u019f\u01a0\3\2\2\2\u01a0\u01a1\7d\2\2\u01a1"+ + "\u01a2\7\13\2\2\u01a2\u01a3\5@!\2\u01a3\u01a4\7\r\2\2\u01a4\u01a5\5@!"+ + "\2\u01a5\u01a7\3\2\2\2\u01a6\u0196\3\2\2\2\u01a6\u019e\3\2\2\2\u01a7+"+ + "\3\2\2\2\u01a8\u01aa\5\22\n\2\u01a9\u01a8\3\2\2\2\u01a9\u01aa\3\2\2\2"+ + "\u01aa\u01ad\3\2\2\2\u01ab\u01ad\5> \2\u01ac\u01a9\3\2\2\2\u01ac\u01ab"+ + "\3\2\2\2\u01ad-\3\2\2\2\u01ae\u01af\b\30\1\2\u01af\u01b0\7\b\2\2\u01b0"+ + "\u01b1\5.\30\2\u01b1\u01b2\7\t\2\2\u01b2\u01be\3\2\2\2\u01b3\u01be\7V"+ + "\2\2\u01b4\u01b6\7U\2\2\u01b5\u01b7\7V\2\2\u01b6\u01b5\3\2\2\2\u01b6\u01b7"+ + "\3\2\2\2\u01b7\u01be\3\2\2\2\u01b8\u01be\5\62\32\2\u01b9\u01be\5\60\31"+ + "\2\u01ba\u01be\58\35\2\u01bb\u01be\5\66\34\2\u01bc\u01be\7\3\2\2\u01bd"+ + "\u01ae\3\2\2\2\u01bd\u01b3\3\2\2\2\u01bd\u01b4\3\2\2\2\u01bd\u01b8\3\2"+ + "\2\2\u01bd\u01b9\3\2\2\2\u01bd\u01ba\3\2\2\2\u01bd\u01bb\3\2\2\2\u01bd"+ + "\u01bc\3\2\2\2\u01be\u01cc\3\2\2\2\u01bf\u01c0\f\n\2\2\u01c0\u01cb\7\23"+ + "\2\2\u01c1\u01c2\f\t\2\2\u01c2\u01c4\7\6\2\2\u01c3\u01c5\5@!\2\u01c4\u01c3"+ + "\3\2\2\2\u01c4\u01c5\3\2\2\2\u01c5\u01c6\3\2\2\2\u01c6\u01cb\7\7\2\2\u01c7"+ + "\u01c8\f\b\2\2\u01c8\u01c9\7\b\2\2\u01c9\u01cb\7\t\2\2\u01ca\u01bf\3\2"+ + "\2\2\u01ca\u01c1\3\2\2\2\u01ca\u01c7\3\2\2\2\u01cb\u01ce\3\2\2\2\u01cc"+ + "\u01ca\3\2\2\2\u01cc\u01cd\3\2\2\2\u01cd/\3\2\2\2\u01ce\u01cc\3\2\2\2"+ + "\u01cf\u01d0\7J\2\2\u01d0\u01d1\7d\2\2\u01d1\61\3\2\2\2\u01d2\u01d4\7"+ + "J\2\2\u01d3\u01d5\7d\2\2\u01d4\u01d3\3\2\2\2\u01d4\u01d5\3\2\2\2\u01d5"+ + "\u01d6\3\2\2\2\u01d6\u01d8\7\4\2\2\u01d7\u01d9\5\64\33\2\u01d8\u01d7\3"+ + "\2\2\2\u01d9\u01da\3\2\2\2\u01da\u01d8\3\2\2\2\u01da\u01db\3\2\2\2\u01db"+ + "\u01dc\3\2\2\2\u01dc\u01dd\7\5\2\2\u01dd\63\3\2\2\2\u01de\u01df\5\22\n"+ + "\2\u01df\u01e0\7\n\2\2\u01e0\65\3\2\2\2\u01e1\u01e2\7K\2\2\u01e2\u01e3"+ + "\7d\2\2\u01e3\67\3\2\2\2\u01e4\u01e6\7K\2\2\u01e5\u01e7\7d\2\2\u01e6\u01e5"+ + "\3\2\2\2\u01e6\u01e7\3\2\2\2\u01e7\u01e8\3\2\2\2\u01e8\u01e9\7\4\2\2\u01e9"+ + "\u01ea\5:\36\2\u01ea\u01eb\7\5\2\2\u01eb9\3\2\2\2\u01ec\u01ed\b\36\1\2"+ + "\u01ed\u01ee\5<\37\2\u01ee\u01f4\3\2\2\2\u01ef\u01f0\f\3\2\2\u01f0\u01f1"+ + "\7\f\2\2\u01f1\u01f3\5<\37\2\u01f2\u01ef\3\2\2\2\u01f3\u01f6\3\2\2\2\u01f4"+ + "\u01f2\3\2\2\2\u01f4\u01f5\3\2\2\2\u01f5;\3\2\2\2\u01f6\u01f4\3\2\2\2"+ + "\u01f7\u01fa\7d\2\2\u01f8\u01f9\7&\2\2\u01f9\u01fb\5@!\2\u01fa\u01f8\3"+ + "\2\2\2\u01fa\u01fb\3\2\2\2\u01fb=\3\2\2\2\u01fc\u01fd\b \1\2\u01fd\u01fe"+ + "\5@!\2\u01fe\u0204\3\2\2\2\u01ff\u0200\f\3\2\2\u0200\u0201\7\f\2\2\u0201"+ + "\u0203\5@!\2\u0202\u01ff\3\2\2\2\u0203\u0206\3\2\2\2\u0204\u0202\3\2\2"+ + "\2\u0204\u0205\3\2\2\2\u0205?\3\2\2\2\u0206\u0204\3\2\2\2\u0207\u0208"+ + "\b!\1\2\u0208\u0209\7\b\2\2\u0209\u020a\5> \2\u020a\u020b\7\t\2\2\u020b"+ + "\u023e\3\2\2\2\u020c\u020d\7L\2\2\u020d\u0210\7\b\2\2\u020e\u0211\5@!"+ + "\2\u020f\u0211\5.\30\2\u0210\u020e\3\2\2\2\u0210\u020f\3\2\2\2\u0211\u0212"+ + "\3\2\2\2\u0212\u0213\7\t\2\2\u0213\u023e\3\2\2\2\u0214\u0215\7M\2\2\u0215"+ + "\u0218\7\b\2\2\u0216\u0219\5@!\2\u0217\u0219\5.\30\2\u0218\u0216\3\2\2"+ + "\2\u0218\u0217\3\2\2\2\u0219\u021a\3\2\2\2\u021a\u021b\7\t\2\2\u021b\u023e"+ + "\3\2\2\2\u021c\u021d\7\b\2\2\u021d\u021e\5.\30\2\u021e\u021f\7\t\2\2\u021f"+ + "\u0220\5@!\32\u0220\u023e\3\2\2\2\u0221\u0222\t\3\2\2\u0222\u023e\5@!"+ + "\31\u0223\u0224\7\23\2\2\u0224\u023e\5@!\27\u0225\u0226\t\4\2\2\u0226"+ + "\u023e\5@!\26\u0227\u0228\t\5\2\2\u0228\u023e\5@!\22\u0229\u022a\7\4\2"+ + "\2\u022a\u022f\5@!\2\u022b\u022c\7\f\2\2\u022c\u022e\5@!\2\u022d\u022b"+ + "\3\2\2\2\u022e\u0231\3\2\2\2\u022f\u022d\3\2\2\2\u022f\u0230\3\2\2\2\u0230"+ + "\u0232\3\2\2\2\u0231\u022f\3\2\2\2\u0232\u0233\7\5\2\2\u0233\u023e\3\2"+ + "\2\2\u0234\u023e\7d\2\2\u0235\u023e\7[\2\2\u0236\u0238\7Y\2\2\u0237\u0236"+ + "\3\2\2\2\u0238\u0239\3\2\2\2\u0239\u0237\3\2\2\2\u0239\u023a\3\2\2\2\u023a"+ + "\u023e\3\2\2\2\u023b\u023e\7Z\2\2\u023c\u023e\7W\2\2\u023d\u0207\3\2\2"+ + "\2\u023d\u020c\3\2\2\2\u023d\u0214\3\2\2\2\u023d\u021c\3\2\2\2\u023d\u0221"+ + "\3\2\2\2\u023d\u0223\3\2\2\2\u023d\u0225\3\2\2\2\u023d\u0227\3\2\2\2\u023d"+ + "\u0229\3\2\2\2\u023d\u0234\3\2\2\2\u023d\u0235\3\2\2\2\u023d\u0237\3\2"+ + "\2\2\u023d\u023b\3\2\2\2\u023d\u023c\3\2\2\2\u023e\u027b\3\2\2\2\u023f"+ + "\u0240\f\25\2\2\u0240\u0241\t\6\2\2\u0241\u027a\5@!\26\u0242\u0243\f\24"+ + "\2\2\u0243\u0244\t\7\2\2\u0244\u027a\5@!\25\u0245\u0246\f\23\2\2\u0246"+ + "\u0247\t\b\2\2\u0247\u027a\5@!\24\u0248\u0249\f\21\2\2\u0249\u024a\t\t"+ + "\2\2\u024a\u027a\5@!\22\u024b\u024c\f\20\2\2\u024c\u024d\7\30\2\2\u024d"+ + "\u027a\5@!\21\u024e\u024f\f\17\2\2\u024f\u0250\7\32\2\2\u0250\u027a\5"+ + "@!\20\u0251\u0252\f\16\2\2\u0252\u0253\7\33\2\2\u0253\u027a\5@!\17\u0254"+ + "\u0255\f\r\2\2\u0255\u0256\7$\2\2\u0256\u027a\5@!\16\u0257\u0258\f\f\2"+ + "\2\u0258\u0259\7%\2\2\u0259\u027a\5@!\r\u025a\u025b\f\13\2\2\u025b\u025c"+ + "\7\16\2\2\u025c\u025d\5@!\2\u025d\u025e\7\13\2\2\u025e\u025f\5@!\f\u025f"+ + "\u027a\3\2\2\2\u0260\u0261\f\n\2\2\u0261\u0262\7&\2\2\u0262\u027a\5@!"+ + "\n\u0263\u0264\f\t\2\2\u0264\u0265\7\'\2\2\u0265\u027a\5@!\t\u0266\u0267"+ + "\f \2\2\u0267\u0268\7\17\2\2\u0268\u027a\7d\2\2\u0269\u026a\f\37\2\2\u026a"+ + "\u026b\7\20\2\2\u026b\u027a\7d\2\2\u026c\u026d\f\36\2\2\u026d\u026f\7"+ + "\b\2\2\u026e\u0270\5B\"\2\u026f\u026e\3\2\2\2\u026f\u0270\3\2\2\2\u0270"+ + "\u0271\3\2\2\2\u0271\u027a\7\t\2\2\u0272\u0273\f\33\2\2\u0273\u0274\7"+ + "\6\2\2\u0274\u0275\5> \2\u0275\u0276\7\7\2\2\u0276\u027a\3\2\2\2\u0277"+ + "\u0278\f\30\2\2\u0278\u027a\t\3\2\2\u0279\u023f\3\2\2\2\u0279\u0242\3"+ + "\2\2\2\u0279\u0245\3\2\2\2\u0279\u0248\3\2\2\2\u0279\u024b\3\2\2\2\u0279"+ + "\u024e\3\2\2\2\u0279\u0251\3\2\2\2\u0279\u0254\3\2\2\2\u0279\u0257\3\2"+ + "\2\2\u0279\u025a\3\2\2\2\u0279\u0260\3\2\2\2\u0279\u0263\3\2\2\2\u0279"+ + "\u0266\3\2\2\2\u0279\u0269\3\2\2\2\u0279\u026c\3\2\2\2\u0279\u0272\3\2"+ + "\2\2\u0279\u0277\3\2\2\2\u027a\u027d\3\2\2\2\u027b\u0279\3\2\2\2\u027b"+ + "\u027c\3\2\2\2\u027cA\3\2\2\2\u027d\u027b\3\2\2\2\u027e\u0283\5@!\2\u027f"+ + "\u0280\7\f\2\2\u0280\u0282\5@!\2\u0281\u027f\3\2\2\2\u0282\u0285\3\2\2"+ + "\2\u0283\u0281\3\2\2\2\u0283\u0284\3\2\2\2\u0284C\3\2\2\2\u0285\u0283"+ + "\3\2\2\2\u0286\u0288\7N\2\2\u0287\u0289\5F$\2\u0288\u0287\3\2\2\2\u0288"+ + "\u0289\3\2\2\2\u0289\u028a\3\2\2\2\u028a\u028b\7X\2\2\u028bE\3\2\2\2\u028c"+ + "\u028d\7\b\2\2\u028d\u0292\5H%\2\u028e\u028f\7\f\2\2\u028f\u0291\5H%\2"+ + "\u0290\u028e\3\2\2\2\u0291\u0294\3\2\2\2\u0292\u0290\3\2\2\2\u0292\u0293"+ + "\3\2\2\2\u0293\u0295\3\2\2\2\u0294\u0292\3\2\2\2\u0295\u0296\7\t\2\2\u0296"+ + "G\3\2\2\2\u0297\u0298\7O\2\2\u0298\u02a7\7Y\2\2\u0299\u029a\7P\2\2\u029a"+ + "\u02a7\7d\2\2\u029b\u029c\7Q\2\2\u029c\u02a7\7Y\2\2\u029d\u029e\7R\2\2"+ + "\u029e\u02a7\5@!\2\u029f\u02a0\7S\2\2\u02a0\u02a7\5@!\2\u02a1\u02a4\7"+ + ",\2\2\u02a2\u02a5\79\2\2\u02a3\u02a5\5@!\2\u02a4\u02a2\3\2\2\2\u02a4\u02a3"+ + "\3\2\2\2\u02a5\u02a7\3\2\2\2\u02a6\u0297\3\2\2\2\u02a6\u0299\3\2\2\2\u02a6"+ + "\u029b\3\2\2\2\u02a6\u029d\3\2\2\2\u02a6\u029f\3\2\2\2\u02a6\u02a1\3\2"+ + "\2\2\u02a7I\3\2\2\2\u02a8\u02aa\5L\'\2\u02a9\u02a8\3\2\2\2\u02aa\u02ad"+ + "\3\2\2\2\u02ab\u02a9\3\2\2\2\u02ab\u02ac\3\2\2\2\u02acK\3\2\2\2\u02ad"+ + "\u02ab\3\2\2\2\u02ae\u02b2\5N(\2\u02af\u02b2\5P)\2\u02b0\u02b2\5R*\2\u02b1"+ + "\u02ae\3\2\2\2\u02b1\u02af\3\2\2\2\u02b1\u02b0\3\2\2\2\u02b2M\3\2\2\2"+ + "\u02b3\u02b4\7\u0088\2\2\u02b4\u02b8\7k\2\2\u02b5\u02b6\7\u0087\2\2\u02b6"+ + "\u02b8\7k\2\2\u02b7\u02b3\3\2\2\2\u02b7\u02b5\3\2\2\2\u02b8O\3\2\2\2\u02b9"+ + "\u02bb\7i\2\2\u02ba\u02bc\5T+\2\u02bb\u02ba\3\2\2\2\u02bb\u02bc\3\2\2"+ + "\2\u02bcQ\3\2\2\2\u02bd\u02be\7h\2\2\u02be\u02c3\5V,\2\u02bf\u02c0\7l"+ + "\2\2\u02c0\u02c2\5V,\2\u02c1\u02bf\3\2\2\2\u02c2\u02c5\3\2\2\2\u02c3\u02c1"+ + "\3\2\2\2\u02c3\u02c4\3\2\2\2\u02c4S\3\2\2\2\u02c5\u02c3\3\2\2\2\u02c6"+ + "\u02de\5V,\2\u02c7\u02c8\7j\2\2\u02c8\u02de\5V,\2\u02c9\u02ca\5V,\2\u02ca"+ + "\u02cb\7l\2\2\u02cb\u02cc\7\u0088\2\2\u02cc\u02de\3\2\2\2\u02cd\u02ce"+ + "\7m\2\2\u02ce\u02cf\5V,\2\u02cf\u02d0\7n\2\2\u02d0\u02d1\7l\2\2\u02d1"+ + "\u02d2\7\u0088\2\2\u02d2\u02de\3\2\2\2\u02d3\u02d4\7m\2\2\u02d4\u02d5"+ + "\5V,\2\u02d5\u02d6\7l\2\2\u02d6\u02d7\7\u0088\2\2\u02d7\u02d8\7n\2\2\u02d8"+ + "\u02de\3\2\2\2\u02d9\u02da\7m\2\2\u02da\u02db\5V,\2\u02db\u02dc\7n\2\2"+ + "\u02dc\u02de\3\2\2\2\u02dd\u02c6\3\2\2\2\u02dd\u02c7\3\2\2\2\u02dd\u02c9"+ + "\3\2\2\2\u02dd\u02cd\3\2\2\2\u02dd\u02d3\3\2\2\2\u02dd\u02d9\3\2\2\2\u02de"+ + "U\3\2\2\2\u02df\u02e0\b,\1\2\u02e0\u02e1\7o\2\2\u02e1\u02e2\5V,\2\u02e2"+ + "\u02e3\7p\2\2\u02e3\u02ee\3\2\2\2\u02e4\u02e5\t\n\2\2\u02e5\u02ee\5V,"+ + "\n\u02e6\u02ee\7\u0088\2\2\u02e7\u02ee\7\u0086\2\2\u02e8\u02e9\7z\2\2"+ + "\u02e9\u02ea\7\u0088\2\2\u02ea\u02ee\7{\2\2\u02eb\u02ee\7|\2\2\u02ec\u02ee"+ + "\7\u0085\2\2\u02ed\u02df\3\2\2\2\u02ed\u02e4\3\2\2\2\u02ed\u02e6\3\2\2"+ + "\2\u02ed\u02e7\3\2\2\2\u02ed\u02e8\3\2\2\2\u02ed\u02eb\3\2\2\2\u02ed\u02ec"+ + "\3\2\2\2\u02ee\u02fd\3\2\2\2\u02ef\u02f0\f\f\2\2\u02f0\u02f1\7q\2\2\u02f1"+ + "\u02fc\5V,\r\u02f2\u02f3\f\13\2\2\u02f3\u02f4\t\13\2\2\u02f4\u02fc\5V"+ + ",\f\u02f5\u02f6\f\t\2\2\u02f6\u02f7\t\f\2\2\u02f7\u02fc\5V,\n\u02f8\u02f9"+ + "\f\b\2\2\u02f9\u02fa\t\r\2\2\u02fa\u02fc\5V,\t\u02fb\u02ef\3\2\2\2\u02fb"+ + "\u02f2\3\2\2\2\u02fb\u02f5\3\2\2\2\u02fb\u02f8\3\2\2\2\u02fc\u02ff\3\2"+ + "\2\2\u02fd\u02fb\3\2\2\2\u02fd\u02fe\3\2\2\2\u02feW\3\2\2\2\u02ff\u02fd"+ + "\3\2\2\2Hafz\u0084\u008b\u0099\u009f\u00a4\u00aa\u00af\u00b8\u00bf\u00ca"+ + "\u00fe\u010b\u0111\u0119\u0122\u0127\u012c\u0133\u0140\u0145\u0151\u015f"+ + "\u0172\u017b\u0182\u0187\u018c\u018e\u0194\u019b\u019e\u01a6\u01a9\u01ac"+ + "\u01b6\u01bd\u01c4\u01ca\u01cc\u01d4\u01da\u01e6\u01f4\u01fa\u0204\u0210"+ + "\u0218\u022f\u0239\u023d\u026f\u0279\u027b\u0283\u0288\u0292\u02a4\u02a6"+ + "\u02ab\u02b1\u02b7\u02bb\u02c3\u02dd\u02ed\u02fb\u02fd"; 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 ac7655c81..3cf934e80 100644 --- a/src/main/java/dk/camelot64/kickc/parser/KickCParser.tokens +++ b/src/main/java/dk/camelot64/kickc/parser/KickCParser.tokens @@ -51,89 +51,90 @@ EXTERN=50 EXPORT=51 ALIGN=52 REGISTER=53 -INLINE=54 -VOLATILE=55 -INTERRUPT=56 -CALLING=57 -CALLINGCONVENTION=58 -IF=59 -ELSE=60 -WHILE=61 -DO=62 -FOR=63 -SWITCH=64 -RETURN=65 -BREAK=66 -CONTINUE=67 -ASM=68 -DEFAULT=69 -CASE=70 -STRUCT=71 -ENUM=72 -SIZEOF=73 -TYPEID=74 -KICKASM=75 -RESOURCE=76 -USES=77 -CLOBBERS=78 -BYTES=79 -CYCLES=80 -LOGIC_NOT=81 -SIGNEDNESS=82 -SIMPLETYPE=83 -BOOLEAN=84 -KICKASM_BODY=85 -STRING=86 -CHAR=87 -NUMBER=88 -NUMFLOAT=89 -BINFLOAT=90 -DECFLOAT=91 -HEXFLOAT=92 -NUMINT=93 -BININTEGER=94 -DECINTEGER=95 -HEXINTEGER=96 -NAME=97 -WS=98 -COMMENT_LINE=99 -COMMENT_BLOCK=100 -ASM_BYTE=101 -ASM_MNEMONIC=102 -ASM_IMM=103 -ASM_COLON=104 -ASM_COMMA=105 -ASM_PAR_BEGIN=106 -ASM_PAR_END=107 -ASM_BRACKET_BEGIN=108 -ASM_BRACKET_END=109 -ASM_DOT=110 -ASM_SHIFT_LEFT=111 -ASM_SHIFT_RIGHT=112 -ASM_PLUS=113 -ASM_MINUS=114 -ASM_LESS_THAN=115 -ASM_GREATER_THAN=116 -ASM_MULTIPLY=117 -ASM_DIVIDE=118 -ASM_CURLY_BEGIN=119 -ASM_CURLY_END=120 -ASM_NUMBER=121 -ASM_NUMFLOAT=122 -ASM_BINFLOAT=123 -ASM_DECFLOAT=124 -ASM_HEXFLOAT=125 -ASM_NUMINT=126 -ASM_BININTEGER=127 -ASM_DECINTEGER=128 -ASM_HEXINTEGER=129 -ASM_CHAR=130 -ASM_MULTI_REL=131 -ASM_MULTI_NAME=132 -ASM_NAME=133 -ASM_WS=134 -ASM_COMMENT_LINE=135 -ASM_COMMENT_BLOCK=136 +MEMORY=54 +INLINE=55 +VOLATILE=56 +INTERRUPT=57 +CALLING=58 +CALLINGCONVENTION=59 +IF=60 +ELSE=61 +WHILE=62 +DO=63 +FOR=64 +SWITCH=65 +RETURN=66 +BREAK=67 +CONTINUE=68 +ASM=69 +DEFAULT=70 +CASE=71 +STRUCT=72 +ENUM=73 +SIZEOF=74 +TYPEID=75 +KICKASM=76 +RESOURCE=77 +USES=78 +CLOBBERS=79 +BYTES=80 +CYCLES=81 +LOGIC_NOT=82 +SIGNEDNESS=83 +SIMPLETYPE=84 +BOOLEAN=85 +KICKASM_BODY=86 +STRING=87 +CHAR=88 +NUMBER=89 +NUMFLOAT=90 +BINFLOAT=91 +DECFLOAT=92 +HEXFLOAT=93 +NUMINT=94 +BININTEGER=95 +DECINTEGER=96 +HEXINTEGER=97 +NAME=98 +WS=99 +COMMENT_LINE=100 +COMMENT_BLOCK=101 +ASM_BYTE=102 +ASM_MNEMONIC=103 +ASM_IMM=104 +ASM_COLON=105 +ASM_COMMA=106 +ASM_PAR_BEGIN=107 +ASM_PAR_END=108 +ASM_BRACKET_BEGIN=109 +ASM_BRACKET_END=110 +ASM_DOT=111 +ASM_SHIFT_LEFT=112 +ASM_SHIFT_RIGHT=113 +ASM_PLUS=114 +ASM_MINUS=115 +ASM_LESS_THAN=116 +ASM_GREATER_THAN=117 +ASM_MULTIPLY=118 +ASM_DIVIDE=119 +ASM_CURLY_BEGIN=120 +ASM_CURLY_END=121 +ASM_NUMBER=122 +ASM_NUMFLOAT=123 +ASM_BINFLOAT=124 +ASM_DECFLOAT=125 +ASM_HEXFLOAT=126 +ASM_NUMINT=127 +ASM_BININTEGER=128 +ASM_DECINTEGER=129 +ASM_HEXINTEGER=130 +ASM_CHAR=131 +ASM_MULTI_REL=132 +ASM_MULTI_NAME=133 +ASM_NAME=134 +ASM_WS=135 +ASM_COMMENT_LINE=136 +ASM_COMMENT_BLOCK=137 ';'=8 '..'=11 '?'=12 @@ -168,32 +169,33 @@ ASM_COMMENT_BLOCK=136 'export'=51 'align'=52 'register'=53 -'inline'=54 -'volatile'=55 -'interrupt'=56 -'calling'=57 -'if'=59 -'else'=60 -'while'=61 -'do'=62 -'for'=63 -'switch'=64 -'return'=65 -'break'=66 -'continue'=67 -'asm'=68 -'default'=69 -'case'=70 -'struct'=71 -'enum'=72 -'sizeof'=73 -'typeid'=74 -'kickasm'=75 -'resource'=76 -'uses'=77 -'clobbers'=78 -'bytes'=79 -'cycles'=80 -'!'=81 -'.byte'=101 -'#'=103 +'memory'=54 +'inline'=55 +'volatile'=56 +'interrupt'=57 +'calling'=58 +'if'=60 +'else'=61 +'while'=62 +'do'=63 +'for'=64 +'switch'=65 +'return'=66 +'break'=67 +'continue'=68 +'asm'=69 +'default'=70 +'case'=71 +'struct'=72 +'enum'=73 +'sizeof'=74 +'typeid'=75 +'kickasm'=76 +'resource'=77 +'uses'=78 +'clobbers'=79 +'bytes'=80 +'cycles'=81 +'!'=82 +'.byte'=102 +'#'=104 diff --git a/src/main/java/dk/camelot64/kickc/parser/KickCParserBaseListener.java b/src/main/java/dk/camelot64/kickc/parser/KickCParserBaseListener.java index 9f64d226f..2ee257b75 100644 --- a/src/main/java/dk/camelot64/kickc/parser/KickCParserBaseListener.java +++ b/src/main/java/dk/camelot64/kickc/parser/KickCParserBaseListener.java @@ -373,6 +373,18 @@ public class KickCParserBaseListener implements KickCParserListener { *

The default implementation does nothing.

*/ @Override public void exitDirectiveRegister(KickCParser.DirectiveRegisterContext ctx) { } + /** + * {@inheritDoc} + * + *

The default implementation does nothing.

+ */ + @Override public void enterDirectiveMemory(KickCParser.DirectiveMemoryContext ctx) { } + /** + * {@inheritDoc} + * + *

The default implementation does nothing.

+ */ + @Override public void exitDirectiveMemory(KickCParser.DirectiveMemoryContext 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 ac6c10b07..6c6b4c171 100644 --- a/src/main/java/dk/camelot64/kickc/parser/KickCParserBaseVisitor.java +++ b/src/main/java/dk/camelot64/kickc/parser/KickCParserBaseVisitor.java @@ -223,6 +223,13 @@ public class KickCParserBaseVisitor extends AbstractParseTreeVisitor imple * {@link #visitChildren} on {@code ctx}.

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

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

+ */ + @Override public T visitDirectiveMemory(KickCParser.DirectiveMemoryContext 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 7676cb001..c1ee2cfe0 100644 --- a/src/main/java/dk/camelot64/kickc/parser/KickCParserListener.java +++ b/src/main/java/dk/camelot64/kickc/parser/KickCParserListener.java @@ -345,6 +345,18 @@ public interface KickCParserListener extends ParseTreeListener { * @param ctx the parse tree */ void exitDirectiveRegister(KickCParser.DirectiveRegisterContext ctx); + /** + * Enter a parse tree produced by the {@code directiveMemory} + * labeled alternative in {@link KickCParser#directive}. + * @param ctx the parse tree + */ + void enterDirectiveMemory(KickCParser.DirectiveMemoryContext ctx); + /** + * Exit a parse tree produced by the {@code directiveMemory} + * labeled alternative in {@link KickCParser#directive}. + * @param ctx the parse tree + */ + void exitDirectiveMemory(KickCParser.DirectiveMemoryContext ctx); /** * Enter a parse tree produced by the {@code directiveInline} * labeled alternative in {@link KickCParser#directive}. diff --git a/src/main/java/dk/camelot64/kickc/parser/KickCParserVisitor.java b/src/main/java/dk/camelot64/kickc/parser/KickCParserVisitor.java index 424bded94..5b229beb4 100644 --- a/src/main/java/dk/camelot64/kickc/parser/KickCParserVisitor.java +++ b/src/main/java/dk/camelot64/kickc/parser/KickCParserVisitor.java @@ -210,6 +210,13 @@ public interface KickCParserVisitor extends ParseTreeVisitor { * @return the visitor result */ T visitDirectiveRegister(KickCParser.DirectiveRegisterContext ctx); + /** + * Visit a parse tree produced by the {@code directiveMemory} + * labeled alternative in {@link KickCParser#directive}. + * @param ctx the parse tree + * @return the visitor result + */ + T visitDirectiveMemory(KickCParser.DirectiveMemoryContext ctx); /** * Visit a parse tree produced by the {@code directiveInline} * labeled alternative in {@link KickCParser#directive}. diff --git a/src/main/java/dk/camelot64/kickc/passes/Pass0GenerateStatementSequence.java b/src/main/java/dk/camelot64/kickc/passes/Pass0GenerateStatementSequence.java index 249a9299a..3648dd7b8 100644 --- a/src/main/java/dk/camelot64/kickc/passes/Pass0GenerateStatementSequence.java +++ b/src/main/java/dk/camelot64/kickc/passes/Pass0GenerateStatementSequence.java @@ -261,6 +261,8 @@ public class Pass0GenerateStatementSequence extends KickCParserBaseVisitor directives = declVarDirectives; VariableUnversioned param = new VariableUnversioned(ctx.NAME().getText(), getCurrentScope(), type, currentDataSegment); + // Set initial storage strategy + param.setStorageStrategy(SymbolVariable.StorageStrategy.REGISTER); // Add directives addDirectives(param, type, directives, new StatementSource(ctx)); exitDeclTypes(); @@ -617,6 +619,8 @@ public class Pass0GenerateStatementSequence extends KickCParserBaseVisitor reservedZp; diff --git a/src/main/java/dk/camelot64/kickc/passes/Pass1ProcedureInline.java b/src/main/java/dk/camelot64/kickc/passes/Pass1ProcedureInline.java index dd1299a5a..a52dc7500 100644 --- a/src/main/java/dk/camelot64/kickc/passes/Pass1ProcedureInline.java +++ b/src/main/java/dk/camelot64/kickc/passes/Pass1ProcedureInline.java @@ -304,7 +304,11 @@ public class Pass1ProcedureInline extends Pass1Base { inlineVar.setInferredType(procVar.isInferredType()); inlineVar.setDeclaredAlignment(procVar.getDeclaredAlignment()); inlineVar.setDeclaredConstant(procVar.isDeclaredConstant()); + inlineVar.setDeclaredAsRegister(procVar.isDeclaredAsRegister()); + inlineVar.setDeclaredAsMemory(procVar.isDeclaredAsMemory()); inlineVar.setDeclaredRegister(procVar.getDeclaredRegister()); + inlineVar.setDeclaredMemoryAddress(procVar.getDeclaredMemoryAddress()); + inlineVar.setStorageStrategy(procVar.getStorageStrategy()); inlineVar.setDeclaredVolatile(procVar.isDeclaredVolatile()); inlineVar.setInferedVolatile(procVar.isInferedVolatile()); inlineVar.setDeclaredExport(procVar.isDeclaredExport()); diff --git a/src/main/java/dk/camelot64/kickc/passes/Pass2ConstantIdentification.java b/src/main/java/dk/camelot64/kickc/passes/Pass2ConstantIdentification.java index d84f903c5..1e2d08e36 100644 --- a/src/main/java/dk/camelot64/kickc/passes/Pass2ConstantIdentification.java +++ b/src/main/java/dk/camelot64/kickc/passes/Pass2ConstantIdentification.java @@ -84,7 +84,11 @@ public class Pass2ConstantIdentification extends Pass2SsaOptimization { constantVar.setInferredType(variable.isInferredType()); constantVar.setDeclaredAlignment(variable.getDeclaredAlignment()); + constantVar.setDeclaredAsRegister(variable.isDeclaredAsRegister()); constantVar.setDeclaredRegister(variable.getDeclaredRegister()); + constantVar.setDeclaredAsMemory(variable.isDeclaredAsMemory()); + constantVar.setDeclaredMemoryAddress(variable.getDeclaredMemoryAddress()); + constantVar.setStorageStrategy(variable.getStorageStrategy()); constantVar.setDeclaredExport(variable.isDeclaredExport()); if(variable.getComments().size() > 0) { constantVar.setComments(variable.getComments()); diff --git a/src/main/java/dk/camelot64/kickc/passes/Pass2IdenticalPhiElimination.java b/src/main/java/dk/camelot64/kickc/passes/Pass2IdenticalPhiElimination.java index a350f7a1d..db2c78b71 100644 --- a/src/main/java/dk/camelot64/kickc/passes/Pass2IdenticalPhiElimination.java +++ b/src/main/java/dk/camelot64/kickc/passes/Pass2IdenticalPhiElimination.java @@ -40,7 +40,7 @@ public class Pass2IdenticalPhiElimination extends Pass2SsaOptimization { for(StatementPhiBlock.PhiRValue phiRValue : phiVariable.getValues()) { if(phiRValue.getrValue() instanceof SymbolVariableRef) { SymbolVariable symbolVar = (SymbolVariable) getScope().getSymbol((SymbolVariableRef) phiRValue.getrValue()); - if(symbolVar.getDeclaredRegister() !=null) { + if(symbolVar.getDeclaredRegister() != null) { //TODO: Handle register/memory/storage strategy differently! // Do not collapse PHI's for variables with declared registers (this prevents procedure parameters from being turned into constants) identical = false; break; diff --git a/src/main/java/dk/camelot64/kickc/passes/Pass3LoopDepthAnalysis.java b/src/main/java/dk/camelot64/kickc/passes/Pass3LoopDepthAnalysis.java index 55e9ce631..280ead6d2 100644 --- a/src/main/java/dk/camelot64/kickc/passes/Pass3LoopDepthAnalysis.java +++ b/src/main/java/dk/camelot64/kickc/passes/Pass3LoopDepthAnalysis.java @@ -60,11 +60,11 @@ public class Pass3LoopDepthAnalysis extends Pass2Base { } private int getCallingDepth(ScopeRef currentScope, List path) { - + // Avoid infinite recursion if(path.contains(currentScope)) return 10; - List myPath = new ArrayList<>(path); - myPath.add(currentScope); + path = new ArrayList<>(path); + path.add(currentScope); int callingDepth = 1; Collection callingScopes = callGraph.getCallingBlocks(currentScope); @@ -88,7 +88,7 @@ public class Pass3LoopDepthAnalysis extends Pass2Base { } } // Also look through all callers - int superCallingDepth = getCallingDepth(callingScope, myPath); + int superCallingDepth = getCallingDepth(callingScope, path); if(superCallingDepth>callingDepth) { callingDepth= superCallingDepth; } diff --git a/src/main/java/dk/camelot64/kickc/passes/Pass4RegisterUpliftPotentialInitialize.java b/src/main/java/dk/camelot64/kickc/passes/Pass4RegisterUpliftPotentialInitialize.java index d122c58b8..c969adc8f 100644 --- a/src/main/java/dk/camelot64/kickc/passes/Pass4RegisterUpliftPotentialInitialize.java +++ b/src/main/java/dk/camelot64/kickc/passes/Pass4RegisterUpliftPotentialInitialize.java @@ -28,7 +28,7 @@ public class Pass4RegisterUpliftPotentialInitialize extends Pass2Base { Registers.Register declaredRegister = null; for(VariableRef varRef : equivalenceClass.getVariables()) { Variable variable = getProgram().getScope().getVariable(varRef); - if(variable.getDeclaredRegister() != null) { + if(variable.getDeclaredRegister() != null) { //TODO: Handle register/memory/storage strategy differently! if(declaredRegister != null && !declaredRegister.equals(variable.getDeclaredRegister())) { throw new CompileError("Equivalence class has variables with different declared registers \n" + " - equivalence class: " + equivalenceClass.toString(true) + "\n" + diff --git a/src/main/java/dk/camelot64/kickc/passes/Pass4RegistersFinalize.java b/src/main/java/dk/camelot64/kickc/passes/Pass4RegistersFinalize.java index 8047f1c94..08637d70a 100644 --- a/src/main/java/dk/camelot64/kickc/passes/Pass4RegistersFinalize.java +++ b/src/main/java/dk/camelot64/kickc/passes/Pass4RegistersFinalize.java @@ -40,7 +40,7 @@ public class Pass4RegistersFinalize extends Pass2Base { } // Add all ZP's declared hardcoded register for a live variable for(Variable variable : getSymbols().getAllVariables(true)) { - if(variable.getDeclaredRegister() instanceof Registers.RegisterZpDeclared) { + if(variable.getDeclaredRegister() instanceof Registers.RegisterZpDeclared) { //TODO: Handle register/memory/storage strategy differently! int zp = ((Registers.RegisterZpDeclared) variable.getDeclaredRegister()).getZp(); int sizeBytes = variable.getType().getSizeBytes(); for(int i=0;i