From 3ba3d36994635c2413b8e5abb5129b62ada6c572 Mon Sep 17 00:00:00 2001 From: jespergravgaard Date: Thu, 13 Jun 2019 01:53:33 +0200 Subject: [PATCH] Added typedef syntax. Working ont #177 --- .../java/dk/camelot64/kickc/parser/KickC.g4 | 11 +- .../dk/camelot64/kickc/parser/KickC.tokens | 196 +- .../kickc/parser/KickCBaseListener.java | 26 +- .../kickc/parser/KickCBaseVisitor.java | 16 +- .../dk/camelot64/kickc/parser/KickCLexer.java | 766 +++---- .../camelot64/kickc/parser/KickCLexer.tokens | 196 +- .../camelot64/kickc/parser/KickCListener.java | 24 +- .../camelot64/kickc/parser/KickCParser.java | 2028 +++++++++-------- .../camelot64/kickc/parser/KickCVisitor.java | 15 +- .../Pass0GenerateStatementSequence.java | 6 + 10 files changed, 1737 insertions(+), 1547 deletions(-) diff --git a/src/main/java/dk/camelot64/kickc/parser/KickC.g4 b/src/main/java/dk/camelot64/kickc/parser/KickC.g4 index 86013f71a..eb9e5d4e0 100644 --- a/src/main/java/dk/camelot64/kickc/parser/KickC.g4 +++ b/src/main/java/dk/camelot64/kickc/parser/KickC.g4 @@ -25,8 +25,14 @@ decl : declVariables ';' | structDef ';' | declFunction + | declFunction | declKasm | globalDirective + | typeDef ';' + ; + +typeDef + : 'typedef' declVariables ; declTypes @@ -117,6 +123,7 @@ typeDecl | typeDecl '(' ')' #typeProcedure | structDef #typeStructDef | structRef #typeStructRef + | NAME #typeNamedRef ; structRef @@ -141,8 +148,8 @@ expr | expr '.' NAME #exprDot | expr '->' NAME #exprArrow | expr '(' parameterList? ')' #exprCall - | 'sizeof' '(' ( typeDecl | expr ) ')' #exprSizeOf - | 'typeid' '(' ( typeDecl | expr ) ')' #exprTypeId + | 'sizeof' '(' ( expr | typeDecl ) ')' #exprSizeOf + | 'typeid' '(' ( expr | typeDecl ) ')' #exprTypeId | expr '[' commaExpr ']' #exprArray | '(' typeDecl ')' expr #exprCast | ('--' | '++' ) expr #exprPreMod diff --git a/src/main/java/dk/camelot64/kickc/parser/KickC.tokens b/src/main/java/dk/camelot64/kickc/parser/KickC.tokens index 6e6afc995..e0e9d126e 100644 --- a/src/main/java/dk/camelot64/kickc/parser/KickC.tokens +++ b/src/main/java/dk/camelot64/kickc/parser/KickC.tokens @@ -77,102 +77,104 @@ T__75=76 T__76=77 T__77=78 T__78=79 -MNEMONIC=80 -KICKASM=81 -SIMPLETYPE=82 -STRING=83 -CHAR=84 -BOOLEAN=85 -NUMBER=86 -NUMFLOAT=87 -BINFLOAT=88 -DECFLOAT=89 -HEXFLOAT=90 -NUMINT=91 -BININTEGER=92 -DECINTEGER=93 -HEXINTEGER=94 -NAME=95 -ASMREL=96 -WS=97 -COMMENT_LINE=98 -COMMENT_BLOCK=99 +T__79=80 +MNEMONIC=81 +KICKASM=82 +SIMPLETYPE=83 +STRING=84 +CHAR=85 +BOOLEAN=86 +NUMBER=87 +NUMFLOAT=88 +BINFLOAT=89 +DECFLOAT=90 +HEXFLOAT=91 +NUMINT=92 +BININTEGER=93 +DECINTEGER=94 +HEXINTEGER=95 +NAME=96 +ASMREL=97 +WS=98 +COMMENT_LINE=99 +COMMENT_BLOCK=100 'import'=1 ';'=2 -','=3 -'='=4 -'('=5 -')'=6 -'{'=7 -'}'=8 -'#'=9 -'pc'=10 -'encoding'=11 -'const'=12 -'extern'=13 -'align'=14 -'register'=15 -'inline'=16 -'volatile'=17 -'interrupt'=18 -'reserve'=19 -'if'=20 -'else'=21 -'while'=22 -'do'=23 -'for'=24 -'return'=25 -'break'=26 -'continue'=27 -'asm'=28 -':'=29 -'..'=30 -'signed'=31 -'unsigned'=32 -'*'=33 -'['=34 -']'=35 -'struct'=36 -'.'=37 -'->'=38 -'sizeof'=39 -'typeid'=40 -'--'=41 -'++'=42 -'+'=43 -'-'=44 -'!'=45 -'&'=46 -'~'=47 -'>>'=48 -'<<'=49 -'/'=50 -'%'=51 -'<'=52 -'>'=53 -'=='=54 -'!='=55 -'<='=56 -'>='=57 -'^'=58 -'|'=59 -'&&'=60 -'||'=61 -'?'=62 -'+='=63 -'-='=64 -'*='=65 -'/='=66 -'%='=67 -'<<='=68 -'>>='=69 -'&='=70 -'|='=71 -'^='=72 -'kickasm'=73 -'resource'=74 -'uses'=75 -'clobbers'=76 -'bytes'=77 -'cycles'=78 -'.byte'=79 +'typedef'=3 +','=4 +'='=5 +'('=6 +')'=7 +'{'=8 +'}'=9 +'#'=10 +'pc'=11 +'encoding'=12 +'const'=13 +'extern'=14 +'align'=15 +'register'=16 +'inline'=17 +'volatile'=18 +'interrupt'=19 +'reserve'=20 +'if'=21 +'else'=22 +'while'=23 +'do'=24 +'for'=25 +'return'=26 +'break'=27 +'continue'=28 +'asm'=29 +':'=30 +'..'=31 +'signed'=32 +'unsigned'=33 +'*'=34 +'['=35 +']'=36 +'struct'=37 +'.'=38 +'->'=39 +'sizeof'=40 +'typeid'=41 +'--'=42 +'++'=43 +'+'=44 +'-'=45 +'!'=46 +'&'=47 +'~'=48 +'>>'=49 +'<<'=50 +'/'=51 +'%'=52 +'<'=53 +'>'=54 +'=='=55 +'!='=56 +'<='=57 +'>='=58 +'^'=59 +'|'=60 +'&&'=61 +'||'=62 +'?'=63 +'+='=64 +'-='=65 +'*='=66 +'/='=67 +'%='=68 +'<<='=69 +'>>='=70 +'&='=71 +'|='=72 +'^='=73 +'kickasm'=74 +'resource'=75 +'uses'=76 +'clobbers'=77 +'bytes'=78 +'cycles'=79 +'.byte'=80 diff --git a/src/main/java/dk/camelot64/kickc/parser/KickCBaseListener.java b/src/main/java/dk/camelot64/kickc/parser/KickCBaseListener.java index 7b31ced0e..5908d6083 100644 --- a/src/main/java/dk/camelot64/kickc/parser/KickCBaseListener.java +++ b/src/main/java/dk/camelot64/kickc/parser/KickCBaseListener.java @@ -1,4 +1,4 @@ -// Generated from C:/c64/kickc/src/main/java/dk/camelot64/kickc/parser\KickC.g4 by ANTLR 4.7 +// Generated from /Users/jespergravgaard/c64/kickc/src/main/java/dk/camelot64/kickc/parser/KickC.g4 by ANTLR 4.7 package dk.camelot64.kickc.parser; import org.antlr.v4.runtime.ParserRuleContext; @@ -83,6 +83,18 @@ public class KickCBaseListener implements KickCListener { *

The default implementation does nothing.

*/ @Override public void exitDecl(KickCParser.DeclContext ctx) { } + /** + * {@inheritDoc} + * + *

The default implementation does nothing.

+ */ + @Override public void enterTypeDef(KickCParser.TypeDefContext ctx) { } + /** + * {@inheritDoc} + * + *

The default implementation does nothing.

+ */ + @Override public void exitTypeDef(KickCParser.TypeDefContext ctx) { } /** * {@inheritDoc} * @@ -611,6 +623,18 @@ public class KickCBaseListener implements KickCListener { *

The default implementation does nothing.

*/ @Override public void exitTypeStructDef(KickCParser.TypeStructDefContext ctx) { } + /** + * {@inheritDoc} + * + *

The default implementation does nothing.

+ */ + @Override public void enterTypeNamedRef(KickCParser.TypeNamedRefContext ctx) { } + /** + * {@inheritDoc} + * + *

The default implementation does nothing.

+ */ + @Override public void exitTypeNamedRef(KickCParser.TypeNamedRefContext ctx) { } /** * {@inheritDoc} * diff --git a/src/main/java/dk/camelot64/kickc/parser/KickCBaseVisitor.java b/src/main/java/dk/camelot64/kickc/parser/KickCBaseVisitor.java index 401957c73..09fd84197 100644 --- a/src/main/java/dk/camelot64/kickc/parser/KickCBaseVisitor.java +++ b/src/main/java/dk/camelot64/kickc/parser/KickCBaseVisitor.java @@ -1,4 +1,4 @@ -// Generated from C:/c64/kickc/src/main/java/dk/camelot64/kickc/parser\KickC.g4 by ANTLR 4.7 +// Generated from /Users/jespergravgaard/c64/kickc/src/main/java/dk/camelot64/kickc/parser/KickC.g4 by ANTLR 4.7 package dk.camelot64.kickc.parser; import org.antlr.v4.runtime.tree.AbstractParseTreeVisitor; @@ -53,6 +53,13 @@ public class KickCBaseVisitor extends AbstractParseTreeVisitor implements * {@link #visitChildren} on {@code ctx}.

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

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

+ */ + @Override public T visitTypeDef(KickCParser.TypeDefContext ctx) { return visitChildren(ctx); } /** * {@inheritDoc} * @@ -361,6 +368,13 @@ public class KickCBaseVisitor extends AbstractParseTreeVisitor implements * {@link #visitChildren} on {@code ctx}.

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

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

+ */ + @Override public T visitTypeNamedRef(KickCParser.TypeNamedRefContext ctx) { return visitChildren(ctx); } /** * {@inheritDoc} * diff --git a/src/main/java/dk/camelot64/kickc/parser/KickCLexer.java b/src/main/java/dk/camelot64/kickc/parser/KickCLexer.java index 0c49f477f..e471b629b 100644 --- a/src/main/java/dk/camelot64/kickc/parser/KickCLexer.java +++ b/src/main/java/dk/camelot64/kickc/parser/KickCLexer.java @@ -1,4 +1,4 @@ -// Generated from C:/c64/kickc/src/main/java/dk/camelot64/kickc/parser\KickC.g4 by ANTLR 4.7 +// Generated from /Users/jespergravgaard/c64/kickc/src/main/java/dk/camelot64/kickc/parser/KickC.g4 by ANTLR 4.7 package dk.camelot64.kickc.parser; import org.antlr.v4.runtime.Lexer; import org.antlr.v4.runtime.CharStream; @@ -27,11 +27,11 @@ public class KickCLexer extends Lexer { T__52=53, T__53=54, T__54=55, T__55=56, T__56=57, T__57=58, T__58=59, T__59=60, T__60=61, T__61=62, T__62=63, T__63=64, T__64=65, T__65=66, T__66=67, T__67=68, T__68=69, T__69=70, T__70=71, T__71=72, T__72=73, - T__73=74, T__74=75, T__75=76, T__76=77, T__77=78, T__78=79, MNEMONIC=80, - KICKASM=81, SIMPLETYPE=82, STRING=83, CHAR=84, BOOLEAN=85, NUMBER=86, - NUMFLOAT=87, BINFLOAT=88, DECFLOAT=89, HEXFLOAT=90, NUMINT=91, BININTEGER=92, - DECINTEGER=93, HEXINTEGER=94, NAME=95, ASMREL=96, WS=97, COMMENT_LINE=98, - COMMENT_BLOCK=99; + T__73=74, T__74=75, T__75=76, T__76=77, T__77=78, T__78=79, T__79=80, + MNEMONIC=81, KICKASM=82, SIMPLETYPE=83, STRING=84, CHAR=85, BOOLEAN=86, + NUMBER=87, NUMFLOAT=88, BINFLOAT=89, DECFLOAT=90, HEXFLOAT=91, NUMINT=92, + BININTEGER=93, DECINTEGER=94, HEXINTEGER=95, NAME=96, ASMREL=97, WS=98, + COMMENT_LINE=99, COMMENT_BLOCK=100; public static String[] channelNames = { "DEFAULT_TOKEN_CHANNEL", "HIDDEN" }; @@ -50,24 +50,25 @@ public class KickCLexer extends Lexer { "T__49", "T__50", "T__51", "T__52", "T__53", "T__54", "T__55", "T__56", "T__57", "T__58", "T__59", "T__60", "T__61", "T__62", "T__63", "T__64", "T__65", "T__66", "T__67", "T__68", "T__69", "T__70", "T__71", "T__72", - "T__73", "T__74", "T__75", "T__76", "T__77", "T__78", "MNEMONIC", "KICKASM", - "SIMPLETYPE", "STRING", "CHAR", "BOOLEAN", "NUMBER", "NUMFLOAT", "BINFLOAT", - "DECFLOAT", "HEXFLOAT", "NUMINT", "BININTEGER", "DECINTEGER", "HEXINTEGER", - "BINDIGIT", "DECDIGIT", "HEXDIGIT", "NAME", "NAME_START", "NAME_CHAR", - "ASMREL", "WS", "COMMENT_LINE", "COMMENT_BLOCK" + "T__73", "T__74", "T__75", "T__76", "T__77", "T__78", "T__79", "MNEMONIC", + "KICKASM", "SIMPLETYPE", "STRING", "CHAR", "BOOLEAN", "NUMBER", "NUMFLOAT", + "BINFLOAT", "DECFLOAT", "HEXFLOAT", "NUMINT", "BININTEGER", "DECINTEGER", + "HEXINTEGER", "BINDIGIT", "DECDIGIT", "HEXDIGIT", "NAME", "NAME_START", + "NAME_CHAR", "ASMREL", "WS", "COMMENT_LINE", "COMMENT_BLOCK" }; private static final String[] _LITERAL_NAMES = { - null, "'import'", "';'", "','", "'='", "'('", "')'", "'{'", "'}'", "'#'", - "'pc'", "'encoding'", "'const'", "'extern'", "'align'", "'register'", - "'inline'", "'volatile'", "'interrupt'", "'reserve'", "'if'", "'else'", - "'while'", "'do'", "'for'", "'return'", "'break'", "'continue'", "'asm'", - "':'", "'..'", "'signed'", "'unsigned'", "'*'", "'['", "']'", "'struct'", - "'.'", "'->'", "'sizeof'", "'typeid'", "'--'", "'++'", "'+'", "'-'", "'!'", - "'&'", "'~'", "'>>'", "'<<'", "'/'", "'%'", "'<'", "'>'", "'=='", "'!='", - "'<='", "'>='", "'^'", "'|'", "'&&'", "'||'", "'?'", "'+='", "'-='", "'*='", - "'/='", "'%='", "'<<='", "'>>='", "'&='", "'|='", "'^='", "'kickasm'", - "'resource'", "'uses'", "'clobbers'", "'bytes'", "'cycles'", "'.byte'" + null, "'import'", "';'", "'typedef'", "','", "'='", "'('", "')'", "'{'", + "'}'", "'#'", "'pc'", "'encoding'", "'const'", "'extern'", "'align'", + "'register'", "'inline'", "'volatile'", "'interrupt'", "'reserve'", "'if'", + "'else'", "'while'", "'do'", "'for'", "'return'", "'break'", "'continue'", + "'asm'", "':'", "'..'", "'signed'", "'unsigned'", "'*'", "'['", "']'", + "'struct'", "'.'", "'->'", "'sizeof'", "'typeid'", "'--'", "'++'", "'+'", + "'-'", "'!'", "'&'", "'~'", "'>>'", "'<<'", "'/'", "'%'", "'<'", "'>'", + "'=='", "'!='", "'<='", "'>='", "'^'", "'|'", "'&&'", "'||'", "'?'", "'+='", + "'-='", "'*='", "'/='", "'%='", "'<<='", "'>>='", "'&='", "'|='", "'^='", + "'kickasm'", "'resource'", "'uses'", "'clobbers'", "'bytes'", "'cycles'", + "'.byte'" }; private static final String[] _SYMBOLIC_NAMES = { null, null, null, null, null, null, null, null, null, null, null, null, @@ -76,7 +77,7 @@ public class KickCLexer extends Lexer { null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, - null, null, null, null, null, null, null, null, "MNEMONIC", "KICKASM", + null, null, null, null, null, null, null, null, null, "MNEMONIC", "KICKASM", "SIMPLETYPE", "STRING", "CHAR", "BOOLEAN", "NUMBER", "NUMFLOAT", "BINFLOAT", "DECFLOAT", "HEXFLOAT", "NUMINT", "BININTEGER", "DECINTEGER", "HEXINTEGER", "NAME", "ASMREL", "WS", "COMMENT_LINE", "COMMENT_BLOCK" @@ -139,7 +140,7 @@ public class KickCLexer extends Lexer { public ATN getATN() { return _ATN; } public static final String _serializedATN = - "\3\u608b\ua72a\u8133\ub9ed\u417c\u3be7\u7786\u5964\2e\u03fe\b\1\4\2\t"+ + "\3\u608b\ua72a\u8133\ub9ed\u417c\u3be7\u7786\u5964\2f\u0408\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\4\31\t\31"+ @@ -150,364 +151,367 @@ public class KickCLexer extends Lexer { "\4>\t>\4?\t?\4@\t@\4A\tA\4B\tB\4C\tC\4D\tD\4E\tE\4F\tF\4G\tG\4H\tH\4I"+ "\tI\4J\tJ\4K\tK\4L\tL\4M\tM\4N\tN\4O\tO\4P\tP\4Q\tQ\4R\tR\4S\tS\4T\tT"+ "\4U\tU\4V\tV\4W\tW\4X\tX\4Y\tY\4Z\tZ\4[\t[\4\\\t\\\4]\t]\4^\t^\4_\t_\4"+ - "`\t`\4a\ta\4b\tb\4c\tc\4d\td\4e\te\4f\tf\4g\tg\4h\th\4i\ti\3\2\3\2\3\2"+ - "\3\2\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\f\3\f\3\f\3\f\3\f\3\f\3\f\3\r\3\r"+ - "\3\r\3\r\3\r\3\r\3\16\3\16\3\16\3\16\3\16\3\16\3\16\3\17\3\17\3\17\3\17"+ - "\3\17\3\17\3\20\3\20\3\20\3\20\3\20\3\20\3\20\3\20\3\20\3\21\3\21\3\21"+ - "\3\21\3\21\3\21\3\21\3\22\3\22\3\22\3\22\3\22\3\22\3\22\3\22\3\22\3\23"+ - "\3\23\3\23\3\23\3\23\3\23\3\23\3\23\3\23\3\23\3\24\3\24\3\24\3\24\3\24"+ - "\3\24\3\24\3\24\3\25\3\25\3\25\3\26\3\26\3\26\3\26\3\26\3\27\3\27\3\27"+ - "\3\27\3\27\3\27\3\30\3\30\3\30\3\31\3\31\3\31\3\31\3\32\3\32\3\32\3\32"+ - "\3\32\3\32\3\32\3\33\3\33\3\33\3\33\3\33\3\33\3\34\3\34\3\34\3\34\3\34"+ - "\3\34\3\34\3\34\3\34\3\35\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(\3(\3(\3(\3(\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\61\3\61\3"+ - "\61\3\62\3\62\3\62\3\63\3\63\3\64\3\64\3\65\3\65\3\66\3\66\3\67\3\67\3"+ - "\67\38\38\38\39\39\39\3:\3:\3:\3;\3;\3<\3<\3=\3=\3=\3>\3>\3>\3?\3?\3@"+ - "\3@\3@\3A\3A\3A\3B\3B\3B\3C\3C\3C\3D\3D\3D\3E\3E\3E\3E\3F\3F\3F\3F\3G"+ - "\3G\3G\3H\3H\3H\3I\3I\3I\3J\3J\3J\3J\3J\3J\3J\3J\3K\3K\3K\3K\3K\3K\3K"+ - "\3K\3K\3L\3L\3L\3L\3L\3M\3M\3M\3M\3M\3M\3M\3M\3M\3N\3N\3N\3N\3N\3N\3O"+ - "\3O\3O\3O\3O\3O\3O\3P\3P\3P\3P\3P\3P\3Q\3Q\3Q\3Q\3Q\3Q\3Q\3Q\3Q\3Q\3Q"+ - "\3Q\3Q\3Q\3Q\3Q\3Q\3Q\3Q\3Q\3Q\3Q\3Q\3Q\3Q\3Q\3Q\3Q\3Q\3Q\3Q\3Q\3Q\3Q"+ - "\3Q\3Q\3Q\3Q\3Q\3Q\3Q\3Q\3Q\3Q\3Q\3Q\3Q\3Q\3Q\3Q\3Q\3Q\3Q\3Q\3Q\3Q\3Q"+ - "\3Q\3Q\3Q\3Q\3Q\3Q\3Q\3Q\3Q\3Q\3Q\3Q\3Q\3Q\3Q\3Q\3Q\3Q\3Q\3Q\3Q\3Q\3Q"+ - "\3Q\3Q\3Q\3Q\3Q\3Q\3Q\3Q\3Q\3Q\3Q\3Q\3Q\3Q\3Q\3Q\3Q\3Q\3Q\3Q\3Q\3Q\3Q"+ - "\3Q\3Q\3Q\3Q\3Q\3Q\3Q\3Q\3Q\3Q\3Q\3Q\3Q\3Q\3Q\3Q\3Q\3Q\3Q\3Q\3Q\3Q\3Q"+ - "\3Q\3Q\3Q\3Q\3Q\3Q\3Q\3Q\3Q\3Q\3Q\3Q\3Q\3Q\3Q\3Q\3Q\3Q\3Q\3Q\3Q\3Q\3Q"+ - "\3Q\3Q\3Q\3Q\3Q\3Q\3Q\3Q\3Q\3Q\3Q\3Q\3Q\3Q\3Q\3Q\3Q\3Q\3Q\3Q\3Q\3Q\3Q"+ - "\3Q\3Q\3Q\3Q\3Q\3Q\3Q\3Q\3Q\3Q\3Q\3Q\3Q\3Q\3Q\3Q\3Q\3Q\3Q\3Q\3Q\3Q\3Q"+ - "\3Q\3Q\3Q\3Q\3Q\3Q\3Q\3Q\3Q\3Q\3Q\3Q\3Q\3Q\3Q\3Q\3Q\3Q\3Q\3Q\3Q\3Q\3Q"+ - "\3Q\3Q\3Q\3Q\5Q\u02ff\nQ\3R\3R\3R\3R\7R\u0305\nR\fR\16R\u0308\13R\3R\3"+ - "R\3R\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\3S\3S\3S\3S\3S\3S\3S\3S\3S\5S\u0332\nS\3T\3T\3T\3"+ - "T\7T\u0338\nT\fT\16T\u033b\13T\3T\3T\5T\u033f\nT\3T\3T\5T\u0343\nT\5T"+ - "\u0345\nT\3T\5T\u0348\nT\3U\3U\3U\3U\5U\u034e\nU\3U\3U\3V\3V\3V\3V\3V"+ - "\3V\3V\3V\3V\5V\u035b\nV\3W\3W\5W\u035f\nW\3X\3X\3X\5X\u0364\nX\3Y\3Y"+ - "\3Y\3Y\3Y\5Y\u036b\nY\3Y\7Y\u036e\nY\fY\16Y\u0371\13Y\3Y\3Y\6Y\u0375\n"+ - "Y\rY\16Y\u0376\3Z\7Z\u037a\nZ\fZ\16Z\u037d\13Z\3Z\3Z\6Z\u0381\nZ\rZ\16"+ - "Z\u0382\3[\3[\3[\3[\3[\5[\u038a\n[\3[\7[\u038d\n[\f[\16[\u0390\13[\3["+ - "\3[\6[\u0394\n[\r[\16[\u0395\3\\\3\\\3\\\5\\\u039b\n\\\3\\\3\\\3\\\5\\"+ - "\u03a0\n\\\3]\3]\3]\6]\u03a5\n]\r]\16]\u03a6\3]\3]\6]\u03ab\n]\r]\16]"+ - "\u03ac\5]\u03af\n]\3^\6^\u03b2\n^\r^\16^\u03b3\3_\3_\3_\3_\3_\5_\u03bb"+ - "\n_\3_\6_\u03be\n_\r_\16_\u03bf\3`\3`\3a\3a\3b\3b\3c\3c\7c\u03ca\nc\f"+ - "c\16c\u03cd\13c\3d\3d\3e\3e\3f\3f\7f\u03d5\nf\ff\16f\u03d8\13f\3f\6f\u03db"+ - "\nf\rf\16f\u03dc\3g\6g\u03e0\ng\rg\16g\u03e1\3g\3g\3h\3h\3h\3h\7h\u03ea"+ - "\nh\fh\16h\u03ed\13h\3h\3h\3i\3i\3i\3i\7i\u03f5\ni\fi\16i\u03f8\13i\3"+ - "i\3i\3i\3i\3i\4\u0306\u03f6\2j\3\3\5\4\7\5\t\6\13\7\r\b\17\t\21\n\23\13"+ - "\25\f\27\r\31\16\33\17\35\20\37\21!\22#\23%\24\'\25)\26+\27-\30/\31\61"+ - "\32\63\33\65\34\67\359\36;\37= ?!A\"C#E$G%I&K\'M(O)Q*S+U,W-Y.[/]\60_\61"+ - "a\62c\63e\64g\65i\66k\67m8o9q:s;u{?}@\177A\u0081B\u0083C\u0085D\u0087"+ - "E\u0089F\u008bG\u008dH\u008fI\u0091J\u0093K\u0095L\u0097M\u0099N\u009b"+ - "O\u009dP\u009fQ\u00a1R\u00a3S\u00a5T\u00a7U\u00a9V\u00abW\u00adX\u00af"+ - "Y\u00b1Z\u00b3[\u00b5\\\u00b7]\u00b9^\u00bb_\u00bd`\u00bf\2\u00c1\2\u00c3"+ - "\2\u00c5a\u00c7\2\u00c9\2\u00cbb\u00cdc\u00cfd\u00d1e\3\2\22\3\2$$\3\2"+ - "||\4\2rruu\4\2ooww\3\2))\4\2uuww\7\2dfkknnuuyy\4\2DDdd\3\2\62\63\3\2\62"+ - ";\5\2\62;CHch\5\2C\\aac|\6\2\62;C\\aac|\4\2--//\6\2\13\f\17\17\"\"\u00a2"+ - "\u00a2\4\2\f\f\17\17\2\u0470\2\3\3\2\2\2\2\5\3\2\2\2\2\7\3\2\2\2\2\t\3"+ - "\2\2\2\2\13\3\2\2\2\2\r\3\2\2\2\2\17\3\2\2\2\2\21\3\2\2\2\2\23\3\2\2\2"+ - "\2\25\3\2\2\2\2\27\3\2\2\2\2\31\3\2\2\2\2\33\3\2\2\2\2\35\3\2\2\2\2\37"+ - "\3\2\2\2\2!\3\2\2\2\2#\3\2\2\2\2%\3\2\2\2\2\'\3\2\2\2\2)\3\2\2\2\2+\3"+ - "\2\2\2\2-\3\2\2\2\2/\3\2\2\2\2\61\3\2\2\2\2\63\3\2\2\2\2\65\3\2\2\2\2"+ - "\67\3\2\2\2\29\3\2\2\2\2;\3\2\2\2\2=\3\2\2\2\2?\3\2\2\2\2A\3\2\2\2\2C"+ - "\3\2\2\2\2E\3\2\2\2\2G\3\2\2\2\2I\3\2\2\2\2K\3\2\2\2\2M\3\2\2\2\2O\3\2"+ - "\2\2\2Q\3\2\2\2\2S\3\2\2\2\2U\3\2\2\2\2W\3\2\2\2\2Y\3\2\2\2\2[\3\2\2\2"+ - "\2]\3\2\2\2\2_\3\2\2\2\2a\3\2\2\2\2c\3\2\2\2\2e\3\2\2\2\2g\3\2\2\2\2i"+ - "\3\2\2\2\2k\3\2\2\2\2m\3\2\2\2\2o\3\2\2\2\2q\3\2\2\2\2s\3\2\2\2\2u\3\2"+ - "\2\2\2w\3\2\2\2\2y\3\2\2\2\2{\3\2\2\2\2}\3\2\2\2\2\177\3\2\2\2\2\u0081"+ - "\3\2\2\2\2\u0083\3\2\2\2\2\u0085\3\2\2\2\2\u0087\3\2\2\2\2\u0089\3\2\2"+ - "\2\2\u008b\3\2\2\2\2\u008d\3\2\2\2\2\u008f\3\2\2\2\2\u0091\3\2\2\2\2\u0093"+ - "\3\2\2\2\2\u0095\3\2\2\2\2\u0097\3\2\2\2\2\u0099\3\2\2\2\2\u009b\3\2\2"+ - "\2\2\u009d\3\2\2\2\2\u009f\3\2\2\2\2\u00a1\3\2\2\2\2\u00a3\3\2\2\2\2\u00a5"+ - "\3\2\2\2\2\u00a7\3\2\2\2\2\u00a9\3\2\2\2\2\u00ab\3\2\2\2\2\u00ad\3\2\2"+ - "\2\2\u00af\3\2\2\2\2\u00b1\3\2\2\2\2\u00b3\3\2\2\2\2\u00b5\3\2\2\2\2\u00b7"+ - "\3\2\2\2\2\u00b9\3\2\2\2\2\u00bb\3\2\2\2\2\u00bd\3\2\2\2\2\u00c5\3\2\2"+ - "\2\2\u00cb\3\2\2\2\2\u00cd\3\2\2\2\2\u00cf\3\2\2\2\2\u00d1\3\2\2\2\3\u00d3"+ - "\3\2\2\2\5\u00da\3\2\2\2\7\u00dc\3\2\2\2\t\u00de\3\2\2\2\13\u00e0\3\2"+ - "\2\2\r\u00e2\3\2\2\2\17\u00e4\3\2\2\2\21\u00e6\3\2\2\2\23\u00e8\3\2\2"+ - "\2\25\u00ea\3\2\2\2\27\u00ed\3\2\2\2\31\u00f6\3\2\2\2\33\u00fc\3\2\2\2"+ - "\35\u0103\3\2\2\2\37\u0109\3\2\2\2!\u0112\3\2\2\2#\u0119\3\2\2\2%\u0122"+ - "\3\2\2\2\'\u012c\3\2\2\2)\u0134\3\2\2\2+\u0137\3\2\2\2-\u013c\3\2\2\2"+ - "/\u0142\3\2\2\2\61\u0145\3\2\2\2\63\u0149\3\2\2\2\65\u0150\3\2\2\2\67"+ - "\u0156\3\2\2\29\u015f\3\2\2\2;\u0163\3\2\2\2=\u0165\3\2\2\2?\u0168\3\2"+ - "\2\2A\u016f\3\2\2\2C\u0178\3\2\2\2E\u017a\3\2\2\2G\u017c\3\2\2\2I\u017e"+ - "\3\2\2\2K\u0185\3\2\2\2M\u0187\3\2\2\2O\u018a\3\2\2\2Q\u0191\3\2\2\2S"+ - "\u0198\3\2\2\2U\u019b\3\2\2\2W\u019e\3\2\2\2Y\u01a0\3\2\2\2[\u01a2\3\2"+ - "\2\2]\u01a4\3\2\2\2_\u01a6\3\2\2\2a\u01a8\3\2\2\2c\u01ab\3\2\2\2e\u01ae"+ - "\3\2\2\2g\u01b0\3\2\2\2i\u01b2\3\2\2\2k\u01b4\3\2\2\2m\u01b6\3\2\2\2o"+ - "\u01b9\3\2\2\2q\u01bc\3\2\2\2s\u01bf\3\2\2\2u\u01c2\3\2\2\2w\u01c4\3\2"+ - "\2\2y\u01c6\3\2\2\2{\u01c9\3\2\2\2}\u01cc\3\2\2\2\177\u01ce\3\2\2\2\u0081"+ - "\u01d1\3\2\2\2\u0083\u01d4\3\2\2\2\u0085\u01d7\3\2\2\2\u0087\u01da\3\2"+ - "\2\2\u0089\u01dd\3\2\2\2\u008b\u01e1\3\2\2\2\u008d\u01e5\3\2\2\2\u008f"+ - "\u01e8\3\2\2\2\u0091\u01eb\3\2\2\2\u0093\u01ee\3\2\2\2\u0095\u01f6\3\2"+ - "\2\2\u0097\u01ff\3\2\2\2\u0099\u0204\3\2\2\2\u009b\u020d\3\2\2\2\u009d"+ - "\u0213\3\2\2\2\u009f\u021a\3\2\2\2\u00a1\u02fe\3\2\2\2\u00a3\u0300\3\2"+ - "\2\2\u00a5\u0331\3\2\2\2\u00a7\u0333\3\2\2\2\u00a9\u0349\3\2\2\2\u00ab"+ - "\u035a\3\2\2\2\u00ad\u035e\3\2\2\2\u00af\u0363\3\2\2\2\u00b1\u036a\3\2"+ - "\2\2\u00b3\u037b\3\2\2\2\u00b5\u0389\3\2\2\2\u00b7\u039a\3\2\2\2\u00b9"+ - "\u03ae\3\2\2\2\u00bb\u03b1\3\2\2\2\u00bd\u03ba\3\2\2\2\u00bf\u03c1\3\2"+ - "\2\2\u00c1\u03c3\3\2\2\2\u00c3\u03c5\3\2\2\2\u00c5\u03c7\3\2\2\2\u00c7"+ - "\u03ce\3\2\2\2\u00c9\u03d0\3\2\2\2\u00cb\u03d2\3\2\2\2\u00cd\u03df\3\2"+ - "\2\2\u00cf\u03e5\3\2\2\2\u00d1\u03f0\3\2\2\2\u00d3\u00d4\7k\2\2\u00d4"+ - "\u00d5\7o\2\2\u00d5\u00d6\7r\2\2\u00d6\u00d7\7q\2\2\u00d7\u00d8\7t\2\2"+ - "\u00d8\u00d9\7v\2\2\u00d9\4\3\2\2\2\u00da\u00db\7=\2\2\u00db\6\3\2\2\2"+ - "\u00dc\u00dd\7.\2\2\u00dd\b\3\2\2\2\u00de\u00df\7?\2\2\u00df\n\3\2\2\2"+ - "\u00e0\u00e1\7*\2\2\u00e1\f\3\2\2\2\u00e2\u00e3\7+\2\2\u00e3\16\3\2\2"+ - "\2\u00e4\u00e5\7}\2\2\u00e5\20\3\2\2\2\u00e6\u00e7\7\177\2\2\u00e7\22"+ - "\3\2\2\2\u00e8\u00e9\7%\2\2\u00e9\24\3\2\2\2\u00ea\u00eb\7r\2\2\u00eb"+ - "\u00ec\7e\2\2\u00ec\26\3\2\2\2\u00ed\u00ee\7g\2\2\u00ee\u00ef\7p\2\2\u00ef"+ - "\u00f0\7e\2\2\u00f0\u00f1\7q\2\2\u00f1\u00f2\7f\2\2\u00f2\u00f3\7k\2\2"+ - "\u00f3\u00f4\7p\2\2\u00f4\u00f5\7i\2\2\u00f5\30\3\2\2\2\u00f6\u00f7\7"+ - "e\2\2\u00f7\u00f8\7q\2\2\u00f8\u00f9\7p\2\2\u00f9\u00fa\7u\2\2\u00fa\u00fb"+ - "\7v\2\2\u00fb\32\3\2\2\2\u00fc\u00fd\7g\2\2\u00fd\u00fe\7z\2\2\u00fe\u00ff"+ - "\7v\2\2\u00ff\u0100\7g\2\2\u0100\u0101\7t\2\2\u0101\u0102\7p\2\2\u0102"+ - "\34\3\2\2\2\u0103\u0104\7c\2\2\u0104\u0105\7n\2\2\u0105\u0106\7k\2\2\u0106"+ - "\u0107\7i\2\2\u0107\u0108\7p\2\2\u0108\36\3\2\2\2\u0109\u010a\7t\2\2\u010a"+ - "\u010b\7g\2\2\u010b\u010c\7i\2\2\u010c\u010d\7k\2\2\u010d\u010e\7u\2\2"+ - "\u010e\u010f\7v\2\2\u010f\u0110\7g\2\2\u0110\u0111\7t\2\2\u0111 \3\2\2"+ - "\2\u0112\u0113\7k\2\2\u0113\u0114\7p\2\2\u0114\u0115\7n\2\2\u0115\u0116"+ - "\7k\2\2\u0116\u0117\7p\2\2\u0117\u0118\7g\2\2\u0118\"\3\2\2\2\u0119\u011a"+ - "\7x\2\2\u011a\u011b\7q\2\2\u011b\u011c\7n\2\2\u011c\u011d\7c\2\2\u011d"+ - "\u011e\7v\2\2\u011e\u011f\7k\2\2\u011f\u0120\7n\2\2\u0120\u0121\7g\2\2"+ - "\u0121$\3\2\2\2\u0122\u0123\7k\2\2\u0123\u0124\7p\2\2\u0124\u0125\7v\2"+ - "\2\u0125\u0126\7g\2\2\u0126\u0127\7t\2\2\u0127\u0128\7t\2\2\u0128\u0129"+ - "\7w\2\2\u0129\u012a\7r\2\2\u012a\u012b\7v\2\2\u012b&\3\2\2\2\u012c\u012d"+ - "\7t\2\2\u012d\u012e\7g\2\2\u012e\u012f\7u\2\2\u012f\u0130\7g\2\2\u0130"+ - "\u0131\7t\2\2\u0131\u0132\7x\2\2\u0132\u0133\7g\2\2\u0133(\3\2\2\2\u0134"+ - "\u0135\7k\2\2\u0135\u0136\7h\2\2\u0136*\3\2\2\2\u0137\u0138\7g\2\2\u0138"+ - "\u0139\7n\2\2\u0139\u013a\7u\2\2\u013a\u013b\7g\2\2\u013b,\3\2\2\2\u013c"+ - "\u013d\7y\2\2\u013d\u013e\7j\2\2\u013e\u013f\7k\2\2\u013f\u0140\7n\2\2"+ - "\u0140\u0141\7g\2\2\u0141.\3\2\2\2\u0142\u0143\7f\2\2\u0143\u0144\7q\2"+ - "\2\u0144\60\3\2\2\2\u0145\u0146\7h\2\2\u0146\u0147\7q\2\2\u0147\u0148"+ - "\7t\2\2\u0148\62\3\2\2\2\u0149\u014a\7t\2\2\u014a\u014b\7g\2\2\u014b\u014c"+ - "\7v\2\2\u014c\u014d\7w\2\2\u014d\u014e\7t\2\2\u014e\u014f\7p\2\2\u014f"+ - "\64\3\2\2\2\u0150\u0151\7d\2\2\u0151\u0152\7t\2\2\u0152\u0153\7g\2\2\u0153"+ - "\u0154\7c\2\2\u0154\u0155\7m\2\2\u0155\66\3\2\2\2\u0156\u0157\7e\2\2\u0157"+ - "\u0158\7q\2\2\u0158\u0159\7p\2\2\u0159\u015a\7v\2\2\u015a\u015b\7k\2\2"+ - "\u015b\u015c\7p\2\2\u015c\u015d\7w\2\2\u015d\u015e\7g\2\2\u015e8\3\2\2"+ - "\2\u015f\u0160\7c\2\2\u0160\u0161\7u\2\2\u0161\u0162\7o\2\2\u0162:\3\2"+ - "\2\2\u0163\u0164\7<\2\2\u0164<\3\2\2\2\u0165\u0166\7\60\2\2\u0166\u0167"+ - "\7\60\2\2\u0167>\3\2\2\2\u0168\u0169\7u\2\2\u0169\u016a\7k\2\2\u016a\u016b"+ - "\7i\2\2\u016b\u016c\7p\2\2\u016c\u016d\7g\2\2\u016d\u016e\7f\2\2\u016e"+ - "@\3\2\2\2\u016f\u0170\7w\2\2\u0170\u0171\7p\2\2\u0171\u0172\7u\2\2\u0172"+ - "\u0173\7k\2\2\u0173\u0174\7i\2\2\u0174\u0175\7p\2\2\u0175\u0176\7g\2\2"+ - "\u0176\u0177\7f\2\2\u0177B\3\2\2\2\u0178\u0179\7,\2\2\u0179D\3\2\2\2\u017a"+ - "\u017b\7]\2\2\u017bF\3\2\2\2\u017c\u017d\7_\2\2\u017dH\3\2\2\2\u017e\u017f"+ - "\7u\2\2\u017f\u0180\7v\2\2\u0180\u0181\7t\2\2\u0181\u0182\7w\2\2\u0182"+ - "\u0183\7e\2\2\u0183\u0184\7v\2\2\u0184J\3\2\2\2\u0185\u0186\7\60\2\2\u0186"+ - "L\3\2\2\2\u0187\u0188\7/\2\2\u0188\u0189\7@\2\2\u0189N\3\2\2\2\u018a\u018b"+ - "\7u\2\2\u018b\u018c\7k\2\2\u018c\u018d\7|\2\2\u018d\u018e\7g\2\2\u018e"+ - "\u018f\7q\2\2\u018f\u0190\7h\2\2\u0190P\3\2\2\2\u0191\u0192\7v\2\2\u0192"+ - "\u0193\7{\2\2\u0193\u0194\7r\2\2\u0194\u0195\7g\2\2\u0195\u0196\7k\2\2"+ - "\u0196\u0197\7f\2\2\u0197R\3\2\2\2\u0198\u0199\7/\2\2\u0199\u019a\7/\2"+ - "\2\u019aT\3\2\2\2\u019b\u019c\7-\2\2\u019c\u019d\7-\2\2\u019dV\3\2\2\2"+ - "\u019e\u019f\7-\2\2\u019fX\3\2\2\2\u01a0\u01a1\7/\2\2\u01a1Z\3\2\2\2\u01a2"+ - "\u01a3\7#\2\2\u01a3\\\3\2\2\2\u01a4\u01a5\7(\2\2\u01a5^\3\2\2\2\u01a6"+ - "\u01a7\7\u0080\2\2\u01a7`\3\2\2\2\u01a8\u01a9\7@\2\2\u01a9\u01aa\7@\2"+ - "\2\u01aab\3\2\2\2\u01ab\u01ac\7>\2\2\u01ac\u01ad\7>\2\2\u01add\3\2\2\2"+ - "\u01ae\u01af\7\61\2\2\u01aff\3\2\2\2\u01b0\u01b1\7\'\2\2\u01b1h\3\2\2"+ - "\2\u01b2\u01b3\7>\2\2\u01b3j\3\2\2\2\u01b4\u01b5\7@\2\2\u01b5l\3\2\2\2"+ - "\u01b6\u01b7\7?\2\2\u01b7\u01b8\7?\2\2\u01b8n\3\2\2\2\u01b9\u01ba\7#\2"+ - "\2\u01ba\u01bb\7?\2\2\u01bbp\3\2\2\2\u01bc\u01bd\7>\2\2\u01bd\u01be\7"+ - "?\2\2\u01ber\3\2\2\2\u01bf\u01c0\7@\2\2\u01c0\u01c1\7?\2\2\u01c1t\3\2"+ - "\2\2\u01c2\u01c3\7`\2\2\u01c3v\3\2\2\2\u01c4\u01c5\7~\2\2\u01c5x\3\2\2"+ - "\2\u01c6\u01c7\7(\2\2\u01c7\u01c8\7(\2\2\u01c8z\3\2\2\2\u01c9\u01ca\7"+ - "~\2\2\u01ca\u01cb\7~\2\2\u01cb|\3\2\2\2\u01cc\u01cd\7A\2\2\u01cd~\3\2"+ - "\2\2\u01ce\u01cf\7-\2\2\u01cf\u01d0\7?\2\2\u01d0\u0080\3\2\2\2\u01d1\u01d2"+ - "\7/\2\2\u01d2\u01d3\7?\2\2\u01d3\u0082\3\2\2\2\u01d4\u01d5\7,\2\2\u01d5"+ - "\u01d6\7?\2\2\u01d6\u0084\3\2\2\2\u01d7\u01d8\7\61\2\2\u01d8\u01d9\7?"+ - "\2\2\u01d9\u0086\3\2\2\2\u01da\u01db\7\'\2\2\u01db\u01dc\7?\2\2\u01dc"+ - "\u0088\3\2\2\2\u01dd\u01de\7>\2\2\u01de\u01df\7>\2\2\u01df\u01e0\7?\2"+ - "\2\u01e0\u008a\3\2\2\2\u01e1\u01e2\7@\2\2\u01e2\u01e3\7@\2\2\u01e3\u01e4"+ - "\7?\2\2\u01e4\u008c\3\2\2\2\u01e5\u01e6\7(\2\2\u01e6\u01e7\7?\2\2\u01e7"+ - "\u008e\3\2\2\2\u01e8\u01e9\7~\2\2\u01e9\u01ea\7?\2\2\u01ea\u0090\3\2\2"+ - "\2\u01eb\u01ec\7`\2\2\u01ec\u01ed\7?\2\2\u01ed\u0092\3\2\2\2\u01ee\u01ef"+ - "\7m\2\2\u01ef\u01f0\7k\2\2\u01f0\u01f1\7e\2\2\u01f1\u01f2\7m\2\2\u01f2"+ - "\u01f3\7c\2\2\u01f3\u01f4\7u\2\2\u01f4\u01f5\7o\2\2\u01f5\u0094\3\2\2"+ - "\2\u01f6\u01f7\7t\2\2\u01f7\u01f8\7g\2\2\u01f8\u01f9\7u\2\2\u01f9\u01fa"+ - "\7q\2\2\u01fa\u01fb\7w\2\2\u01fb\u01fc\7t\2\2\u01fc\u01fd\7e\2\2\u01fd"+ - "\u01fe\7g\2\2\u01fe\u0096\3\2\2\2\u01ff\u0200\7w\2\2\u0200\u0201\7u\2"+ - "\2\u0201\u0202\7g\2\2\u0202\u0203\7u\2\2\u0203\u0098\3\2\2\2\u0204\u0205"+ - "\7e\2\2\u0205\u0206\7n\2\2\u0206\u0207\7q\2\2\u0207\u0208\7d\2\2\u0208"+ - "\u0209\7d\2\2\u0209\u020a\7g\2\2\u020a\u020b\7t\2\2\u020b\u020c\7u\2\2"+ - "\u020c\u009a\3\2\2\2\u020d\u020e\7d\2\2\u020e\u020f\7{\2\2\u020f\u0210"+ - "\7v\2\2\u0210\u0211\7g\2\2\u0211\u0212\7u\2\2\u0212\u009c\3\2\2\2\u0213"+ - "\u0214\7e\2\2\u0214\u0215\7{\2\2\u0215\u0216\7e\2\2\u0216\u0217\7n\2\2"+ - "\u0217\u0218\7g\2\2\u0218\u0219\7u\2\2\u0219\u009e\3\2\2\2\u021a\u021b"+ - "\7\60\2\2\u021b\u021c\7d\2\2\u021c\u021d\7{\2\2\u021d\u021e\7v\2\2\u021e"+ - "\u021f\7g\2\2\u021f\u00a0\3\2\2\2\u0220\u0221\7d\2\2\u0221\u0222\7t\2"+ - "\2\u0222\u02ff\7m\2\2\u0223\u0224\7q\2\2\u0224\u0225\7t\2\2\u0225\u02ff"+ - "\7c\2\2\u0226\u0227\7m\2\2\u0227\u0228\7k\2\2\u0228\u02ff\7n\2\2\u0229"+ - "\u022a\7u\2\2\u022a\u022b\7n\2\2\u022b\u02ff\7q\2\2\u022c\u022d\7p\2\2"+ - "\u022d\u022e\7q\2\2\u022e\u02ff\7r\2\2\u022f\u0230\7c\2\2\u0230\u0231"+ - "\7u\2\2\u0231\u02ff\7n\2\2\u0232\u0233\7r\2\2\u0233\u0234\7j\2\2\u0234"+ - "\u02ff\7r\2\2\u0235\u0236\7c\2\2\u0236\u0237\7p\2\2\u0237\u02ff\7e\2\2"+ - "\u0238\u0239\7d\2\2\u0239\u023a\7r\2\2\u023a\u02ff\7n\2\2\u023b\u023c"+ - "\7e\2\2\u023c\u023d\7n\2\2\u023d\u02ff\7e\2\2\u023e\u023f\7l\2\2\u023f"+ - "\u0240\7u\2\2\u0240\u02ff\7t\2\2\u0241\u0242\7c\2\2\u0242\u0243\7p\2\2"+ - "\u0243\u02ff\7f\2\2\u0244\u0245\7t\2\2\u0245\u0246\7n\2\2\u0246\u02ff"+ - "\7c\2\2\u0247\u0248\7d\2\2\u0248\u0249\7k\2\2\u0249\u02ff\7v\2\2\u024a"+ - "\u024b\7t\2\2\u024b\u024c\7q\2\2\u024c\u02ff\7n\2\2\u024d\u024e\7r\2\2"+ - "\u024e\u024f\7n\2\2\u024f\u02ff\7c\2\2\u0250\u0251\7r\2\2\u0251\u0252"+ - "\7n\2\2\u0252\u02ff\7r\2\2\u0253\u0254\7d\2\2\u0254\u0255\7o\2\2\u0255"+ - "\u02ff\7k\2\2\u0256\u0257\7u\2\2\u0257\u0258\7g\2\2\u0258\u02ff\7e\2\2"+ - "\u0259\u025a\7t\2\2\u025a\u025b\7v\2\2\u025b\u02ff\7k\2\2\u025c\u025d"+ - "\7g\2\2\u025d\u025e\7q\2\2\u025e\u02ff\7t\2\2\u025f\u0260\7u\2\2\u0260"+ - "\u0261\7t\2\2\u0261\u02ff\7g\2\2\u0262\u0263\7n\2\2\u0263\u0264\7u\2\2"+ - "\u0264\u02ff\7t\2\2\u0265\u0266\7r\2\2\u0266\u0267\7j\2\2\u0267\u02ff"+ - "\7c\2\2\u0268\u0269\7c\2\2\u0269\u026a\7n\2\2\u026a\u02ff\7t\2\2\u026b"+ - "\u026c\7l\2\2\u026c\u026d\7o\2\2\u026d\u02ff\7r\2\2\u026e\u026f\7d\2\2"+ - "\u026f\u0270\7x\2\2\u0270\u02ff\7e\2\2\u0271\u0272\7e\2\2\u0272\u0273"+ - "\7n\2\2\u0273\u02ff\7k\2\2\u0274\u0275\7t\2\2\u0275\u0276\7v\2\2\u0276"+ - "\u02ff\7u\2\2\u0277\u0278\7c\2\2\u0278\u0279\7f\2\2\u0279\u02ff\7e\2\2"+ - "\u027a\u027b\7t\2\2\u027b\u027c\7t\2\2\u027c\u02ff\7c\2\2\u027d\u027e"+ - "\7d\2\2\u027e\u027f\7x\2\2\u027f\u02ff\7u\2\2\u0280\u0281\7u\2\2\u0281"+ - "\u0282\7g\2\2\u0282\u02ff\7k\2\2\u0283\u0284\7u\2\2\u0284\u0285\7c\2\2"+ - "\u0285\u02ff\7z\2\2\u0286\u0287\7u\2\2\u0287\u0288\7v\2\2\u0288\u02ff"+ - "\7{\2\2\u0289\u028a\7u\2\2\u028a\u028b\7v\2\2\u028b\u02ff\7c\2\2\u028c"+ - "\u028d\7u\2\2\u028d\u028e\7v\2\2\u028e\u02ff\7z\2\2\u028f\u0290\7f\2\2"+ - "\u0290\u0291\7g\2\2\u0291\u02ff\7{\2\2\u0292\u0293\7v\2\2\u0293\u0294"+ - "\7z\2\2\u0294\u02ff\7c\2\2\u0295\u0296\7z\2\2\u0296\u0297\7c\2\2\u0297"+ - "\u02ff\7c\2\2\u0298\u0299\7d\2\2\u0299\u029a\7e\2\2\u029a\u02ff\7e\2\2"+ - "\u029b\u029c\7c\2\2\u029c\u029d\7j\2\2\u029d\u02ff\7z\2\2\u029e\u029f"+ - "\7v\2\2\u029f\u02a0\7{\2\2\u02a0\u02ff\7c\2\2\u02a1\u02a2\7v\2\2\u02a2"+ - "\u02a3\7z\2\2\u02a3\u02ff\7u\2\2\u02a4\u02a5\7v\2\2\u02a5\u02a6\7c\2\2"+ - "\u02a6\u02ff\7u\2\2\u02a7\u02a8\7u\2\2\u02a8\u02a9\7j\2\2\u02a9\u02ff"+ - "\7{\2\2\u02aa\u02ab\7u\2\2\u02ab\u02ac\7j\2\2\u02ac\u02ff\7z\2\2\u02ad"+ - "\u02ae\7n\2\2\u02ae\u02af\7f\2\2\u02af\u02ff\7{\2\2\u02b0\u02b1\7n\2\2"+ - "\u02b1\u02b2\7f\2\2\u02b2\u02ff\7c\2\2\u02b3\u02b4\7n\2\2\u02b4\u02b5"+ - "\7f\2\2\u02b5\u02ff\7z\2\2\u02b6\u02b7\7n\2\2\u02b7\u02b8\7c\2\2\u02b8"+ - "\u02ff\7z\2\2\u02b9\u02ba\7v\2\2\u02ba\u02bb\7c\2\2\u02bb\u02ff\7{\2\2"+ - "\u02bc\u02bd\7v\2\2\u02bd\u02be\7c\2\2\u02be\u02ff\7z\2\2\u02bf\u02c0"+ - "\7d\2\2\u02c0\u02c1\7e\2\2\u02c1\u02ff\7u\2\2\u02c2\u02c3\7e\2\2\u02c3"+ - "\u02c4\7n\2\2\u02c4\u02ff\7x\2\2\u02c5\u02c6\7v\2\2\u02c6\u02c7\7u\2\2"+ - "\u02c7\u02ff\7z\2\2\u02c8\u02c9\7n\2\2\u02c9\u02ca\7c\2\2\u02ca\u02ff"+ - "\7u\2\2\u02cb\u02cc\7e\2\2\u02cc\u02cd\7r\2\2\u02cd\u02ff\7{\2\2\u02ce"+ - "\u02cf\7e\2\2\u02cf\u02d0\7o\2\2\u02d0\u02ff\7r\2\2\u02d1\u02d2\7e\2\2"+ - "\u02d2\u02d3\7r\2\2\u02d3\u02ff\7z\2\2\u02d4\u02d5\7f\2\2\u02d5\u02d6"+ - "\7e\2\2\u02d6\u02ff\7r\2\2\u02d7\u02d8\7f\2\2\u02d8\u02d9\7g\2\2\u02d9"+ - "\u02ff\7e\2\2\u02da\u02db\7k\2\2\u02db\u02dc\7p\2\2\u02dc\u02ff\7e\2\2"+ - "\u02dd\u02de\7c\2\2\u02de\u02df\7z\2\2\u02df\u02ff\7u\2\2\u02e0\u02e1"+ - "\7d\2\2\u02e1\u02e2\7p\2\2\u02e2\u02ff\7g\2\2\u02e3\u02e4\7e\2\2\u02e4"+ - "\u02e5\7n\2\2\u02e5\u02ff\7f\2\2\u02e6\u02e7\7u\2\2\u02e7\u02e8\7d\2\2"+ - "\u02e8\u02ff\7e\2\2\u02e9\u02ea\7k\2\2\u02ea\u02eb\7u\2\2\u02eb\u02ff"+ - "\7e\2\2\u02ec\u02ed\7k\2\2\u02ed\u02ee\7p\2\2\u02ee\u02ff\7z\2\2\u02ef"+ - "\u02f0\7d\2\2\u02f0\u02f1\7g\2\2\u02f1\u02ff\7s\2\2\u02f2\u02f3\7u\2\2"+ - "\u02f3\u02f4\7g\2\2\u02f4\u02ff\7f\2\2\u02f5\u02f6\7f\2\2\u02f6\u02f7"+ - "\7g\2\2\u02f7\u02ff\7z\2\2\u02f8\u02f9\7k\2\2\u02f9\u02fa\7p\2\2\u02fa"+ - "\u02ff\7{\2\2\u02fb\u02fc\7t\2\2\u02fc\u02fd\7q\2\2\u02fd\u02ff\7t\2\2"+ - "\u02fe\u0220\3\2\2\2\u02fe\u0223\3\2\2\2\u02fe\u0226\3\2\2\2\u02fe\u0229"+ - "\3\2\2\2\u02fe\u022c\3\2\2\2\u02fe\u022f\3\2\2\2\u02fe\u0232\3\2\2\2\u02fe"+ - "\u0235\3\2\2\2\u02fe\u0238\3\2\2\2\u02fe\u023b\3\2\2\2\u02fe\u023e\3\2"+ - "\2\2\u02fe\u0241\3\2\2\2\u02fe\u0244\3\2\2\2\u02fe\u0247\3\2\2\2\u02fe"+ - "\u024a\3\2\2\2\u02fe\u024d\3\2\2\2\u02fe\u0250\3\2\2\2\u02fe\u0253\3\2"+ - "\2\2\u02fe\u0256\3\2\2\2\u02fe\u0259\3\2\2\2\u02fe\u025c\3\2\2\2\u02fe"+ - "\u025f\3\2\2\2\u02fe\u0262\3\2\2\2\u02fe\u0265\3\2\2\2\u02fe\u0268\3\2"+ - "\2\2\u02fe\u026b\3\2\2\2\u02fe\u026e\3\2\2\2\u02fe\u0271\3\2\2\2\u02fe"+ - "\u0274\3\2\2\2\u02fe\u0277\3\2\2\2\u02fe\u027a\3\2\2\2\u02fe\u027d\3\2"+ - "\2\2\u02fe\u0280\3\2\2\2\u02fe\u0283\3\2\2\2\u02fe\u0286\3\2\2\2\u02fe"+ - "\u0289\3\2\2\2\u02fe\u028c\3\2\2\2\u02fe\u028f\3\2\2\2\u02fe\u0292\3\2"+ - "\2\2\u02fe\u0295\3\2\2\2\u02fe\u0298\3\2\2\2\u02fe\u029b\3\2\2\2\u02fe"+ - "\u029e\3\2\2\2\u02fe\u02a1\3\2\2\2\u02fe\u02a4\3\2\2\2\u02fe\u02a7\3\2"+ - "\2\2\u02fe\u02aa\3\2\2\2\u02fe\u02ad\3\2\2\2\u02fe\u02b0\3\2\2\2\u02fe"+ - "\u02b3\3\2\2\2\u02fe\u02b6\3\2\2\2\u02fe\u02b9\3\2\2\2\u02fe\u02bc\3\2"+ - "\2\2\u02fe\u02bf\3\2\2\2\u02fe\u02c2\3\2\2\2\u02fe\u02c5\3\2\2\2\u02fe"+ - "\u02c8\3\2\2\2\u02fe\u02cb\3\2\2\2\u02fe\u02ce\3\2\2\2\u02fe\u02d1\3\2"+ - "\2\2\u02fe\u02d4\3\2\2\2\u02fe\u02d7\3\2\2\2\u02fe\u02da\3\2\2\2\u02fe"+ - "\u02dd\3\2\2\2\u02fe\u02e0\3\2\2\2\u02fe\u02e3\3\2\2\2\u02fe\u02e6\3\2"+ - "\2\2\u02fe\u02e9\3\2\2\2\u02fe\u02ec\3\2\2\2\u02fe\u02ef\3\2\2\2\u02fe"+ - "\u02f2\3\2\2\2\u02fe\u02f5\3\2\2\2\u02fe\u02f8\3\2\2\2\u02fe\u02fb\3\2"+ - "\2\2\u02ff\u00a2\3\2\2\2\u0300\u0301\7}\2\2\u0301\u0302\7}\2\2\u0302\u0306"+ - "\3\2\2\2\u0303\u0305\13\2\2\2\u0304\u0303\3\2\2\2\u0305\u0308\3\2\2\2"+ - "\u0306\u0307\3\2\2\2\u0306\u0304\3\2\2\2\u0307\u0309\3\2\2\2\u0308\u0306"+ - "\3\2\2\2\u0309\u030a\7\177\2\2\u030a\u030b\7\177\2\2\u030b\u00a4\3\2\2"+ - "\2\u030c\u030d\7d\2\2\u030d\u030e\7{\2\2\u030e\u030f\7v\2\2\u030f\u0332"+ - "\7g\2\2\u0310\u0311\7y\2\2\u0311\u0312\7q\2\2\u0312\u0313\7t\2\2\u0313"+ - "\u0332\7f\2\2\u0314\u0315\7f\2\2\u0315\u0316\7y\2\2\u0316\u0317\7q\2\2"+ - "\u0317\u0318\7t\2\2\u0318\u0332\7f\2\2\u0319\u031a\7d\2\2\u031a\u031b"+ - "\7q\2\2\u031b\u031c\7q\2\2\u031c\u0332\7n\2\2\u031d\u031e\7e\2\2\u031e"+ - "\u031f\7j\2\2\u031f\u0320\7c\2\2\u0320\u0332\7t\2\2\u0321\u0322\7u\2\2"+ - "\u0322\u0323\7j\2\2\u0323\u0324\7q\2\2\u0324\u0325\7t\2\2\u0325\u0332"+ - "\7v\2\2\u0326\u0327\7k\2\2\u0327\u0328\7p\2\2\u0328\u0332\7v\2\2\u0329"+ - "\u032a\7n\2\2\u032a\u032b\7q\2\2\u032b\u032c\7p\2\2\u032c\u0332\7i\2\2"+ - "\u032d\u032e\7x\2\2\u032e\u032f\7q\2\2\u032f\u0330\7k\2\2\u0330\u0332"+ - "\7f\2\2\u0331\u030c\3\2\2\2\u0331\u0310\3\2\2\2\u0331\u0314\3\2\2\2\u0331"+ - "\u0319\3\2\2\2\u0331\u031d\3\2\2\2\u0331\u0321\3\2\2\2\u0331\u0326\3\2"+ - "\2\2\u0331\u0329\3\2\2\2\u0331\u032d\3\2\2\2\u0332\u00a6\3\2\2\2\u0333"+ - "\u0339\7$\2\2\u0334\u0335\7^\2\2\u0335\u0338\7$\2\2\u0336\u0338\n\2\2"+ - "\2\u0337\u0334\3\2\2\2\u0337\u0336\3\2\2\2\u0338\u033b\3\2\2\2\u0339\u0337"+ - "\3\2\2\2\u0339\u033a\3\2\2\2\u033a\u033c\3\2\2\2\u033b\u0339\3\2\2\2\u033c"+ - "\u033e\7$\2\2\u033d\u033f\t\3\2\2\u033e\u033d\3\2\2\2\u033e\u033f\3\2"+ - "\2\2\u033f\u0344\3\2\2\2\u0340\u0342\t\4\2\2\u0341\u0343\t\5\2\2\u0342"+ - "\u0341\3\2\2\2\u0342\u0343\3\2\2\2\u0343\u0345\3\2\2\2\u0344\u0340\3\2"+ - "\2\2\u0344\u0345\3\2\2\2\u0345\u0347\3\2\2\2\u0346\u0348\t\3\2\2\u0347"+ - "\u0346\3\2\2\2\u0347\u0348\3\2\2\2\u0348\u00a8\3\2\2\2\u0349\u034d\7)"+ - "\2\2\u034a\u034b\7^\2\2\u034b\u034e\7)\2\2\u034c\u034e\n\6\2\2\u034d\u034a"+ - "\3\2\2\2\u034d\u034c\3\2\2\2\u034e\u034f\3\2\2\2\u034f\u0350\7)\2\2\u0350"+ - "\u00aa\3\2\2\2\u0351\u0352\7v\2\2\u0352\u0353\7t\2\2\u0353\u0354\7w\2"+ - "\2\u0354\u035b\7g\2\2\u0355\u0356\7h\2\2\u0356\u0357\7c\2\2\u0357\u0358"+ - "\7n\2\2\u0358\u0359\7u\2\2\u0359\u035b\7g\2\2\u035a\u0351\3\2\2\2\u035a"+ - "\u0355\3\2\2\2\u035b\u00ac\3\2\2\2\u035c\u035f\5\u00afX\2\u035d\u035f"+ - "\5\u00b7\\\2\u035e\u035c\3\2\2\2\u035e\u035d\3\2\2\2\u035f\u00ae\3\2\2"+ - "\2\u0360\u0364\5\u00b1Y\2\u0361\u0364\5\u00b3Z\2\u0362\u0364\5\u00b5["+ - "\2\u0363\u0360\3\2\2\2\u0363\u0361\3\2\2\2\u0363\u0362\3\2\2\2\u0364\u00b0"+ - "\3\2\2\2\u0365\u036b\7\'\2\2\u0366\u0367\7\62\2\2\u0367\u036b\7d\2\2\u0368"+ - "\u0369\7\62\2\2\u0369\u036b\7D\2\2\u036a\u0365\3\2\2\2\u036a\u0366\3\2"+ - "\2\2\u036a\u0368\3\2\2\2\u036b\u036f\3\2\2\2\u036c\u036e\5\u00bf`\2\u036d"+ - "\u036c\3\2\2\2\u036e\u0371\3\2\2\2\u036f\u036d\3\2\2\2\u036f\u0370\3\2"+ - "\2\2\u0370\u0372\3\2\2\2\u0371\u036f\3\2\2\2\u0372\u0374\7\60\2\2\u0373"+ - "\u0375\5\u00bf`\2\u0374\u0373\3\2\2\2\u0375\u0376\3\2\2\2\u0376\u0374"+ - "\3\2\2\2\u0376\u0377\3\2\2\2\u0377\u00b2\3\2\2\2\u0378\u037a\5\u00c1a"+ - "\2\u0379\u0378\3\2\2\2\u037a\u037d\3\2\2\2\u037b\u0379\3\2\2\2\u037b\u037c"+ - "\3\2\2\2\u037c\u037e\3\2\2\2\u037d\u037b\3\2\2\2\u037e\u0380\7\60\2\2"+ - "\u037f\u0381\5\u00c1a\2\u0380\u037f\3\2\2\2\u0381\u0382\3\2\2\2\u0382"+ - "\u0380\3\2\2\2\u0382\u0383\3\2\2\2\u0383\u00b4\3\2\2\2\u0384\u038a\7&"+ - "\2\2\u0385\u0386\7\62\2\2\u0386\u038a\7z\2\2\u0387\u0388\7\62\2\2\u0388"+ - "\u038a\7Z\2\2\u0389\u0384\3\2\2\2\u0389\u0385\3\2\2\2\u0389\u0387\3\2"+ - "\2\2\u038a\u038e\3\2\2\2\u038b\u038d\5\u00c3b\2\u038c\u038b\3\2\2\2\u038d"+ - "\u0390\3\2\2\2\u038e\u038c\3\2\2\2\u038e\u038f\3\2\2\2\u038f\u0391\3\2"+ - "\2\2\u0390\u038e\3\2\2\2\u0391\u0393\7\60\2\2\u0392\u0394\5\u00c3b\2\u0393"+ - "\u0392\3\2\2\2\u0394\u0395\3\2\2\2\u0395\u0393\3\2\2\2\u0395\u0396\3\2"+ - "\2\2\u0396\u00b6\3\2\2\2\u0397\u039b\5\u00bb^\2\u0398\u039b\5\u00bd_\2"+ - "\u0399\u039b\5\u00b9]\2\u039a\u0397\3\2\2\2\u039a\u0398\3\2\2\2\u039a"+ - "\u0399\3\2\2\2\u039b\u039f\3\2\2\2\u039c\u039d\t\7\2\2\u039d\u03a0\t\b"+ - "\2\2\u039e\u03a0\7n\2\2\u039f\u039c\3\2\2\2\u039f\u039e\3\2\2\2\u039f"+ - "\u03a0\3\2\2\2\u03a0\u00b8\3\2\2\2\u03a1\u03a2\7\62\2\2\u03a2\u03a4\t"+ - "\t\2\2\u03a3\u03a5\5\u00bf`\2\u03a4\u03a3\3\2\2\2\u03a5\u03a6\3\2\2\2"+ - "\u03a6\u03a4\3\2\2\2\u03a6\u03a7\3\2\2\2\u03a7\u03af\3\2\2\2\u03a8\u03aa"+ - "\7\'\2\2\u03a9\u03ab\5\u00bf`\2\u03aa\u03a9\3\2\2\2\u03ab\u03ac\3\2\2"+ - "\2\u03ac\u03aa\3\2\2\2\u03ac\u03ad\3\2\2\2\u03ad\u03af\3\2\2\2\u03ae\u03a1"+ - "\3\2\2\2\u03ae\u03a8\3\2\2\2\u03af\u00ba\3\2\2\2\u03b0\u03b2\5\u00c1a"+ - "\2\u03b1\u03b0\3\2\2\2\u03b2\u03b3\3\2\2\2\u03b3\u03b1\3\2\2\2\u03b3\u03b4"+ - "\3\2\2\2\u03b4\u00bc\3\2\2\2\u03b5\u03bb\7&\2\2\u03b6\u03b7\7\62\2\2\u03b7"+ - "\u03bb\7z\2\2\u03b8\u03b9\7\62\2\2\u03b9\u03bb\7Z\2\2\u03ba\u03b5\3\2"+ - "\2\2\u03ba\u03b6\3\2\2\2\u03ba\u03b8\3\2\2\2\u03bb\u03bd\3\2\2\2\u03bc"+ - "\u03be\5\u00c3b\2\u03bd\u03bc\3\2\2\2\u03be\u03bf\3\2\2\2\u03bf\u03bd"+ - "\3\2\2\2\u03bf\u03c0\3\2\2\2\u03c0\u00be\3\2\2\2\u03c1\u03c2\t\n\2\2\u03c2"+ - "\u00c0\3\2\2\2\u03c3\u03c4\t\13\2\2\u03c4\u00c2\3\2\2\2\u03c5\u03c6\t"+ - "\f\2\2\u03c6\u00c4\3\2\2\2\u03c7\u03cb\5\u00c7d\2\u03c8\u03ca\5\u00c9"+ - "e\2\u03c9\u03c8\3\2\2\2\u03ca\u03cd\3\2\2\2\u03cb\u03c9\3\2\2\2\u03cb"+ - "\u03cc\3\2\2\2\u03cc\u00c6\3\2\2\2\u03cd\u03cb\3\2\2\2\u03ce\u03cf\t\r"+ - "\2\2\u03cf\u00c8\3\2\2\2\u03d0\u03d1\t\16\2\2\u03d1\u00ca\3\2\2\2\u03d2"+ - "\u03d6\7#\2\2\u03d3\u03d5\5\u00c9e\2\u03d4\u03d3\3\2\2\2\u03d5\u03d8\3"+ - "\2\2\2\u03d6\u03d4\3\2\2\2\u03d6\u03d7\3\2\2\2\u03d7\u03da\3\2\2\2\u03d8"+ - "\u03d6\3\2\2\2\u03d9\u03db\t\17\2\2\u03da\u03d9\3\2\2\2\u03db\u03dc\3"+ - "\2\2\2\u03dc\u03da\3\2\2\2\u03dc\u03dd\3\2\2\2\u03dd\u00cc\3\2\2\2\u03de"+ - "\u03e0\t\20\2\2\u03df\u03de\3\2\2\2\u03e0\u03e1\3\2\2\2\u03e1\u03df\3"+ - "\2\2\2\u03e1\u03e2\3\2\2\2\u03e2\u03e3\3\2\2\2\u03e3\u03e4\bg\2\2\u03e4"+ - "\u00ce\3\2\2\2\u03e5\u03e6\7\61\2\2\u03e6\u03e7\7\61\2\2\u03e7\u03eb\3"+ - "\2\2\2\u03e8\u03ea\n\21\2\2\u03e9\u03e8\3\2\2\2\u03ea\u03ed\3\2\2\2\u03eb"+ - "\u03e9\3\2\2\2\u03eb\u03ec\3\2\2\2\u03ec\u03ee\3\2\2\2\u03ed\u03eb\3\2"+ - "\2\2\u03ee\u03ef\bh\3\2\u03ef\u00d0\3\2\2\2\u03f0\u03f1\7\61\2\2\u03f1"+ - "\u03f2\7,\2\2\u03f2\u03f6\3\2\2\2\u03f3\u03f5\13\2\2\2\u03f4\u03f3\3\2"+ - "\2\2\u03f5\u03f8\3\2\2\2\u03f6\u03f7\3\2\2\2\u03f6\u03f4\3\2\2\2\u03f7"+ - "\u03f9\3\2\2\2\u03f8\u03f6\3\2\2\2\u03f9\u03fa\7,\2\2\u03fa\u03fb\7\61"+ - "\2\2\u03fb\u03fc\3\2\2\2\u03fc\u03fd\bi\3\2\u03fd\u00d2\3\2\2\2&\2\u02fe"+ - "\u0306\u0331\u0337\u0339\u033e\u0342\u0344\u0347\u034d\u035a\u035e\u0363"+ - "\u036a\u036f\u0376\u037b\u0382\u0389\u038e\u0395\u039a\u039f\u03a6\u03ac"+ - "\u03ae\u03b3\u03ba\u03bf\u03cb\u03d6\u03dc\u03e1\u03eb\u03f6\4\2\3\2\2"+ - "\4\2"; + "`\t`\4a\ta\4b\tb\4c\tc\4d\td\4e\te\4f\tf\4g\tg\4h\th\4i\ti\4j\tj\3\2\3"+ + "\2\3\2\3\2\3\2\3\2\3\2\3\3\3\3\3\4\3\4\3\4\3\4\3\4\3\4\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\f\3\f\3\f\3\r\3\r"+ + "\3\r\3\r\3\r\3\r\3\r\3\r\3\r\3\16\3\16\3\16\3\16\3\16\3\16\3\17\3\17\3"+ + "\17\3\17\3\17\3\17\3\17\3\20\3\20\3\20\3\20\3\20\3\20\3\21\3\21\3\21\3"+ + "\21\3\21\3\21\3\21\3\21\3\21\3\22\3\22\3\22\3\22\3\22\3\22\3\22\3\23\3"+ + "\23\3\23\3\23\3\23\3\23\3\23\3\23\3\23\3\24\3\24\3\24\3\24\3\24\3\24\3"+ + "\24\3\24\3\24\3\24\3\25\3\25\3\25\3\25\3\25\3\25\3\25\3\25\3\26\3\26\3"+ + "\26\3\27\3\27\3\27\3\27\3\27\3\30\3\30\3\30\3\30\3\30\3\30\3\31\3\31\3"+ + "\31\3\32\3\32\3\32\3\32\3\33\3\33\3\33\3\33\3\33\3\33\3\33\3\34\3\34\3"+ + "\34\3\34\3\34\3\34\3\35\3\35\3\35\3\35\3\35\3\35\3\35\3\35\3\35\3\36\3"+ + "\36\3\36\3\36\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"+ + "(\3(\3(\3)\3)\3)\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\61\3\61\3\62\3\62\3\62\3\63\3\63\3\63\3\64"+ + "\3\64\3\65\3\65\3\66\3\66\3\67\3\67\38\38\38\39\39\39\3:\3:\3:\3;\3;\3"+ + ";\3<\3<\3=\3=\3>\3>\3>\3?\3?\3?\3@\3@\3A\3A\3A\3B\3B\3B\3C\3C\3C\3D\3"+ + "D\3D\3E\3E\3E\3F\3F\3F\3F\3G\3G\3G\3G\3H\3H\3H\3I\3I\3I\3J\3J\3J\3K\3"+ + "K\3K\3K\3K\3K\3K\3K\3L\3L\3L\3L\3L\3L\3L\3L\3L\3M\3M\3M\3M\3M\3N\3N\3"+ + "N\3N\3N\3N\3N\3N\3N\3O\3O\3O\3O\3O\3O\3P\3P\3P\3P\3P\3P\3P\3Q\3Q\3Q\3"+ + "Q\3Q\3Q\3R\3R\3R\3R\3R\3R\3R\3R\3R\3R\3R\3R\3R\3R\3R\3R\3R\3R\3R\3R\3"+ + "R\3R\3R\3R\3R\3R\3R\3R\3R\3R\3R\3R\3R\3R\3R\3R\3R\3R\3R\3R\3R\3R\3R\3"+ + "R\3R\3R\3R\3R\3R\3R\3R\3R\3R\3R\3R\3R\3R\3R\3R\3R\3R\3R\3R\3R\3R\3R\3"+ + "R\3R\3R\3R\3R\3R\3R\3R\3R\3R\3R\3R\3R\3R\3R\3R\3R\3R\3R\3R\3R\3R\3R\3"+ + "R\3R\3R\3R\3R\3R\3R\3R\3R\3R\3R\3R\3R\3R\3R\3R\3R\3R\3R\3R\3R\3R\3R\3"+ + "R\3R\3R\3R\3R\3R\3R\3R\3R\3R\3R\3R\3R\3R\3R\3R\3R\3R\3R\3R\3R\3R\3R\3"+ + "R\3R\3R\3R\3R\3R\3R\3R\3R\3R\3R\3R\3R\3R\3R\3R\3R\3R\3R\3R\3R\3R\3R\3"+ + "R\3R\3R\3R\3R\3R\3R\3R\3R\3R\3R\3R\3R\3R\3R\3R\3R\3R\3R\3R\3R\3R\3R\3"+ + "R\3R\3R\3R\3R\3R\3R\3R\3R\3R\3R\3R\3R\3R\3R\3R\3R\3R\3R\3R\3R\3R\3R\3"+ + "R\3R\3R\3R\3R\3R\3R\3R\3R\3R\3R\3R\3R\3R\3R\3R\3R\3R\5R\u0309\nR\3S\3"+ + "S\3S\3S\7S\u030f\nS\fS\16S\u0312\13S\3S\3S\3S\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\u033c\nT\3U\3U\3U\3U\7U\u0342\nU\fU\16U\u0345\13"+ + "U\3U\3U\5U\u0349\nU\3U\3U\5U\u034d\nU\5U\u034f\nU\3U\5U\u0352\nU\3V\3"+ + "V\3V\3V\5V\u0358\nV\3V\3V\3W\3W\3W\3W\3W\3W\3W\3W\3W\5W\u0365\nW\3X\3"+ + "X\5X\u0369\nX\3Y\3Y\3Y\5Y\u036e\nY\3Z\3Z\3Z\3Z\3Z\5Z\u0375\nZ\3Z\7Z\u0378"+ + "\nZ\fZ\16Z\u037b\13Z\3Z\3Z\6Z\u037f\nZ\rZ\16Z\u0380\3[\7[\u0384\n[\f["+ + "\16[\u0387\13[\3[\3[\6[\u038b\n[\r[\16[\u038c\3\\\3\\\3\\\3\\\3\\\5\\"+ + "\u0394\n\\\3\\\7\\\u0397\n\\\f\\\16\\\u039a\13\\\3\\\3\\\6\\\u039e\n\\"+ + "\r\\\16\\\u039f\3]\3]\3]\5]\u03a5\n]\3]\3]\3]\5]\u03aa\n]\3^\3^\3^\6^"+ + "\u03af\n^\r^\16^\u03b0\3^\3^\6^\u03b5\n^\r^\16^\u03b6\5^\u03b9\n^\3_\6"+ + "_\u03bc\n_\r_\16_\u03bd\3`\3`\3`\3`\3`\5`\u03c5\n`\3`\6`\u03c8\n`\r`\16"+ + "`\u03c9\3a\3a\3b\3b\3c\3c\3d\3d\7d\u03d4\nd\fd\16d\u03d7\13d\3e\3e\3f"+ + "\3f\3g\3g\7g\u03df\ng\fg\16g\u03e2\13g\3g\6g\u03e5\ng\rg\16g\u03e6\3h"+ + "\6h\u03ea\nh\rh\16h\u03eb\3h\3h\3i\3i\3i\3i\7i\u03f4\ni\fi\16i\u03f7\13"+ + "i\3i\3i\3j\3j\3j\3j\7j\u03ff\nj\fj\16j\u0402\13j\3j\3j\3j\3j\3j\4\u0310"+ + "\u0400\2k\3\3\5\4\7\5\t\6\13\7\r\b\17\t\21\n\23\13\25\f\27\r\31\16\33"+ + "\17\35\20\37\21!\22#\23%\24\'\25)\26+\27-\30/\31\61\32\63\33\65\34\67"+ + "\359\36;\37= ?!A\"C#E$G%I&K\'M(O)Q*S+U,W-Y.[/]\60_\61a\62c\63e\64g\65"+ + "i\66k\67m8o9q:s;u{?}@\177A\u0081B\u0083C\u0085D\u0087E\u0089F\u008b"+ + "G\u008dH\u008fI\u0091J\u0093K\u0095L\u0097M\u0099N\u009bO\u009dP\u009f"+ + "Q\u00a1R\u00a3S\u00a5T\u00a7U\u00a9V\u00abW\u00adX\u00afY\u00b1Z\u00b3"+ + "[\u00b5\\\u00b7]\u00b9^\u00bb_\u00bd`\u00bfa\u00c1\2\u00c3\2\u00c5\2\u00c7"+ + "b\u00c9\2\u00cb\2\u00cdc\u00cfd\u00d1e\u00d3f\3\2\22\3\2$$\3\2||\4\2r"+ + "ruu\4\2ooww\3\2))\4\2uuww\7\2dfkknnuuyy\4\2DDdd\3\2\62\63\3\2\62;\5\2"+ + "\62;CHch\5\2C\\aac|\6\2\62;C\\aac|\4\2--//\6\2\13\f\17\17\"\"\u00a2\u00a2"+ + "\4\2\f\f\17\17\2\u047a\2\3\3\2\2\2\2\5\3\2\2\2\2\7\3\2\2\2\2\t\3\2\2\2"+ + "\2\13\3\2\2\2\2\r\3\2\2\2\2\17\3\2\2\2\2\21\3\2\2\2\2\23\3\2\2\2\2\25"+ + "\3\2\2\2\2\27\3\2\2\2\2\31\3\2\2\2\2\33\3\2\2\2\2\35\3\2\2\2\2\37\3\2"+ + "\2\2\2!\3\2\2\2\2#\3\2\2\2\2%\3\2\2\2\2\'\3\2\2\2\2)\3\2\2\2\2+\3\2\2"+ + "\2\2-\3\2\2\2\2/\3\2\2\2\2\61\3\2\2\2\2\63\3\2\2\2\2\65\3\2\2\2\2\67\3"+ + "\2\2\2\29\3\2\2\2\2;\3\2\2\2\2=\3\2\2\2\2?\3\2\2\2\2A\3\2\2\2\2C\3\2\2"+ + "\2\2E\3\2\2\2\2G\3\2\2\2\2I\3\2\2\2\2K\3\2\2\2\2M\3\2\2\2\2O\3\2\2\2\2"+ + "Q\3\2\2\2\2S\3\2\2\2\2U\3\2\2\2\2W\3\2\2\2\2Y\3\2\2\2\2[\3\2\2\2\2]\3"+ + "\2\2\2\2_\3\2\2\2\2a\3\2\2\2\2c\3\2\2\2\2e\3\2\2\2\2g\3\2\2\2\2i\3\2\2"+ + "\2\2k\3\2\2\2\2m\3\2\2\2\2o\3\2\2\2\2q\3\2\2\2\2s\3\2\2\2\2u\3\2\2\2\2"+ + "w\3\2\2\2\2y\3\2\2\2\2{\3\2\2\2\2}\3\2\2\2\2\177\3\2\2\2\2\u0081\3\2\2"+ + "\2\2\u0083\3\2\2\2\2\u0085\3\2\2\2\2\u0087\3\2\2\2\2\u0089\3\2\2\2\2\u008b"+ + "\3\2\2\2\2\u008d\3\2\2\2\2\u008f\3\2\2\2\2\u0091\3\2\2\2\2\u0093\3\2\2"+ + "\2\2\u0095\3\2\2\2\2\u0097\3\2\2\2\2\u0099\3\2\2\2\2\u009b\3\2\2\2\2\u009d"+ + "\3\2\2\2\2\u009f\3\2\2\2\2\u00a1\3\2\2\2\2\u00a3\3\2\2\2\2\u00a5\3\2\2"+ + "\2\2\u00a7\3\2\2\2\2\u00a9\3\2\2\2\2\u00ab\3\2\2\2\2\u00ad\3\2\2\2\2\u00af"+ + "\3\2\2\2\2\u00b1\3\2\2\2\2\u00b3\3\2\2\2\2\u00b5\3\2\2\2\2\u00b7\3\2\2"+ + "\2\2\u00b9\3\2\2\2\2\u00bb\3\2\2\2\2\u00bd\3\2\2\2\2\u00bf\3\2\2\2\2\u00c7"+ + "\3\2\2\2\2\u00cd\3\2\2\2\2\u00cf\3\2\2\2\2\u00d1\3\2\2\2\2\u00d3\3\2\2"+ + "\2\3\u00d5\3\2\2\2\5\u00dc\3\2\2\2\7\u00de\3\2\2\2\t\u00e6\3\2\2\2\13"+ + "\u00e8\3\2\2\2\r\u00ea\3\2\2\2\17\u00ec\3\2\2\2\21\u00ee\3\2\2\2\23\u00f0"+ + "\3\2\2\2\25\u00f2\3\2\2\2\27\u00f4\3\2\2\2\31\u00f7\3\2\2\2\33\u0100\3"+ + "\2\2\2\35\u0106\3\2\2\2\37\u010d\3\2\2\2!\u0113\3\2\2\2#\u011c\3\2\2\2"+ + "%\u0123\3\2\2\2\'\u012c\3\2\2\2)\u0136\3\2\2\2+\u013e\3\2\2\2-\u0141\3"+ + "\2\2\2/\u0146\3\2\2\2\61\u014c\3\2\2\2\63\u014f\3\2\2\2\65\u0153\3\2\2"+ + "\2\67\u015a\3\2\2\29\u0160\3\2\2\2;\u0169\3\2\2\2=\u016d\3\2\2\2?\u016f"+ + "\3\2\2\2A\u0172\3\2\2\2C\u0179\3\2\2\2E\u0182\3\2\2\2G\u0184\3\2\2\2I"+ + "\u0186\3\2\2\2K\u0188\3\2\2\2M\u018f\3\2\2\2O\u0191\3\2\2\2Q\u0194\3\2"+ + "\2\2S\u019b\3\2\2\2U\u01a2\3\2\2\2W\u01a5\3\2\2\2Y\u01a8\3\2\2\2[\u01aa"+ + "\3\2\2\2]\u01ac\3\2\2\2_\u01ae\3\2\2\2a\u01b0\3\2\2\2c\u01b2\3\2\2\2e"+ + "\u01b5\3\2\2\2g\u01b8\3\2\2\2i\u01ba\3\2\2\2k\u01bc\3\2\2\2m\u01be\3\2"+ + "\2\2o\u01c0\3\2\2\2q\u01c3\3\2\2\2s\u01c6\3\2\2\2u\u01c9\3\2\2\2w\u01cc"+ + "\3\2\2\2y\u01ce\3\2\2\2{\u01d0\3\2\2\2}\u01d3\3\2\2\2\177\u01d6\3\2\2"+ + "\2\u0081\u01d8\3\2\2\2\u0083\u01db\3\2\2\2\u0085\u01de\3\2\2\2\u0087\u01e1"+ + "\3\2\2\2\u0089\u01e4\3\2\2\2\u008b\u01e7\3\2\2\2\u008d\u01eb\3\2\2\2\u008f"+ + "\u01ef\3\2\2\2\u0091\u01f2\3\2\2\2\u0093\u01f5\3\2\2\2\u0095\u01f8\3\2"+ + "\2\2\u0097\u0200\3\2\2\2\u0099\u0209\3\2\2\2\u009b\u020e\3\2\2\2\u009d"+ + "\u0217\3\2\2\2\u009f\u021d\3\2\2\2\u00a1\u0224\3\2\2\2\u00a3\u0308\3\2"+ + "\2\2\u00a5\u030a\3\2\2\2\u00a7\u033b\3\2\2\2\u00a9\u033d\3\2\2\2\u00ab"+ + "\u0353\3\2\2\2\u00ad\u0364\3\2\2\2\u00af\u0368\3\2\2\2\u00b1\u036d\3\2"+ + "\2\2\u00b3\u0374\3\2\2\2\u00b5\u0385\3\2\2\2\u00b7\u0393\3\2\2\2\u00b9"+ + "\u03a4\3\2\2\2\u00bb\u03b8\3\2\2\2\u00bd\u03bb\3\2\2\2\u00bf\u03c4\3\2"+ + "\2\2\u00c1\u03cb\3\2\2\2\u00c3\u03cd\3\2\2\2\u00c5\u03cf\3\2\2\2\u00c7"+ + "\u03d1\3\2\2\2\u00c9\u03d8\3\2\2\2\u00cb\u03da\3\2\2\2\u00cd\u03dc\3\2"+ + "\2\2\u00cf\u03e9\3\2\2\2\u00d1\u03ef\3\2\2\2\u00d3\u03fa\3\2\2\2\u00d5"+ + "\u00d6\7k\2\2\u00d6\u00d7\7o\2\2\u00d7\u00d8\7r\2\2\u00d8\u00d9\7q\2\2"+ + "\u00d9\u00da\7t\2\2\u00da\u00db\7v\2\2\u00db\4\3\2\2\2\u00dc\u00dd\7="+ + "\2\2\u00dd\6\3\2\2\2\u00de\u00df\7v\2\2\u00df\u00e0\7{\2\2\u00e0\u00e1"+ + "\7r\2\2\u00e1\u00e2\7g\2\2\u00e2\u00e3\7f\2\2\u00e3\u00e4\7g\2\2\u00e4"+ + "\u00e5\7h\2\2\u00e5\b\3\2\2\2\u00e6\u00e7\7.\2\2\u00e7\n\3\2\2\2\u00e8"+ + "\u00e9\7?\2\2\u00e9\f\3\2\2\2\u00ea\u00eb\7*\2\2\u00eb\16\3\2\2\2\u00ec"+ + "\u00ed\7+\2\2\u00ed\20\3\2\2\2\u00ee\u00ef\7}\2\2\u00ef\22\3\2\2\2\u00f0"+ + "\u00f1\7\177\2\2\u00f1\24\3\2\2\2\u00f2\u00f3\7%\2\2\u00f3\26\3\2\2\2"+ + "\u00f4\u00f5\7r\2\2\u00f5\u00f6\7e\2\2\u00f6\30\3\2\2\2\u00f7\u00f8\7"+ + "g\2\2\u00f8\u00f9\7p\2\2\u00f9\u00fa\7e\2\2\u00fa\u00fb\7q\2\2\u00fb\u00fc"+ + "\7f\2\2\u00fc\u00fd\7k\2\2\u00fd\u00fe\7p\2\2\u00fe\u00ff\7i\2\2\u00ff"+ + "\32\3\2\2\2\u0100\u0101\7e\2\2\u0101\u0102\7q\2\2\u0102\u0103\7p\2\2\u0103"+ + "\u0104\7u\2\2\u0104\u0105\7v\2\2\u0105\34\3\2\2\2\u0106\u0107\7g\2\2\u0107"+ + "\u0108\7z\2\2\u0108\u0109\7v\2\2\u0109\u010a\7g\2\2\u010a\u010b\7t\2\2"+ + "\u010b\u010c\7p\2\2\u010c\36\3\2\2\2\u010d\u010e\7c\2\2\u010e\u010f\7"+ + "n\2\2\u010f\u0110\7k\2\2\u0110\u0111\7i\2\2\u0111\u0112\7p\2\2\u0112 "+ + "\3\2\2\2\u0113\u0114\7t\2\2\u0114\u0115\7g\2\2\u0115\u0116\7i\2\2\u0116"+ + "\u0117\7k\2\2\u0117\u0118\7u\2\2\u0118\u0119\7v\2\2\u0119\u011a\7g\2\2"+ + "\u011a\u011b\7t\2\2\u011b\"\3\2\2\2\u011c\u011d\7k\2\2\u011d\u011e\7p"+ + "\2\2\u011e\u011f\7n\2\2\u011f\u0120\7k\2\2\u0120\u0121\7p\2\2\u0121\u0122"+ + "\7g\2\2\u0122$\3\2\2\2\u0123\u0124\7x\2\2\u0124\u0125\7q\2\2\u0125\u0126"+ + "\7n\2\2\u0126\u0127\7c\2\2\u0127\u0128\7v\2\2\u0128\u0129\7k\2\2\u0129"+ + "\u012a\7n\2\2\u012a\u012b\7g\2\2\u012b&\3\2\2\2\u012c\u012d\7k\2\2\u012d"+ + "\u012e\7p\2\2\u012e\u012f\7v\2\2\u012f\u0130\7g\2\2\u0130\u0131\7t\2\2"+ + "\u0131\u0132\7t\2\2\u0132\u0133\7w\2\2\u0133\u0134\7r\2\2\u0134\u0135"+ + "\7v\2\2\u0135(\3\2\2\2\u0136\u0137\7t\2\2\u0137\u0138\7g\2\2\u0138\u0139"+ + "\7u\2\2\u0139\u013a\7g\2\2\u013a\u013b\7t\2\2\u013b\u013c\7x\2\2\u013c"+ + "\u013d\7g\2\2\u013d*\3\2\2\2\u013e\u013f\7k\2\2\u013f\u0140\7h\2\2\u0140"+ + ",\3\2\2\2\u0141\u0142\7g\2\2\u0142\u0143\7n\2\2\u0143\u0144\7u\2\2\u0144"+ + "\u0145\7g\2\2\u0145.\3\2\2\2\u0146\u0147\7y\2\2\u0147\u0148\7j\2\2\u0148"+ + "\u0149\7k\2\2\u0149\u014a\7n\2\2\u014a\u014b\7g\2\2\u014b\60\3\2\2\2\u014c"+ + "\u014d\7f\2\2\u014d\u014e\7q\2\2\u014e\62\3\2\2\2\u014f\u0150\7h\2\2\u0150"+ + "\u0151\7q\2\2\u0151\u0152\7t\2\2\u0152\64\3\2\2\2\u0153\u0154\7t\2\2\u0154"+ + "\u0155\7g\2\2\u0155\u0156\7v\2\2\u0156\u0157\7w\2\2\u0157\u0158\7t\2\2"+ + "\u0158\u0159\7p\2\2\u0159\66\3\2\2\2\u015a\u015b\7d\2\2\u015b\u015c\7"+ + "t\2\2\u015c\u015d\7g\2\2\u015d\u015e\7c\2\2\u015e\u015f\7m\2\2\u015f8"+ + "\3\2\2\2\u0160\u0161\7e\2\2\u0161\u0162\7q\2\2\u0162\u0163\7p\2\2\u0163"+ + "\u0164\7v\2\2\u0164\u0165\7k\2\2\u0165\u0166\7p\2\2\u0166\u0167\7w\2\2"+ + "\u0167\u0168\7g\2\2\u0168:\3\2\2\2\u0169\u016a\7c\2\2\u016a\u016b\7u\2"+ + "\2\u016b\u016c\7o\2\2\u016c<\3\2\2\2\u016d\u016e\7<\2\2\u016e>\3\2\2\2"+ + "\u016f\u0170\7\60\2\2\u0170\u0171\7\60\2\2\u0171@\3\2\2\2\u0172\u0173"+ + "\7u\2\2\u0173\u0174\7k\2\2\u0174\u0175\7i\2\2\u0175\u0176\7p\2\2\u0176"+ + "\u0177\7g\2\2\u0177\u0178\7f\2\2\u0178B\3\2\2\2\u0179\u017a\7w\2\2\u017a"+ + "\u017b\7p\2\2\u017b\u017c\7u\2\2\u017c\u017d\7k\2\2\u017d\u017e\7i\2\2"+ + "\u017e\u017f\7p\2\2\u017f\u0180\7g\2\2\u0180\u0181\7f\2\2\u0181D\3\2\2"+ + "\2\u0182\u0183\7,\2\2\u0183F\3\2\2\2\u0184\u0185\7]\2\2\u0185H\3\2\2\2"+ + "\u0186\u0187\7_\2\2\u0187J\3\2\2\2\u0188\u0189\7u\2\2\u0189\u018a\7v\2"+ + "\2\u018a\u018b\7t\2\2\u018b\u018c\7w\2\2\u018c\u018d\7e\2\2\u018d\u018e"+ + "\7v\2\2\u018eL\3\2\2\2\u018f\u0190\7\60\2\2\u0190N\3\2\2\2\u0191\u0192"+ + "\7/\2\2\u0192\u0193\7@\2\2\u0193P\3\2\2\2\u0194\u0195\7u\2\2\u0195\u0196"+ + "\7k\2\2\u0196\u0197\7|\2\2\u0197\u0198\7g\2\2\u0198\u0199\7q\2\2\u0199"+ + "\u019a\7h\2\2\u019aR\3\2\2\2\u019b\u019c\7v\2\2\u019c\u019d\7{\2\2\u019d"+ + "\u019e\7r\2\2\u019e\u019f\7g\2\2\u019f\u01a0\7k\2\2\u01a0\u01a1\7f\2\2"+ + "\u01a1T\3\2\2\2\u01a2\u01a3\7/\2\2\u01a3\u01a4\7/\2\2\u01a4V\3\2\2\2\u01a5"+ + "\u01a6\7-\2\2\u01a6\u01a7\7-\2\2\u01a7X\3\2\2\2\u01a8\u01a9\7-\2\2\u01a9"+ + "Z\3\2\2\2\u01aa\u01ab\7/\2\2\u01ab\\\3\2\2\2\u01ac\u01ad\7#\2\2\u01ad"+ + "^\3\2\2\2\u01ae\u01af\7(\2\2\u01af`\3\2\2\2\u01b0\u01b1\7\u0080\2\2\u01b1"+ + "b\3\2\2\2\u01b2\u01b3\7@\2\2\u01b3\u01b4\7@\2\2\u01b4d\3\2\2\2\u01b5\u01b6"+ + "\7>\2\2\u01b6\u01b7\7>\2\2\u01b7f\3\2\2\2\u01b8\u01b9\7\61\2\2\u01b9h"+ + "\3\2\2\2\u01ba\u01bb\7\'\2\2\u01bbj\3\2\2\2\u01bc\u01bd\7>\2\2\u01bdl"+ + "\3\2\2\2\u01be\u01bf\7@\2\2\u01bfn\3\2\2\2\u01c0\u01c1\7?\2\2\u01c1\u01c2"+ + "\7?\2\2\u01c2p\3\2\2\2\u01c3\u01c4\7#\2\2\u01c4\u01c5\7?\2\2\u01c5r\3"+ + "\2\2\2\u01c6\u01c7\7>\2\2\u01c7\u01c8\7?\2\2\u01c8t\3\2\2\2\u01c9\u01ca"+ + "\7@\2\2\u01ca\u01cb\7?\2\2\u01cbv\3\2\2\2\u01cc\u01cd\7`\2\2\u01cdx\3"+ + "\2\2\2\u01ce\u01cf\7~\2\2\u01cfz\3\2\2\2\u01d0\u01d1\7(\2\2\u01d1\u01d2"+ + "\7(\2\2\u01d2|\3\2\2\2\u01d3\u01d4\7~\2\2\u01d4\u01d5\7~\2\2\u01d5~\3"+ + "\2\2\2\u01d6\u01d7\7A\2\2\u01d7\u0080\3\2\2\2\u01d8\u01d9\7-\2\2\u01d9"+ + "\u01da\7?\2\2\u01da\u0082\3\2\2\2\u01db\u01dc\7/\2\2\u01dc\u01dd\7?\2"+ + "\2\u01dd\u0084\3\2\2\2\u01de\u01df\7,\2\2\u01df\u01e0\7?\2\2\u01e0\u0086"+ + "\3\2\2\2\u01e1\u01e2\7\61\2\2\u01e2\u01e3\7?\2\2\u01e3\u0088\3\2\2\2\u01e4"+ + "\u01e5\7\'\2\2\u01e5\u01e6\7?\2\2\u01e6\u008a\3\2\2\2\u01e7\u01e8\7>\2"+ + "\2\u01e8\u01e9\7>\2\2\u01e9\u01ea\7?\2\2\u01ea\u008c\3\2\2\2\u01eb\u01ec"+ + "\7@\2\2\u01ec\u01ed\7@\2\2\u01ed\u01ee\7?\2\2\u01ee\u008e\3\2\2\2\u01ef"+ + "\u01f0\7(\2\2\u01f0\u01f1\7?\2\2\u01f1\u0090\3\2\2\2\u01f2\u01f3\7~\2"+ + "\2\u01f3\u01f4\7?\2\2\u01f4\u0092\3\2\2\2\u01f5\u01f6\7`\2\2\u01f6\u01f7"+ + "\7?\2\2\u01f7\u0094\3\2\2\2\u01f8\u01f9\7m\2\2\u01f9\u01fa\7k\2\2\u01fa"+ + "\u01fb\7e\2\2\u01fb\u01fc\7m\2\2\u01fc\u01fd\7c\2\2\u01fd\u01fe\7u\2\2"+ + "\u01fe\u01ff\7o\2\2\u01ff\u0096\3\2\2\2\u0200\u0201\7t\2\2\u0201\u0202"+ + "\7g\2\2\u0202\u0203\7u\2\2\u0203\u0204\7q\2\2\u0204\u0205\7w\2\2\u0205"+ + "\u0206\7t\2\2\u0206\u0207\7e\2\2\u0207\u0208\7g\2\2\u0208\u0098\3\2\2"+ + "\2\u0209\u020a\7w\2\2\u020a\u020b\7u\2\2\u020b\u020c\7g\2\2\u020c\u020d"+ + "\7u\2\2\u020d\u009a\3\2\2\2\u020e\u020f\7e\2\2\u020f\u0210\7n\2\2\u0210"+ + "\u0211\7q\2\2\u0211\u0212\7d\2\2\u0212\u0213\7d\2\2\u0213\u0214\7g\2\2"+ + "\u0214\u0215\7t\2\2\u0215\u0216\7u\2\2\u0216\u009c\3\2\2\2\u0217\u0218"+ + "\7d\2\2\u0218\u0219\7{\2\2\u0219\u021a\7v\2\2\u021a\u021b\7g\2\2\u021b"+ + "\u021c\7u\2\2\u021c\u009e\3\2\2\2\u021d\u021e\7e\2\2\u021e\u021f\7{\2"+ + "\2\u021f\u0220\7e\2\2\u0220\u0221\7n\2\2\u0221\u0222\7g\2\2\u0222\u0223"+ + "\7u\2\2\u0223\u00a0\3\2\2\2\u0224\u0225\7\60\2\2\u0225\u0226\7d\2\2\u0226"+ + "\u0227\7{\2\2\u0227\u0228\7v\2\2\u0228\u0229\7g\2\2\u0229\u00a2\3\2\2"+ + "\2\u022a\u022b\7d\2\2\u022b\u022c\7t\2\2\u022c\u0309\7m\2\2\u022d\u022e"+ + "\7q\2\2\u022e\u022f\7t\2\2\u022f\u0309\7c\2\2\u0230\u0231\7m\2\2\u0231"+ + "\u0232\7k\2\2\u0232\u0309\7n\2\2\u0233\u0234\7u\2\2\u0234\u0235\7n\2\2"+ + "\u0235\u0309\7q\2\2\u0236\u0237\7p\2\2\u0237\u0238\7q\2\2\u0238\u0309"+ + "\7r\2\2\u0239\u023a\7c\2\2\u023a\u023b\7u\2\2\u023b\u0309\7n\2\2\u023c"+ + "\u023d\7r\2\2\u023d\u023e\7j\2\2\u023e\u0309\7r\2\2\u023f\u0240\7c\2\2"+ + "\u0240\u0241\7p\2\2\u0241\u0309\7e\2\2\u0242\u0243\7d\2\2\u0243\u0244"+ + "\7r\2\2\u0244\u0309\7n\2\2\u0245\u0246\7e\2\2\u0246\u0247\7n\2\2\u0247"+ + "\u0309\7e\2\2\u0248\u0249\7l\2\2\u0249\u024a\7u\2\2\u024a\u0309\7t\2\2"+ + "\u024b\u024c\7c\2\2\u024c\u024d\7p\2\2\u024d\u0309\7f\2\2\u024e\u024f"+ + "\7t\2\2\u024f\u0250\7n\2\2\u0250\u0309\7c\2\2\u0251\u0252\7d\2\2\u0252"+ + "\u0253\7k\2\2\u0253\u0309\7v\2\2\u0254\u0255\7t\2\2\u0255\u0256\7q\2\2"+ + "\u0256\u0309\7n\2\2\u0257\u0258\7r\2\2\u0258\u0259\7n\2\2\u0259\u0309"+ + "\7c\2\2\u025a\u025b\7r\2\2\u025b\u025c\7n\2\2\u025c\u0309\7r\2\2\u025d"+ + "\u025e\7d\2\2\u025e\u025f\7o\2\2\u025f\u0309\7k\2\2\u0260\u0261\7u\2\2"+ + "\u0261\u0262\7g\2\2\u0262\u0309\7e\2\2\u0263\u0264\7t\2\2\u0264\u0265"+ + "\7v\2\2\u0265\u0309\7k\2\2\u0266\u0267\7g\2\2\u0267\u0268\7q\2\2\u0268"+ + "\u0309\7t\2\2\u0269\u026a\7u\2\2\u026a\u026b\7t\2\2\u026b\u0309\7g\2\2"+ + "\u026c\u026d\7n\2\2\u026d\u026e\7u\2\2\u026e\u0309\7t\2\2\u026f\u0270"+ + "\7r\2\2\u0270\u0271\7j\2\2\u0271\u0309\7c\2\2\u0272\u0273\7c\2\2\u0273"+ + "\u0274\7n\2\2\u0274\u0309\7t\2\2\u0275\u0276\7l\2\2\u0276\u0277\7o\2\2"+ + "\u0277\u0309\7r\2\2\u0278\u0279\7d\2\2\u0279\u027a\7x\2\2\u027a\u0309"+ + "\7e\2\2\u027b\u027c\7e\2\2\u027c\u027d\7n\2\2\u027d\u0309\7k\2\2\u027e"+ + "\u027f\7t\2\2\u027f\u0280\7v\2\2\u0280\u0309\7u\2\2\u0281\u0282\7c\2\2"+ + "\u0282\u0283\7f\2\2\u0283\u0309\7e\2\2\u0284\u0285\7t\2\2\u0285\u0286"+ + "\7t\2\2\u0286\u0309\7c\2\2\u0287\u0288\7d\2\2\u0288\u0289\7x\2\2\u0289"+ + "\u0309\7u\2\2\u028a\u028b\7u\2\2\u028b\u028c\7g\2\2\u028c\u0309\7k\2\2"+ + "\u028d\u028e\7u\2\2\u028e\u028f\7c\2\2\u028f\u0309\7z\2\2\u0290\u0291"+ + "\7u\2\2\u0291\u0292\7v\2\2\u0292\u0309\7{\2\2\u0293\u0294\7u\2\2\u0294"+ + "\u0295\7v\2\2\u0295\u0309\7c\2\2\u0296\u0297\7u\2\2\u0297\u0298\7v\2\2"+ + "\u0298\u0309\7z\2\2\u0299\u029a\7f\2\2\u029a\u029b\7g\2\2\u029b\u0309"+ + "\7{\2\2\u029c\u029d\7v\2\2\u029d\u029e\7z\2\2\u029e\u0309\7c\2\2\u029f"+ + "\u02a0\7z\2\2\u02a0\u02a1\7c\2\2\u02a1\u0309\7c\2\2\u02a2\u02a3\7d\2\2"+ + "\u02a3\u02a4\7e\2\2\u02a4\u0309\7e\2\2\u02a5\u02a6\7c\2\2\u02a6\u02a7"+ + "\7j\2\2\u02a7\u0309\7z\2\2\u02a8\u02a9\7v\2\2\u02a9\u02aa\7{\2\2\u02aa"+ + "\u0309\7c\2\2\u02ab\u02ac\7v\2\2\u02ac\u02ad\7z\2\2\u02ad\u0309\7u\2\2"+ + "\u02ae\u02af\7v\2\2\u02af\u02b0\7c\2\2\u02b0\u0309\7u\2\2\u02b1\u02b2"+ + "\7u\2\2\u02b2\u02b3\7j\2\2\u02b3\u0309\7{\2\2\u02b4\u02b5\7u\2\2\u02b5"+ + "\u02b6\7j\2\2\u02b6\u0309\7z\2\2\u02b7\u02b8\7n\2\2\u02b8\u02b9\7f\2\2"+ + "\u02b9\u0309\7{\2\2\u02ba\u02bb\7n\2\2\u02bb\u02bc\7f\2\2\u02bc\u0309"+ + "\7c\2\2\u02bd\u02be\7n\2\2\u02be\u02bf\7f\2\2\u02bf\u0309\7z\2\2\u02c0"+ + "\u02c1\7n\2\2\u02c1\u02c2\7c\2\2\u02c2\u0309\7z\2\2\u02c3\u02c4\7v\2\2"+ + "\u02c4\u02c5\7c\2\2\u02c5\u0309\7{\2\2\u02c6\u02c7\7v\2\2\u02c7\u02c8"+ + "\7c\2\2\u02c8\u0309\7z\2\2\u02c9\u02ca\7d\2\2\u02ca\u02cb\7e\2\2\u02cb"+ + "\u0309\7u\2\2\u02cc\u02cd\7e\2\2\u02cd\u02ce\7n\2\2\u02ce\u0309\7x\2\2"+ + "\u02cf\u02d0\7v\2\2\u02d0\u02d1\7u\2\2\u02d1\u0309\7z\2\2\u02d2\u02d3"+ + "\7n\2\2\u02d3\u02d4\7c\2\2\u02d4\u0309\7u\2\2\u02d5\u02d6\7e\2\2\u02d6"+ + "\u02d7\7r\2\2\u02d7\u0309\7{\2\2\u02d8\u02d9\7e\2\2\u02d9\u02da\7o\2\2"+ + "\u02da\u0309\7r\2\2\u02db\u02dc\7e\2\2\u02dc\u02dd\7r\2\2\u02dd\u0309"+ + "\7z\2\2\u02de\u02df\7f\2\2\u02df\u02e0\7e\2\2\u02e0\u0309\7r\2\2\u02e1"+ + "\u02e2\7f\2\2\u02e2\u02e3\7g\2\2\u02e3\u0309\7e\2\2\u02e4\u02e5\7k\2\2"+ + "\u02e5\u02e6\7p\2\2\u02e6\u0309\7e\2\2\u02e7\u02e8\7c\2\2\u02e8\u02e9"+ + "\7z\2\2\u02e9\u0309\7u\2\2\u02ea\u02eb\7d\2\2\u02eb\u02ec\7p\2\2\u02ec"+ + "\u0309\7g\2\2\u02ed\u02ee\7e\2\2\u02ee\u02ef\7n\2\2\u02ef\u0309\7f\2\2"+ + "\u02f0\u02f1\7u\2\2\u02f1\u02f2\7d\2\2\u02f2\u0309\7e\2\2\u02f3\u02f4"+ + "\7k\2\2\u02f4\u02f5\7u\2\2\u02f5\u0309\7e\2\2\u02f6\u02f7\7k\2\2\u02f7"+ + "\u02f8\7p\2\2\u02f8\u0309\7z\2\2\u02f9\u02fa\7d\2\2\u02fa\u02fb\7g\2\2"+ + "\u02fb\u0309\7s\2\2\u02fc\u02fd\7u\2\2\u02fd\u02fe\7g\2\2\u02fe\u0309"+ + "\7f\2\2\u02ff\u0300\7f\2\2\u0300\u0301\7g\2\2\u0301\u0309\7z\2\2\u0302"+ + "\u0303\7k\2\2\u0303\u0304\7p\2\2\u0304\u0309\7{\2\2\u0305\u0306\7t\2\2"+ + "\u0306\u0307\7q\2\2\u0307\u0309\7t\2\2\u0308\u022a\3\2\2\2\u0308\u022d"+ + "\3\2\2\2\u0308\u0230\3\2\2\2\u0308\u0233\3\2\2\2\u0308\u0236\3\2\2\2\u0308"+ + "\u0239\3\2\2\2\u0308\u023c\3\2\2\2\u0308\u023f\3\2\2\2\u0308\u0242\3\2"+ + "\2\2\u0308\u0245\3\2\2\2\u0308\u0248\3\2\2\2\u0308\u024b\3\2\2\2\u0308"+ + "\u024e\3\2\2\2\u0308\u0251\3\2\2\2\u0308\u0254\3\2\2\2\u0308\u0257\3\2"+ + "\2\2\u0308\u025a\3\2\2\2\u0308\u025d\3\2\2\2\u0308\u0260\3\2\2\2\u0308"+ + "\u0263\3\2\2\2\u0308\u0266\3\2\2\2\u0308\u0269\3\2\2\2\u0308\u026c\3\2"+ + "\2\2\u0308\u026f\3\2\2\2\u0308\u0272\3\2\2\2\u0308\u0275\3\2\2\2\u0308"+ + "\u0278\3\2\2\2\u0308\u027b\3\2\2\2\u0308\u027e\3\2\2\2\u0308\u0281\3\2"+ + "\2\2\u0308\u0284\3\2\2\2\u0308\u0287\3\2\2\2\u0308\u028a\3\2\2\2\u0308"+ + "\u028d\3\2\2\2\u0308\u0290\3\2\2\2\u0308\u0293\3\2\2\2\u0308\u0296\3\2"+ + "\2\2\u0308\u0299\3\2\2\2\u0308\u029c\3\2\2\2\u0308\u029f\3\2\2\2\u0308"+ + "\u02a2\3\2\2\2\u0308\u02a5\3\2\2\2\u0308\u02a8\3\2\2\2\u0308\u02ab\3\2"+ + "\2\2\u0308\u02ae\3\2\2\2\u0308\u02b1\3\2\2\2\u0308\u02b4\3\2\2\2\u0308"+ + "\u02b7\3\2\2\2\u0308\u02ba\3\2\2\2\u0308\u02bd\3\2\2\2\u0308\u02c0\3\2"+ + "\2\2\u0308\u02c3\3\2\2\2\u0308\u02c6\3\2\2\2\u0308\u02c9\3\2\2\2\u0308"+ + "\u02cc\3\2\2\2\u0308\u02cf\3\2\2\2\u0308\u02d2\3\2\2\2\u0308\u02d5\3\2"+ + "\2\2\u0308\u02d8\3\2\2\2\u0308\u02db\3\2\2\2\u0308\u02de\3\2\2\2\u0308"+ + "\u02e1\3\2\2\2\u0308\u02e4\3\2\2\2\u0308\u02e7\3\2\2\2\u0308\u02ea\3\2"+ + "\2\2\u0308\u02ed\3\2\2\2\u0308\u02f0\3\2\2\2\u0308\u02f3\3\2\2\2\u0308"+ + "\u02f6\3\2\2\2\u0308\u02f9\3\2\2\2\u0308\u02fc\3\2\2\2\u0308\u02ff\3\2"+ + "\2\2\u0308\u0302\3\2\2\2\u0308\u0305\3\2\2\2\u0309\u00a4\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\u00a6\3\2\2\2\u0316\u0317\7d\2\2\u0317"+ + "\u0318\7{\2\2\u0318\u0319\7v\2\2\u0319\u033c\7g\2\2\u031a\u031b\7y\2\2"+ + "\u031b\u031c\7q\2\2\u031c\u031d\7t\2\2\u031d\u033c\7f\2\2\u031e\u031f"+ + "\7f\2\2\u031f\u0320\7y\2\2\u0320\u0321\7q\2\2\u0321\u0322\7t\2\2\u0322"+ + "\u033c\7f\2\2\u0323\u0324\7d\2\2\u0324\u0325\7q\2\2\u0325\u0326\7q\2\2"+ + "\u0326\u033c\7n\2\2\u0327\u0328\7e\2\2\u0328\u0329\7j\2\2\u0329\u032a"+ + "\7c\2\2\u032a\u033c\7t\2\2\u032b\u032c\7u\2\2\u032c\u032d\7j\2\2\u032d"+ + "\u032e\7q\2\2\u032e\u032f\7t\2\2\u032f\u033c\7v\2\2\u0330\u0331\7k\2\2"+ + "\u0331\u0332\7p\2\2\u0332\u033c\7v\2\2\u0333\u0334\7n\2\2\u0334\u0335"+ + "\7q\2\2\u0335\u0336\7p\2\2\u0336\u033c\7i\2\2\u0337\u0338\7x\2\2\u0338"+ + "\u0339\7q\2\2\u0339\u033a\7k\2\2\u033a\u033c\7f\2\2\u033b\u0316\3\2\2"+ + "\2\u033b\u031a\3\2\2\2\u033b\u031e\3\2\2\2\u033b\u0323\3\2\2\2\u033b\u0327"+ + "\3\2\2\2\u033b\u032b\3\2\2\2\u033b\u0330\3\2\2\2\u033b\u0333\3\2\2\2\u033b"+ + "\u0337\3\2\2\2\u033c\u00a8\3\2\2\2\u033d\u0343\7$\2\2\u033e\u033f\7^\2"+ + "\2\u033f\u0342\7$\2\2\u0340\u0342\n\2\2\2\u0341\u033e\3\2\2\2\u0341\u0340"+ + "\3\2\2\2\u0342\u0345\3\2\2\2\u0343\u0341\3\2\2\2\u0343\u0344\3\2\2\2\u0344"+ + "\u0346\3\2\2\2\u0345\u0343\3\2\2\2\u0346\u0348\7$\2\2\u0347\u0349\t\3"+ + "\2\2\u0348\u0347\3\2\2\2\u0348\u0349\3\2\2\2\u0349\u034e\3\2\2\2\u034a"+ + "\u034c\t\4\2\2\u034b\u034d\t\5\2\2\u034c\u034b\3\2\2\2\u034c\u034d\3\2"+ + "\2\2\u034d\u034f\3\2\2\2\u034e\u034a\3\2\2\2\u034e\u034f\3\2\2\2\u034f"+ + "\u0351\3\2\2\2\u0350\u0352\t\3\2\2\u0351\u0350\3\2\2\2\u0351\u0352\3\2"+ + "\2\2\u0352\u00aa\3\2\2\2\u0353\u0357\7)\2\2\u0354\u0355\7^\2\2\u0355\u0358"+ + "\7)\2\2\u0356\u0358\n\6\2\2\u0357\u0354\3\2\2\2\u0357\u0356\3\2\2\2\u0358"+ + "\u0359\3\2\2\2\u0359\u035a\7)\2\2\u035a\u00ac\3\2\2\2\u035b\u035c\7v\2"+ + "\2\u035c\u035d\7t\2\2\u035d\u035e\7w\2\2\u035e\u0365\7g\2\2\u035f\u0360"+ + "\7h\2\2\u0360\u0361\7c\2\2\u0361\u0362\7n\2\2\u0362\u0363\7u\2\2\u0363"+ + "\u0365\7g\2\2\u0364\u035b\3\2\2\2\u0364\u035f\3\2\2\2\u0365\u00ae\3\2"+ + "\2\2\u0366\u0369\5\u00b1Y\2\u0367\u0369\5\u00b9]\2\u0368\u0366\3\2\2\2"+ + "\u0368\u0367\3\2\2\2\u0369\u00b0\3\2\2\2\u036a\u036e\5\u00b3Z\2\u036b"+ + "\u036e\5\u00b5[\2\u036c\u036e\5\u00b7\\\2\u036d\u036a\3\2\2\2\u036d\u036b"+ + "\3\2\2\2\u036d\u036c\3\2\2\2\u036e\u00b2\3\2\2\2\u036f\u0375\7\'\2\2\u0370"+ + "\u0371\7\62\2\2\u0371\u0375\7d\2\2\u0372\u0373\7\62\2\2\u0373\u0375\7"+ + "D\2\2\u0374\u036f\3\2\2\2\u0374\u0370\3\2\2\2\u0374\u0372\3\2\2\2\u0375"+ + "\u0379\3\2\2\2\u0376\u0378\5\u00c1a\2\u0377\u0376\3\2\2\2\u0378\u037b"+ + "\3\2\2\2\u0379\u0377\3\2\2\2\u0379\u037a\3\2\2\2\u037a\u037c\3\2\2\2\u037b"+ + "\u0379\3\2\2\2\u037c\u037e\7\60\2\2\u037d\u037f\5\u00c1a\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"+ + "\u00b4\3\2\2\2\u0382\u0384\5\u00c3b\2\u0383\u0382\3\2\2\2\u0384\u0387"+ + "\3\2\2\2\u0385\u0383\3\2\2\2\u0385\u0386\3\2\2\2\u0386\u0388\3\2\2\2\u0387"+ + "\u0385\3\2\2\2\u0388\u038a\7\60\2\2\u0389\u038b\5\u00c3b\2\u038a\u0389"+ + "\3\2\2\2\u038b\u038c\3\2\2\2\u038c\u038a\3\2\2\2\u038c\u038d\3\2\2\2\u038d"+ + "\u00b6\3\2\2\2\u038e\u0394\7&\2\2\u038f\u0390\7\62\2\2\u0390\u0394\7z"+ + "\2\2\u0391\u0392\7\62\2\2\u0392\u0394\7Z\2\2\u0393\u038e\3\2\2\2\u0393"+ + "\u038f\3\2\2\2\u0393\u0391\3\2\2\2\u0394\u0398\3\2\2\2\u0395\u0397\5\u00c5"+ + "c\2\u0396\u0395\3\2\2\2\u0397\u039a\3\2\2\2\u0398\u0396\3\2\2\2\u0398"+ + "\u0399\3\2\2\2\u0399\u039b\3\2\2\2\u039a\u0398\3\2\2\2\u039b\u039d\7\60"+ + "\2\2\u039c\u039e\5\u00c5c\2\u039d\u039c\3\2\2\2\u039e\u039f\3\2\2\2\u039f"+ + "\u039d\3\2\2\2\u039f\u03a0\3\2\2\2\u03a0\u00b8\3\2\2\2\u03a1\u03a5\5\u00bd"+ + "_\2\u03a2\u03a5\5\u00bf`\2\u03a3\u03a5\5\u00bb^\2\u03a4\u03a1\3\2\2\2"+ + "\u03a4\u03a2\3\2\2\2\u03a4\u03a3\3\2\2\2\u03a5\u03a9\3\2\2\2\u03a6\u03a7"+ + "\t\7\2\2\u03a7\u03aa\t\b\2\2\u03a8\u03aa\7n\2\2\u03a9\u03a6\3\2\2\2\u03a9"+ + "\u03a8\3\2\2\2\u03a9\u03aa\3\2\2\2\u03aa\u00ba\3\2\2\2\u03ab\u03ac\7\62"+ + "\2\2\u03ac\u03ae\t\t\2\2\u03ad\u03af\5\u00c1a\2\u03ae\u03ad\3\2\2\2\u03af"+ + "\u03b0\3\2\2\2\u03b0\u03ae\3\2\2\2\u03b0\u03b1\3\2\2\2\u03b1\u03b9\3\2"+ + "\2\2\u03b2\u03b4\7\'\2\2\u03b3\u03b5\5\u00c1a\2\u03b4\u03b3\3\2\2\2\u03b5"+ + "\u03b6\3\2\2\2\u03b6\u03b4\3\2\2\2\u03b6\u03b7\3\2\2\2\u03b7\u03b9\3\2"+ + "\2\2\u03b8\u03ab\3\2\2\2\u03b8\u03b2\3\2\2\2\u03b9\u00bc\3\2\2\2\u03ba"+ + "\u03bc\5\u00c3b\2\u03bb\u03ba\3\2\2\2\u03bc\u03bd\3\2\2\2\u03bd\u03bb"+ + "\3\2\2\2\u03bd\u03be\3\2\2\2\u03be\u00be\3\2\2\2\u03bf\u03c5\7&\2\2\u03c0"+ + "\u03c1\7\62\2\2\u03c1\u03c5\7z\2\2\u03c2\u03c3\7\62\2\2\u03c3\u03c5\7"+ + "Z\2\2\u03c4\u03bf\3\2\2\2\u03c4\u03c0\3\2\2\2\u03c4\u03c2\3\2\2\2\u03c5"+ + "\u03c7\3\2\2\2\u03c6\u03c8\5\u00c5c\2\u03c7\u03c6\3\2\2\2\u03c8\u03c9"+ + "\3\2\2\2\u03c9\u03c7\3\2\2\2\u03c9\u03ca\3\2\2\2\u03ca\u00c0\3\2\2\2\u03cb"+ + "\u03cc\t\n\2\2\u03cc\u00c2\3\2\2\2\u03cd\u03ce\t\13\2\2\u03ce\u00c4\3"+ + "\2\2\2\u03cf\u03d0\t\f\2\2\u03d0\u00c6\3\2\2\2\u03d1\u03d5\5\u00c9e\2"+ + "\u03d2\u03d4\5\u00cbf\2\u03d3\u03d2\3\2\2\2\u03d4\u03d7\3\2\2\2\u03d5"+ + "\u03d3\3\2\2\2\u03d5\u03d6\3\2\2\2\u03d6\u00c8\3\2\2\2\u03d7\u03d5\3\2"+ + "\2\2\u03d8\u03d9\t\r\2\2\u03d9\u00ca\3\2\2\2\u03da\u03db\t\16\2\2\u03db"+ + "\u00cc\3\2\2\2\u03dc\u03e0\7#\2\2\u03dd\u03df\5\u00cbf\2\u03de\u03dd\3"+ + "\2\2\2\u03df\u03e2\3\2\2\2\u03e0\u03de\3\2\2\2\u03e0\u03e1\3\2\2\2\u03e1"+ + "\u03e4\3\2\2\2\u03e2\u03e0\3\2\2\2\u03e3\u03e5\t\17\2\2\u03e4\u03e3\3"+ + "\2\2\2\u03e5\u03e6\3\2\2\2\u03e6\u03e4\3\2\2\2\u03e6\u03e7\3\2\2\2\u03e7"+ + "\u00ce\3\2\2\2\u03e8\u03ea\t\20\2\2\u03e9\u03e8\3\2\2\2\u03ea\u03eb\3"+ + "\2\2\2\u03eb\u03e9\3\2\2\2\u03eb\u03ec\3\2\2\2\u03ec\u03ed\3\2\2\2\u03ed"+ + "\u03ee\bh\2\2\u03ee\u00d0\3\2\2\2\u03ef\u03f0\7\61\2\2\u03f0\u03f1\7\61"+ + "\2\2\u03f1\u03f5\3\2\2\2\u03f2\u03f4\n\21\2\2\u03f3\u03f2\3\2\2\2\u03f4"+ + "\u03f7\3\2\2\2\u03f5\u03f3\3\2\2\2\u03f5\u03f6\3\2\2\2\u03f6\u03f8\3\2"+ + "\2\2\u03f7\u03f5\3\2\2\2\u03f8\u03f9\bi\3\2\u03f9\u00d2\3\2\2\2\u03fa"+ + "\u03fb\7\61\2\2\u03fb\u03fc\7,\2\2\u03fc\u0400\3\2\2\2\u03fd\u03ff\13"+ + "\2\2\2\u03fe\u03fd\3\2\2\2\u03ff\u0402\3\2\2\2\u0400\u0401\3\2\2\2\u0400"+ + "\u03fe\3\2\2\2\u0401\u0403\3\2\2\2\u0402\u0400\3\2\2\2\u0403\u0404\7,"+ + "\2\2\u0404\u0405\7\61\2\2\u0405\u0406\3\2\2\2\u0406\u0407\bj\3\2\u0407"+ + "\u00d4\3\2\2\2&\2\u0308\u0310\u033b\u0341\u0343\u0348\u034c\u034e\u0351"+ + "\u0357\u0364\u0368\u036d\u0374\u0379\u0380\u0385\u038c\u0393\u0398\u039f"+ + "\u03a4\u03a9\u03b0\u03b6\u03b8\u03bd\u03c4\u03c9\u03d5\u03e0\u03e6\u03eb"+ + "\u03f5\u0400\4\2\3\2\2\4\2"; 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 6e6afc995..e0e9d126e 100644 --- a/src/main/java/dk/camelot64/kickc/parser/KickCLexer.tokens +++ b/src/main/java/dk/camelot64/kickc/parser/KickCLexer.tokens @@ -77,102 +77,104 @@ T__75=76 T__76=77 T__77=78 T__78=79 -MNEMONIC=80 -KICKASM=81 -SIMPLETYPE=82 -STRING=83 -CHAR=84 -BOOLEAN=85 -NUMBER=86 -NUMFLOAT=87 -BINFLOAT=88 -DECFLOAT=89 -HEXFLOAT=90 -NUMINT=91 -BININTEGER=92 -DECINTEGER=93 -HEXINTEGER=94 -NAME=95 -ASMREL=96 -WS=97 -COMMENT_LINE=98 -COMMENT_BLOCK=99 +T__79=80 +MNEMONIC=81 +KICKASM=82 +SIMPLETYPE=83 +STRING=84 +CHAR=85 +BOOLEAN=86 +NUMBER=87 +NUMFLOAT=88 +BINFLOAT=89 +DECFLOAT=90 +HEXFLOAT=91 +NUMINT=92 +BININTEGER=93 +DECINTEGER=94 +HEXINTEGER=95 +NAME=96 +ASMREL=97 +WS=98 +COMMENT_LINE=99 +COMMENT_BLOCK=100 'import'=1 ';'=2 -','=3 -'='=4 -'('=5 -')'=6 -'{'=7 -'}'=8 -'#'=9 -'pc'=10 -'encoding'=11 -'const'=12 -'extern'=13 -'align'=14 -'register'=15 -'inline'=16 -'volatile'=17 -'interrupt'=18 -'reserve'=19 -'if'=20 -'else'=21 -'while'=22 -'do'=23 -'for'=24 -'return'=25 -'break'=26 -'continue'=27 -'asm'=28 -':'=29 -'..'=30 -'signed'=31 -'unsigned'=32 -'*'=33 -'['=34 -']'=35 -'struct'=36 -'.'=37 -'->'=38 -'sizeof'=39 -'typeid'=40 -'--'=41 -'++'=42 -'+'=43 -'-'=44 -'!'=45 -'&'=46 -'~'=47 -'>>'=48 -'<<'=49 -'/'=50 -'%'=51 -'<'=52 -'>'=53 -'=='=54 -'!='=55 -'<='=56 -'>='=57 -'^'=58 -'|'=59 -'&&'=60 -'||'=61 -'?'=62 -'+='=63 -'-='=64 -'*='=65 -'/='=66 -'%='=67 -'<<='=68 -'>>='=69 -'&='=70 -'|='=71 -'^='=72 -'kickasm'=73 -'resource'=74 -'uses'=75 -'clobbers'=76 -'bytes'=77 -'cycles'=78 -'.byte'=79 +'typedef'=3 +','=4 +'='=5 +'('=6 +')'=7 +'{'=8 +'}'=9 +'#'=10 +'pc'=11 +'encoding'=12 +'const'=13 +'extern'=14 +'align'=15 +'register'=16 +'inline'=17 +'volatile'=18 +'interrupt'=19 +'reserve'=20 +'if'=21 +'else'=22 +'while'=23 +'do'=24 +'for'=25 +'return'=26 +'break'=27 +'continue'=28 +'asm'=29 +':'=30 +'..'=31 +'signed'=32 +'unsigned'=33 +'*'=34 +'['=35 +']'=36 +'struct'=37 +'.'=38 +'->'=39 +'sizeof'=40 +'typeid'=41 +'--'=42 +'++'=43 +'+'=44 +'-'=45 +'!'=46 +'&'=47 +'~'=48 +'>>'=49 +'<<'=50 +'/'=51 +'%'=52 +'<'=53 +'>'=54 +'=='=55 +'!='=56 +'<='=57 +'>='=58 +'^'=59 +'|'=60 +'&&'=61 +'||'=62 +'?'=63 +'+='=64 +'-='=65 +'*='=66 +'/='=67 +'%='=68 +'<<='=69 +'>>='=70 +'&='=71 +'|='=72 +'^='=73 +'kickasm'=74 +'resource'=75 +'uses'=76 +'clobbers'=77 +'bytes'=78 +'cycles'=79 +'.byte'=80 diff --git a/src/main/java/dk/camelot64/kickc/parser/KickCListener.java b/src/main/java/dk/camelot64/kickc/parser/KickCListener.java index 38e35c7bc..5eda8ef43 100644 --- a/src/main/java/dk/camelot64/kickc/parser/KickCListener.java +++ b/src/main/java/dk/camelot64/kickc/parser/KickCListener.java @@ -1,4 +1,4 @@ -// Generated from C:/c64/kickc/src/main/java/dk/camelot64/kickc/parser\KickC.g4 by ANTLR 4.7 +// Generated from /Users/jespergravgaard/c64/kickc/src/main/java/dk/camelot64/kickc/parser/KickC.g4 by ANTLR 4.7 package dk.camelot64.kickc.parser; import org.antlr.v4.runtime.tree.ParseTreeListener; @@ -67,6 +67,16 @@ public interface KickCListener extends ParseTreeListener { * @param ctx the parse tree */ void exitDecl(KickCParser.DeclContext ctx); + /** + * Enter a parse tree produced by {@link KickCParser#typeDef}. + * @param ctx the parse tree + */ + void enterTypeDef(KickCParser.TypeDefContext ctx); + /** + * Exit a parse tree produced by {@link KickCParser#typeDef}. + * @param ctx the parse tree + */ + void exitTypeDef(KickCParser.TypeDefContext ctx); /** * Enter a parse tree produced by {@link KickCParser#declTypes}. * @param ctx the parse tree @@ -579,6 +589,18 @@ public interface KickCListener extends ParseTreeListener { * @param ctx the parse tree */ void exitTypeStructDef(KickCParser.TypeStructDefContext ctx); + /** + * Enter a parse tree produced by the {@code typeNamedRef} + * labeled alternative in {@link KickCParser#typeDecl}. + * @param ctx the parse tree + */ + void enterTypeNamedRef(KickCParser.TypeNamedRefContext ctx); + /** + * Exit a parse tree produced by the {@code typeNamedRef} + * labeled alternative in {@link KickCParser#typeDecl}. + * @param ctx the parse tree + */ + void exitTypeNamedRef(KickCParser.TypeNamedRefContext ctx); /** * Enter a parse tree produced by the {@code typeSignedSimple} * labeled alternative in {@link KickCParser#typeDecl}. diff --git a/src/main/java/dk/camelot64/kickc/parser/KickCParser.java b/src/main/java/dk/camelot64/kickc/parser/KickCParser.java index 39e0954e1..c38cdf657 100644 --- a/src/main/java/dk/camelot64/kickc/parser/KickCParser.java +++ b/src/main/java/dk/camelot64/kickc/parser/KickCParser.java @@ -1,4 +1,4 @@ -// Generated from C:/c64/kickc/src/main/java/dk/camelot64/kickc/parser\KickC.g4 by ANTLR 4.7 +// Generated from /Users/jespergravgaard/c64/kickc/src/main/java/dk/camelot64/kickc/parser/KickC.g4 by ANTLR 4.7 package dk.camelot64.kickc.parser; import org.antlr.v4.runtime.atn.*; import org.antlr.v4.runtime.dfa.DFA; @@ -27,44 +27,45 @@ public class KickCParser extends Parser { T__52=53, T__53=54, T__54=55, T__55=56, T__56=57, T__57=58, T__58=59, T__59=60, T__60=61, T__61=62, T__62=63, T__63=64, T__64=65, T__65=66, T__66=67, T__67=68, T__68=69, T__69=70, T__70=71, T__71=72, T__72=73, - T__73=74, T__74=75, T__75=76, T__76=77, T__77=78, T__78=79, MNEMONIC=80, - KICKASM=81, SIMPLETYPE=82, STRING=83, CHAR=84, BOOLEAN=85, NUMBER=86, - NUMFLOAT=87, BINFLOAT=88, DECFLOAT=89, HEXFLOAT=90, NUMINT=91, BININTEGER=92, - DECINTEGER=93, HEXINTEGER=94, NAME=95, ASMREL=96, WS=97, COMMENT_LINE=98, - COMMENT_BLOCK=99; + T__73=74, T__74=75, T__75=76, T__76=77, T__77=78, T__78=79, T__79=80, + MNEMONIC=81, KICKASM=82, SIMPLETYPE=83, STRING=84, CHAR=85, BOOLEAN=86, + NUMBER=87, NUMFLOAT=88, BINFLOAT=89, DECFLOAT=90, HEXFLOAT=91, NUMINT=92, + BININTEGER=93, DECINTEGER=94, HEXINTEGER=95, NAME=96, ASMREL=97, WS=98, + COMMENT_LINE=99, COMMENT_BLOCK=100; public static final int RULE_file = 0, RULE_asmFile = 1, RULE_importSeq = 2, RULE_importDecl = 3, - RULE_declSeq = 4, RULE_decl = 5, RULE_declTypes = 6, RULE_declVariables = 7, - RULE_declVariableList = 8, RULE_declVariableInit = 9, RULE_declFunction = 10, - RULE_parameterListDecl = 11, RULE_parameterDecl = 12, RULE_globalDirective = 13, - RULE_directive = 14, RULE_directiveReserve = 15, RULE_stmtSeq = 16, RULE_stmt = 17, - RULE_forLoop = 18, RULE_forClassicInit = 19, RULE_typeDecl = 20, RULE_structRef = 21, - RULE_structDef = 22, RULE_structMembers = 23, RULE_commaExpr = 24, RULE_expr = 25, - RULE_parameterList = 26, RULE_declKasm = 27, RULE_asmDirectives = 28, - RULE_asmDirective = 29, RULE_asmLines = 30, RULE_asmLine = 31, RULE_asmLabel = 32, - RULE_asmInstruction = 33, RULE_asmBytes = 34, RULE_asmParamMode = 35, - RULE_asmExpr = 36; + RULE_declSeq = 4, RULE_decl = 5, RULE_typeDef = 6, RULE_declTypes = 7, + RULE_declVariables = 8, RULE_declVariableList = 9, RULE_declVariableInit = 10, + RULE_declFunction = 11, RULE_parameterListDecl = 12, RULE_parameterDecl = 13, + RULE_globalDirective = 14, RULE_directive = 15, RULE_directiveReserve = 16, + RULE_stmtSeq = 17, RULE_stmt = 18, RULE_forLoop = 19, RULE_forClassicInit = 20, + RULE_typeDecl = 21, RULE_structRef = 22, RULE_structDef = 23, RULE_structMembers = 24, + RULE_commaExpr = 25, RULE_expr = 26, RULE_parameterList = 27, RULE_declKasm = 28, + RULE_asmDirectives = 29, RULE_asmDirective = 30, RULE_asmLines = 31, RULE_asmLine = 32, + RULE_asmLabel = 33, RULE_asmInstruction = 34, RULE_asmBytes = 35, RULE_asmParamMode = 36, + RULE_asmExpr = 37; public static final String[] ruleNames = { - "file", "asmFile", "importSeq", "importDecl", "declSeq", "decl", "declTypes", - "declVariables", "declVariableList", "declVariableInit", "declFunction", - "parameterListDecl", "parameterDecl", "globalDirective", "directive", - "directiveReserve", "stmtSeq", "stmt", "forLoop", "forClassicInit", "typeDecl", - "structRef", "structDef", "structMembers", "commaExpr", "expr", "parameterList", - "declKasm", "asmDirectives", "asmDirective", "asmLines", "asmLine", "asmLabel", - "asmInstruction", "asmBytes", "asmParamMode", "asmExpr" + "file", "asmFile", "importSeq", "importDecl", "declSeq", "decl", "typeDef", + "declTypes", "declVariables", "declVariableList", "declVariableInit", + "declFunction", "parameterListDecl", "parameterDecl", "globalDirective", + "directive", "directiveReserve", "stmtSeq", "stmt", "forLoop", "forClassicInit", + "typeDecl", "structRef", "structDef", "structMembers", "commaExpr", "expr", + "parameterList", "declKasm", "asmDirectives", "asmDirective", "asmLines", + "asmLine", "asmLabel", "asmInstruction", "asmBytes", "asmParamMode", "asmExpr" }; private static final String[] _LITERAL_NAMES = { - null, "'import'", "';'", "','", "'='", "'('", "')'", "'{'", "'}'", "'#'", - "'pc'", "'encoding'", "'const'", "'extern'", "'align'", "'register'", - "'inline'", "'volatile'", "'interrupt'", "'reserve'", "'if'", "'else'", - "'while'", "'do'", "'for'", "'return'", "'break'", "'continue'", "'asm'", - "':'", "'..'", "'signed'", "'unsigned'", "'*'", "'['", "']'", "'struct'", - "'.'", "'->'", "'sizeof'", "'typeid'", "'--'", "'++'", "'+'", "'-'", "'!'", - "'&'", "'~'", "'>>'", "'<<'", "'/'", "'%'", "'<'", "'>'", "'=='", "'!='", - "'<='", "'>='", "'^'", "'|'", "'&&'", "'||'", "'?'", "'+='", "'-='", "'*='", - "'/='", "'%='", "'<<='", "'>>='", "'&='", "'|='", "'^='", "'kickasm'", - "'resource'", "'uses'", "'clobbers'", "'bytes'", "'cycles'", "'.byte'" + null, "'import'", "';'", "'typedef'", "','", "'='", "'('", "')'", "'{'", + "'}'", "'#'", "'pc'", "'encoding'", "'const'", "'extern'", "'align'", + "'register'", "'inline'", "'volatile'", "'interrupt'", "'reserve'", "'if'", + "'else'", "'while'", "'do'", "'for'", "'return'", "'break'", "'continue'", + "'asm'", "':'", "'..'", "'signed'", "'unsigned'", "'*'", "'['", "']'", + "'struct'", "'.'", "'->'", "'sizeof'", "'typeid'", "'--'", "'++'", "'+'", + "'-'", "'!'", "'&'", "'~'", "'>>'", "'<<'", "'/'", "'%'", "'<'", "'>'", + "'=='", "'!='", "'<='", "'>='", "'^'", "'|'", "'&&'", "'||'", "'?'", "'+='", + "'-='", "'*='", "'/='", "'%='", "'<<='", "'>>='", "'&='", "'|='", "'^='", + "'kickasm'", "'resource'", "'uses'", "'clobbers'", "'bytes'", "'cycles'", + "'.byte'" }; private static final String[] _SYMBOLIC_NAMES = { null, null, null, null, null, null, null, null, null, null, null, null, @@ -73,7 +74,7 @@ public class KickCParser extends Parser { null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, - null, null, null, null, null, null, null, null, "MNEMONIC", "KICKASM", + null, null, null, null, null, null, null, null, null, "MNEMONIC", "KICKASM", "SIMPLETYPE", "STRING", "CHAR", "BOOLEAN", "NUMBER", "NUMFLOAT", "BINFLOAT", "DECFLOAT", "HEXFLOAT", "NUMINT", "BININTEGER", "DECINTEGER", "HEXINTEGER", "NAME", "ASMREL", "WS", "COMMENT_LINE", "COMMENT_BLOCK" @@ -160,11 +161,11 @@ public class KickCParser extends Parser { try { enterOuterAlt(_localctx, 1); { - setState(74); - importSeq(); - setState(75); - declSeq(); setState(76); + importSeq(); + setState(77); + declSeq(); + setState(78); match(EOF); } } @@ -209,9 +210,9 @@ public class KickCParser extends Parser { try { enterOuterAlt(_localctx, 1); { - setState(78); + setState(80); asmLines(); - setState(79); + setState(81); match(EOF); } } @@ -259,17 +260,17 @@ public class KickCParser extends Parser { try { enterOuterAlt(_localctx, 1); { - setState(84); + setState(86); _errHandler.sync(this); _la = _input.LA(1); while (_la==T__0) { { { - setState(81); + setState(83); importDecl(); } } - setState(86); + setState(88); _errHandler.sync(this); _la = _input.LA(1); } @@ -313,9 +314,9 @@ public class KickCParser extends Parser { try { enterOuterAlt(_localctx, 1); { - setState(87); + setState(89); match(T__0); - setState(88); + setState(90); match(STRING); } } @@ -363,20 +364,20 @@ public class KickCParser extends Parser { try { enterOuterAlt(_localctx, 1); { - setState(91); + setState(93); _errHandler.sync(this); _la = _input.LA(1); do { { { - setState(90); + setState(92); decl(); } } - setState(93); + setState(95); _errHandler.sync(this); _la = _input.LA(1); - } while ( (((_la) & ~0x3f) == 0 && ((1L << _la) & ((1L << T__4) | (1L << T__8) | (1L << T__11) | (1L << T__12) | (1L << T__13) | (1L << T__14) | (1L << T__15) | (1L << T__16) | (1L << T__17) | (1L << T__18) | (1L << T__30) | (1L << T__31) | (1L << T__35))) != 0) || _la==T__72 || _la==SIMPLETYPE ); + } while ( (((_la) & ~0x3f) == 0 && ((1L << _la) & ((1L << T__2) | (1L << T__5) | (1L << T__9) | (1L << T__12) | (1L << T__13) | (1L << T__14) | (1L << T__15) | (1L << T__16) | (1L << T__17) | (1L << T__18) | (1L << T__19) | (1L << T__31) | (1L << T__32) | (1L << T__36))) != 0) || ((((_la - 74)) & ~0x3f) == 0 && ((1L << (_la - 74)) & ((1L << (T__73 - 74)) | (1L << (SIMPLETYPE - 74)) | (1L << (NAME - 74)))) != 0) ); } } catch (RecognitionException re) { @@ -406,6 +407,9 @@ public class KickCParser extends Parser { public GlobalDirectiveContext globalDirective() { return getRuleContext(GlobalDirectiveContext.class,0); } + public TypeDefContext typeDef() { + return getRuleContext(TypeDefContext.class,0); + } public DeclContext(ParserRuleContext parent, int invokingState) { super(parent, invokingState); } @@ -429,48 +433,110 @@ public class KickCParser extends Parser { DeclContext _localctx = new DeclContext(_ctx, getState()); enterRule(_localctx, 10, RULE_decl); try { - setState(104); + setState(110); _errHandler.sync(this); switch ( getInterpreter().adaptivePredict(_input,2,_ctx) ) { case 1: enterOuterAlt(_localctx, 1); { - setState(95); + setState(97); declVariables(); - setState(96); + setState(98); match(T__1); } break; case 2: enterOuterAlt(_localctx, 2); { - setState(98); + setState(100); structDef(); - setState(99); + setState(101); match(T__1); } break; case 3: enterOuterAlt(_localctx, 3); { - setState(101); + setState(103); declFunction(); } break; case 4: enterOuterAlt(_localctx, 4); { - setState(102); - declKasm(); + setState(104); + declFunction(); } break; case 5: enterOuterAlt(_localctx, 5); { - setState(103); + setState(105); + declKasm(); + } + break; + case 6: + enterOuterAlt(_localctx, 6); + { + setState(106); globalDirective(); } break; + case 7: + enterOuterAlt(_localctx, 7); + { + setState(107); + typeDef(); + setState(108); + match(T__1); + } + break; + } + } + catch (RecognitionException re) { + _localctx.exception = re; + _errHandler.reportError(this, re); + _errHandler.recover(this, re); + } + finally { + exitRule(); + } + return _localctx; + } + + public static class TypeDefContext extends ParserRuleContext { + public DeclVariablesContext declVariables() { + return getRuleContext(DeclVariablesContext.class,0); + } + public TypeDefContext(ParserRuleContext parent, int invokingState) { + super(parent, invokingState); + } + @Override public int getRuleIndex() { return RULE_typeDef; } + @Override + public void enterRule(ParseTreeListener listener) { + if ( listener instanceof KickCListener ) ((KickCListener)listener).enterTypeDef(this); + } + @Override + public void exitRule(ParseTreeListener listener) { + if ( listener instanceof KickCListener ) ((KickCListener)listener).exitTypeDef(this); + } + @Override + public T accept(ParseTreeVisitor visitor) { + if ( visitor instanceof KickCVisitor ) return ((KickCVisitor)visitor).visitTypeDef(this); + else return visitor.visitChildren(this); + } + } + + public final TypeDefContext typeDef() throws RecognitionException { + TypeDefContext _localctx = new TypeDefContext(_ctx, getState()); + enterRule(_localctx, 12, RULE_typeDef); + try { + enterOuterAlt(_localctx, 1); + { + setState(112); + match(T__2); + setState(113); + declVariables(); } } catch (RecognitionException re) { @@ -515,38 +581,38 @@ public class KickCParser extends Parser { public final DeclTypesContext declTypes() throws RecognitionException { DeclTypesContext _localctx = new DeclTypesContext(_ctx, getState()); - enterRule(_localctx, 12, RULE_declTypes); + enterRule(_localctx, 14, RULE_declTypes); int _la; try { enterOuterAlt(_localctx, 1); { - setState(109); + setState(118); _errHandler.sync(this); _la = _input.LA(1); - while ((((_la) & ~0x3f) == 0 && ((1L << _la) & ((1L << T__11) | (1L << T__12) | (1L << T__13) | (1L << T__14) | (1L << T__15) | (1L << T__16) | (1L << T__17) | (1L << T__18))) != 0)) { + while ((((_la) & ~0x3f) == 0 && ((1L << _la) & ((1L << T__12) | (1L << T__13) | (1L << T__14) | (1L << T__15) | (1L << T__16) | (1L << T__17) | (1L << T__18) | (1L << T__19))) != 0)) { { { - setState(106); + setState(115); directive(); } } - setState(111); + setState(120); _errHandler.sync(this); _la = _input.LA(1); } - setState(112); + setState(121); typeDecl(0); - setState(116); + setState(125); _errHandler.sync(this); _la = _input.LA(1); - while ((((_la) & ~0x3f) == 0 && ((1L << _la) & ((1L << T__11) | (1L << T__12) | (1L << T__13) | (1L << T__14) | (1L << T__15) | (1L << T__16) | (1L << T__17) | (1L << T__18))) != 0)) { + while ((((_la) & ~0x3f) == 0 && ((1L << _la) & ((1L << T__12) | (1L << T__13) | (1L << T__14) | (1L << T__15) | (1L << T__16) | (1L << T__17) | (1L << T__18) | (1L << T__19))) != 0)) { { { - setState(113); + setState(122); directive(); } } - setState(118); + setState(127); _errHandler.sync(this); _la = _input.LA(1); } @@ -591,13 +657,13 @@ public class KickCParser extends Parser { public final DeclVariablesContext declVariables() throws RecognitionException { DeclVariablesContext _localctx = new DeclVariablesContext(_ctx, getState()); - enterRule(_localctx, 14, RULE_declVariables); + enterRule(_localctx, 16, RULE_declVariables); try { enterOuterAlt(_localctx, 1); { - setState(119); + setState(128); declTypes(); - setState(120); + setState(129); declVariableList(0); } } @@ -647,18 +713,18 @@ public class KickCParser extends Parser { int _parentState = getState(); DeclVariableListContext _localctx = new DeclVariableListContext(_ctx, _parentState); DeclVariableListContext _prevctx = _localctx; - int _startState = 16; - enterRecursionRule(_localctx, 16, RULE_declVariableList, _p); + int _startState = 18; + enterRecursionRule(_localctx, 18, RULE_declVariableList, _p); try { int _alt; enterOuterAlt(_localctx, 1); { { - setState(123); + setState(132); declVariableInit(); } _ctx.stop = _input.LT(-1); - setState(130); + setState(139); _errHandler.sync(this); _alt = getInterpreter().adaptivePredict(_input,5,_ctx); while ( _alt!=2 && _alt!=org.antlr.v4.runtime.atn.ATN.INVALID_ALT_NUMBER ) { @@ -669,16 +735,16 @@ public class KickCParser extends Parser { { _localctx = new DeclVariableListContext(_parentctx, _parentState); pushNewRecursionContext(_localctx, _startState, RULE_declVariableList); - setState(125); + setState(134); if (!(precpred(_ctx, 1))) throw new FailedPredicateException(this, "precpred(_ctx, 1)"); - setState(126); - match(T__2); - setState(127); + setState(135); + match(T__3); + setState(136); declVariableInit(); } } } - setState(132); + setState(141); _errHandler.sync(this); _alt = getInterpreter().adaptivePredict(_input,5,_ctx); } @@ -721,20 +787,20 @@ public class KickCParser extends Parser { public final DeclVariableInitContext declVariableInit() throws RecognitionException { DeclVariableInitContext _localctx = new DeclVariableInitContext(_ctx, getState()); - enterRule(_localctx, 18, RULE_declVariableInit); + enterRule(_localctx, 20, RULE_declVariableInit); try { enterOuterAlt(_localctx, 1); { - setState(133); + setState(142); match(NAME); - setState(136); + setState(145); _errHandler.sync(this); switch ( getInterpreter().adaptivePredict(_input,6,_ctx) ) { case 1: { - setState(134); - match(T__3); - setState(135); + setState(143); + match(T__4); + setState(144); expr(0); } break; @@ -784,43 +850,43 @@ public class KickCParser extends Parser { public final DeclFunctionContext declFunction() throws RecognitionException { DeclFunctionContext _localctx = new DeclFunctionContext(_ctx, getState()); - enterRule(_localctx, 20, RULE_declFunction); + enterRule(_localctx, 22, RULE_declFunction); int _la; try { enterOuterAlt(_localctx, 1); { - setState(138); + setState(147); declTypes(); - setState(139); + setState(148); match(NAME); - setState(140); - match(T__4); - setState(142); + setState(149); + match(T__5); + setState(151); _errHandler.sync(this); _la = _input.LA(1); - if ((((_la) & ~0x3f) == 0 && ((1L << _la) & ((1L << T__4) | (1L << T__11) | (1L << T__12) | (1L << T__13) | (1L << T__14) | (1L << T__15) | (1L << T__16) | (1L << T__17) | (1L << T__18) | (1L << T__30) | (1L << T__31) | (1L << T__35))) != 0) || _la==SIMPLETYPE) { + if ((((_la) & ~0x3f) == 0 && ((1L << _la) & ((1L << T__5) | (1L << T__12) | (1L << T__13) | (1L << T__14) | (1L << T__15) | (1L << T__16) | (1L << T__17) | (1L << T__18) | (1L << T__19) | (1L << T__31) | (1L << T__32) | (1L << T__36))) != 0) || _la==SIMPLETYPE || _la==NAME) { { - setState(141); + setState(150); parameterListDecl(); } } - setState(144); - match(T__5); - setState(145); + setState(153); match(T__6); - setState(147); + setState(154); + match(T__7); + setState(156); _errHandler.sync(this); _la = _input.LA(1); - if ((((_la) & ~0x3f) == 0 && ((1L << _la) & ((1L << T__4) | (1L << T__6) | (1L << T__11) | (1L << T__12) | (1L << T__13) | (1L << T__14) | (1L << T__15) | (1L << T__16) | (1L << T__17) | (1L << T__18) | (1L << T__19) | (1L << T__21) | (1L << T__22) | (1L << T__23) | (1L << T__24) | (1L << T__25) | (1L << T__26) | (1L << T__27) | (1L << T__30) | (1L << T__31) | (1L << T__32) | (1L << T__35) | (1L << T__38) | (1L << T__39) | (1L << T__40) | (1L << T__41) | (1L << T__42) | (1L << T__43) | (1L << T__44) | (1L << T__45) | (1L << T__46) | (1L << T__51) | (1L << T__52))) != 0) || ((((_la - 73)) & ~0x3f) == 0 && ((1L << (_la - 73)) & ((1L << (T__72 - 73)) | (1L << (SIMPLETYPE - 73)) | (1L << (STRING - 73)) | (1L << (CHAR - 73)) | (1L << (BOOLEAN - 73)) | (1L << (NUMBER - 73)) | (1L << (NAME - 73)))) != 0)) { + if ((((_la) & ~0x3f) == 0 && ((1L << _la) & ((1L << T__5) | (1L << T__7) | (1L << T__12) | (1L << T__13) | (1L << T__14) | (1L << T__15) | (1L << T__16) | (1L << T__17) | (1L << T__18) | (1L << T__19) | (1L << T__20) | (1L << T__22) | (1L << T__23) | (1L << T__24) | (1L << T__25) | (1L << T__26) | (1L << T__27) | (1L << T__28) | (1L << T__31) | (1L << T__32) | (1L << T__33) | (1L << T__36) | (1L << T__39) | (1L << T__40) | (1L << T__41) | (1L << T__42) | (1L << T__43) | (1L << T__44) | (1L << T__45) | (1L << T__46) | (1L << T__47) | (1L << T__52) | (1L << T__53))) != 0) || ((((_la - 74)) & ~0x3f) == 0 && ((1L << (_la - 74)) & ((1L << (T__73 - 74)) | (1L << (SIMPLETYPE - 74)) | (1L << (STRING - 74)) | (1L << (CHAR - 74)) | (1L << (BOOLEAN - 74)) | (1L << (NUMBER - 74)) | (1L << (NAME - 74)))) != 0)) { { - setState(146); + setState(155); stmtSeq(); } } - setState(149); - match(T__7); + setState(158); + match(T__8); } } catch (RecognitionException re) { @@ -862,26 +928,26 @@ public class KickCParser extends Parser { public final ParameterListDeclContext parameterListDecl() throws RecognitionException { ParameterListDeclContext _localctx = new ParameterListDeclContext(_ctx, getState()); - enterRule(_localctx, 22, RULE_parameterListDecl); + enterRule(_localctx, 24, RULE_parameterListDecl); int _la; try { enterOuterAlt(_localctx, 1); { - setState(151); + setState(160); parameterDecl(); - setState(156); + setState(165); _errHandler.sync(this); _la = _input.LA(1); - while (_la==T__2) { + while (_la==T__3) { { { - setState(152); - match(T__2); - setState(153); + setState(161); + match(T__3); + setState(162); parameterDecl(); } } - setState(158); + setState(167); _errHandler.sync(this); _la = _input.LA(1); } @@ -949,18 +1015,18 @@ public class KickCParser extends Parser { public final ParameterDeclContext parameterDecl() throws RecognitionException { ParameterDeclContext _localctx = new ParameterDeclContext(_ctx, getState()); - enterRule(_localctx, 24, RULE_parameterDecl); + enterRule(_localctx, 26, RULE_parameterDecl); try { - setState(163); + setState(172); _errHandler.sync(this); switch ( getInterpreter().adaptivePredict(_input,10,_ctx) ) { case 1: _localctx = new ParameterDeclTypeContext(_localctx); enterOuterAlt(_localctx, 1); { - setState(159); + setState(168); declTypes(); - setState(160); + setState(169); match(NAME); } break; @@ -968,7 +1034,7 @@ public class KickCParser extends Parser { _localctx = new ParameterDeclVoidContext(_localctx); enterOuterAlt(_localctx, 2); { - setState(162); + setState(171); match(SIMPLETYPE); } break; @@ -1052,18 +1118,18 @@ public class KickCParser extends Parser { public final GlobalDirectiveContext globalDirective() throws RecognitionException { GlobalDirectiveContext _localctx = new GlobalDirectiveContext(_ctx, getState()); - enterRule(_localctx, 26, RULE_globalDirective); + enterRule(_localctx, 28, RULE_globalDirective); try { - setState(177); + setState(186); _errHandler.sync(this); switch ( getInterpreter().adaptivePredict(_input,11,_ctx) ) { case 1: _localctx = new GlobalDirectiveReserveContext(_localctx); enterOuterAlt(_localctx, 1); { - setState(165); - match(T__8); - setState(166); + setState(174); + match(T__9); + setState(175); directiveReserve(); } break; @@ -1071,32 +1137,32 @@ public class KickCParser extends Parser { _localctx = new GlobalDirectivePcContext(_localctx); enterOuterAlt(_localctx, 2); { - setState(167); - match(T__8); - setState(168); + setState(176); match(T__9); - setState(169); - match(T__4); - setState(170); - match(NUMBER); - setState(171); + setState(177); + match(T__10); + setState(178); match(T__5); + setState(179); + match(NUMBER); + setState(180); + match(T__6); } break; case 3: _localctx = new GlobalDirectiveEncodingContext(_localctx); enterOuterAlt(_localctx, 3); { - setState(172); - match(T__8); - setState(173); - match(T__10); - setState(174); - match(T__4); - setState(175); - match(NAME); - setState(176); + setState(181); + match(T__9); + setState(182); + match(T__11); + setState(183); match(T__5); + setState(184); + match(NAME); + setState(185); + match(T__6); } break; } @@ -1260,98 +1326,98 @@ public class KickCParser extends Parser { public final DirectiveContext directive() throws RecognitionException { DirectiveContext _localctx = new DirectiveContext(_ctx, getState()); - enterRule(_localctx, 28, RULE_directive); + enterRule(_localctx, 30, RULE_directive); try { - setState(198); + setState(207); _errHandler.sync(this); switch (_input.LA(1)) { - case T__11: + case T__12: _localctx = new DirectiveConstContext(_localctx); enterOuterAlt(_localctx, 1); { - setState(179); - match(T__11); - } - break; - case T__12: - _localctx = new DirectiveExternContext(_localctx); - enterOuterAlt(_localctx, 2); - { - setState(180); + setState(188); match(T__12); } break; case T__13: - _localctx = new DirectiveAlignContext(_localctx); - enterOuterAlt(_localctx, 3); + _localctx = new DirectiveExternContext(_localctx); + enterOuterAlt(_localctx, 2); { - setState(181); + setState(189); match(T__13); - setState(182); - match(T__4); - setState(183); - match(NUMBER); - setState(184); - match(T__5); } break; case T__14: - _localctx = new DirectiveRegisterContext(_localctx); - enterOuterAlt(_localctx, 4); + _localctx = new DirectiveAlignContext(_localctx); + enterOuterAlt(_localctx, 3); { - setState(185); + setState(190); match(T__14); - setState(186); - match(T__4); - setState(187); - match(NAME); - setState(188); + setState(191); match(T__5); + setState(192); + match(NUMBER); + setState(193); + match(T__6); } break; case T__15: - _localctx = new DirectiveInlineContext(_localctx); - enterOuterAlt(_localctx, 5); + _localctx = new DirectiveRegisterContext(_localctx); + enterOuterAlt(_localctx, 4); { - setState(189); + setState(194); match(T__15); + setState(195); + match(T__5); + setState(196); + match(NAME); + setState(197); + match(T__6); } break; case T__16: - _localctx = new DirectiveVolatileContext(_localctx); - enterOuterAlt(_localctx, 6); + _localctx = new DirectiveInlineContext(_localctx); + enterOuterAlt(_localctx, 5); { - setState(190); + setState(198); match(T__16); } break; case T__17: + _localctx = new DirectiveVolatileContext(_localctx); + enterOuterAlt(_localctx, 6); + { + setState(199); + match(T__17); + } + break; + case T__18: _localctx = new DirectiveInterruptContext(_localctx); enterOuterAlt(_localctx, 7); { - setState(191); - match(T__17); - setState(195); + setState(200); + match(T__18); + setState(204); _errHandler.sync(this); switch ( getInterpreter().adaptivePredict(_input,12,_ctx) ) { case 1: { - setState(192); - match(T__4); - setState(193); - match(NAME); - setState(194); + setState(201); match(T__5); + setState(202); + match(NAME); + setState(203); + match(T__6); } break; } } break; - case T__18: + case T__19: _localctx = new DirectiveReserveZpContext(_localctx); enterOuterAlt(_localctx, 8); { - setState(197); + setState(206); directiveReserve(); } break; @@ -1396,35 +1462,35 @@ public class KickCParser extends Parser { public final DirectiveReserveContext directiveReserve() throws RecognitionException { DirectiveReserveContext _localctx = new DirectiveReserveContext(_ctx, getState()); - enterRule(_localctx, 30, RULE_directiveReserve); + enterRule(_localctx, 32, RULE_directiveReserve); int _la; try { enterOuterAlt(_localctx, 1); { - setState(200); - match(T__18); - setState(201); - match(T__4); - setState(202); + setState(209); + match(T__19); + setState(210); + match(T__5); + setState(211); match(NUMBER); - setState(207); + setState(216); _errHandler.sync(this); _la = _input.LA(1); - while (_la==T__2) { + while (_la==T__3) { { { - setState(203); - match(T__2); - setState(204); + setState(212); + match(T__3); + setState(213); match(NUMBER); } } - setState(209); + setState(218); _errHandler.sync(this); _la = _input.LA(1); } - setState(210); - match(T__5); + setState(219); + match(T__6); } } catch (RecognitionException re) { @@ -1466,25 +1532,25 @@ public class KickCParser extends Parser { public final StmtSeqContext stmtSeq() throws RecognitionException { StmtSeqContext _localctx = new StmtSeqContext(_ctx, getState()); - enterRule(_localctx, 32, RULE_stmtSeq); + enterRule(_localctx, 34, RULE_stmtSeq); int _la; try { enterOuterAlt(_localctx, 1); { - setState(213); + setState(222); _errHandler.sync(this); _la = _input.LA(1); do { { { - setState(212); + setState(221); stmt(); } } - setState(215); + setState(224); _errHandler.sync(this); _la = _input.LA(1); - } while ( (((_la) & ~0x3f) == 0 && ((1L << _la) & ((1L << T__4) | (1L << T__6) | (1L << T__11) | (1L << T__12) | (1L << T__13) | (1L << T__14) | (1L << T__15) | (1L << T__16) | (1L << T__17) | (1L << T__18) | (1L << T__19) | (1L << T__21) | (1L << T__22) | (1L << T__23) | (1L << T__24) | (1L << T__25) | (1L << T__26) | (1L << T__27) | (1L << T__30) | (1L << T__31) | (1L << T__32) | (1L << T__35) | (1L << T__38) | (1L << T__39) | (1L << T__40) | (1L << T__41) | (1L << T__42) | (1L << T__43) | (1L << T__44) | (1L << T__45) | (1L << T__46) | (1L << T__51) | (1L << T__52))) != 0) || ((((_la - 73)) & ~0x3f) == 0 && ((1L << (_la - 73)) & ((1L << (T__72 - 73)) | (1L << (SIMPLETYPE - 73)) | (1L << (STRING - 73)) | (1L << (CHAR - 73)) | (1L << (BOOLEAN - 73)) | (1L << (NUMBER - 73)) | (1L << (NAME - 73)))) != 0) ); + } while ( (((_la) & ~0x3f) == 0 && ((1L << _la) & ((1L << T__5) | (1L << T__7) | (1L << T__12) | (1L << T__13) | (1L << T__14) | (1L << T__15) | (1L << T__16) | (1L << T__17) | (1L << T__18) | (1L << T__19) | (1L << T__20) | (1L << T__22) | (1L << T__23) | (1L << T__24) | (1L << T__25) | (1L << T__26) | (1L << T__27) | (1L << T__28) | (1L << T__31) | (1L << T__32) | (1L << T__33) | (1L << T__36) | (1L << T__39) | (1L << T__40) | (1L << T__41) | (1L << T__42) | (1L << T__43) | (1L << T__44) | (1L << T__45) | (1L << T__46) | (1L << T__47) | (1L << T__52) | (1L << T__53))) != 0) || ((((_la - 74)) & ~0x3f) == 0 && ((1L << (_la - 74)) & ((1L << (T__73 - 74)) | (1L << (SIMPLETYPE - 74)) | (1L << (STRING - 74)) | (1L << (CHAR - 74)) | (1L << (BOOLEAN - 74)) | (1L << (NUMBER - 74)) | (1L << (NAME - 74)))) != 0) ); } } catch (RecognitionException re) { @@ -1770,19 +1836,19 @@ public class KickCParser extends Parser { public final StmtContext stmt() throws RecognitionException { StmtContext _localctx = new StmtContext(_ctx, getState()); - enterRule(_localctx, 34, RULE_stmt); + enterRule(_localctx, 36, RULE_stmt); int _la; try { - setState(293); + setState(302); _errHandler.sync(this); switch ( getInterpreter().adaptivePredict(_input,23,_ctx) ) { case 1: _localctx = new StmtDeclVarContext(_localctx); enterOuterAlt(_localctx, 1); { - setState(217); + setState(226); declVariables(); - setState(218); + setState(227); match(T__1); } break; @@ -1790,29 +1856,29 @@ public class KickCParser extends Parser { _localctx = new StmtBlockContext(_localctx); enterOuterAlt(_localctx, 2); { - setState(220); - match(T__6); - setState(222); + setState(229); + match(T__7); + setState(231); _errHandler.sync(this); _la = _input.LA(1); - if ((((_la) & ~0x3f) == 0 && ((1L << _la) & ((1L << T__4) | (1L << T__6) | (1L << T__11) | (1L << T__12) | (1L << T__13) | (1L << T__14) | (1L << T__15) | (1L << T__16) | (1L << T__17) | (1L << T__18) | (1L << T__19) | (1L << T__21) | (1L << T__22) | (1L << T__23) | (1L << T__24) | (1L << T__25) | (1L << T__26) | (1L << T__27) | (1L << T__30) | (1L << T__31) | (1L << T__32) | (1L << T__35) | (1L << T__38) | (1L << T__39) | (1L << T__40) | (1L << T__41) | (1L << T__42) | (1L << T__43) | (1L << T__44) | (1L << T__45) | (1L << T__46) | (1L << T__51) | (1L << T__52))) != 0) || ((((_la - 73)) & ~0x3f) == 0 && ((1L << (_la - 73)) & ((1L << (T__72 - 73)) | (1L << (SIMPLETYPE - 73)) | (1L << (STRING - 73)) | (1L << (CHAR - 73)) | (1L << (BOOLEAN - 73)) | (1L << (NUMBER - 73)) | (1L << (NAME - 73)))) != 0)) { + if ((((_la) & ~0x3f) == 0 && ((1L << _la) & ((1L << T__5) | (1L << T__7) | (1L << T__12) | (1L << T__13) | (1L << T__14) | (1L << T__15) | (1L << T__16) | (1L << T__17) | (1L << T__18) | (1L << T__19) | (1L << T__20) | (1L << T__22) | (1L << T__23) | (1L << T__24) | (1L << T__25) | (1L << T__26) | (1L << T__27) | (1L << T__28) | (1L << T__31) | (1L << T__32) | (1L << T__33) | (1L << T__36) | (1L << T__39) | (1L << T__40) | (1L << T__41) | (1L << T__42) | (1L << T__43) | (1L << T__44) | (1L << T__45) | (1L << T__46) | (1L << T__47) | (1L << T__52) | (1L << T__53))) != 0) || ((((_la - 74)) & ~0x3f) == 0 && ((1L << (_la - 74)) & ((1L << (T__73 - 74)) | (1L << (SIMPLETYPE - 74)) | (1L << (STRING - 74)) | (1L << (CHAR - 74)) | (1L << (BOOLEAN - 74)) | (1L << (NUMBER - 74)) | (1L << (NAME - 74)))) != 0)) { { - setState(221); + setState(230); stmtSeq(); } } - setState(224); - match(T__7); + setState(233); + match(T__8); } break; case 3: _localctx = new StmtExprContext(_localctx); enterOuterAlt(_localctx, 3); { - setState(225); + setState(234); commaExpr(0); - setState(226); + setState(235); match(T__1); } break; @@ -1820,24 +1886,24 @@ public class KickCParser extends Parser { _localctx = new StmtIfElseContext(_localctx); enterOuterAlt(_localctx, 4); { - setState(228); - match(T__19); - setState(229); - match(T__4); - setState(230); - commaExpr(0); - setState(231); + setState(237); + match(T__20); + setState(238); match(T__5); - setState(232); + setState(239); + commaExpr(0); + setState(240); + match(T__6); + setState(241); stmt(); - setState(235); + setState(244); _errHandler.sync(this); switch ( getInterpreter().adaptivePredict(_input,17,_ctx) ) { case 1: { - setState(233); - match(T__20); - setState(234); + setState(242); + match(T__21); + setState(243); stmt(); } break; @@ -1848,29 +1914,29 @@ public class KickCParser extends Parser { _localctx = new StmtWhileContext(_localctx); enterOuterAlt(_localctx, 5); { - setState(240); + setState(249); _errHandler.sync(this); _la = _input.LA(1); - while ((((_la) & ~0x3f) == 0 && ((1L << _la) & ((1L << T__11) | (1L << T__12) | (1L << T__13) | (1L << T__14) | (1L << T__15) | (1L << T__16) | (1L << T__17) | (1L << T__18))) != 0)) { + while ((((_la) & ~0x3f) == 0 && ((1L << _la) & ((1L << T__12) | (1L << T__13) | (1L << T__14) | (1L << T__15) | (1L << T__16) | (1L << T__17) | (1L << T__18) | (1L << T__19))) != 0)) { { { - setState(237); + setState(246); directive(); } } - setState(242); + setState(251); _errHandler.sync(this); _la = _input.LA(1); } - setState(243); - match(T__21); - setState(244); - match(T__4); - setState(245); - commaExpr(0); - setState(246); + setState(252); + match(T__22); + setState(253); match(T__5); - setState(247); + setState(254); + commaExpr(0); + setState(255); + match(T__6); + setState(256); stmt(); } break; @@ -1878,33 +1944,33 @@ public class KickCParser extends Parser { _localctx = new StmtDoWhileContext(_localctx); enterOuterAlt(_localctx, 6); { - setState(252); + setState(261); _errHandler.sync(this); _la = _input.LA(1); - while ((((_la) & ~0x3f) == 0 && ((1L << _la) & ((1L << T__11) | (1L << T__12) | (1L << T__13) | (1L << T__14) | (1L << T__15) | (1L << T__16) | (1L << T__17) | (1L << T__18))) != 0)) { + while ((((_la) & ~0x3f) == 0 && ((1L << _la) & ((1L << T__12) | (1L << T__13) | (1L << T__14) | (1L << T__15) | (1L << T__16) | (1L << T__17) | (1L << T__18) | (1L << T__19))) != 0)) { { { - setState(249); + setState(258); directive(); } } - setState(254); + setState(263); _errHandler.sync(this); _la = _input.LA(1); } - setState(255); - match(T__22); - setState(256); + setState(264); + match(T__23); + setState(265); stmt(); - setState(257); - match(T__21); - setState(258); - match(T__4); - setState(259); - commaExpr(0); - setState(260); + setState(266); + match(T__22); + setState(267); match(T__5); - setState(261); + setState(268); + commaExpr(0); + setState(269); + match(T__6); + setState(270); match(T__1); } break; @@ -1912,29 +1978,29 @@ public class KickCParser extends Parser { _localctx = new StmtForContext(_localctx); enterOuterAlt(_localctx, 7); { - setState(266); + setState(275); _errHandler.sync(this); _la = _input.LA(1); - while ((((_la) & ~0x3f) == 0 && ((1L << _la) & ((1L << T__11) | (1L << T__12) | (1L << T__13) | (1L << T__14) | (1L << T__15) | (1L << T__16) | (1L << T__17) | (1L << T__18))) != 0)) { + while ((((_la) & ~0x3f) == 0 && ((1L << _la) & ((1L << T__12) | (1L << T__13) | (1L << T__14) | (1L << T__15) | (1L << T__16) | (1L << T__17) | (1L << T__18) | (1L << T__19))) != 0)) { { { - setState(263); + setState(272); directive(); } } - setState(268); + setState(277); _errHandler.sync(this); _la = _input.LA(1); } - setState(269); - match(T__23); - setState(270); - match(T__4); - setState(271); - forLoop(); - setState(272); + setState(278); + match(T__24); + setState(279); match(T__5); - setState(273); + setState(280); + forLoop(); + setState(281); + match(T__6); + setState(282); stmt(); } break; @@ -1942,19 +2008,19 @@ public class KickCParser extends Parser { _localctx = new StmtReturnContext(_localctx); enterOuterAlt(_localctx, 8); { - setState(275); - match(T__24); - setState(277); + setState(284); + match(T__25); + setState(286); _errHandler.sync(this); _la = _input.LA(1); - if ((((_la) & ~0x3f) == 0 && ((1L << _la) & ((1L << T__4) | (1L << T__6) | (1L << T__32) | (1L << T__38) | (1L << T__39) | (1L << T__40) | (1L << T__41) | (1L << T__42) | (1L << T__43) | (1L << T__44) | (1L << T__45) | (1L << T__46) | (1L << T__51) | (1L << T__52))) != 0) || ((((_la - 83)) & ~0x3f) == 0 && ((1L << (_la - 83)) & ((1L << (STRING - 83)) | (1L << (CHAR - 83)) | (1L << (BOOLEAN - 83)) | (1L << (NUMBER - 83)) | (1L << (NAME - 83)))) != 0)) { + if ((((_la) & ~0x3f) == 0 && ((1L << _la) & ((1L << T__5) | (1L << T__7) | (1L << T__33) | (1L << T__39) | (1L << T__40) | (1L << T__41) | (1L << T__42) | (1L << T__43) | (1L << T__44) | (1L << T__45) | (1L << T__46) | (1L << T__47) | (1L << T__52) | (1L << T__53))) != 0) || ((((_la - 84)) & ~0x3f) == 0 && ((1L << (_la - 84)) & ((1L << (STRING - 84)) | (1L << (CHAR - 84)) | (1L << (BOOLEAN - 84)) | (1L << (NUMBER - 84)) | (1L << (NAME - 84)))) != 0)) { { - setState(276); + setState(285); commaExpr(0); } } - setState(279); + setState(288); match(T__1); } break; @@ -1962,9 +2028,9 @@ public class KickCParser extends Parser { _localctx = new StmtBreakContext(_localctx); enterOuterAlt(_localctx, 9); { - setState(280); - match(T__25); - setState(281); + setState(289); + match(T__26); + setState(290); match(T__1); } break; @@ -1972,9 +2038,9 @@ public class KickCParser extends Parser { _localctx = new StmtContinueContext(_localctx); enterOuterAlt(_localctx, 10); { - setState(282); - match(T__26); - setState(283); + setState(291); + match(T__27); + setState(292); match(T__1); } break; @@ -1982,31 +2048,31 @@ public class KickCParser extends Parser { _localctx = new StmtAsmContext(_localctx); enterOuterAlt(_localctx, 11); { - setState(284); - match(T__27); - setState(286); + setState(293); + match(T__28); + setState(295); _errHandler.sync(this); _la = _input.LA(1); - if (_la==T__4) { + if (_la==T__5) { { - setState(285); + setState(294); asmDirectives(); } } - setState(288); - match(T__6); - setState(289); - asmLines(); - setState(290); + setState(297); match(T__7); + setState(298); + asmLines(); + setState(299); + match(T__8); } break; case 12: _localctx = new StmtDeclKasmContext(_localctx); enterOuterAlt(_localctx, 12); { - setState(292); + setState(301); declKasm(); } break; @@ -2088,30 +2154,30 @@ public class KickCParser extends Parser { public final ForLoopContext forLoop() throws RecognitionException { ForLoopContext _localctx = new ForLoopContext(_ctx, getState()); - enterRule(_localctx, 36, RULE_forLoop); + enterRule(_localctx, 38, RULE_forLoop); int _la; try { - setState(311); + setState(320); _errHandler.sync(this); switch ( getInterpreter().adaptivePredict(_input,26,_ctx) ) { case 1: _localctx = new ForClassicContext(_localctx); enterOuterAlt(_localctx, 1); { - setState(295); + setState(304); forClassicInit(); - setState(296); + setState(305); match(T__1); - setState(297); + setState(306); commaExpr(0); - setState(298); + setState(307); match(T__1); - setState(300); + setState(309); _errHandler.sync(this); _la = _input.LA(1); - if ((((_la) & ~0x3f) == 0 && ((1L << _la) & ((1L << T__4) | (1L << T__6) | (1L << T__32) | (1L << T__38) | (1L << T__39) | (1L << T__40) | (1L << T__41) | (1L << T__42) | (1L << T__43) | (1L << T__44) | (1L << T__45) | (1L << T__46) | (1L << T__51) | (1L << T__52))) != 0) || ((((_la - 83)) & ~0x3f) == 0 && ((1L << (_la - 83)) & ((1L << (STRING - 83)) | (1L << (CHAR - 83)) | (1L << (BOOLEAN - 83)) | (1L << (NUMBER - 83)) | (1L << (NAME - 83)))) != 0)) { + if ((((_la) & ~0x3f) == 0 && ((1L << _la) & ((1L << T__5) | (1L << T__7) | (1L << T__33) | (1L << T__39) | (1L << T__40) | (1L << T__41) | (1L << T__42) | (1L << T__43) | (1L << T__44) | (1L << T__45) | (1L << T__46) | (1L << T__47) | (1L << T__52) | (1L << T__53))) != 0) || ((((_la - 84)) & ~0x3f) == 0 && ((1L << (_la - 84)) & ((1L << (STRING - 84)) | (1L << (CHAR - 84)) | (1L << (BOOLEAN - 84)) | (1L << (NUMBER - 84)) | (1L << (NAME - 84)))) != 0)) { { - setState(299); + setState(308); commaExpr(0); } } @@ -2122,27 +2188,27 @@ public class KickCParser extends Parser { _localctx = new ForRangeContext(_localctx); enterOuterAlt(_localctx, 2); { - setState(303); + setState(312); _errHandler.sync(this); - _la = _input.LA(1); - if ((((_la) & ~0x3f) == 0 && ((1L << _la) & ((1L << T__4) | (1L << T__11) | (1L << T__12) | (1L << T__13) | (1L << T__14) | (1L << T__15) | (1L << T__16) | (1L << T__17) | (1L << T__18) | (1L << T__30) | (1L << T__31) | (1L << T__35))) != 0) || _la==SIMPLETYPE) { + switch ( getInterpreter().adaptivePredict(_input,25,_ctx) ) { + case 1: { - setState(302); + setState(311); declTypes(); } + break; } - - setState(305); + setState(314); match(NAME); - setState(306); - match(T__28); - setState(307); + setState(315); + match(T__29); + setState(316); expr(0); { - setState(308); - match(T__29); + setState(317); + match(T__30); } - setState(309); + setState(318); expr(0); } break; @@ -2211,22 +2277,22 @@ public class KickCParser extends Parser { public final ForClassicInitContext forClassicInit() throws RecognitionException { ForClassicInitContext _localctx = new ForClassicInitContext(_ctx, getState()); - enterRule(_localctx, 38, RULE_forClassicInit); + enterRule(_localctx, 40, RULE_forClassicInit); int _la; try { - setState(317); + setState(326); _errHandler.sync(this); switch ( getInterpreter().adaptivePredict(_input,28,_ctx) ) { case 1: _localctx = new ForClassicInitDeclContext(_localctx); enterOuterAlt(_localctx, 1); { - setState(314); + setState(323); _errHandler.sync(this); _la = _input.LA(1); - if ((((_la) & ~0x3f) == 0 && ((1L << _la) & ((1L << T__4) | (1L << T__11) | (1L << T__12) | (1L << T__13) | (1L << T__14) | (1L << T__15) | (1L << T__16) | (1L << T__17) | (1L << T__18) | (1L << T__30) | (1L << T__31) | (1L << T__35))) != 0) || _la==SIMPLETYPE) { + if ((((_la) & ~0x3f) == 0 && ((1L << _la) & ((1L << T__5) | (1L << T__12) | (1L << T__13) | (1L << T__14) | (1L << T__15) | (1L << T__16) | (1L << T__17) | (1L << T__18) | (1L << T__19) | (1L << T__31) | (1L << T__32) | (1L << T__36))) != 0) || _la==SIMPLETYPE || _la==NAME) { { - setState(313); + setState(322); declVariables(); } } @@ -2237,7 +2303,7 @@ public class KickCParser extends Parser { _localctx = new ForClassicInitExprContext(_localctx); enterOuterAlt(_localctx, 2); { - setState(316); + setState(325); commaExpr(0); } break; @@ -2399,6 +2465,23 @@ public class KickCParser extends Parser { else return visitor.visitChildren(this); } } + public static class TypeNamedRefContext extends TypeDeclContext { + public TerminalNode NAME() { return getToken(KickCParser.NAME, 0); } + public TypeNamedRefContext(TypeDeclContext ctx) { copyFrom(ctx); } + @Override + public void enterRule(ParseTreeListener listener) { + if ( listener instanceof KickCListener ) ((KickCListener)listener).enterTypeNamedRef(this); + } + @Override + public void exitRule(ParseTreeListener listener) { + if ( listener instanceof KickCListener ) ((KickCListener)listener).exitTypeNamedRef(this); + } + @Override + public T accept(ParseTreeVisitor visitor) { + if ( visitor instanceof KickCVisitor ) return ((KickCVisitor)visitor).visitTypeNamedRef(this); + else return visitor.visitChildren(this); + } + } public static class TypeSignedSimpleContext extends TypeDeclContext { public TerminalNode SIMPLETYPE() { return getToken(KickCParser.SIMPLETYPE, 0); } public TypeSignedSimpleContext(TypeDeclContext ctx) { copyFrom(ctx); } @@ -2426,14 +2509,14 @@ public class KickCParser extends Parser { int _parentState = getState(); TypeDeclContext _localctx = new TypeDeclContext(_ctx, _parentState); TypeDeclContext _prevctx = _localctx; - int _startState = 40; - enterRecursionRule(_localctx, 40, RULE_typeDecl, _p); + int _startState = 42; + enterRecursionRule(_localctx, 42, RULE_typeDecl, _p); int _la; try { int _alt; enterOuterAlt(_localctx, 1); { - setState(331); + setState(341); _errHandler.sync(this); switch ( getInterpreter().adaptivePredict(_input,30,_ctx) ) { case 1: @@ -2442,12 +2525,12 @@ public class KickCParser extends Parser { _ctx = _localctx; _prevctx = _localctx; - setState(320); - match(T__4); - setState(321); - typeDecl(0); - setState(322); + setState(329); match(T__5); + setState(330); + typeDecl(0); + setState(331); + match(T__6); } break; case 2: @@ -2455,7 +2538,7 @@ public class KickCParser extends Parser { _localctx = new TypeSimpleContext(_localctx); _ctx = _localctx; _prevctx = _localctx; - setState(324); + setState(333); match(SIMPLETYPE); } break; @@ -2464,9 +2547,9 @@ public class KickCParser extends Parser { _localctx = new TypeSignedSimpleContext(_localctx); _ctx = _localctx; _prevctx = _localctx; - setState(325); + setState(334); _la = _input.LA(1); - if ( !(_la==T__30 || _la==T__31) ) { + if ( !(_la==T__31 || _la==T__32) ) { _errHandler.recoverInline(this); } else { @@ -2474,12 +2557,12 @@ public class KickCParser extends Parser { _errHandler.reportMatch(this); consume(); } - setState(327); + setState(336); _errHandler.sync(this); switch ( getInterpreter().adaptivePredict(_input,29,_ctx) ) { case 1: { - setState(326); + setState(335); match(SIMPLETYPE); } break; @@ -2491,7 +2574,7 @@ public class KickCParser extends Parser { _localctx = new TypeStructDefContext(_localctx); _ctx = _localctx; _prevctx = _localctx; - setState(329); + setState(338); structDef(); } break; @@ -2500,13 +2583,22 @@ public class KickCParser extends Parser { _localctx = new TypeStructRefContext(_localctx); _ctx = _localctx; _prevctx = _localctx; - setState(330); + setState(339); structRef(); } break; + case 6: + { + _localctx = new TypeNamedRefContext(_localctx); + _ctx = _localctx; + _prevctx = _localctx; + setState(340); + match(NAME); + } + break; } _ctx.stop = _input.LT(-1); - setState(346); + setState(356); _errHandler.sync(this); _alt = getInterpreter().adaptivePredict(_input,33,_ctx); while ( _alt!=2 && _alt!=org.antlr.v4.runtime.atn.ATN.INVALID_ALT_NUMBER ) { @@ -2514,57 +2606,57 @@ public class KickCParser extends Parser { if ( _parseListeners!=null ) triggerExitRuleEvent(); _prevctx = _localctx; { - setState(344); + setState(354); _errHandler.sync(this); switch ( getInterpreter().adaptivePredict(_input,32,_ctx) ) { case 1: { _localctx = new TypePtrContext(new TypeDeclContext(_parentctx, _parentState)); pushNewRecursionContext(_localctx, _startState, RULE_typeDecl); - setState(333); - if (!(precpred(_ctx, 5))) throw new FailedPredicateException(this, "precpred(_ctx, 5)"); - setState(334); - match(T__32); + setState(343); + if (!(precpred(_ctx, 6))) throw new FailedPredicateException(this, "precpred(_ctx, 6)"); + setState(344); + match(T__33); } break; case 2: { _localctx = new TypeArrayContext(new TypeDeclContext(_parentctx, _parentState)); pushNewRecursionContext(_localctx, _startState, RULE_typeDecl); - setState(335); - if (!(precpred(_ctx, 4))) throw new FailedPredicateException(this, "precpred(_ctx, 4)"); - setState(336); - match(T__33); - setState(338); + setState(345); + if (!(precpred(_ctx, 5))) throw new FailedPredicateException(this, "precpred(_ctx, 5)"); + setState(346); + match(T__34); + setState(348); _errHandler.sync(this); _la = _input.LA(1); - if ((((_la) & ~0x3f) == 0 && ((1L << _la) & ((1L << T__4) | (1L << T__6) | (1L << T__32) | (1L << T__38) | (1L << T__39) | (1L << T__40) | (1L << T__41) | (1L << T__42) | (1L << T__43) | (1L << T__44) | (1L << T__45) | (1L << T__46) | (1L << T__51) | (1L << T__52))) != 0) || ((((_la - 83)) & ~0x3f) == 0 && ((1L << (_la - 83)) & ((1L << (STRING - 83)) | (1L << (CHAR - 83)) | (1L << (BOOLEAN - 83)) | (1L << (NUMBER - 83)) | (1L << (NAME - 83)))) != 0)) { + if ((((_la) & ~0x3f) == 0 && ((1L << _la) & ((1L << T__5) | (1L << T__7) | (1L << T__33) | (1L << T__39) | (1L << T__40) | (1L << T__41) | (1L << T__42) | (1L << T__43) | (1L << T__44) | (1L << T__45) | (1L << T__46) | (1L << T__47) | (1L << T__52) | (1L << T__53))) != 0) || ((((_la - 84)) & ~0x3f) == 0 && ((1L << (_la - 84)) & ((1L << (STRING - 84)) | (1L << (CHAR - 84)) | (1L << (BOOLEAN - 84)) | (1L << (NUMBER - 84)) | (1L << (NAME - 84)))) != 0)) { { - setState(337); + setState(347); expr(0); } } - setState(340); - match(T__34); + setState(350); + match(T__35); } break; case 3: { _localctx = new TypeProcedureContext(new TypeDeclContext(_parentctx, _parentState)); pushNewRecursionContext(_localctx, _startState, RULE_typeDecl); - setState(341); - if (!(precpred(_ctx, 3))) throw new FailedPredicateException(this, "precpred(_ctx, 3)"); - setState(342); - match(T__4); - setState(343); + setState(351); + if (!(precpred(_ctx, 4))) throw new FailedPredicateException(this, "precpred(_ctx, 4)"); + setState(352); match(T__5); + setState(353); + match(T__6); } break; } } } - setState(348); + setState(358); _errHandler.sync(this); _alt = getInterpreter().adaptivePredict(_input,33,_ctx); } @@ -2604,13 +2696,13 @@ public class KickCParser extends Parser { public final StructRefContext structRef() throws RecognitionException { StructRefContext _localctx = new StructRefContext(_ctx, getState()); - enterRule(_localctx, 42, RULE_structRef); + enterRule(_localctx, 44, RULE_structRef); try { enterOuterAlt(_localctx, 1); { - setState(349); - match(T__35); - setState(350); + setState(359); + match(T__36); + setState(360); match(NAME); } } @@ -2654,41 +2746,41 @@ public class KickCParser extends Parser { public final StructDefContext structDef() throws RecognitionException { StructDefContext _localctx = new StructDefContext(_ctx, getState()); - enterRule(_localctx, 44, RULE_structDef); + enterRule(_localctx, 46, RULE_structDef); int _la; try { enterOuterAlt(_localctx, 1); { - setState(352); - match(T__35); - setState(354); + setState(362); + match(T__36); + setState(364); _errHandler.sync(this); _la = _input.LA(1); if (_la==NAME) { { - setState(353); + setState(363); match(NAME); } } - setState(356); - match(T__6); - setState(358); + setState(366); + match(T__7); + setState(368); _errHandler.sync(this); _la = _input.LA(1); do { { { - setState(357); + setState(367); structMembers(); } } - setState(360); + setState(370); _errHandler.sync(this); _la = _input.LA(1); - } while ( (((_la) & ~0x3f) == 0 && ((1L << _la) & ((1L << T__4) | (1L << T__11) | (1L << T__12) | (1L << T__13) | (1L << T__14) | (1L << T__15) | (1L << T__16) | (1L << T__17) | (1L << T__18) | (1L << T__30) | (1L << T__31) | (1L << T__35))) != 0) || _la==SIMPLETYPE ); - setState(362); - match(T__7); + } while ( (((_la) & ~0x3f) == 0 && ((1L << _la) & ((1L << T__5) | (1L << T__12) | (1L << T__13) | (1L << T__14) | (1L << T__15) | (1L << T__16) | (1L << T__17) | (1L << T__18) | (1L << T__19) | (1L << T__31) | (1L << T__32) | (1L << T__36))) != 0) || _la==SIMPLETYPE || _la==NAME ); + setState(372); + match(T__8); } } catch (RecognitionException re) { @@ -2727,13 +2819,13 @@ public class KickCParser extends Parser { public final StructMembersContext structMembers() throws RecognitionException { StructMembersContext _localctx = new StructMembersContext(_ctx, getState()); - enterRule(_localctx, 46, RULE_structMembers); + enterRule(_localctx, 48, RULE_structMembers); try { enterOuterAlt(_localctx, 1); { - setState(364); + setState(374); declVariables(); - setState(365); + setState(375); match(T__1); } } @@ -2810,8 +2902,8 @@ public class KickCParser extends Parser { int _parentState = getState(); CommaExprContext _localctx = new CommaExprContext(_ctx, _parentState); CommaExprContext _prevctx = _localctx; - int _startState = 48; - enterRecursionRule(_localctx, 48, RULE_commaExpr, _p); + int _startState = 50; + enterRecursionRule(_localctx, 50, RULE_commaExpr, _p); try { int _alt; enterOuterAlt(_localctx, 1); @@ -2821,11 +2913,11 @@ public class KickCParser extends Parser { _ctx = _localctx; _prevctx = _localctx; - setState(368); + setState(378); expr(0); } _ctx.stop = _input.LT(-1); - setState(375); + setState(385); _errHandler.sync(this); _alt = getInterpreter().adaptivePredict(_input,36,_ctx); while ( _alt!=2 && _alt!=org.antlr.v4.runtime.atn.ATN.INVALID_ALT_NUMBER ) { @@ -2836,16 +2928,16 @@ public class KickCParser extends Parser { { _localctx = new CommaSimpleContext(new CommaExprContext(_parentctx, _parentState)); pushNewRecursionContext(_localctx, _startState, RULE_commaExpr); - setState(370); + setState(380); if (!(precpred(_ctx, 1))) throw new FailedPredicateException(this, "precpred(_ctx, 1)"); - setState(371); - match(T__2); - setState(372); + setState(381); + match(T__3); + setState(382); expr(0); } } } - setState(377); + setState(387); _errHandler.sync(this); _alt = getInterpreter().adaptivePredict(_input,36,_ctx); } @@ -2934,12 +3026,12 @@ public class KickCParser extends Parser { } } public static class ExprTypeIdContext extends ExprContext { - public TypeDeclContext typeDecl() { - return getRuleContext(TypeDeclContext.class,0); - } public ExprContext expr() { return getRuleContext(ExprContext.class,0); } + public TypeDeclContext typeDecl() { + return getRuleContext(TypeDeclContext.class,0); + } public ExprTypeIdContext(ExprContext ctx) { copyFrom(ctx); } @Override public void enterRule(ParseTreeListener listener) { @@ -3153,12 +3245,12 @@ public class KickCParser extends Parser { } } public static class ExprSizeOfContext extends ExprContext { - public TypeDeclContext typeDecl() { - return getRuleContext(TypeDeclContext.class,0); - } public ExprContext expr() { return getRuleContext(ExprContext.class,0); } + public TypeDeclContext typeDecl() { + return getRuleContext(TypeDeclContext.class,0); + } public ExprSizeOfContext(ExprContext ctx) { copyFrom(ctx); } @Override public void enterRule(ParseTreeListener listener) { @@ -3326,14 +3418,14 @@ public class KickCParser extends Parser { int _parentState = getState(); ExprContext _localctx = new ExprContext(_ctx, _parentState); ExprContext _prevctx = _localctx; - int _startState = 50; - enterRecursionRule(_localctx, 50, RULE_expr, _p); + int _startState = 52; + enterRecursionRule(_localctx, 52, RULE_expr, _p); int _la; try { int _alt; enterOuterAlt(_localctx, 1); { - setState(432); + setState(442); _errHandler.sync(this); switch ( getInterpreter().adaptivePredict(_input,41,_ctx) ) { case 1: @@ -3342,12 +3434,12 @@ public class KickCParser extends Parser { _ctx = _localctx; _prevctx = _localctx; - setState(379); - match(T__4); - setState(380); - commaExpr(0); - setState(381); + setState(389); match(T__5); + setState(390); + commaExpr(0); + setState(391); + match(T__6); } break; case 2: @@ -3355,28 +3447,28 @@ public class KickCParser extends Parser { _localctx = new ExprSizeOfContext(_localctx); _ctx = _localctx; _prevctx = _localctx; - setState(383); - match(T__38); - setState(384); - match(T__4); - setState(387); + setState(393); + match(T__39); + setState(394); + match(T__5); + setState(397); _errHandler.sync(this); switch ( getInterpreter().adaptivePredict(_input,37,_ctx) ) { case 1: { - setState(385); - typeDecl(0); + setState(395); + expr(0); } break; case 2: { - setState(386); - expr(0); + setState(396); + typeDecl(0); } break; } - setState(389); - match(T__5); + setState(399); + match(T__6); } break; case 3: @@ -3384,28 +3476,28 @@ public class KickCParser extends Parser { _localctx = new ExprTypeIdContext(_localctx); _ctx = _localctx; _prevctx = _localctx; - setState(391); - match(T__39); - setState(392); - match(T__4); - setState(395); + setState(401); + match(T__40); + setState(402); + match(T__5); + setState(405); _errHandler.sync(this); switch ( getInterpreter().adaptivePredict(_input,38,_ctx) ) { case 1: { - setState(393); - typeDecl(0); + setState(403); + expr(0); } break; case 2: { - setState(394); - expr(0); + setState(404); + typeDecl(0); } break; } - setState(397); - match(T__5); + setState(407); + match(T__6); } break; case 4: @@ -3413,13 +3505,13 @@ public class KickCParser extends Parser { _localctx = new ExprCastContext(_localctx); _ctx = _localctx; _prevctx = _localctx; - setState(399); - match(T__4); - setState(400); - typeDecl(0); - setState(401); + setState(409); match(T__5); - setState(402); + setState(410); + typeDecl(0); + setState(411); + match(T__6); + setState(412); expr(24); } break; @@ -3428,9 +3520,9 @@ public class KickCParser extends Parser { _localctx = new ExprPreModContext(_localctx); _ctx = _localctx; _prevctx = _localctx; - setState(404); + setState(414); _la = _input.LA(1); - if ( !(_la==T__40 || _la==T__41) ) { + if ( !(_la==T__41 || _la==T__42) ) { _errHandler.recoverInline(this); } else { @@ -3438,7 +3530,7 @@ public class KickCParser extends Parser { _errHandler.reportMatch(this); consume(); } - setState(405); + setState(415); expr(23); } break; @@ -3447,9 +3539,9 @@ public class KickCParser extends Parser { _localctx = new ExprPtrContext(_localctx); _ctx = _localctx; _prevctx = _localctx; - setState(406); - match(T__32); - setState(407); + setState(416); + match(T__33); + setState(417); expr(21); } break; @@ -3458,9 +3550,9 @@ public class KickCParser extends Parser { _localctx = new ExprUnaryContext(_localctx); _ctx = _localctx; _prevctx = _localctx; - setState(408); + setState(418); _la = _input.LA(1); - if ( !((((_la) & ~0x3f) == 0 && ((1L << _la) & ((1L << T__42) | (1L << T__43) | (1L << T__44) | (1L << T__45) | (1L << T__46))) != 0)) ) { + if ( !((((_la) & ~0x3f) == 0 && ((1L << _la) & ((1L << T__43) | (1L << T__44) | (1L << T__45) | (1L << T__46) | (1L << T__47))) != 0)) ) { _errHandler.recoverInline(this); } else { @@ -3468,7 +3560,7 @@ public class KickCParser extends Parser { _errHandler.reportMatch(this); consume(); } - setState(409); + setState(419); expr(20); } break; @@ -3477,9 +3569,9 @@ public class KickCParser extends Parser { _localctx = new ExprUnaryContext(_localctx); _ctx = _localctx; _prevctx = _localctx; - setState(410); + setState(420); _la = _input.LA(1); - if ( !(_la==T__51 || _la==T__52) ) { + if ( !(_la==T__52 || _la==T__53) ) { _errHandler.recoverInline(this); } else { @@ -3487,7 +3579,7 @@ public class KickCParser extends Parser { _errHandler.reportMatch(this); consume(); } - setState(411); + setState(421); expr(16); } break; @@ -3496,28 +3588,28 @@ public class KickCParser extends Parser { _localctx = new InitListContext(_localctx); _ctx = _localctx; _prevctx = _localctx; - setState(412); - match(T__6); - setState(413); + setState(422); + match(T__7); + setState(423); expr(0); - setState(418); + setState(428); _errHandler.sync(this); _la = _input.LA(1); - while (_la==T__2) { + while (_la==T__3) { { { - setState(414); - match(T__2); - setState(415); + setState(424); + match(T__3); + setState(425); expr(0); } } - setState(420); + setState(430); _errHandler.sync(this); _la = _input.LA(1); } - setState(421); - match(T__7); + setState(431); + match(T__8); } break; case 10: @@ -3525,7 +3617,7 @@ public class KickCParser extends Parser { _localctx = new ExprIdContext(_localctx); _ctx = _localctx; _prevctx = _localctx; - setState(423); + setState(433); match(NAME); } break; @@ -3534,7 +3626,7 @@ public class KickCParser extends Parser { _localctx = new ExprNumberContext(_localctx); _ctx = _localctx; _prevctx = _localctx; - setState(424); + setState(434); match(NUMBER); } break; @@ -3543,7 +3635,7 @@ public class KickCParser extends Parser { _localctx = new ExprStringContext(_localctx); _ctx = _localctx; _prevctx = _localctx; - setState(426); + setState(436); _errHandler.sync(this); _alt = 1; do { @@ -3551,7 +3643,7 @@ public class KickCParser extends Parser { case 1: { { - setState(425); + setState(435); match(STRING); } } @@ -3559,7 +3651,7 @@ public class KickCParser extends Parser { default: throw new NoViableAltException(this); } - setState(428); + setState(438); _errHandler.sync(this); _alt = getInterpreter().adaptivePredict(_input,40,_ctx); } while ( _alt!=2 && _alt!=org.antlr.v4.runtime.atn.ATN.INVALID_ALT_NUMBER ); @@ -3570,7 +3662,7 @@ public class KickCParser extends Parser { _localctx = new ExprCharContext(_localctx); _ctx = _localctx; _prevctx = _localctx; - setState(430); + setState(440); match(CHAR); } break; @@ -3579,13 +3671,13 @@ public class KickCParser extends Parser { _localctx = new ExprBoolContext(_localctx); _ctx = _localctx; _prevctx = _localctx; - setState(431); + setState(441); match(BOOLEAN); } break; } _ctx.stop = _input.LT(-1); - setState(494); + setState(504); _errHandler.sync(this); _alt = getInterpreter().adaptivePredict(_input,44,_ctx); while ( _alt!=2 && _alt!=org.antlr.v4.runtime.atn.ATN.INVALID_ALT_NUMBER ) { @@ -3593,18 +3685,18 @@ public class KickCParser extends Parser { if ( _parseListeners!=null ) triggerExitRuleEvent(); _prevctx = _localctx; { - setState(492); + setState(502); _errHandler.sync(this); switch ( getInterpreter().adaptivePredict(_input,43,_ctx) ) { case 1: { _localctx = new ExprBinaryContext(new ExprContext(_parentctx, _parentState)); pushNewRecursionContext(_localctx, _startState, RULE_expr); - setState(434); + setState(444); if (!(precpred(_ctx, 19))) throw new FailedPredicateException(this, "precpred(_ctx, 19)"); - setState(435); + setState(445); _la = _input.LA(1); - if ( !(_la==T__47 || _la==T__48) ) { + if ( !(_la==T__48 || _la==T__49) ) { _errHandler.recoverInline(this); } else { @@ -3612,7 +3704,7 @@ public class KickCParser extends Parser { _errHandler.reportMatch(this); consume(); } - setState(436); + setState(446); expr(20); } break; @@ -3620,11 +3712,11 @@ public class KickCParser extends Parser { { _localctx = new ExprBinaryContext(new ExprContext(_parentctx, _parentState)); pushNewRecursionContext(_localctx, _startState, RULE_expr); - setState(437); + setState(447); if (!(precpred(_ctx, 18))) throw new FailedPredicateException(this, "precpred(_ctx, 18)"); - setState(438); + setState(448); _la = _input.LA(1); - if ( !((((_la) & ~0x3f) == 0 && ((1L << _la) & ((1L << T__32) | (1L << T__49) | (1L << T__50))) != 0)) ) { + if ( !((((_la) & ~0x3f) == 0 && ((1L << _la) & ((1L << T__33) | (1L << T__50) | (1L << T__51))) != 0)) ) { _errHandler.recoverInline(this); } else { @@ -3632,7 +3724,7 @@ public class KickCParser extends Parser { _errHandler.reportMatch(this); consume(); } - setState(439); + setState(449); expr(19); } break; @@ -3640,11 +3732,11 @@ public class KickCParser extends Parser { { _localctx = new ExprBinaryContext(new ExprContext(_parentctx, _parentState)); pushNewRecursionContext(_localctx, _startState, RULE_expr); - setState(440); + setState(450); if (!(precpred(_ctx, 17))) throw new FailedPredicateException(this, "precpred(_ctx, 17)"); - setState(441); + setState(451); _la = _input.LA(1); - if ( !(_la==T__42 || _la==T__43) ) { + if ( !(_la==T__43 || _la==T__44) ) { _errHandler.recoverInline(this); } else { @@ -3652,7 +3744,7 @@ public class KickCParser extends Parser { _errHandler.reportMatch(this); consume(); } - setState(442); + setState(452); expr(18); } break; @@ -3660,11 +3752,11 @@ public class KickCParser extends Parser { { _localctx = new ExprBinaryContext(new ExprContext(_parentctx, _parentState)); pushNewRecursionContext(_localctx, _startState, RULE_expr); - setState(443); + setState(453); if (!(precpred(_ctx, 15))) throw new FailedPredicateException(this, "precpred(_ctx, 15)"); - setState(444); + setState(454); _la = _input.LA(1); - if ( !((((_la) & ~0x3f) == 0 && ((1L << _la) & ((1L << T__51) | (1L << T__52) | (1L << T__53) | (1L << T__54) | (1L << T__55) | (1L << T__56))) != 0)) ) { + if ( !((((_la) & ~0x3f) == 0 && ((1L << _la) & ((1L << T__52) | (1L << T__53) | (1L << T__54) | (1L << T__55) | (1L << T__56) | (1L << T__57))) != 0)) ) { _errHandler.recoverInline(this); } else { @@ -3672,7 +3764,7 @@ public class KickCParser extends Parser { _errHandler.reportMatch(this); consume(); } - setState(445); + setState(455); expr(16); } break; @@ -3680,13 +3772,13 @@ public class KickCParser extends Parser { { _localctx = new ExprBinaryContext(new ExprContext(_parentctx, _parentState)); pushNewRecursionContext(_localctx, _startState, RULE_expr); - setState(446); + setState(456); if (!(precpred(_ctx, 14))) throw new FailedPredicateException(this, "precpred(_ctx, 14)"); { - setState(447); - match(T__45); + setState(457); + match(T__46); } - setState(448); + setState(458); expr(15); } break; @@ -3694,13 +3786,13 @@ public class KickCParser extends Parser { { _localctx = new ExprBinaryContext(new ExprContext(_parentctx, _parentState)); pushNewRecursionContext(_localctx, _startState, RULE_expr); - setState(449); + setState(459); if (!(precpred(_ctx, 13))) throw new FailedPredicateException(this, "precpred(_ctx, 13)"); { - setState(450); - match(T__57); + setState(460); + match(T__58); } - setState(451); + setState(461); expr(14); } break; @@ -3708,13 +3800,13 @@ public class KickCParser extends Parser { { _localctx = new ExprBinaryContext(new ExprContext(_parentctx, _parentState)); pushNewRecursionContext(_localctx, _startState, RULE_expr); - setState(452); + setState(462); if (!(precpred(_ctx, 12))) throw new FailedPredicateException(this, "precpred(_ctx, 12)"); { - setState(453); - match(T__58); + setState(463); + match(T__59); } - setState(454); + setState(464); expr(13); } break; @@ -3722,13 +3814,13 @@ public class KickCParser extends Parser { { _localctx = new ExprBinaryContext(new ExprContext(_parentctx, _parentState)); pushNewRecursionContext(_localctx, _startState, RULE_expr); - setState(455); + setState(465); if (!(precpred(_ctx, 11))) throw new FailedPredicateException(this, "precpred(_ctx, 11)"); { - setState(456); - match(T__59); + setState(466); + match(T__60); } - setState(457); + setState(467); expr(12); } break; @@ -3736,13 +3828,13 @@ public class KickCParser extends Parser { { _localctx = new ExprBinaryContext(new ExprContext(_parentctx, _parentState)); pushNewRecursionContext(_localctx, _startState, RULE_expr); - setState(458); + setState(468); if (!(precpred(_ctx, 10))) throw new FailedPredicateException(this, "precpred(_ctx, 10)"); { - setState(459); - match(T__60); + setState(469); + match(T__61); } - setState(460); + setState(470); expr(11); } break; @@ -3750,15 +3842,15 @@ public class KickCParser extends Parser { { _localctx = new ExprTernaryContext(new ExprContext(_parentctx, _parentState)); pushNewRecursionContext(_localctx, _startState, RULE_expr); - setState(461); + setState(471); if (!(precpred(_ctx, 9))) throw new FailedPredicateException(this, "precpred(_ctx, 9)"); - setState(462); - match(T__61); - setState(463); + setState(472); + match(T__62); + setState(473); expr(0); - setState(464); - match(T__28); - setState(465); + setState(474); + match(T__29); + setState(475); expr(10); } break; @@ -3766,11 +3858,11 @@ public class KickCParser extends Parser { { _localctx = new ExprAssignmentContext(new ExprContext(_parentctx, _parentState)); pushNewRecursionContext(_localctx, _startState, RULE_expr); - setState(467); + setState(477); if (!(precpred(_ctx, 8))) throw new FailedPredicateException(this, "precpred(_ctx, 8)"); - setState(468); - match(T__3); - setState(469); + setState(478); + match(T__4); + setState(479); expr(8); } break; @@ -3778,11 +3870,11 @@ public class KickCParser extends Parser { { _localctx = new ExprAssignmentCompoundContext(new ExprContext(_parentctx, _parentState)); pushNewRecursionContext(_localctx, _startState, RULE_expr); - setState(470); + setState(480); if (!(precpred(_ctx, 7))) throw new FailedPredicateException(this, "precpred(_ctx, 7)"); - setState(471); + setState(481); _la = _input.LA(1); - if ( !(((((_la - 63)) & ~0x3f) == 0 && ((1L << (_la - 63)) & ((1L << (T__62 - 63)) | (1L << (T__63 - 63)) | (1L << (T__64 - 63)) | (1L << (T__65 - 63)) | (1L << (T__66 - 63)) | (1L << (T__67 - 63)) | (1L << (T__68 - 63)) | (1L << (T__69 - 63)) | (1L << (T__70 - 63)) | (1L << (T__71 - 63)))) != 0)) ) { + if ( !(((((_la - 64)) & ~0x3f) == 0 && ((1L << (_la - 64)) & ((1L << (T__63 - 64)) | (1L << (T__64 - 64)) | (1L << (T__65 - 64)) | (1L << (T__66 - 64)) | (1L << (T__67 - 64)) | (1L << (T__68 - 64)) | (1L << (T__69 - 64)) | (1L << (T__70 - 64)) | (1L << (T__71 - 64)) | (1L << (T__72 - 64)))) != 0)) ) { _errHandler.recoverInline(this); } else { @@ -3790,7 +3882,7 @@ public class KickCParser extends Parser { _errHandler.reportMatch(this); consume(); } - setState(472); + setState(482); expr(7); } break; @@ -3798,11 +3890,11 @@ public class KickCParser extends Parser { { _localctx = new ExprDotContext(new ExprContext(_parentctx, _parentState)); pushNewRecursionContext(_localctx, _startState, RULE_expr); - setState(473); + setState(483); if (!(precpred(_ctx, 30))) throw new FailedPredicateException(this, "precpred(_ctx, 30)"); - setState(474); - match(T__36); - setState(475); + setState(484); + match(T__37); + setState(485); match(NAME); } break; @@ -3810,11 +3902,11 @@ public class KickCParser extends Parser { { _localctx = new ExprArrowContext(new ExprContext(_parentctx, _parentState)); pushNewRecursionContext(_localctx, _startState, RULE_expr); - setState(476); + setState(486); if (!(precpred(_ctx, 29))) throw new FailedPredicateException(this, "precpred(_ctx, 29)"); - setState(477); - match(T__37); - setState(478); + setState(487); + match(T__38); + setState(488); match(NAME); } break; @@ -3822,47 +3914,47 @@ public class KickCParser extends Parser { { _localctx = new ExprCallContext(new ExprContext(_parentctx, _parentState)); pushNewRecursionContext(_localctx, _startState, RULE_expr); - setState(479); + setState(489); if (!(precpred(_ctx, 28))) throw new FailedPredicateException(this, "precpred(_ctx, 28)"); - setState(480); - match(T__4); - setState(482); + setState(490); + match(T__5); + setState(492); _errHandler.sync(this); _la = _input.LA(1); - if ((((_la) & ~0x3f) == 0 && ((1L << _la) & ((1L << T__4) | (1L << T__6) | (1L << T__32) | (1L << T__38) | (1L << T__39) | (1L << T__40) | (1L << T__41) | (1L << T__42) | (1L << T__43) | (1L << T__44) | (1L << T__45) | (1L << T__46) | (1L << T__51) | (1L << T__52))) != 0) || ((((_la - 83)) & ~0x3f) == 0 && ((1L << (_la - 83)) & ((1L << (STRING - 83)) | (1L << (CHAR - 83)) | (1L << (BOOLEAN - 83)) | (1L << (NUMBER - 83)) | (1L << (NAME - 83)))) != 0)) { + if ((((_la) & ~0x3f) == 0 && ((1L << _la) & ((1L << T__5) | (1L << T__7) | (1L << T__33) | (1L << T__39) | (1L << T__40) | (1L << T__41) | (1L << T__42) | (1L << T__43) | (1L << T__44) | (1L << T__45) | (1L << T__46) | (1L << T__47) | (1L << T__52) | (1L << T__53))) != 0) || ((((_la - 84)) & ~0x3f) == 0 && ((1L << (_la - 84)) & ((1L << (STRING - 84)) | (1L << (CHAR - 84)) | (1L << (BOOLEAN - 84)) | (1L << (NUMBER - 84)) | (1L << (NAME - 84)))) != 0)) { { - setState(481); + setState(491); parameterList(); } } - setState(484); - match(T__5); + setState(494); + match(T__6); } break; case 16: { _localctx = new ExprArrayContext(new ExprContext(_parentctx, _parentState)); pushNewRecursionContext(_localctx, _startState, RULE_expr); - setState(485); + setState(495); if (!(precpred(_ctx, 25))) throw new FailedPredicateException(this, "precpred(_ctx, 25)"); - setState(486); - match(T__33); - setState(487); - commaExpr(0); - setState(488); + setState(496); match(T__34); + setState(497); + commaExpr(0); + setState(498); + match(T__35); } break; case 17: { _localctx = new ExprPostModContext(new ExprContext(_parentctx, _parentState)); pushNewRecursionContext(_localctx, _startState, RULE_expr); - setState(490); + setState(500); if (!(precpred(_ctx, 22))) throw new FailedPredicateException(this, "precpred(_ctx, 22)"); - setState(491); + setState(501); _la = _input.LA(1); - if ( !(_la==T__40 || _la==T__41) ) { + if ( !(_la==T__41 || _la==T__42) ) { _errHandler.recoverInline(this); } else { @@ -3875,7 +3967,7 @@ public class KickCParser extends Parser { } } } - setState(496); + setState(506); _errHandler.sync(this); _alt = getInterpreter().adaptivePredict(_input,44,_ctx); } @@ -3920,26 +4012,26 @@ public class KickCParser extends Parser { public final ParameterListContext parameterList() throws RecognitionException { ParameterListContext _localctx = new ParameterListContext(_ctx, getState()); - enterRule(_localctx, 52, RULE_parameterList); + enterRule(_localctx, 54, RULE_parameterList); int _la; try { enterOuterAlt(_localctx, 1); { - setState(497); + setState(507); expr(0); - setState(502); + setState(512); _errHandler.sync(this); _la = _input.LA(1); - while (_la==T__2) { + while (_la==T__3) { { { - setState(498); - match(T__2); - setState(499); + setState(508); + match(T__3); + setState(509); expr(0); } } - setState(504); + setState(514); _errHandler.sync(this); _la = _input.LA(1); } @@ -3982,24 +4074,24 @@ public class KickCParser extends Parser { public final DeclKasmContext declKasm() throws RecognitionException { DeclKasmContext _localctx = new DeclKasmContext(_ctx, getState()); - enterRule(_localctx, 54, RULE_declKasm); + enterRule(_localctx, 56, RULE_declKasm); int _la; try { enterOuterAlt(_localctx, 1); { - setState(505); - match(T__72); - setState(507); + setState(515); + match(T__73); + setState(517); _errHandler.sync(this); _la = _input.LA(1); - if (_la==T__4) { + if (_la==T__5) { { - setState(506); + setState(516); asmDirectives(); } } - setState(509); + setState(519); match(KICKASM); } } @@ -4042,33 +4134,33 @@ public class KickCParser extends Parser { public final AsmDirectivesContext asmDirectives() throws RecognitionException { AsmDirectivesContext _localctx = new AsmDirectivesContext(_ctx, getState()); - enterRule(_localctx, 56, RULE_asmDirectives); + enterRule(_localctx, 58, RULE_asmDirectives); int _la; try { enterOuterAlt(_localctx, 1); { - setState(511); - match(T__4); - setState(512); + setState(521); + match(T__5); + setState(522); asmDirective(); - setState(517); + setState(527); _errHandler.sync(this); _la = _input.LA(1); - while (_la==T__2) { + while (_la==T__3) { { { - setState(513); - match(T__2); - setState(514); + setState(523); + match(T__3); + setState(524); asmDirective(); } } - setState(519); + setState(529); _errHandler.sync(this); _la = _input.LA(1); } - setState(520); - match(T__5); + setState(530); + match(T__6); } } catch (RecognitionException re) { @@ -4204,80 +4296,79 @@ public class KickCParser extends Parser { public final AsmDirectiveContext asmDirective() throws RecognitionException { AsmDirectiveContext _localctx = new AsmDirectiveContext(_ctx, getState()); - enterRule(_localctx, 58, RULE_asmDirective); + enterRule(_localctx, 60, RULE_asmDirective); try { - setState(537); + setState(547); _errHandler.sync(this); switch (_input.LA(1)) { - case T__73: + case T__74: _localctx = new AsmDirectiveResourceContext(_localctx); enterOuterAlt(_localctx, 1); { - setState(522); - match(T__73); - setState(523); - match(STRING); - } - break; - case T__74: - _localctx = new AsmDirectiveUsesContext(_localctx); - enterOuterAlt(_localctx, 2); - { - setState(524); + setState(532); match(T__74); - setState(525); - match(NAME); + setState(533); + match(STRING); } break; case T__75: - _localctx = new AsmDirectiveClobberContext(_localctx); - enterOuterAlt(_localctx, 3); + _localctx = new AsmDirectiveUsesContext(_localctx); + enterOuterAlt(_localctx, 2); { - setState(526); + setState(534); match(T__75); - setState(527); - match(STRING); + setState(535); + match(NAME); } break; case T__76: - _localctx = new AsmDirectiveBytesContext(_localctx); - enterOuterAlt(_localctx, 4); + _localctx = new AsmDirectiveClobberContext(_localctx); + enterOuterAlt(_localctx, 3); { - setState(528); + setState(536); match(T__76); - setState(529); - expr(0); + setState(537); + match(STRING); } break; case T__77: - _localctx = new AsmDirectiveCyclesContext(_localctx); - enterOuterAlt(_localctx, 5); + _localctx = new AsmDirectiveBytesContext(_localctx); + enterOuterAlt(_localctx, 4); { - setState(530); + setState(538); match(T__77); - setState(531); + setState(539); expr(0); } break; - case T__9: + case T__78: + _localctx = new AsmDirectiveCyclesContext(_localctx); + enterOuterAlt(_localctx, 5); + { + setState(540); + match(T__78); + setState(541); + expr(0); + } + break; + case T__10: _localctx = new AsmDirectiveAddressContext(_localctx); enterOuterAlt(_localctx, 6); { - setState(532); - match(T__9); - setState(535); + setState(542); + match(T__10); + setState(545); _errHandler.sync(this); switch (_input.LA(1)) { - case T__15: + case T__16: { - setState(533); - match(T__15); + setState(543); + match(T__16); } break; - case T__4: - case T__6: - case T__32: - case T__38: + case T__5: + case T__7: + case T__33: case T__39: case T__40: case T__41: @@ -4286,15 +4377,16 @@ public class KickCParser extends Parser { case T__44: case T__45: case T__46: - case T__51: + case T__47: case T__52: + case T__53: case STRING: case CHAR: case BOOLEAN: case NUMBER: case NAME: { - setState(534); + setState(544); expr(0); } break; @@ -4346,22 +4438,22 @@ public class KickCParser extends Parser { public final AsmLinesContext asmLines() throws RecognitionException { AsmLinesContext _localctx = new AsmLinesContext(_ctx, getState()); - enterRule(_localctx, 60, RULE_asmLines); + enterRule(_localctx, 62, RULE_asmLines); int _la; try { enterOuterAlt(_localctx, 1); { - setState(542); + setState(552); _errHandler.sync(this); _la = _input.LA(1); - while (((((_la - 45)) & ~0x3f) == 0 && ((1L << (_la - 45)) & ((1L << (T__44 - 45)) | (1L << (T__78 - 45)) | (1L << (MNEMONIC - 45)) | (1L << (NAME - 45)))) != 0)) { + while (((((_la - 46)) & ~0x3f) == 0 && ((1L << (_la - 46)) & ((1L << (T__45 - 46)) | (1L << (T__79 - 46)) | (1L << (MNEMONIC - 46)) | (1L << (NAME - 46)))) != 0)) { { { - setState(539); + setState(549); asmLine(); } } - setState(544); + setState(554); _errHandler.sync(this); _la = _input.LA(1); } @@ -4409,30 +4501,30 @@ public class KickCParser extends Parser { public final AsmLineContext asmLine() throws RecognitionException { AsmLineContext _localctx = new AsmLineContext(_ctx, getState()); - enterRule(_localctx, 62, RULE_asmLine); + enterRule(_localctx, 64, RULE_asmLine); try { - setState(548); + setState(558); _errHandler.sync(this); switch (_input.LA(1)) { - case T__44: + case T__45: case NAME: enterOuterAlt(_localctx, 1); { - setState(545); + setState(555); asmLabel(); } break; case MNEMONIC: enterOuterAlt(_localctx, 2); { - setState(546); + setState(556); asmInstruction(); } break; - case T__78: + case T__79: enterOuterAlt(_localctx, 3); { - setState(547); + setState(557); asmBytes(); } break; @@ -4499,40 +4591,40 @@ public class KickCParser extends Parser { public final AsmLabelContext asmLabel() throws RecognitionException { AsmLabelContext _localctx = new AsmLabelContext(_ctx, getState()); - enterRule(_localctx, 64, RULE_asmLabel); + enterRule(_localctx, 66, RULE_asmLabel); int _la; try { - setState(557); + setState(567); _errHandler.sync(this); switch (_input.LA(1)) { case NAME: _localctx = new AsmLabelNameContext(_localctx); enterOuterAlt(_localctx, 1); { - setState(550); + setState(560); match(NAME); - setState(551); - match(T__28); + setState(561); + match(T__29); } break; - case T__44: + case T__45: _localctx = new AsmLabelMultiContext(_localctx); enterOuterAlt(_localctx, 2); { - setState(552); - match(T__44); - setState(554); + setState(562); + match(T__45); + setState(564); _errHandler.sync(this); _la = _input.LA(1); if (_la==NAME) { { - setState(553); + setState(563); match(NAME); } } - setState(556); - match(T__28); + setState(566); + match(T__29); } break; default: @@ -4576,18 +4668,18 @@ public class KickCParser extends Parser { public final AsmInstructionContext asmInstruction() throws RecognitionException { AsmInstructionContext _localctx = new AsmInstructionContext(_ctx, getState()); - enterRule(_localctx, 66, RULE_asmInstruction); + enterRule(_localctx, 68, RULE_asmInstruction); try { enterOuterAlt(_localctx, 1); { - setState(559); + setState(569); match(MNEMONIC); - setState(561); + setState(571); _errHandler.sync(this); switch ( getInterpreter().adaptivePredict(_input,54,_ctx) ) { case 1: { - setState(560); + setState(570); asmParamMode(); } break; @@ -4633,28 +4725,28 @@ public class KickCParser extends Parser { public final AsmBytesContext asmBytes() throws RecognitionException { AsmBytesContext _localctx = new AsmBytesContext(_ctx, getState()); - enterRule(_localctx, 68, RULE_asmBytes); + enterRule(_localctx, 70, RULE_asmBytes); int _la; try { enterOuterAlt(_localctx, 1); { - setState(563); - match(T__78); - setState(564); + setState(573); + match(T__79); + setState(574); asmExpr(0); - setState(569); + setState(579); _errHandler.sync(this); _la = _input.LA(1); - while (_la==T__2) { + while (_la==T__3) { { { - setState(565); - match(T__2); - setState(566); + setState(575); + match(T__3); + setState(576); asmExpr(0); } } - setState(571); + setState(581); _errHandler.sync(this); _la = _input.LA(1); } @@ -4802,16 +4894,16 @@ public class KickCParser extends Parser { public final AsmParamModeContext asmParamMode() throws RecognitionException { AsmParamModeContext _localctx = new AsmParamModeContext(_ctx, getState()); - enterRule(_localctx, 70, RULE_asmParamMode); + enterRule(_localctx, 72, RULE_asmParamMode); try { - setState(595); + setState(605); _errHandler.sync(this); switch ( getInterpreter().adaptivePredict(_input,56,_ctx) ) { case 1: _localctx = new AsmModeAbsContext(_localctx); enterOuterAlt(_localctx, 1); { - setState(572); + setState(582); asmExpr(0); } break; @@ -4819,9 +4911,9 @@ public class KickCParser extends Parser { _localctx = new AsmModeImmContext(_localctx); enterOuterAlt(_localctx, 2); { - setState(573); - match(T__8); - setState(574); + setState(583); + match(T__9); + setState(584); asmExpr(0); } break; @@ -4829,11 +4921,11 @@ public class KickCParser extends Parser { _localctx = new AsmModeAbsXYContext(_localctx); enterOuterAlt(_localctx, 3); { - setState(575); + setState(585); asmExpr(0); - setState(576); - match(T__2); - setState(577); + setState(586); + match(T__3); + setState(587); match(NAME); } break; @@ -4841,15 +4933,15 @@ public class KickCParser extends Parser { _localctx = new AsmModeIndIdxXYContext(_localctx); enterOuterAlt(_localctx, 4); { - setState(579); - match(T__4); - setState(580); - asmExpr(0); - setState(581); + setState(589); match(T__5); - setState(582); - match(T__2); - setState(583); + setState(590); + asmExpr(0); + setState(591); + match(T__6); + setState(592); + match(T__3); + setState(593); match(NAME); } break; @@ -4857,28 +4949,28 @@ public class KickCParser extends Parser { _localctx = new AsmModeIdxIndXYContext(_localctx); enterOuterAlt(_localctx, 5); { - setState(585); - match(T__4); - setState(586); - asmExpr(0); - setState(587); - match(T__2); - setState(588); - match(NAME); - setState(589); + setState(595); match(T__5); + setState(596); + asmExpr(0); + setState(597); + match(T__3); + setState(598); + match(NAME); + setState(599); + match(T__6); } break; case 6: _localctx = new AsmModeIndContext(_localctx); enterOuterAlt(_localctx, 6); { - setState(591); - match(T__4); - setState(592); - asmExpr(0); - setState(593); + setState(601); match(T__5); + setState(602); + asmExpr(0); + setState(603); + match(T__6); } break; } @@ -5060,41 +5152,41 @@ public class KickCParser extends Parser { int _parentState = getState(); AsmExprContext _localctx = new AsmExprContext(_ctx, _parentState); AsmExprContext _prevctx = _localctx; - int _startState = 72; - enterRecursionRule(_localctx, 72, RULE_asmExpr, _p); + int _startState = 74; + enterRecursionRule(_localctx, 74, RULE_asmExpr, _p); int _la; try { int _alt; enterOuterAlt(_localctx, 1); { - setState(611); + setState(621); _errHandler.sync(this); switch (_input.LA(1)) { - case T__33: + case T__34: { _localctx = new AsmExprParContext(_localctx); _ctx = _localctx; _prevctx = _localctx; - setState(598); - match(T__33); - setState(599); - asmExpr(0); - setState(600); + setState(608); match(T__34); + setState(609); + asmExpr(0); + setState(610); + match(T__35); } break; - case T__42: case T__43: - case T__51: + case T__44: case T__52: + case T__53: { _localctx = new AsmExprUnaryContext(_localctx); _ctx = _localctx; _prevctx = _localctx; - setState(602); + setState(612); _la = _input.LA(1); - if ( !((((_la) & ~0x3f) == 0 && ((1L << _la) & ((1L << T__42) | (1L << T__43) | (1L << T__51) | (1L << T__52))) != 0)) ) { + if ( !((((_la) & ~0x3f) == 0 && ((1L << _la) & ((1L << T__43) | (1L << T__44) | (1L << T__52) | (1L << T__53))) != 0)) ) { _errHandler.recoverInline(this); } else { @@ -5102,7 +5194,7 @@ public class KickCParser extends Parser { _errHandler.reportMatch(this); consume(); } - setState(603); + setState(613); asmExpr(8); } break; @@ -5111,7 +5203,7 @@ public class KickCParser extends Parser { _localctx = new AsmExprLabelContext(_localctx); _ctx = _localctx; _prevctx = _localctx; - setState(604); + setState(614); match(NAME); } break; @@ -5120,21 +5212,21 @@ public class KickCParser extends Parser { _localctx = new AsmExprLabelRelContext(_localctx); _ctx = _localctx; _prevctx = _localctx; - setState(605); + setState(615); match(ASMREL); } break; - case T__6: + case T__7: { _localctx = new AsmExprReplaceContext(_localctx); _ctx = _localctx; _prevctx = _localctx; - setState(606); - match(T__6); - setState(607); - match(NAME); - setState(608); + setState(616); match(T__7); + setState(617); + match(NAME); + setState(618); + match(T__8); } break; case NUMBER: @@ -5142,7 +5234,7 @@ public class KickCParser extends Parser { _localctx = new AsmExprIntContext(_localctx); _ctx = _localctx; _prevctx = _localctx; - setState(609); + setState(619); match(NUMBER); } break; @@ -5151,7 +5243,7 @@ public class KickCParser extends Parser { _localctx = new AsmExprCharContext(_localctx); _ctx = _localctx; _prevctx = _localctx; - setState(610); + setState(620); match(CHAR); } break; @@ -5159,7 +5251,7 @@ public class KickCParser extends Parser { throw new NoViableAltException(this); } _ctx.stop = _input.LT(-1); - setState(627); + setState(637); _errHandler.sync(this); _alt = getInterpreter().adaptivePredict(_input,59,_ctx); while ( _alt!=2 && _alt!=org.antlr.v4.runtime.atn.ATN.INVALID_ALT_NUMBER ) { @@ -5167,20 +5259,20 @@ public class KickCParser extends Parser { if ( _parseListeners!=null ) triggerExitRuleEvent(); _prevctx = _localctx; { - setState(625); + setState(635); _errHandler.sync(this); switch ( getInterpreter().adaptivePredict(_input,58,_ctx) ) { case 1: { _localctx = new AsmExprBinaryContext(new AsmExprContext(_parentctx, _parentState)); pushNewRecursionContext(_localctx, _startState, RULE_asmExpr); - setState(613); + setState(623); if (!(precpred(_ctx, 10))) throw new FailedPredicateException(this, "precpred(_ctx, 10)"); { - setState(614); - match(T__36); + setState(624); + match(T__37); } - setState(615); + setState(625); asmExpr(11); } break; @@ -5188,11 +5280,11 @@ public class KickCParser extends Parser { { _localctx = new AsmExprBinaryContext(new AsmExprContext(_parentctx, _parentState)); pushNewRecursionContext(_localctx, _startState, RULE_asmExpr); - setState(616); + setState(626); if (!(precpred(_ctx, 9))) throw new FailedPredicateException(this, "precpred(_ctx, 9)"); - setState(617); + setState(627); _la = _input.LA(1); - if ( !(_la==T__47 || _la==T__48) ) { + if ( !(_la==T__48 || _la==T__49) ) { _errHandler.recoverInline(this); } else { @@ -5200,7 +5292,7 @@ public class KickCParser extends Parser { _errHandler.reportMatch(this); consume(); } - setState(618); + setState(628); asmExpr(10); } break; @@ -5208,11 +5300,11 @@ public class KickCParser extends Parser { { _localctx = new AsmExprBinaryContext(new AsmExprContext(_parentctx, _parentState)); pushNewRecursionContext(_localctx, _startState, RULE_asmExpr); - setState(619); + setState(629); if (!(precpred(_ctx, 7))) throw new FailedPredicateException(this, "precpred(_ctx, 7)"); - setState(620); + setState(630); _la = _input.LA(1); - if ( !(_la==T__32 || _la==T__49) ) { + if ( !(_la==T__33 || _la==T__50) ) { _errHandler.recoverInline(this); } else { @@ -5220,7 +5312,7 @@ public class KickCParser extends Parser { _errHandler.reportMatch(this); consume(); } - setState(621); + setState(631); asmExpr(8); } break; @@ -5228,11 +5320,11 @@ public class KickCParser extends Parser { { _localctx = new AsmExprBinaryContext(new AsmExprContext(_parentctx, _parentState)); pushNewRecursionContext(_localctx, _startState, RULE_asmExpr); - setState(622); + setState(632); if (!(precpred(_ctx, 6))) throw new FailedPredicateException(this, "precpred(_ctx, 6)"); - setState(623); + setState(633); _la = _input.LA(1); - if ( !(_la==T__42 || _la==T__43) ) { + if ( !(_la==T__43 || _la==T__44) ) { _errHandler.recoverInline(this); } else { @@ -5240,14 +5332,14 @@ public class KickCParser extends Parser { _errHandler.reportMatch(this); consume(); } - setState(624); + setState(634); asmExpr(7); } break; } } } - setState(629); + setState(639); _errHandler.sync(this); _alt = getInterpreter().adaptivePredict(_input,59,_ctx); } @@ -5266,15 +5358,15 @@ public class KickCParser extends Parser { public boolean sempred(RuleContext _localctx, int ruleIndex, int predIndex) { switch (ruleIndex) { - case 8: + case 9: return declVariableList_sempred((DeclVariableListContext)_localctx, predIndex); - case 20: + case 21: return typeDecl_sempred((TypeDeclContext)_localctx, predIndex); - case 24: - return commaExpr_sempred((CommaExprContext)_localctx, predIndex); case 25: + return commaExpr_sempred((CommaExprContext)_localctx, predIndex); + case 26: return expr_sempred((ExprContext)_localctx, predIndex); - case 36: + case 37: return asmExpr_sempred((AsmExprContext)_localctx, predIndex); } return true; @@ -5289,11 +5381,11 @@ public class KickCParser extends Parser { private boolean typeDecl_sempred(TypeDeclContext _localctx, int predIndex) { switch (predIndex) { case 1: - return precpred(_ctx, 5); + return precpred(_ctx, 6); case 2: - return precpred(_ctx, 4); + return precpred(_ctx, 5); case 3: - return precpred(_ctx, 3); + return precpred(_ctx, 4); } return true; } @@ -5358,254 +5450,258 @@ public class KickCParser extends Parser { } public static final String _serializedATN = - "\3\u608b\ua72a\u8133\ub9ed\u417c\u3be7\u7786\u5964\3e\u0279\4\2\t\2\4"+ + "\3\u608b\ua72a\u8133\ub9ed\u417c\u3be7\u7786\u5964\3f\u0283\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"+ "\4\32\t\32\4\33\t\33\4\34\t\34\4\35\t\35\4\36\t\36\4\37\t\37\4 \t \4!"+ - "\t!\4\"\t\"\4#\t#\4$\t$\4%\t%\4&\t&\3\2\3\2\3\2\3\2\3\3\3\3\3\3\3\4\7"+ - "\4U\n\4\f\4\16\4X\13\4\3\5\3\5\3\5\3\6\6\6^\n\6\r\6\16\6_\3\7\3\7\3\7"+ - "\3\7\3\7\3\7\3\7\3\7\3\7\5\7k\n\7\3\b\7\bn\n\b\f\b\16\bq\13\b\3\b\3\b"+ - "\7\bu\n\b\f\b\16\bx\13\b\3\t\3\t\3\t\3\n\3\n\3\n\3\n\3\n\3\n\7\n\u0083"+ - "\n\n\f\n\16\n\u0086\13\n\3\13\3\13\3\13\5\13\u008b\n\13\3\f\3\f\3\f\3"+ - "\f\5\f\u0091\n\f\3\f\3\f\3\f\5\f\u0096\n\f\3\f\3\f\3\r\3\r\3\r\7\r\u009d"+ - "\n\r\f\r\16\r\u00a0\13\r\3\16\3\16\3\16\3\16\5\16\u00a6\n\16\3\17\3\17"+ - "\3\17\3\17\3\17\3\17\3\17\3\17\3\17\3\17\3\17\3\17\5\17\u00b4\n\17\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\u00c6\n\20\3\20\5\20\u00c9\n\20\3\21\3\21\3\21\3\21\3\21\7"+ - "\21\u00d0\n\21\f\21\16\21\u00d3\13\21\3\21\3\21\3\22\6\22\u00d8\n\22\r"+ - "\22\16\22\u00d9\3\23\3\23\3\23\3\23\3\23\5\23\u00e1\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\u00ee\n\23\3\23\7\23\u00f1"+ - "\n\23\f\23\16\23\u00f4\13\23\3\23\3\23\3\23\3\23\3\23\3\23\3\23\7\23\u00fd"+ - "\n\23\f\23\16\23\u0100\13\23\3\23\3\23\3\23\3\23\3\23\3\23\3\23\3\23\3"+ - "\23\7\23\u010b\n\23\f\23\16\23\u010e\13\23\3\23\3\23\3\23\3\23\3\23\3"+ - "\23\3\23\3\23\5\23\u0118\n\23\3\23\3\23\3\23\3\23\3\23\3\23\3\23\5\23"+ - "\u0121\n\23\3\23\3\23\3\23\3\23\3\23\5\23\u0128\n\23\3\24\3\24\3\24\3"+ - "\24\3\24\5\24\u012f\n\24\3\24\5\24\u0132\n\24\3\24\3\24\3\24\3\24\3\24"+ - "\3\24\5\24\u013a\n\24\3\25\5\25\u013d\n\25\3\25\5\25\u0140\n\25\3\26\3"+ - "\26\3\26\3\26\3\26\3\26\3\26\3\26\5\26\u014a\n\26\3\26\3\26\5\26\u014e"+ - "\n\26\3\26\3\26\3\26\3\26\3\26\5\26\u0155\n\26\3\26\3\26\3\26\3\26\7\26"+ - "\u015b\n\26\f\26\16\26\u015e\13\26\3\27\3\27\3\27\3\30\3\30\5\30\u0165"+ - "\n\30\3\30\3\30\6\30\u0169\n\30\r\30\16\30\u016a\3\30\3\30\3\31\3\31\3"+ - "\31\3\32\3\32\3\32\3\32\3\32\3\32\7\32\u0178\n\32\f\32\16\32\u017b\13"+ - "\32\3\33\3\33\3\33\3\33\3\33\3\33\3\33\3\33\3\33\5\33\u0186\n\33\3\33"+ - "\3\33\3\33\3\33\3\33\3\33\5\33\u018e\n\33\3\33\3\33\3\33\3\33\3\33\3\33"+ - "\3\33\3\33\3\33\3\33\3\33\3\33\3\33\3\33\3\33\3\33\3\33\3\33\3\33\7\33"+ - "\u01a3\n\33\f\33\16\33\u01a6\13\33\3\33\3\33\3\33\3\33\3\33\6\33\u01ad"+ - "\n\33\r\33\16\33\u01ae\3\33\3\33\5\33\u01b3\n\33\3\33\3\33\3\33\3\33\3"+ - "\33\3\33\3\33\3\33\3\33\3\33\3\33\3\33\3\33\3\33\3\33\3\33\3\33\3\33\3"+ - "\33\3\33\3\33\3\33\3\33\3\33\3\33\3\33\3\33\3\33\3\33\3\33\3\33\3\33\3"+ - "\33\3\33\3\33\3\33\3\33\3\33\3\33\3\33\3\33\3\33\3\33\3\33\3\33\3\33\3"+ - "\33\3\33\5\33\u01e5\n\33\3\33\3\33\3\33\3\33\3\33\3\33\3\33\3\33\7\33"+ - "\u01ef\n\33\f\33\16\33\u01f2\13\33\3\34\3\34\3\34\7\34\u01f7\n\34\f\34"+ - "\16\34\u01fa\13\34\3\35\3\35\5\35\u01fe\n\35\3\35\3\35\3\36\3\36\3\36"+ - "\3\36\7\36\u0206\n\36\f\36\16\36\u0209\13\36\3\36\3\36\3\37\3\37\3\37"+ - "\3\37\3\37\3\37\3\37\3\37\3\37\3\37\3\37\3\37\3\37\5\37\u021a\n\37\5\37"+ - "\u021c\n\37\3 \7 \u021f\n \f \16 \u0222\13 \3!\3!\3!\5!\u0227\n!\3\"\3"+ - "\"\3\"\3\"\5\"\u022d\n\"\3\"\5\"\u0230\n\"\3#\3#\5#\u0234\n#\3$\3$\3$"+ - "\3$\7$\u023a\n$\f$\16$\u023d\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%\u0256\n%\3&\3&\3&\3&\3&\3&\3&\3&\3"+ - "&\3&\3&\3&\3&\3&\5&\u0266\n&\3&\3&\3&\3&\3&\3&\3&\3&\3&\3&\3&\3&\7&\u0274"+ - "\n&\f&\16&\u0277\13&\3&\2\7\22*\62\64J\'\2\4\6\b\n\f\16\20\22\24\26\30"+ - "\32\34\36 \"$&(*,.\60\62\64\668:<>@BDFHJ\2\r\3\2!\"\3\2+,\3\2-\61\3\2"+ - "\66\67\3\2\62\63\4\2##\64\65\3\2-.\3\2\66;\3\2AJ\4\2-.\66\67\4\2##\64"+ - "\64\2\u02d2\2L\3\2\2\2\4P\3\2\2\2\6V\3\2\2\2\bY\3\2\2\2\n]\3\2\2\2\fj"+ - "\3\2\2\2\16o\3\2\2\2\20y\3\2\2\2\22|\3\2\2\2\24\u0087\3\2\2\2\26\u008c"+ - "\3\2\2\2\30\u0099\3\2\2\2\32\u00a5\3\2\2\2\34\u00b3\3\2\2\2\36\u00c8\3"+ - "\2\2\2 \u00ca\3\2\2\2\"\u00d7\3\2\2\2$\u0127\3\2\2\2&\u0139\3\2\2\2(\u013f"+ - "\3\2\2\2*\u014d\3\2\2\2,\u015f\3\2\2\2.\u0162\3\2\2\2\60\u016e\3\2\2\2"+ - "\62\u0171\3\2\2\2\64\u01b2\3\2\2\2\66\u01f3\3\2\2\28\u01fb\3\2\2\2:\u0201"+ - "\3\2\2\2<\u021b\3\2\2\2>\u0220\3\2\2\2@\u0226\3\2\2\2B\u022f\3\2\2\2D"+ - "\u0231\3\2\2\2F\u0235\3\2\2\2H\u0255\3\2\2\2J\u0265\3\2\2\2LM\5\6\4\2"+ - "MN\5\n\6\2NO\7\2\2\3O\3\3\2\2\2PQ\5> \2QR\7\2\2\3R\5\3\2\2\2SU\5\b\5\2"+ - "TS\3\2\2\2UX\3\2\2\2VT\3\2\2\2VW\3\2\2\2W\7\3\2\2\2XV\3\2\2\2YZ\7\3\2"+ - "\2Z[\7U\2\2[\t\3\2\2\2\\^\5\f\7\2]\\\3\2\2\2^_\3\2\2\2_]\3\2\2\2_`\3\2"+ - "\2\2`\13\3\2\2\2ab\5\20\t\2bc\7\4\2\2ck\3\2\2\2de\5.\30\2ef\7\4\2\2fk"+ - "\3\2\2\2gk\5\26\f\2hk\58\35\2ik\5\34\17\2ja\3\2\2\2jd\3\2\2\2jg\3\2\2"+ - "\2jh\3\2\2\2ji\3\2\2\2k\r\3\2\2\2ln\5\36\20\2ml\3\2\2\2nq\3\2\2\2om\3"+ - "\2\2\2op\3\2\2\2pr\3\2\2\2qo\3\2\2\2rv\5*\26\2su\5\36\20\2ts\3\2\2\2u"+ - "x\3\2\2\2vt\3\2\2\2vw\3\2\2\2w\17\3\2\2\2xv\3\2\2\2yz\5\16\b\2z{\5\22"+ - "\n\2{\21\3\2\2\2|}\b\n\1\2}~\5\24\13\2~\u0084\3\2\2\2\177\u0080\f\3\2"+ - "\2\u0080\u0081\7\5\2\2\u0081\u0083\5\24\13\2\u0082\177\3\2\2\2\u0083\u0086"+ - "\3\2\2\2\u0084\u0082\3\2\2\2\u0084\u0085\3\2\2\2\u0085\23\3\2\2\2\u0086"+ - "\u0084\3\2\2\2\u0087\u008a\7a\2\2\u0088\u0089\7\6\2\2\u0089\u008b\5\64"+ - "\33\2\u008a\u0088\3\2\2\2\u008a\u008b\3\2\2\2\u008b\25\3\2\2\2\u008c\u008d"+ - "\5\16\b\2\u008d\u008e\7a\2\2\u008e\u0090\7\7\2\2\u008f\u0091\5\30\r\2"+ - "\u0090\u008f\3\2\2\2\u0090\u0091\3\2\2\2\u0091\u0092\3\2\2\2\u0092\u0093"+ - "\7\b\2\2\u0093\u0095\7\t\2\2\u0094\u0096\5\"\22\2\u0095\u0094\3\2\2\2"+ - "\u0095\u0096\3\2\2\2\u0096\u0097\3\2\2\2\u0097\u0098\7\n\2\2\u0098\27"+ - "\3\2\2\2\u0099\u009e\5\32\16\2\u009a\u009b\7\5\2\2\u009b\u009d\5\32\16"+ - "\2\u009c\u009a\3\2\2\2\u009d\u00a0\3\2\2\2\u009e\u009c\3\2\2\2\u009e\u009f"+ - "\3\2\2\2\u009f\31\3\2\2\2\u00a0\u009e\3\2\2\2\u00a1\u00a2\5\16\b\2\u00a2"+ - "\u00a3\7a\2\2\u00a3\u00a6\3\2\2\2\u00a4\u00a6\7T\2\2\u00a5\u00a1\3\2\2"+ - "\2\u00a5\u00a4\3\2\2\2\u00a6\33\3\2\2\2\u00a7\u00a8\7\13\2\2\u00a8\u00b4"+ - "\5 \21\2\u00a9\u00aa\7\13\2\2\u00aa\u00ab\7\f\2\2\u00ab\u00ac\7\7\2\2"+ - "\u00ac\u00ad\7X\2\2\u00ad\u00b4\7\b\2\2\u00ae\u00af\7\13\2\2\u00af\u00b0"+ - "\7\r\2\2\u00b0\u00b1\7\7\2\2\u00b1\u00b2\7a\2\2\u00b2\u00b4\7\b\2\2\u00b3"+ - "\u00a7\3\2\2\2\u00b3\u00a9\3\2\2\2\u00b3\u00ae\3\2\2\2\u00b4\35\3\2\2"+ - "\2\u00b5\u00c9\7\16\2\2\u00b6\u00c9\7\17\2\2\u00b7\u00b8\7\20\2\2\u00b8"+ - "\u00b9\7\7\2\2\u00b9\u00ba\7X\2\2\u00ba\u00c9\7\b\2\2\u00bb\u00bc\7\21"+ - "\2\2\u00bc\u00bd\7\7\2\2\u00bd\u00be\7a\2\2\u00be\u00c9\7\b\2\2\u00bf"+ - "\u00c9\7\22\2\2\u00c0\u00c9\7\23\2\2\u00c1\u00c5\7\24\2\2\u00c2\u00c3"+ - "\7\7\2\2\u00c3\u00c4\7a\2\2\u00c4\u00c6\7\b\2\2\u00c5\u00c2\3\2\2\2\u00c5"+ - "\u00c6\3\2\2\2\u00c6\u00c9\3\2\2\2\u00c7\u00c9\5 \21\2\u00c8\u00b5\3\2"+ - "\2\2\u00c8\u00b6\3\2\2\2\u00c8\u00b7\3\2\2\2\u00c8\u00bb\3\2\2\2\u00c8"+ - "\u00bf\3\2\2\2\u00c8\u00c0\3\2\2\2\u00c8\u00c1\3\2\2\2\u00c8\u00c7\3\2"+ - "\2\2\u00c9\37\3\2\2\2\u00ca\u00cb\7\25\2\2\u00cb\u00cc\7\7\2\2\u00cc\u00d1"+ - "\7X\2\2\u00cd\u00ce\7\5\2\2\u00ce\u00d0\7X\2\2\u00cf\u00cd\3\2\2\2\u00d0"+ - "\u00d3\3\2\2\2\u00d1\u00cf\3\2\2\2\u00d1\u00d2\3\2\2\2\u00d2\u00d4\3\2"+ - "\2\2\u00d3\u00d1\3\2\2\2\u00d4\u00d5\7\b\2\2\u00d5!\3\2\2\2\u00d6\u00d8"+ - "\5$\23\2\u00d7\u00d6\3\2\2\2\u00d8\u00d9\3\2\2\2\u00d9\u00d7\3\2\2\2\u00d9"+ - "\u00da\3\2\2\2\u00da#\3\2\2\2\u00db\u00dc\5\20\t\2\u00dc\u00dd\7\4\2\2"+ - "\u00dd\u0128\3\2\2\2\u00de\u00e0\7\t\2\2\u00df\u00e1\5\"\22\2\u00e0\u00df"+ - "\3\2\2\2\u00e0\u00e1\3\2\2\2\u00e1\u00e2\3\2\2\2\u00e2\u0128\7\n\2\2\u00e3"+ - "\u00e4\5\62\32\2\u00e4\u00e5\7\4\2\2\u00e5\u0128\3\2\2\2\u00e6\u00e7\7"+ - "\26\2\2\u00e7\u00e8\7\7\2\2\u00e8\u00e9\5\62\32\2\u00e9\u00ea\7\b\2\2"+ - "\u00ea\u00ed\5$\23\2\u00eb\u00ec\7\27\2\2\u00ec\u00ee\5$\23\2\u00ed\u00eb"+ - "\3\2\2\2\u00ed\u00ee\3\2\2\2\u00ee\u0128\3\2\2\2\u00ef\u00f1\5\36\20\2"+ - "\u00f0\u00ef\3\2\2\2\u00f1\u00f4\3\2\2\2\u00f2\u00f0\3\2\2\2\u00f2\u00f3"+ - "\3\2\2\2\u00f3\u00f5\3\2\2\2\u00f4\u00f2\3\2\2\2\u00f5\u00f6\7\30\2\2"+ - "\u00f6\u00f7\7\7\2\2\u00f7\u00f8\5\62\32\2\u00f8\u00f9\7\b\2\2\u00f9\u00fa"+ - "\5$\23\2\u00fa\u0128\3\2\2\2\u00fb\u00fd\5\36\20\2\u00fc\u00fb\3\2\2\2"+ - "\u00fd\u0100\3\2\2\2\u00fe\u00fc\3\2\2\2\u00fe\u00ff\3\2\2\2\u00ff\u0101"+ - "\3\2\2\2\u0100\u00fe\3\2\2\2\u0101\u0102\7\31\2\2\u0102\u0103\5$\23\2"+ - "\u0103\u0104\7\30\2\2\u0104\u0105\7\7\2\2\u0105\u0106\5\62\32\2\u0106"+ - "\u0107\7\b\2\2\u0107\u0108\7\4\2\2\u0108\u0128\3\2\2\2\u0109\u010b\5\36"+ - "\20\2\u010a\u0109\3\2\2\2\u010b\u010e\3\2\2\2\u010c\u010a\3\2\2\2\u010c"+ - "\u010d\3\2\2\2\u010d\u010f\3\2\2\2\u010e\u010c\3\2\2\2\u010f\u0110\7\32"+ - "\2\2\u0110\u0111\7\7\2\2\u0111\u0112\5&\24\2\u0112\u0113\7\b\2\2\u0113"+ - "\u0114\5$\23\2\u0114\u0128\3\2\2\2\u0115\u0117\7\33\2\2\u0116\u0118\5"+ - "\62\32\2\u0117\u0116\3\2\2\2\u0117\u0118\3\2\2\2\u0118\u0119\3\2\2\2\u0119"+ - "\u0128\7\4\2\2\u011a\u011b\7\34\2\2\u011b\u0128\7\4\2\2\u011c\u011d\7"+ - "\35\2\2\u011d\u0128\7\4\2\2\u011e\u0120\7\36\2\2\u011f\u0121\5:\36\2\u0120"+ - "\u011f\3\2\2\2\u0120\u0121\3\2\2\2\u0121\u0122\3\2\2\2\u0122\u0123\7\t"+ - "\2\2\u0123\u0124\5> \2\u0124\u0125\7\n\2\2\u0125\u0128\3\2\2\2\u0126\u0128"+ - "\58\35\2\u0127\u00db\3\2\2\2\u0127\u00de\3\2\2\2\u0127\u00e3\3\2\2\2\u0127"+ - "\u00e6\3\2\2\2\u0127\u00f2\3\2\2\2\u0127\u00fe\3\2\2\2\u0127\u010c\3\2"+ - "\2\2\u0127\u0115\3\2\2\2\u0127\u011a\3\2\2\2\u0127\u011c\3\2\2\2\u0127"+ - "\u011e\3\2\2\2\u0127\u0126\3\2\2\2\u0128%\3\2\2\2\u0129\u012a\5(\25\2"+ - "\u012a\u012b\7\4\2\2\u012b\u012c\5\62\32\2\u012c\u012e\7\4\2\2\u012d\u012f"+ - "\5\62\32\2\u012e\u012d\3\2\2\2\u012e\u012f\3\2\2\2\u012f\u013a\3\2\2\2"+ - "\u0130\u0132\5\16\b\2\u0131\u0130\3\2\2\2\u0131\u0132\3\2\2\2\u0132\u0133"+ - "\3\2\2\2\u0133\u0134\7a\2\2\u0134\u0135\7\37\2\2\u0135\u0136\5\64\33\2"+ - "\u0136\u0137\7 \2\2\u0137\u0138\5\64\33\2\u0138\u013a\3\2\2\2\u0139\u0129"+ - "\3\2\2\2\u0139\u0131\3\2\2\2\u013a\'\3\2\2\2\u013b\u013d\5\20\t\2\u013c"+ - "\u013b\3\2\2\2\u013c\u013d\3\2\2\2\u013d\u0140\3\2\2\2\u013e\u0140\5\62"+ - "\32\2\u013f\u013c\3\2\2\2\u013f\u013e\3\2\2\2\u0140)\3\2\2\2\u0141\u0142"+ - "\b\26\1\2\u0142\u0143\7\7\2\2\u0143\u0144\5*\26\2\u0144\u0145\7\b\2\2"+ - "\u0145\u014e\3\2\2\2\u0146\u014e\7T\2\2\u0147\u0149\t\2\2\2\u0148\u014a"+ - "\7T\2\2\u0149\u0148\3\2\2\2\u0149\u014a\3\2\2\2\u014a\u014e\3\2\2\2\u014b"+ - "\u014e\5.\30\2\u014c\u014e\5,\27\2\u014d\u0141\3\2\2\2\u014d\u0146\3\2"+ - "\2\2\u014d\u0147\3\2\2\2\u014d\u014b\3\2\2\2\u014d\u014c\3\2\2\2\u014e"+ - "\u015c\3\2\2\2\u014f\u0150\f\7\2\2\u0150\u015b\7#\2\2\u0151\u0152\f\6"+ - "\2\2\u0152\u0154\7$\2\2\u0153\u0155\5\64\33\2\u0154\u0153\3\2\2\2\u0154"+ - "\u0155\3\2\2\2\u0155\u0156\3\2\2\2\u0156\u015b\7%\2\2\u0157\u0158\f\5"+ - "\2\2\u0158\u0159\7\7\2\2\u0159\u015b\7\b\2\2\u015a\u014f\3\2\2\2\u015a"+ - "\u0151\3\2\2\2\u015a\u0157\3\2\2\2\u015b\u015e\3\2\2\2\u015c\u015a\3\2"+ - "\2\2\u015c\u015d\3\2\2\2\u015d+\3\2\2\2\u015e\u015c\3\2\2\2\u015f\u0160"+ - "\7&\2\2\u0160\u0161\7a\2\2\u0161-\3\2\2\2\u0162\u0164\7&\2\2\u0163\u0165"+ - "\7a\2\2\u0164\u0163\3\2\2\2\u0164\u0165\3\2\2\2\u0165\u0166\3\2\2\2\u0166"+ - "\u0168\7\t\2\2\u0167\u0169\5\60\31\2\u0168\u0167\3\2\2\2\u0169\u016a\3"+ - "\2\2\2\u016a\u0168\3\2\2\2\u016a\u016b\3\2\2\2\u016b\u016c\3\2\2\2\u016c"+ - "\u016d\7\n\2\2\u016d/\3\2\2\2\u016e\u016f\5\20\t\2\u016f\u0170\7\4\2\2"+ - "\u0170\61\3\2\2\2\u0171\u0172\b\32\1\2\u0172\u0173\5\64\33\2\u0173\u0179"+ - "\3\2\2\2\u0174\u0175\f\3\2\2\u0175\u0176\7\5\2\2\u0176\u0178\5\64\33\2"+ - "\u0177\u0174\3\2\2\2\u0178\u017b\3\2\2\2\u0179\u0177\3\2\2\2\u0179\u017a"+ - "\3\2\2\2\u017a\63\3\2\2\2\u017b\u0179\3\2\2\2\u017c\u017d\b\33\1\2\u017d"+ - "\u017e\7\7\2\2\u017e\u017f\5\62\32\2\u017f\u0180\7\b\2\2\u0180\u01b3\3"+ - "\2\2\2\u0181\u0182\7)\2\2\u0182\u0185\7\7\2\2\u0183\u0186\5*\26\2\u0184"+ - "\u0186\5\64\33\2\u0185\u0183\3\2\2\2\u0185\u0184\3\2\2\2\u0186\u0187\3"+ - "\2\2\2\u0187\u0188\7\b\2\2\u0188\u01b3\3\2\2\2\u0189\u018a\7*\2\2\u018a"+ - "\u018d\7\7\2\2\u018b\u018e\5*\26\2\u018c\u018e\5\64\33\2\u018d\u018b\3"+ - "\2\2\2\u018d\u018c\3\2\2\2\u018e\u018f\3\2\2\2\u018f\u0190\7\b\2\2\u0190"+ - "\u01b3\3\2\2\2\u0191\u0192\7\7\2\2\u0192\u0193\5*\26\2\u0193\u0194\7\b"+ - "\2\2\u0194\u0195\5\64\33\32\u0195\u01b3\3\2\2\2\u0196\u0197\t\3\2\2\u0197"+ - "\u01b3\5\64\33\31\u0198\u0199\7#\2\2\u0199\u01b3\5\64\33\27\u019a\u019b"+ - "\t\4\2\2\u019b\u01b3\5\64\33\26\u019c\u019d\t\5\2\2\u019d\u01b3\5\64\33"+ - "\22\u019e\u019f\7\t\2\2\u019f\u01a4\5\64\33\2\u01a0\u01a1\7\5\2\2\u01a1"+ - "\u01a3\5\64\33\2\u01a2\u01a0\3\2\2\2\u01a3\u01a6\3\2\2\2\u01a4\u01a2\3"+ - "\2\2\2\u01a4\u01a5\3\2\2\2\u01a5\u01a7\3\2\2\2\u01a6\u01a4\3\2\2\2\u01a7"+ - "\u01a8\7\n\2\2\u01a8\u01b3\3\2\2\2\u01a9\u01b3\7a\2\2\u01aa\u01b3\7X\2"+ - "\2\u01ab\u01ad\7U\2\2\u01ac\u01ab\3\2\2\2\u01ad\u01ae\3\2\2\2\u01ae\u01ac"+ - "\3\2\2\2\u01ae\u01af\3\2\2\2\u01af\u01b3\3\2\2\2\u01b0\u01b3\7V\2\2\u01b1"+ - "\u01b3\7W\2\2\u01b2\u017c\3\2\2\2\u01b2\u0181\3\2\2\2\u01b2\u0189\3\2"+ - "\2\2\u01b2\u0191\3\2\2\2\u01b2\u0196\3\2\2\2\u01b2\u0198\3\2\2\2\u01b2"+ - "\u019a\3\2\2\2\u01b2\u019c\3\2\2\2\u01b2\u019e\3\2\2\2\u01b2\u01a9\3\2"+ - "\2\2\u01b2\u01aa\3\2\2\2\u01b2\u01ac\3\2\2\2\u01b2\u01b0\3\2\2\2\u01b2"+ - "\u01b1\3\2\2\2\u01b3\u01f0\3\2\2\2\u01b4\u01b5\f\25\2\2\u01b5\u01b6\t"+ - "\6\2\2\u01b6\u01ef\5\64\33\26\u01b7\u01b8\f\24\2\2\u01b8\u01b9\t\7\2\2"+ - "\u01b9\u01ef\5\64\33\25\u01ba\u01bb\f\23\2\2\u01bb\u01bc\t\b\2\2\u01bc"+ - "\u01ef\5\64\33\24\u01bd\u01be\f\21\2\2\u01be\u01bf\t\t\2\2\u01bf\u01ef"+ - "\5\64\33\22\u01c0\u01c1\f\20\2\2\u01c1\u01c2\7\60\2\2\u01c2\u01ef\5\64"+ - "\33\21\u01c3\u01c4\f\17\2\2\u01c4\u01c5\7<\2\2\u01c5\u01ef\5\64\33\20"+ - "\u01c6\u01c7\f\16\2\2\u01c7\u01c8\7=\2\2\u01c8\u01ef\5\64\33\17\u01c9"+ - "\u01ca\f\r\2\2\u01ca\u01cb\7>\2\2\u01cb\u01ef\5\64\33\16\u01cc\u01cd\f"+ - "\f\2\2\u01cd\u01ce\7?\2\2\u01ce\u01ef\5\64\33\r\u01cf\u01d0\f\13\2\2\u01d0"+ - "\u01d1\7@\2\2\u01d1\u01d2\5\64\33\2\u01d2\u01d3\7\37\2\2\u01d3\u01d4\5"+ - "\64\33\f\u01d4\u01ef\3\2\2\2\u01d5\u01d6\f\n\2\2\u01d6\u01d7\7\6\2\2\u01d7"+ - "\u01ef\5\64\33\n\u01d8\u01d9\f\t\2\2\u01d9\u01da\t\n\2\2\u01da\u01ef\5"+ - "\64\33\t\u01db\u01dc\f \2\2\u01dc\u01dd\7\'\2\2\u01dd\u01ef\7a\2\2\u01de"+ - "\u01df\f\37\2\2\u01df\u01e0\7(\2\2\u01e0\u01ef\7a\2\2\u01e1\u01e2\f\36"+ - "\2\2\u01e2\u01e4\7\7\2\2\u01e3\u01e5\5\66\34\2\u01e4\u01e3\3\2\2\2\u01e4"+ - "\u01e5\3\2\2\2\u01e5\u01e6\3\2\2\2\u01e6\u01ef\7\b\2\2\u01e7\u01e8\f\33"+ - "\2\2\u01e8\u01e9\7$\2\2\u01e9\u01ea\5\62\32\2\u01ea\u01eb\7%\2\2\u01eb"+ - "\u01ef\3\2\2\2\u01ec\u01ed\f\30\2\2\u01ed\u01ef\t\3\2\2\u01ee\u01b4\3"+ - "\2\2\2\u01ee\u01b7\3\2\2\2\u01ee\u01ba\3\2\2\2\u01ee\u01bd\3\2\2\2\u01ee"+ - "\u01c0\3\2\2\2\u01ee\u01c3\3\2\2\2\u01ee\u01c6\3\2\2\2\u01ee\u01c9\3\2"+ - "\2\2\u01ee\u01cc\3\2\2\2\u01ee\u01cf\3\2\2\2\u01ee\u01d5\3\2\2\2\u01ee"+ - "\u01d8\3\2\2\2\u01ee\u01db\3\2\2\2\u01ee\u01de\3\2\2\2\u01ee\u01e1\3\2"+ - "\2\2\u01ee\u01e7\3\2\2\2\u01ee\u01ec\3\2\2\2\u01ef\u01f2\3\2\2\2\u01f0"+ - "\u01ee\3\2\2\2\u01f0\u01f1\3\2\2\2\u01f1\65\3\2\2\2\u01f2\u01f0\3\2\2"+ - "\2\u01f3\u01f8\5\64\33\2\u01f4\u01f5\7\5\2\2\u01f5\u01f7\5\64\33\2\u01f6"+ - "\u01f4\3\2\2\2\u01f7\u01fa\3\2\2\2\u01f8\u01f6\3\2\2\2\u01f8\u01f9\3\2"+ - "\2\2\u01f9\67\3\2\2\2\u01fa\u01f8\3\2\2\2\u01fb\u01fd\7K\2\2\u01fc\u01fe"+ - "\5:\36\2\u01fd\u01fc\3\2\2\2\u01fd\u01fe\3\2\2\2\u01fe\u01ff\3\2\2\2\u01ff"+ - "\u0200\7S\2\2\u02009\3\2\2\2\u0201\u0202\7\7\2\2\u0202\u0207\5<\37\2\u0203"+ - "\u0204\7\5\2\2\u0204\u0206\5<\37\2\u0205\u0203\3\2\2\2\u0206\u0209\3\2"+ - "\2\2\u0207\u0205\3\2\2\2\u0207\u0208\3\2\2\2\u0208\u020a\3\2\2\2\u0209"+ - "\u0207\3\2\2\2\u020a\u020b\7\b\2\2\u020b;\3\2\2\2\u020c\u020d\7L\2\2\u020d"+ - "\u021c\7U\2\2\u020e\u020f\7M\2\2\u020f\u021c\7a\2\2\u0210\u0211\7N\2\2"+ - "\u0211\u021c\7U\2\2\u0212\u0213\7O\2\2\u0213\u021c\5\64\33\2\u0214\u0215"+ - "\7P\2\2\u0215\u021c\5\64\33\2\u0216\u0219\7\f\2\2\u0217\u021a\7\22\2\2"+ - "\u0218\u021a\5\64\33\2\u0219\u0217\3\2\2\2\u0219\u0218\3\2\2\2\u021a\u021c"+ - "\3\2\2\2\u021b\u020c\3\2\2\2\u021b\u020e\3\2\2\2\u021b\u0210\3\2\2\2\u021b"+ - "\u0212\3\2\2\2\u021b\u0214\3\2\2\2\u021b\u0216\3\2\2\2\u021c=\3\2\2\2"+ - "\u021d\u021f\5@!\2\u021e\u021d\3\2\2\2\u021f\u0222\3\2\2\2\u0220\u021e"+ - "\3\2\2\2\u0220\u0221\3\2\2\2\u0221?\3\2\2\2\u0222\u0220\3\2\2\2\u0223"+ - "\u0227\5B\"\2\u0224\u0227\5D#\2\u0225\u0227\5F$\2\u0226\u0223\3\2\2\2"+ - "\u0226\u0224\3\2\2\2\u0226\u0225\3\2\2\2\u0227A\3\2\2\2\u0228\u0229\7"+ - "a\2\2\u0229\u0230\7\37\2\2\u022a\u022c\7/\2\2\u022b\u022d\7a\2\2\u022c"+ - "\u022b\3\2\2\2\u022c\u022d\3\2\2\2\u022d\u022e\3\2\2\2\u022e\u0230\7\37"+ - "\2\2\u022f\u0228\3\2\2\2\u022f\u022a\3\2\2\2\u0230C\3\2\2\2\u0231\u0233"+ - "\7R\2\2\u0232\u0234\5H%\2\u0233\u0232\3\2\2\2\u0233\u0234\3\2\2\2\u0234"+ - "E\3\2\2\2\u0235\u0236\7Q\2\2\u0236\u023b\5J&\2\u0237\u0238\7\5\2\2\u0238"+ - "\u023a\5J&\2\u0239\u0237\3\2\2\2\u023a\u023d\3\2\2\2\u023b\u0239\3\2\2"+ - "\2\u023b\u023c\3\2\2\2\u023cG\3\2\2\2\u023d\u023b\3\2\2\2\u023e\u0256"+ - "\5J&\2\u023f\u0240\7\13\2\2\u0240\u0256\5J&\2\u0241\u0242\5J&\2\u0242"+ - "\u0243\7\5\2\2\u0243\u0244\7a\2\2\u0244\u0256\3\2\2\2\u0245\u0246\7\7"+ - "\2\2\u0246\u0247\5J&\2\u0247\u0248\7\b\2\2\u0248\u0249\7\5\2\2\u0249\u024a"+ - "\7a\2\2\u024a\u0256\3\2\2\2\u024b\u024c\7\7\2\2\u024c\u024d\5J&\2\u024d"+ - "\u024e\7\5\2\2\u024e\u024f\7a\2\2\u024f\u0250\7\b\2\2\u0250\u0256\3\2"+ - "\2\2\u0251\u0252\7\7\2\2\u0252\u0253\5J&\2\u0253\u0254\7\b\2\2\u0254\u0256"+ - "\3\2\2\2\u0255\u023e\3\2\2\2\u0255\u023f\3\2\2\2\u0255\u0241\3\2\2\2\u0255"+ - "\u0245\3\2\2\2\u0255\u024b\3\2\2\2\u0255\u0251\3\2\2\2\u0256I\3\2\2\2"+ - "\u0257\u0258\b&\1\2\u0258\u0259\7$\2\2\u0259\u025a\5J&\2\u025a\u025b\7"+ - "%\2\2\u025b\u0266\3\2\2\2\u025c\u025d\t\13\2\2\u025d\u0266\5J&\n\u025e"+ - "\u0266\7a\2\2\u025f\u0266\7b\2\2\u0260\u0261\7\t\2\2\u0261\u0262\7a\2"+ - "\2\u0262\u0266\7\n\2\2\u0263\u0266\7X\2\2\u0264\u0266\7V\2\2\u0265\u0257"+ - "\3\2\2\2\u0265\u025c\3\2\2\2\u0265\u025e\3\2\2\2\u0265\u025f\3\2\2\2\u0265"+ - "\u0260\3\2\2\2\u0265\u0263\3\2\2\2\u0265\u0264\3\2\2\2\u0266\u0275\3\2"+ - "\2\2\u0267\u0268\f\f\2\2\u0268\u0269\7\'\2\2\u0269\u0274\5J&\r\u026a\u026b"+ - "\f\13\2\2\u026b\u026c\t\6\2\2\u026c\u0274\5J&\f\u026d\u026e\f\t\2\2\u026e"+ - "\u026f\t\f\2\2\u026f\u0274\5J&\n\u0270\u0271\f\b\2\2\u0271\u0272\t\b\2"+ - "\2\u0272\u0274\5J&\t\u0273\u0267\3\2\2\2\u0273\u026a\3\2\2\2\u0273\u026d"+ - "\3\2\2\2\u0273\u0270\3\2\2\2\u0274\u0277\3\2\2\2\u0275\u0273\3\2\2\2\u0275"+ - "\u0276\3\2\2\2\u0276K\3\2\2\2\u0277\u0275\3\2\2\2>V_jov\u0084\u008a\u0090"+ - "\u0095\u009e\u00a5\u00b3\u00c5\u00c8\u00d1\u00d9\u00e0\u00ed\u00f2\u00fe"+ - "\u010c\u0117\u0120\u0127\u012e\u0131\u0139\u013c\u013f\u0149\u014d\u0154"+ - "\u015a\u015c\u0164\u016a\u0179\u0185\u018d\u01a4\u01ae\u01b2\u01e4\u01ee"+ - "\u01f0\u01f8\u01fd\u0207\u0219\u021b\u0220\u0226\u022c\u022f\u0233\u023b"+ - "\u0255\u0265\u0273\u0275"; + "\t!\4\"\t\"\4#\t#\4$\t$\4%\t%\4&\t&\4\'\t\'\3\2\3\2\3\2\3\2\3\3\3\3\3"+ + "\3\3\4\7\4W\n\4\f\4\16\4Z\13\4\3\5\3\5\3\5\3\6\6\6`\n\6\r\6\16\6a\3\7"+ + "\3\7\3\7\3\7\3\7\3\7\3\7\3\7\3\7\3\7\3\7\3\7\3\7\5\7q\n\7\3\b\3\b\3\b"+ + "\3\t\7\tw\n\t\f\t\16\tz\13\t\3\t\3\t\7\t~\n\t\f\t\16\t\u0081\13\t\3\n"+ + "\3\n\3\n\3\13\3\13\3\13\3\13\3\13\3\13\7\13\u008c\n\13\f\13\16\13\u008f"+ + "\13\13\3\f\3\f\3\f\5\f\u0094\n\f\3\r\3\r\3\r\3\r\5\r\u009a\n\r\3\r\3\r"+ + "\3\r\5\r\u009f\n\r\3\r\3\r\3\16\3\16\3\16\7\16\u00a6\n\16\f\16\16\16\u00a9"+ + "\13\16\3\17\3\17\3\17\3\17\5\17\u00af\n\17\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\u00bd\n\20\3\21\3\21\3\21\3\21"+ + "\3\21\3\21\3\21\3\21\3\21\3\21\3\21\3\21\3\21\3\21\3\21\3\21\5\21\u00cf"+ + "\n\21\3\21\5\21\u00d2\n\21\3\22\3\22\3\22\3\22\3\22\7\22\u00d9\n\22\f"+ + "\22\16\22\u00dc\13\22\3\22\3\22\3\23\6\23\u00e1\n\23\r\23\16\23\u00e2"+ + "\3\24\3\24\3\24\3\24\3\24\5\24\u00ea\n\24\3\24\3\24\3\24\3\24\3\24\3\24"+ + "\3\24\3\24\3\24\3\24\3\24\5\24\u00f7\n\24\3\24\7\24\u00fa\n\24\f\24\16"+ + "\24\u00fd\13\24\3\24\3\24\3\24\3\24\3\24\3\24\3\24\7\24\u0106\n\24\f\24"+ + "\16\24\u0109\13\24\3\24\3\24\3\24\3\24\3\24\3\24\3\24\3\24\3\24\7\24\u0114"+ + "\n\24\f\24\16\24\u0117\13\24\3\24\3\24\3\24\3\24\3\24\3\24\3\24\3\24\5"+ + "\24\u0121\n\24\3\24\3\24\3\24\3\24\3\24\3\24\3\24\5\24\u012a\n\24\3\24"+ + "\3\24\3\24\3\24\3\24\5\24\u0131\n\24\3\25\3\25\3\25\3\25\3\25\5\25\u0138"+ + "\n\25\3\25\5\25\u013b\n\25\3\25\3\25\3\25\3\25\3\25\3\25\5\25\u0143\n"+ + "\25\3\26\5\26\u0146\n\26\3\26\5\26\u0149\n\26\3\27\3\27\3\27\3\27\3\27"+ + "\3\27\3\27\3\27\5\27\u0153\n\27\3\27\3\27\3\27\5\27\u0158\n\27\3\27\3"+ + "\27\3\27\3\27\3\27\5\27\u015f\n\27\3\27\3\27\3\27\3\27\7\27\u0165\n\27"+ + "\f\27\16\27\u0168\13\27\3\30\3\30\3\30\3\31\3\31\5\31\u016f\n\31\3\31"+ + "\3\31\6\31\u0173\n\31\r\31\16\31\u0174\3\31\3\31\3\32\3\32\3\32\3\33\3"+ + "\33\3\33\3\33\3\33\3\33\7\33\u0182\n\33\f\33\16\33\u0185\13\33\3\34\3"+ + "\34\3\34\3\34\3\34\3\34\3\34\3\34\3\34\5\34\u0190\n\34\3\34\3\34\3\34"+ + "\3\34\3\34\3\34\5\34\u0198\n\34\3\34\3\34\3\34\3\34\3\34\3\34\3\34\3\34"+ + "\3\34\3\34\3\34\3\34\3\34\3\34\3\34\3\34\3\34\3\34\3\34\7\34\u01ad\n\34"+ + "\f\34\16\34\u01b0\13\34\3\34\3\34\3\34\3\34\3\34\6\34\u01b7\n\34\r\34"+ + "\16\34\u01b8\3\34\3\34\5\34\u01bd\n\34\3\34\3\34\3\34\3\34\3\34\3\34\3"+ + "\34\3\34\3\34\3\34\3\34\3\34\3\34\3\34\3\34\3\34\3\34\3\34\3\34\3\34\3"+ + "\34\3\34\3\34\3\34\3\34\3\34\3\34\3\34\3\34\3\34\3\34\3\34\3\34\3\34\3"+ + "\34\3\34\3\34\3\34\3\34\3\34\3\34\3\34\3\34\3\34\3\34\3\34\3\34\3\34\5"+ + "\34\u01ef\n\34\3\34\3\34\3\34\3\34\3\34\3\34\3\34\3\34\7\34\u01f9\n\34"+ + "\f\34\16\34\u01fc\13\34\3\35\3\35\3\35\7\35\u0201\n\35\f\35\16\35\u0204"+ + "\13\35\3\36\3\36\5\36\u0208\n\36\3\36\3\36\3\37\3\37\3\37\3\37\7\37\u0210"+ + "\n\37\f\37\16\37\u0213\13\37\3\37\3\37\3 \3 \3 \3 \3 \3 \3 \3 \3 \3 \3"+ + " \3 \3 \5 \u0224\n \5 \u0226\n \3!\7!\u0229\n!\f!\16!\u022c\13!\3\"\3"+ + "\"\3\"\5\"\u0231\n\"\3#\3#\3#\3#\5#\u0237\n#\3#\5#\u023a\n#\3$\3$\5$\u023e"+ + "\n$\3%\3%\3%\3%\7%\u0244\n%\f%\16%\u0247\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&\u0260\n&\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\'\3\'\3\'\3\'\3\'\7\'\u027e\n\'\f\'\16\'\u0281\13\'\3"+ + "\'\2\7\24,\64\66L(\2\4\6\b\n\f\16\20\22\24\26\30\32\34\36 \"$&(*,.\60"+ + "\62\64\668:<>@BDFHJL\2\r\3\2\"#\3\2,-\3\2.\62\3\2\678\3\2\63\64\4\2$$"+ + "\65\66\3\2./\3\2\67<\3\2BK\4\2./\678\4\2$$\65\65\2\u02de\2N\3\2\2\2\4"+ + "R\3\2\2\2\6X\3\2\2\2\b[\3\2\2\2\n_\3\2\2\2\fp\3\2\2\2\16r\3\2\2\2\20x"+ + "\3\2\2\2\22\u0082\3\2\2\2\24\u0085\3\2\2\2\26\u0090\3\2\2\2\30\u0095\3"+ + "\2\2\2\32\u00a2\3\2\2\2\34\u00ae\3\2\2\2\36\u00bc\3\2\2\2 \u00d1\3\2\2"+ + "\2\"\u00d3\3\2\2\2$\u00e0\3\2\2\2&\u0130\3\2\2\2(\u0142\3\2\2\2*\u0148"+ + "\3\2\2\2,\u0157\3\2\2\2.\u0169\3\2\2\2\60\u016c\3\2\2\2\62\u0178\3\2\2"+ + "\2\64\u017b\3\2\2\2\66\u01bc\3\2\2\28\u01fd\3\2\2\2:\u0205\3\2\2\2<\u020b"+ + "\3\2\2\2>\u0225\3\2\2\2@\u022a\3\2\2\2B\u0230\3\2\2\2D\u0239\3\2\2\2F"+ + "\u023b\3\2\2\2H\u023f\3\2\2\2J\u025f\3\2\2\2L\u026f\3\2\2\2NO\5\6\4\2"+ + "OP\5\n\6\2PQ\7\2\2\3Q\3\3\2\2\2RS\5@!\2ST\7\2\2\3T\5\3\2\2\2UW\5\b\5\2"+ + "VU\3\2\2\2WZ\3\2\2\2XV\3\2\2\2XY\3\2\2\2Y\7\3\2\2\2ZX\3\2\2\2[\\\7\3\2"+ + "\2\\]\7V\2\2]\t\3\2\2\2^`\5\f\7\2_^\3\2\2\2`a\3\2\2\2a_\3\2\2\2ab\3\2"+ + "\2\2b\13\3\2\2\2cd\5\22\n\2de\7\4\2\2eq\3\2\2\2fg\5\60\31\2gh\7\4\2\2"+ + "hq\3\2\2\2iq\5\30\r\2jq\5\30\r\2kq\5:\36\2lq\5\36\20\2mn\5\16\b\2no\7"+ + "\4\2\2oq\3\2\2\2pc\3\2\2\2pf\3\2\2\2pi\3\2\2\2pj\3\2\2\2pk\3\2\2\2pl\3"+ + "\2\2\2pm\3\2\2\2q\r\3\2\2\2rs\7\5\2\2st\5\22\n\2t\17\3\2\2\2uw\5 \21\2"+ + "vu\3\2\2\2wz\3\2\2\2xv\3\2\2\2xy\3\2\2\2y{\3\2\2\2zx\3\2\2\2{\177\5,\27"+ + "\2|~\5 \21\2}|\3\2\2\2~\u0081\3\2\2\2\177}\3\2\2\2\177\u0080\3\2\2\2\u0080"+ + "\21\3\2\2\2\u0081\177\3\2\2\2\u0082\u0083\5\20\t\2\u0083\u0084\5\24\13"+ + "\2\u0084\23\3\2\2\2\u0085\u0086\b\13\1\2\u0086\u0087\5\26\f\2\u0087\u008d"+ + "\3\2\2\2\u0088\u0089\f\3\2\2\u0089\u008a\7\6\2\2\u008a\u008c\5\26\f\2"+ + "\u008b\u0088\3\2\2\2\u008c\u008f\3\2\2\2\u008d\u008b\3\2\2\2\u008d\u008e"+ + "\3\2\2\2\u008e\25\3\2\2\2\u008f\u008d\3\2\2\2\u0090\u0093\7b\2\2\u0091"+ + "\u0092\7\7\2\2\u0092\u0094\5\66\34\2\u0093\u0091\3\2\2\2\u0093\u0094\3"+ + "\2\2\2\u0094\27\3\2\2\2\u0095\u0096\5\20\t\2\u0096\u0097\7b\2\2\u0097"+ + "\u0099\7\b\2\2\u0098\u009a\5\32\16\2\u0099\u0098\3\2\2\2\u0099\u009a\3"+ + "\2\2\2\u009a\u009b\3\2\2\2\u009b\u009c\7\t\2\2\u009c\u009e\7\n\2\2\u009d"+ + "\u009f\5$\23\2\u009e\u009d\3\2\2\2\u009e\u009f\3\2\2\2\u009f\u00a0\3\2"+ + "\2\2\u00a0\u00a1\7\13\2\2\u00a1\31\3\2\2\2\u00a2\u00a7\5\34\17\2\u00a3"+ + "\u00a4\7\6\2\2\u00a4\u00a6\5\34\17\2\u00a5\u00a3\3\2\2\2\u00a6\u00a9\3"+ + "\2\2\2\u00a7\u00a5\3\2\2\2\u00a7\u00a8\3\2\2\2\u00a8\33\3\2\2\2\u00a9"+ + "\u00a7\3\2\2\2\u00aa\u00ab\5\20\t\2\u00ab\u00ac\7b\2\2\u00ac\u00af\3\2"+ + "\2\2\u00ad\u00af\7U\2\2\u00ae\u00aa\3\2\2\2\u00ae\u00ad\3\2\2\2\u00af"+ + "\35\3\2\2\2\u00b0\u00b1\7\f\2\2\u00b1\u00bd\5\"\22\2\u00b2\u00b3\7\f\2"+ + "\2\u00b3\u00b4\7\r\2\2\u00b4\u00b5\7\b\2\2\u00b5\u00b6\7Y\2\2\u00b6\u00bd"+ + "\7\t\2\2\u00b7\u00b8\7\f\2\2\u00b8\u00b9\7\16\2\2\u00b9\u00ba\7\b\2\2"+ + "\u00ba\u00bb\7b\2\2\u00bb\u00bd\7\t\2\2\u00bc\u00b0\3\2\2\2\u00bc\u00b2"+ + "\3\2\2\2\u00bc\u00b7\3\2\2\2\u00bd\37\3\2\2\2\u00be\u00d2\7\17\2\2\u00bf"+ + "\u00d2\7\20\2\2\u00c0\u00c1\7\21\2\2\u00c1\u00c2\7\b\2\2\u00c2\u00c3\7"+ + "Y\2\2\u00c3\u00d2\7\t\2\2\u00c4\u00c5\7\22\2\2\u00c5\u00c6\7\b\2\2\u00c6"+ + "\u00c7\7b\2\2\u00c7\u00d2\7\t\2\2\u00c8\u00d2\7\23\2\2\u00c9\u00d2\7\24"+ + "\2\2\u00ca\u00ce\7\25\2\2\u00cb\u00cc\7\b\2\2\u00cc\u00cd\7b\2\2\u00cd"+ + "\u00cf\7\t\2\2\u00ce\u00cb\3\2\2\2\u00ce\u00cf\3\2\2\2\u00cf\u00d2\3\2"+ + "\2\2\u00d0\u00d2\5\"\22\2\u00d1\u00be\3\2\2\2\u00d1\u00bf\3\2\2\2\u00d1"+ + "\u00c0\3\2\2\2\u00d1\u00c4\3\2\2\2\u00d1\u00c8\3\2\2\2\u00d1\u00c9\3\2"+ + "\2\2\u00d1\u00ca\3\2\2\2\u00d1\u00d0\3\2\2\2\u00d2!\3\2\2\2\u00d3\u00d4"+ + "\7\26\2\2\u00d4\u00d5\7\b\2\2\u00d5\u00da\7Y\2\2\u00d6\u00d7\7\6\2\2\u00d7"+ + "\u00d9\7Y\2\2\u00d8\u00d6\3\2\2\2\u00d9\u00dc\3\2\2\2\u00da\u00d8\3\2"+ + "\2\2\u00da\u00db\3\2\2\2\u00db\u00dd\3\2\2\2\u00dc\u00da\3\2\2\2\u00dd"+ + "\u00de\7\t\2\2\u00de#\3\2\2\2\u00df\u00e1\5&\24\2\u00e0\u00df\3\2\2\2"+ + "\u00e1\u00e2\3\2\2\2\u00e2\u00e0\3\2\2\2\u00e2\u00e3\3\2\2\2\u00e3%\3"+ + "\2\2\2\u00e4\u00e5\5\22\n\2\u00e5\u00e6\7\4\2\2\u00e6\u0131\3\2\2\2\u00e7"+ + "\u00e9\7\n\2\2\u00e8\u00ea\5$\23\2\u00e9\u00e8\3\2\2\2\u00e9\u00ea\3\2"+ + "\2\2\u00ea\u00eb\3\2\2\2\u00eb\u0131\7\13\2\2\u00ec\u00ed\5\64\33\2\u00ed"+ + "\u00ee\7\4\2\2\u00ee\u0131\3\2\2\2\u00ef\u00f0\7\27\2\2\u00f0\u00f1\7"+ + "\b\2\2\u00f1\u00f2\5\64\33\2\u00f2\u00f3\7\t\2\2\u00f3\u00f6\5&\24\2\u00f4"+ + "\u00f5\7\30\2\2\u00f5\u00f7\5&\24\2\u00f6\u00f4\3\2\2\2\u00f6\u00f7\3"+ + "\2\2\2\u00f7\u0131\3\2\2\2\u00f8\u00fa\5 \21\2\u00f9\u00f8\3\2\2\2\u00fa"+ + "\u00fd\3\2\2\2\u00fb\u00f9\3\2\2\2\u00fb\u00fc\3\2\2\2\u00fc\u00fe\3\2"+ + "\2\2\u00fd\u00fb\3\2\2\2\u00fe\u00ff\7\31\2\2\u00ff\u0100\7\b\2\2\u0100"+ + "\u0101\5\64\33\2\u0101\u0102\7\t\2\2\u0102\u0103\5&\24\2\u0103\u0131\3"+ + "\2\2\2\u0104\u0106\5 \21\2\u0105\u0104\3\2\2\2\u0106\u0109\3\2\2\2\u0107"+ + "\u0105\3\2\2\2\u0107\u0108\3\2\2\2\u0108\u010a\3\2\2\2\u0109\u0107\3\2"+ + "\2\2\u010a\u010b\7\32\2\2\u010b\u010c\5&\24\2\u010c\u010d\7\31\2\2\u010d"+ + "\u010e\7\b\2\2\u010e\u010f\5\64\33\2\u010f\u0110\7\t\2\2\u0110\u0111\7"+ + "\4\2\2\u0111\u0131\3\2\2\2\u0112\u0114\5 \21\2\u0113\u0112\3\2\2\2\u0114"+ + "\u0117\3\2\2\2\u0115\u0113\3\2\2\2\u0115\u0116\3\2\2\2\u0116\u0118\3\2"+ + "\2\2\u0117\u0115\3\2\2\2\u0118\u0119\7\33\2\2\u0119\u011a\7\b\2\2\u011a"+ + "\u011b\5(\25\2\u011b\u011c\7\t\2\2\u011c\u011d\5&\24\2\u011d\u0131\3\2"+ + "\2\2\u011e\u0120\7\34\2\2\u011f\u0121\5\64\33\2\u0120\u011f\3\2\2\2\u0120"+ + "\u0121\3\2\2\2\u0121\u0122\3\2\2\2\u0122\u0131\7\4\2\2\u0123\u0124\7\35"+ + "\2\2\u0124\u0131\7\4\2\2\u0125\u0126\7\36\2\2\u0126\u0131\7\4\2\2\u0127"+ + "\u0129\7\37\2\2\u0128\u012a\5<\37\2\u0129\u0128\3\2\2\2\u0129\u012a\3"+ + "\2\2\2\u012a\u012b\3\2\2\2\u012b\u012c\7\n\2\2\u012c\u012d\5@!\2\u012d"+ + "\u012e\7\13\2\2\u012e\u0131\3\2\2\2\u012f\u0131\5:\36\2\u0130\u00e4\3"+ + "\2\2\2\u0130\u00e7\3\2\2\2\u0130\u00ec\3\2\2\2\u0130\u00ef\3\2\2\2\u0130"+ + "\u00fb\3\2\2\2\u0130\u0107\3\2\2\2\u0130\u0115\3\2\2\2\u0130\u011e\3\2"+ + "\2\2\u0130\u0123\3\2\2\2\u0130\u0125\3\2\2\2\u0130\u0127\3\2\2\2\u0130"+ + "\u012f\3\2\2\2\u0131\'\3\2\2\2\u0132\u0133\5*\26\2\u0133\u0134\7\4\2\2"+ + "\u0134\u0135\5\64\33\2\u0135\u0137\7\4\2\2\u0136\u0138\5\64\33\2\u0137"+ + "\u0136\3\2\2\2\u0137\u0138\3\2\2\2\u0138\u0143\3\2\2\2\u0139\u013b\5\20"+ + "\t\2\u013a\u0139\3\2\2\2\u013a\u013b\3\2\2\2\u013b\u013c\3\2\2\2\u013c"+ + "\u013d\7b\2\2\u013d\u013e\7 \2\2\u013e\u013f\5\66\34\2\u013f\u0140\7!"+ + "\2\2\u0140\u0141\5\66\34\2\u0141\u0143\3\2\2\2\u0142\u0132\3\2\2\2\u0142"+ + "\u013a\3\2\2\2\u0143)\3\2\2\2\u0144\u0146\5\22\n\2\u0145\u0144\3\2\2\2"+ + "\u0145\u0146\3\2\2\2\u0146\u0149\3\2\2\2\u0147\u0149\5\64\33\2\u0148\u0145"+ + "\3\2\2\2\u0148\u0147\3\2\2\2\u0149+\3\2\2\2\u014a\u014b\b\27\1\2\u014b"+ + "\u014c\7\b\2\2\u014c\u014d\5,\27\2\u014d\u014e\7\t\2\2\u014e\u0158\3\2"+ + "\2\2\u014f\u0158\7U\2\2\u0150\u0152\t\2\2\2\u0151\u0153\7U\2\2\u0152\u0151"+ + "\3\2\2\2\u0152\u0153\3\2\2\2\u0153\u0158\3\2\2\2\u0154\u0158\5\60\31\2"+ + "\u0155\u0158\5.\30\2\u0156\u0158\7b\2\2\u0157\u014a\3\2\2\2\u0157\u014f"+ + "\3\2\2\2\u0157\u0150\3\2\2\2\u0157\u0154\3\2\2\2\u0157\u0155\3\2\2\2\u0157"+ + "\u0156\3\2\2\2\u0158\u0166\3\2\2\2\u0159\u015a\f\b\2\2\u015a\u0165\7$"+ + "\2\2\u015b\u015c\f\7\2\2\u015c\u015e\7%\2\2\u015d\u015f\5\66\34\2\u015e"+ + "\u015d\3\2\2\2\u015e\u015f\3\2\2\2\u015f\u0160\3\2\2\2\u0160\u0165\7&"+ + "\2\2\u0161\u0162\f\6\2\2\u0162\u0163\7\b\2\2\u0163\u0165\7\t\2\2\u0164"+ + "\u0159\3\2\2\2\u0164\u015b\3\2\2\2\u0164\u0161\3\2\2\2\u0165\u0168\3\2"+ + "\2\2\u0166\u0164\3\2\2\2\u0166\u0167\3\2\2\2\u0167-\3\2\2\2\u0168\u0166"+ + "\3\2\2\2\u0169\u016a\7\'\2\2\u016a\u016b\7b\2\2\u016b/\3\2\2\2\u016c\u016e"+ + "\7\'\2\2\u016d\u016f\7b\2\2\u016e\u016d\3\2\2\2\u016e\u016f\3\2\2\2\u016f"+ + "\u0170\3\2\2\2\u0170\u0172\7\n\2\2\u0171\u0173\5\62\32\2\u0172\u0171\3"+ + "\2\2\2\u0173\u0174\3\2\2\2\u0174\u0172\3\2\2\2\u0174\u0175\3\2\2\2\u0175"+ + "\u0176\3\2\2\2\u0176\u0177\7\13\2\2\u0177\61\3\2\2\2\u0178\u0179\5\22"+ + "\n\2\u0179\u017a\7\4\2\2\u017a\63\3\2\2\2\u017b\u017c\b\33\1\2\u017c\u017d"+ + "\5\66\34\2\u017d\u0183\3\2\2\2\u017e\u017f\f\3\2\2\u017f\u0180\7\6\2\2"+ + "\u0180\u0182\5\66\34\2\u0181\u017e\3\2\2\2\u0182\u0185\3\2\2\2\u0183\u0181"+ + "\3\2\2\2\u0183\u0184\3\2\2\2\u0184\65\3\2\2\2\u0185\u0183\3\2\2\2\u0186"+ + "\u0187\b\34\1\2\u0187\u0188\7\b\2\2\u0188\u0189\5\64\33\2\u0189\u018a"+ + "\7\t\2\2\u018a\u01bd\3\2\2\2\u018b\u018c\7*\2\2\u018c\u018f\7\b\2\2\u018d"+ + "\u0190\5\66\34\2\u018e\u0190\5,\27\2\u018f\u018d\3\2\2\2\u018f\u018e\3"+ + "\2\2\2\u0190\u0191\3\2\2\2\u0191\u0192\7\t\2\2\u0192\u01bd\3\2\2\2\u0193"+ + "\u0194\7+\2\2\u0194\u0197\7\b\2\2\u0195\u0198\5\66\34\2\u0196\u0198\5"+ + ",\27\2\u0197\u0195\3\2\2\2\u0197\u0196\3\2\2\2\u0198\u0199\3\2\2\2\u0199"+ + "\u019a\7\t\2\2\u019a\u01bd\3\2\2\2\u019b\u019c\7\b\2\2\u019c\u019d\5,"+ + "\27\2\u019d\u019e\7\t\2\2\u019e\u019f\5\66\34\32\u019f\u01bd\3\2\2\2\u01a0"+ + "\u01a1\t\3\2\2\u01a1\u01bd\5\66\34\31\u01a2\u01a3\7$\2\2\u01a3\u01bd\5"+ + "\66\34\27\u01a4\u01a5\t\4\2\2\u01a5\u01bd\5\66\34\26\u01a6\u01a7\t\5\2"+ + "\2\u01a7\u01bd\5\66\34\22\u01a8\u01a9\7\n\2\2\u01a9\u01ae\5\66\34\2\u01aa"+ + "\u01ab\7\6\2\2\u01ab\u01ad\5\66\34\2\u01ac\u01aa\3\2\2\2\u01ad\u01b0\3"+ + "\2\2\2\u01ae\u01ac\3\2\2\2\u01ae\u01af\3\2\2\2\u01af\u01b1\3\2\2\2\u01b0"+ + "\u01ae\3\2\2\2\u01b1\u01b2\7\13\2\2\u01b2\u01bd\3\2\2\2\u01b3\u01bd\7"+ + "b\2\2\u01b4\u01bd\7Y\2\2\u01b5\u01b7\7V\2\2\u01b6\u01b5\3\2\2\2\u01b7"+ + "\u01b8\3\2\2\2\u01b8\u01b6\3\2\2\2\u01b8\u01b9\3\2\2\2\u01b9\u01bd\3\2"+ + "\2\2\u01ba\u01bd\7W\2\2\u01bb\u01bd\7X\2\2\u01bc\u0186\3\2\2\2\u01bc\u018b"+ + "\3\2\2\2\u01bc\u0193\3\2\2\2\u01bc\u019b\3\2\2\2\u01bc\u01a0\3\2\2\2\u01bc"+ + "\u01a2\3\2\2\2\u01bc\u01a4\3\2\2\2\u01bc\u01a6\3\2\2\2\u01bc\u01a8\3\2"+ + "\2\2\u01bc\u01b3\3\2\2\2\u01bc\u01b4\3\2\2\2\u01bc\u01b6\3\2\2\2\u01bc"+ + "\u01ba\3\2\2\2\u01bc\u01bb\3\2\2\2\u01bd\u01fa\3\2\2\2\u01be\u01bf\f\25"+ + "\2\2\u01bf\u01c0\t\6\2\2\u01c0\u01f9\5\66\34\26\u01c1\u01c2\f\24\2\2\u01c2"+ + "\u01c3\t\7\2\2\u01c3\u01f9\5\66\34\25\u01c4\u01c5\f\23\2\2\u01c5\u01c6"+ + "\t\b\2\2\u01c6\u01f9\5\66\34\24\u01c7\u01c8\f\21\2\2\u01c8\u01c9\t\t\2"+ + "\2\u01c9\u01f9\5\66\34\22\u01ca\u01cb\f\20\2\2\u01cb\u01cc\7\61\2\2\u01cc"+ + "\u01f9\5\66\34\21\u01cd\u01ce\f\17\2\2\u01ce\u01cf\7=\2\2\u01cf\u01f9"+ + "\5\66\34\20\u01d0\u01d1\f\16\2\2\u01d1\u01d2\7>\2\2\u01d2\u01f9\5\66\34"+ + "\17\u01d3\u01d4\f\r\2\2\u01d4\u01d5\7?\2\2\u01d5\u01f9\5\66\34\16\u01d6"+ + "\u01d7\f\f\2\2\u01d7\u01d8\7@\2\2\u01d8\u01f9\5\66\34\r\u01d9\u01da\f"+ + "\13\2\2\u01da\u01db\7A\2\2\u01db\u01dc\5\66\34\2\u01dc\u01dd\7 \2\2\u01dd"+ + "\u01de\5\66\34\f\u01de\u01f9\3\2\2\2\u01df\u01e0\f\n\2\2\u01e0\u01e1\7"+ + "\7\2\2\u01e1\u01f9\5\66\34\n\u01e2\u01e3\f\t\2\2\u01e3\u01e4\t\n\2\2\u01e4"+ + "\u01f9\5\66\34\t\u01e5\u01e6\f \2\2\u01e6\u01e7\7(\2\2\u01e7\u01f9\7b"+ + "\2\2\u01e8\u01e9\f\37\2\2\u01e9\u01ea\7)\2\2\u01ea\u01f9\7b\2\2\u01eb"+ + "\u01ec\f\36\2\2\u01ec\u01ee\7\b\2\2\u01ed\u01ef\58\35\2\u01ee\u01ed\3"+ + "\2\2\2\u01ee\u01ef\3\2\2\2\u01ef\u01f0\3\2\2\2\u01f0\u01f9\7\t\2\2\u01f1"+ + "\u01f2\f\33\2\2\u01f2\u01f3\7%\2\2\u01f3\u01f4\5\64\33\2\u01f4\u01f5\7"+ + "&\2\2\u01f5\u01f9\3\2\2\2\u01f6\u01f7\f\30\2\2\u01f7\u01f9\t\3\2\2\u01f8"+ + "\u01be\3\2\2\2\u01f8\u01c1\3\2\2\2\u01f8\u01c4\3\2\2\2\u01f8\u01c7\3\2"+ + "\2\2\u01f8\u01ca\3\2\2\2\u01f8\u01cd\3\2\2\2\u01f8\u01d0\3\2\2\2\u01f8"+ + "\u01d3\3\2\2\2\u01f8\u01d6\3\2\2\2\u01f8\u01d9\3\2\2\2\u01f8\u01df\3\2"+ + "\2\2\u01f8\u01e2\3\2\2\2\u01f8\u01e5\3\2\2\2\u01f8\u01e8\3\2\2\2\u01f8"+ + "\u01eb\3\2\2\2\u01f8\u01f1\3\2\2\2\u01f8\u01f6\3\2\2\2\u01f9\u01fc\3\2"+ + "\2\2\u01fa\u01f8\3\2\2\2\u01fa\u01fb\3\2\2\2\u01fb\67\3\2\2\2\u01fc\u01fa"+ + "\3\2\2\2\u01fd\u0202\5\66\34\2\u01fe\u01ff\7\6\2\2\u01ff\u0201\5\66\34"+ + "\2\u0200\u01fe\3\2\2\2\u0201\u0204\3\2\2\2\u0202\u0200\3\2\2\2\u0202\u0203"+ + "\3\2\2\2\u02039\3\2\2\2\u0204\u0202\3\2\2\2\u0205\u0207\7L\2\2\u0206\u0208"+ + "\5<\37\2\u0207\u0206\3\2\2\2\u0207\u0208\3\2\2\2\u0208\u0209\3\2\2\2\u0209"+ + "\u020a\7T\2\2\u020a;\3\2\2\2\u020b\u020c\7\b\2\2\u020c\u0211\5> \2\u020d"+ + "\u020e\7\6\2\2\u020e\u0210\5> \2\u020f\u020d\3\2\2\2\u0210\u0213\3\2\2"+ + "\2\u0211\u020f\3\2\2\2\u0211\u0212\3\2\2\2\u0212\u0214\3\2\2\2\u0213\u0211"+ + "\3\2\2\2\u0214\u0215\7\t\2\2\u0215=\3\2\2\2\u0216\u0217\7M\2\2\u0217\u0226"+ + "\7V\2\2\u0218\u0219\7N\2\2\u0219\u0226\7b\2\2\u021a\u021b\7O\2\2\u021b"+ + "\u0226\7V\2\2\u021c\u021d\7P\2\2\u021d\u0226\5\66\34\2\u021e\u021f\7Q"+ + "\2\2\u021f\u0226\5\66\34\2\u0220\u0223\7\r\2\2\u0221\u0224\7\23\2\2\u0222"+ + "\u0224\5\66\34\2\u0223\u0221\3\2\2\2\u0223\u0222\3\2\2\2\u0224\u0226\3"+ + "\2\2\2\u0225\u0216\3\2\2\2\u0225\u0218\3\2\2\2\u0225\u021a\3\2\2\2\u0225"+ + "\u021c\3\2\2\2\u0225\u021e\3\2\2\2\u0225\u0220\3\2\2\2\u0226?\3\2\2\2"+ + "\u0227\u0229\5B\"\2\u0228\u0227\3\2\2\2\u0229\u022c\3\2\2\2\u022a\u0228"+ + "\3\2\2\2\u022a\u022b\3\2\2\2\u022bA\3\2\2\2\u022c\u022a\3\2\2\2\u022d"+ + "\u0231\5D#\2\u022e\u0231\5F$\2\u022f\u0231\5H%\2\u0230\u022d\3\2\2\2\u0230"+ + "\u022e\3\2\2\2\u0230\u022f\3\2\2\2\u0231C\3\2\2\2\u0232\u0233\7b\2\2\u0233"+ + "\u023a\7 \2\2\u0234\u0236\7\60\2\2\u0235\u0237\7b\2\2\u0236\u0235\3\2"+ + "\2\2\u0236\u0237\3\2\2\2\u0237\u0238\3\2\2\2\u0238\u023a\7 \2\2\u0239"+ + "\u0232\3\2\2\2\u0239\u0234\3\2\2\2\u023aE\3\2\2\2\u023b\u023d\7S\2\2\u023c"+ + "\u023e\5J&\2\u023d\u023c\3\2\2\2\u023d\u023e\3\2\2\2\u023eG\3\2\2\2\u023f"+ + "\u0240\7R\2\2\u0240\u0245\5L\'\2\u0241\u0242\7\6\2\2\u0242\u0244\5L\'"+ + "\2\u0243\u0241\3\2\2\2\u0244\u0247\3\2\2\2\u0245\u0243\3\2\2\2\u0245\u0246"+ + "\3\2\2\2\u0246I\3\2\2\2\u0247\u0245\3\2\2\2\u0248\u0260\5L\'\2\u0249\u024a"+ + "\7\f\2\2\u024a\u0260\5L\'\2\u024b\u024c\5L\'\2\u024c\u024d\7\6\2\2\u024d"+ + "\u024e\7b\2\2\u024e\u0260\3\2\2\2\u024f\u0250\7\b\2\2\u0250\u0251\5L\'"+ + "\2\u0251\u0252\7\t\2\2\u0252\u0253\7\6\2\2\u0253\u0254\7b\2\2\u0254\u0260"+ + "\3\2\2\2\u0255\u0256\7\b\2\2\u0256\u0257\5L\'\2\u0257\u0258\7\6\2\2\u0258"+ + "\u0259\7b\2\2\u0259\u025a\7\t\2\2\u025a\u0260\3\2\2\2\u025b\u025c\7\b"+ + "\2\2\u025c\u025d\5L\'\2\u025d\u025e\7\t\2\2\u025e\u0260\3\2\2\2\u025f"+ + "\u0248\3\2\2\2\u025f\u0249\3\2\2\2\u025f\u024b\3\2\2\2\u025f\u024f\3\2"+ + "\2\2\u025f\u0255\3\2\2\2\u025f\u025b\3\2\2\2\u0260K\3\2\2\2\u0261\u0262"+ + "\b\'\1\2\u0262\u0263\7%\2\2\u0263\u0264\5L\'\2\u0264\u0265\7&\2\2\u0265"+ + "\u0270\3\2\2\2\u0266\u0267\t\13\2\2\u0267\u0270\5L\'\n\u0268\u0270\7b"+ + "\2\2\u0269\u0270\7c\2\2\u026a\u026b\7\n\2\2\u026b\u026c\7b\2\2\u026c\u0270"+ + "\7\13\2\2\u026d\u0270\7Y\2\2\u026e\u0270\7W\2\2\u026f\u0261\3\2\2\2\u026f"+ + "\u0266\3\2\2\2\u026f\u0268\3\2\2\2\u026f\u0269\3\2\2\2\u026f\u026a\3\2"+ + "\2\2\u026f\u026d\3\2\2\2\u026f\u026e\3\2\2\2\u0270\u027f\3\2\2\2\u0271"+ + "\u0272\f\f\2\2\u0272\u0273\7(\2\2\u0273\u027e\5L\'\r\u0274\u0275\f\13"+ + "\2\2\u0275\u0276\t\6\2\2\u0276\u027e\5L\'\f\u0277\u0278\f\t\2\2\u0278"+ + "\u0279\t\f\2\2\u0279\u027e\5L\'\n\u027a\u027b\f\b\2\2\u027b\u027c\t\b"+ + "\2\2\u027c\u027e\5L\'\t\u027d\u0271\3\2\2\2\u027d\u0274\3\2\2\2\u027d"+ + "\u0277\3\2\2\2\u027d\u027a\3\2\2\2\u027e\u0281\3\2\2\2\u027f\u027d\3\2"+ + "\2\2\u027f\u0280\3\2\2\2\u0280M\3\2\2\2\u0281\u027f\3\2\2\2>Xapx\177\u008d"+ + "\u0093\u0099\u009e\u00a7\u00ae\u00bc\u00ce\u00d1\u00da\u00e2\u00e9\u00f6"+ + "\u00fb\u0107\u0115\u0120\u0129\u0130\u0137\u013a\u0142\u0145\u0148\u0152"+ + "\u0157\u015e\u0164\u0166\u016e\u0174\u0183\u018f\u0197\u01ae\u01b8\u01bc"+ + "\u01ee\u01f8\u01fa\u0202\u0207\u0211\u0223\u0225\u022a\u0230\u0236\u0239"+ + "\u023d\u0245\u025f\u026f\u027d\u027f"; public static final ATN _ATN = new ATNDeserializer().deserialize(_serializedATN.toCharArray()); static { diff --git a/src/main/java/dk/camelot64/kickc/parser/KickCVisitor.java b/src/main/java/dk/camelot64/kickc/parser/KickCVisitor.java index bfb887dc1..461c812e0 100644 --- a/src/main/java/dk/camelot64/kickc/parser/KickCVisitor.java +++ b/src/main/java/dk/camelot64/kickc/parser/KickCVisitor.java @@ -1,4 +1,4 @@ -// Generated from C:/c64/kickc/src/main/java/dk/camelot64/kickc/parser\KickC.g4 by ANTLR 4.7 +// Generated from /Users/jespergravgaard/c64/kickc/src/main/java/dk/camelot64/kickc/parser/KickC.g4 by ANTLR 4.7 package dk.camelot64.kickc.parser; import org.antlr.v4.runtime.tree.ParseTreeVisitor; @@ -46,6 +46,12 @@ public interface KickCVisitor extends ParseTreeVisitor { * @return the visitor result */ T visitDecl(KickCParser.DeclContext ctx); + /** + * Visit a parse tree produced by {@link KickCParser#typeDef}. + * @param ctx the parse tree + * @return the visitor result + */ + T visitTypeDef(KickCParser.TypeDefContext ctx); /** * Visit a parse tree produced by {@link KickCParser#declTypes}. * @param ctx the parse tree @@ -346,6 +352,13 @@ public interface KickCVisitor extends ParseTreeVisitor { * @return the visitor result */ T visitTypeStructDef(KickCParser.TypeStructDefContext ctx); + /** + * Visit a parse tree produced by the {@code typeNamedRef} + * labeled alternative in {@link KickCParser#typeDecl}. + * @param ctx the parse tree + * @return the visitor result + */ + T visitTypeNamedRef(KickCParser.TypeNamedRefContext ctx); /** * Visit a parse tree produced by the {@code typeSignedSimple} * labeled alternative in {@link KickCParser#typeDecl}. diff --git a/src/main/java/dk/camelot64/kickc/passes/Pass0GenerateStatementSequence.java b/src/main/java/dk/camelot64/kickc/passes/Pass0GenerateStatementSequence.java index d98584d1f..1f50f4d97 100644 --- a/src/main/java/dk/camelot64/kickc/passes/Pass0GenerateStatementSequence.java +++ b/src/main/java/dk/camelot64/kickc/passes/Pass0GenerateStatementSequence.java @@ -4,6 +4,7 @@ import dk.camelot64.kickc.Compiler; import dk.camelot64.kickc.NumberParser; import dk.camelot64.kickc.asm.AsmClobber; import dk.camelot64.kickc.model.*; +import dk.camelot64.kickc.model.InternalError; import dk.camelot64.kickc.model.operators.Operator; import dk.camelot64.kickc.model.operators.OperatorSizeOf; import dk.camelot64.kickc.model.operators.OperatorTypeId; @@ -1202,6 +1203,11 @@ public class Pass0GenerateStatementSequence extends KickCBaseVisitor { return structDefinition.getType(); } + @Override + public Object visitTypeNamedRef(KickCParser.TypeNamedRefContext ctx) { + throw new InternalError("Not implemented typeef'ed types", new StatementSource(ctx)); + } + @Override public SymbolType visitTypeSignedSimple(KickCParser.TypeSignedSimpleContext ctx) { String signedness = ctx.getChild(0).getText();