diff --git a/src/main/java/dk/camelot64/kickc/model/VariableBuilder.java b/src/main/java/dk/camelot64/kickc/model/VariableBuilder.java
index 1531a8119..2509b55a2 100644
--- a/src/main/java/dk/camelot64/kickc/model/VariableBuilder.java
+++ b/src/main/java/dk/camelot64/kickc/model/VariableBuilder.java
@@ -1,5 +1,7 @@
package dk.camelot64.kickc.model;
+import dk.camelot64.kickc.CompileLog;
+import dk.camelot64.kickc.model.statements.StatementSource;
import dk.camelot64.kickc.model.symbols.*;
import dk.camelot64.kickc.model.types.SymbolType;
import dk.camelot64.kickc.model.types.SymbolTypePointer;
@@ -46,6 +48,16 @@ public class VariableBuilder {
this.dataSegment = dataSegment;
}
+ public static VariableBuilderConfig getDefaultConfig(CompileLog log) {
+ VariableBuilderConfig config = new VariableBuilderConfig();
+ config.addSetting("ssa_zp", log, null);
+ config.addSetting("array_ma_mem", log, null);
+ config.addSetting("global_ma_mem", log, null);
+ config.addSetting("local_struct_ssa_zp", log, null);
+ config.addSetting("global_struct_ma_mem", log, null);
+ return config;
+ }
+
/**
* Build the variable with the properties derived from type, scope, directives and configuration.
*
@@ -310,7 +322,6 @@ public class VariableBuilder {
* @return Hard-coded register allocation. Null if not hard-coded.
*/
public Registers.Register getRegister() {
-
Directive.Address addressDirective = findDirective(Directive.Address.class);
if(addressDirective != null) {
Variable.MemoryArea memoryArea = (addressDirective.address < 0x100) ? Variable.MemoryArea.ZEROPAGE_MEMORY : Variable.MemoryArea.MAIN_MEMORY;
diff --git a/src/main/java/dk/camelot64/kickc/model/VariableBuilderConfig.java b/src/main/java/dk/camelot64/kickc/model/VariableBuilderConfig.java
new file mode 100644
index 000000000..7b9ba3d55
--- /dev/null
+++ b/src/main/java/dk/camelot64/kickc/model/VariableBuilderConfig.java
@@ -0,0 +1,195 @@
+package dk.camelot64.kickc.model;
+
+import dk.camelot64.kickc.CompileLog;
+import dk.camelot64.kickc.model.operators.Operator;
+import dk.camelot64.kickc.model.statements.StatementSource;
+
+import java.util.ArrayList;
+import java.util.Arrays;
+import java.util.List;
+
+/**
+ * Configuration for the {@link VariableBuilder} specifying how different variables should be compiled.
+ * Holds settings specified using #pragma var_model(...)
+ * The parameters to the pragma has the form scope_type_optimization_memoryarea.
+ *
+ * - scope is one of global, local
+ * - type is one of struct, array, integer, pointer
+ * - optimization is one of ma (meaning multiple-assignment or load/store), ssa (meaning single-static-assignment)
+ * - memoryarea is one of zp (meaning zeropage), mem (meaning main memory)
+ *
+ *
+ * For instance the parameter local_pointer_ssa_zp specifies that local pointer variables must be SSA-optimized and placed on zeropage.
+ * The scope or type sub-element of the pragma parameter can be left out to apply to all scopes/types.
+ * For instance the parameter pointer_ssa_zp specifies that all pointer variables regardless of scope must be SSA-optimized and placed on zeropage.
+ *
+ * Multiple parameters can be added to the pragma to apply settings for many types/scopes.
+ */
+public class VariableBuilderConfig {
+
+ /** The different scopes. */
+ public enum Scope {
+ LOCAL, GLOBAL, PARAMETER, MEMBER
+ }
+
+ /** The different types. */
+ public enum Type {
+ INTEGER, POINTER, STRUCT, ARRAY
+ }
+
+ /** The optimizations. */
+ public enum Optimization {
+ SSA, MA
+ }
+
+ /** The memory areas. */
+ public enum MemoryArea {
+ ZP, MEM
+ }
+
+ /* A single setting. */
+ public static class Setting {
+ final Scope scope;
+ final Type type;
+ final MemoryArea memoryArea;
+ final Optimization optimization;
+
+ public Setting(Scope scope, Type type, MemoryArea memoryArea, Optimization optimization) {
+ this.scope = scope;
+ this.type = type;
+ this.memoryArea = memoryArea;
+ this.optimization = optimization;
+ }
+ }
+
+ /**
+ * The settings
+ */
+ private List settings;
+
+ VariableBuilderConfig() {
+ this.settings = new ArrayList<>();
+ }
+
+ public void addSetting(String pragmaParam, CompileLog log, StatementSource statementSource) {
+ List paramElements = new ArrayList<>(Arrays.asList(pragmaParam.split("_")));
+ List scopes = getScopes(paramElements);
+ List types = getTypes(paramElements);
+ Optimization optimization = getOptimization(paramElements);
+ MemoryArea memoryArea = getMemoryArea(paramElements);
+ if(memoryArea==null || optimization==null || paramElements.size()>0)
+ throw new CompileError("Warning: Malformed var_model parameter "+pragmaParam, statementSource);
+ for(Scope scope : scopes) {
+ for(Type type : types) {
+ settings.add(new Setting(scope, type, memoryArea, optimization));
+ }
+ }
+ }
+
+ /**
+ * Parses the first parameter element as a scope.
+ * If found the scope element is removed from the list.
+ *
+ * @param paramElements The parameter elements (may be modified)
+ * @return The matched scopes
+ */
+ private List getScopes(List paramElements) {
+ final String paramElement = paramElements.get(0);
+ if(paramElement.equals("global")) {
+ paramElements.remove(0);
+ return Arrays.asList(Scope.GLOBAL);
+ } else if(paramElement.equals("local")) {
+ paramElements.remove(0);
+ return Arrays.asList(Scope.LOCAL);
+ } else if(paramElement.equals("member")) {
+ paramElements.remove(0);
+ return Arrays.asList(Scope.MEMBER);
+ } else if(paramElement.equals("parameter")) {
+ paramElements.remove(0);
+ return Arrays.asList(Scope.PARAMETER);
+ } else
+ return Arrays.asList(Scope.values());
+ }
+
+ /**
+ * Parses the first parameter element as a type.
+ * If found the type element is removed from the list.
+ *
+ * @param paramElements The parameter elements (may be modified)
+ * @return The matched types
+ */
+ private List getTypes(List paramElements) {
+ final String paramElement = paramElements.get(0);
+ if(paramElement.equals("integer")) {
+ paramElements.remove(0);
+ return Arrays.asList(Type.INTEGER);
+ } else if(paramElement.equals("pointer")) {
+ paramElements.remove(0);
+ return Arrays.asList(Type.POINTER);
+ } else if(paramElement.equals("array")) {
+ paramElements.remove(0);
+ return Arrays.asList(Type.ARRAY);
+ } else if(paramElement.equals("struct")) {
+ paramElements.remove(0);
+ return Arrays.asList(Type.STRUCT);
+ } else
+ return Arrays.asList(Type.values());
+ }
+
+ /**
+ * Parses the first parameter element as a memory area.
+ * The memory area element is removed from the list.
+ *
+ * @param paramElements The parameter elements (may be modified)
+ * @return The matched memory area.
+ */
+ private MemoryArea getMemoryArea(List paramElements) {
+ final String paramElement = paramElements.get(0);
+ if(paramElement.equals("mem")) {
+ paramElements.remove(0);
+ return MemoryArea.MEM;
+ } else if(paramElement.equals("zp")) {
+ paramElements.remove(0);
+ return MemoryArea.ZP;
+ } else
+ return null;
+ }
+
+ /**
+ * Parses the first parameter element as a optimization.
+ * The optimization element is removed from the list.
+ *
+ * @param paramElements The parameter elements (may be modified)
+ * @return The matched optimization.
+ */
+ private Optimization getOptimization(List paramElements) {
+ final String paramElement = paramElements.get(0);
+ if(paramElement.equals("ssa")) {
+ paramElements.remove(0);
+ return Optimization.SSA;
+ } else if(paramElement.equals("ma")) {
+ paramElements.remove(0);
+ return Optimization.MA;
+ } else
+ return null;
+ }
+
+ /**
+ * Get the setting to use for a specific scope/type by default
+ *
+ * @param scope The scope
+ * @param type The type
+ * @return The memory area to use
+ */
+ public Setting getSetting(Scope scope, Type type) {
+ for(Setting setting : settings) {
+ if(setting.scope.equals(scope) && setting.type.equals(type)) {
+ // Found perfect match - return it
+ return setting;
+ }
+ }
+ return null;
+ }
+
+
+}
diff --git a/src/main/java/dk/camelot64/kickc/parser/KickCLexer.g4 b/src/main/java/dk/camelot64/kickc/parser/KickCLexer.g4
index c72c9b6d7..4fd3931fe 100644
--- a/src/main/java/dk/camelot64/kickc/parser/KickCLexer.g4
+++ b/src/main/java/dk/camelot64/kickc/parser/KickCLexer.g4
@@ -88,6 +88,7 @@ FORM_SSA: '__ssa' ;
FORM_MA: '__ma' ;
CALLING: 'calling';
CALLINGCONVENTION: '__stackcall' | '__phicall' ;
+VARMODEL: 'var_model';
IF: 'if' ;
ELSE: 'else' ;
WHILE: 'while' ;
diff --git a/src/main/java/dk/camelot64/kickc/parser/KickCLexer.java b/src/main/java/dk/camelot64/kickc/parser/KickCLexer.java
index 44c66a01d..440aa026e 100644
--- a/src/main/java/dk/camelot64/kickc/parser/KickCLexer.java
+++ b/src/main/java/dk/camelot64/kickc/parser/KickCLexer.java
@@ -28,8 +28,8 @@ public class KickCLexer extends Lexer {
ASSIGN_COMPOUND=37, IMPORT=38, TYPEDEF=39, PRAGMA=40, RESERVE=41, PC=42,
TARGET=43, LINK=44, CPU=45, CODESEG=46, DATASEG=47, ENCODING=48, CONST=49,
EXTERN=50, EXPORT=51, ALIGN=52, INLINE=53, VOLATILE=54, INTERRUPT=55,
- REGISTER=56, ADDRESS=57, ADDRESS_ZEROPAGE=58, ADDRESS_MAINMEM=59, NOTCONST=60,
- FORM_SSA=61, FORM_MA=62, CALLING=63, CALLINGCONVENTION=64, IF=65, ELSE=66,
+ REGISTER=56, ADDRESS=57, ADDRESS_ZEROPAGE=58, ADDRESS_MAINMEM=59, FORM_SSA=60,
+ FORM_MA=61, CALLING=62, CALLINGCONVENTION=63, VARMODEL=64, IF=65, ELSE=66,
WHILE=67, DO=68, FOR=69, SWITCH=70, RETURN=71, BREAK=72, CONTINUE=73,
ASM=74, DEFAULT=75, CASE=76, STRUCT=77, ENUM=78, SIZEOF=79, TYPEID=80,
KICKASM=81, RESOURCE=82, USES=83, CLOBBERS=84, BYTES=85, CYCLES=86, LOGIC_NOT=87,
@@ -66,7 +66,7 @@ public class KickCLexer extends Lexer {
"PRAGMA", "RESERVE", "PC", "TARGET", "LINK", "CPU", "CODESEG", "DATASEG",
"ENCODING", "CONST", "EXTERN", "EXPORT", "ALIGN", "INLINE", "VOLATILE",
"INTERRUPT", "REGISTER", "ADDRESS", "ADDRESS_ZEROPAGE", "ADDRESS_MAINMEM",
- "NOTCONST", "FORM_SSA", "FORM_MA", "CALLING", "CALLINGCONVENTION", "IF",
+ "FORM_SSA", "FORM_MA", "CALLING", "CALLINGCONVENTION", "VARMODEL", "IF",
"ELSE", "WHILE", "DO", "FOR", "SWITCH", "RETURN", "BREAK", "CONTINUE",
"ASM", "DEFAULT", "CASE", "STRUCT", "ENUM", "SIZEOF", "TYPEID", "KICKASM",
"RESOURCE", "USES", "CLOBBERS", "BYTES", "CYCLES", "LOGIC_NOT", "SIGNEDNESS",
@@ -96,7 +96,7 @@ public class KickCLexer extends Lexer {
"'reserve'", "'pc'", "'target'", "'link'", "'cpu'", "'code_seg'", "'data_seg'",
"'encoding'", "'const'", "'extern'", "'export'", "'align'", "'inline'",
"'volatile'", "'interrupt'", "'register'", "'__address'", "'__zp'", "'__mem'",
- "'__notconst'", "'__ssa'", "'__ma'", "'calling'", null, "'if'", "'else'",
+ "'__ssa'", "'__ma'", "'calling'", null, "'var_model'", "'if'", "'else'",
"'while'", "'do'", "'for'", "'switch'", "'return'", "'break'", "'continue'",
"'asm'", "'default'", "'case'", "'struct'", "'enum'", "'sizeof'", "'typeid'",
"'kickasm'", "'resource'", "'uses'", "'clobbers'", "'bytes'", "'cycles'",
@@ -116,12 +116,12 @@ public class KickCLexer extends Lexer {
"IMPORT", "TYPEDEF", "PRAGMA", "RESERVE", "PC", "TARGET", "LINK", "CPU",
"CODESEG", "DATASEG", "ENCODING", "CONST", "EXTERN", "EXPORT", "ALIGN",
"INLINE", "VOLATILE", "INTERRUPT", "REGISTER", "ADDRESS", "ADDRESS_ZEROPAGE",
- "ADDRESS_MAINMEM", "NOTCONST", "FORM_SSA", "FORM_MA", "CALLING", "CALLINGCONVENTION",
- "IF", "ELSE", "WHILE", "DO", "FOR", "SWITCH", "RETURN", "BREAK", "CONTINUE",
- "ASM", "DEFAULT", "CASE", "STRUCT", "ENUM", "SIZEOF", "TYPEID", "KICKASM",
- "RESOURCE", "USES", "CLOBBERS", "BYTES", "CYCLES", "LOGIC_NOT", "SIGNEDNESS",
- "SIMPLETYPE", "BOOLEAN", "KICKASM_BODY", "STRING", "CHAR", "NUMBER",
- "NUMFLOAT", "BINFLOAT", "DECFLOAT", "HEXFLOAT", "NUMINT", "BININTEGER",
+ "ADDRESS_MAINMEM", "FORM_SSA", "FORM_MA", "CALLING", "CALLINGCONVENTION",
+ "VARMODEL", "IF", "ELSE", "WHILE", "DO", "FOR", "SWITCH", "RETURN", "BREAK",
+ "CONTINUE", "ASM", "DEFAULT", "CASE", "STRUCT", "ENUM", "SIZEOF", "TYPEID",
+ "KICKASM", "RESOURCE", "USES", "CLOBBERS", "BYTES", "CYCLES", "LOGIC_NOT",
+ "SIGNEDNESS", "SIMPLETYPE", "BOOLEAN", "KICKASM_BODY", "STRING", "CHAR",
+ "NUMBER", "NUMFLOAT", "BINFLOAT", "DECFLOAT", "HEXFLOAT", "NUMINT", "BININTEGER",
"DECINTEGER", "HEXINTEGER", "NAME", "WS", "COMMENT_LINE", "COMMENT_BLOCK",
"ASM_BYTE", "ASM_MNEMONIC", "ASM_IMM", "ASM_COLON", "ASM_COMMA", "ASM_PAR_BEGIN",
"ASM_PAR_END", "ASM_BRACKET_BEGIN", "ASM_BRACKET_END", "ASM_DOT", "ASM_SHIFT_LEFT",
@@ -283,7 +283,7 @@ public class KickCLexer extends Lexer {
}
public static final String _serializedATN =
- "\3\u608b\ua72a\u8133\ub9ed\u417c\u3be7\u7786\u5964\2\u0090\u059e\b\1\b"+
+ "\3\u608b\ua72a\u8133\ub9ed\u417c\u3be7\u7786\u5964\2\u0090\u059d\b\1\b"+
"\1\4\2\t\2\4\3\t\3\4\4\t\4\4\5\t\5\4\6\t\6\4\7\t\7\4\b\t\b\4\t\t\t\4\n"+
"\t\n\4\13\t\13\4\f\t\f\4\r\t\r\4\16\t\16\4\17\t\17\4\20\t\20\4\21\t\21"+
"\4\22\t\22\4\23\t\23\4\24\t\24\4\25\t\25\4\26\t\26\4\27\t\27\4\30\t\30"+
@@ -318,30 +318,30 @@ public class KickCLexer extends Lexer {
"\65\3\66\3\66\3\66\3\66\3\66\3\66\3\66\3\66\3\66\3\67\3\67\3\67\3\67\3"+
"\67\3\67\3\67\3\67\3\67\3\67\38\38\38\38\38\38\38\38\38\39\39\39\39\3"+
"9\39\39\39\39\39\3:\3:\3:\3:\3:\3;\3;\3;\3;\3;\3;\3<\3<\3<\3<\3<\3<\3"+
- "<\3<\3<\3<\3<\3=\3=\3=\3=\3=\3=\3>\3>\3>\3>\3>\3?\3?\3?\3?\3?\3?\3?\3"+
- "?\3@\3@\3@\3@\3@\3@\3@\3@\3@\3@\3@\3@\3@\3@\3@\3@\3@\3@\3@\3@\5@\u0271"+
- "\n@\3A\3A\3A\3B\3B\3B\3B\3B\3C\3C\3C\3C\3C\3C\3D\3D\3D\3E\3E\3E\3E\3F"+
- "\3F\3F\3F\3F\3F\3F\3G\3G\3G\3G\3G\3G\3G\3H\3H\3H\3H\3H\3H\3I\3I\3I\3I"+
- "\3I\3I\3I\3I\3I\3J\3J\3J\3J\3J\3J\3K\3K\3K\3K\3K\3K\3K\3K\3L\3L\3L\3L"+
- "\3L\3M\3M\3M\3M\3M\3M\3M\3N\3N\3N\3N\3N\3O\3O\3O\3O\3O\3O\3O\3P\3P\3P"+
- "\3P\3P\3P\3P\3Q\3Q\3Q\3Q\3Q\3Q\3Q\3Q\3R\3R\3R\3R\3R\3R\3R\3R\3R\3S\3S"+
- "\3S\3S\3S\3T\3T\3T\3T\3T\3T\3T\3T\3T\3U\3U\3U\3U\3U\3U\3V\3V\3V\3V\3V"+
- "\3V\3V\3W\3W\3X\3X\3X\3X\3X\3X\3X\3X\3X\3X\3X\3X\3X\3X\5X\u030e\nX\3Y"+
- "\3Y\3Y\3Y\3Y\3Y\3Y\3Y\3Y\3Y\3Y\3Y\3Y\3Y\3Y\3Y\3Y\3Y\3Y\3Y\3Y\3Y\3Y\3Y"+
- "\3Y\3Y\3Y\3Y\3Y\3Y\3Y\3Y\3Y\3Y\3Y\3Y\3Y\5Y\u0335\nY\3Z\3Z\3Z\3Z\3Z\3Z"+
- "\3Z\3Z\3Z\5Z\u0340\nZ\3[\3[\3[\3[\7[\u0346\n[\f[\16[\u0349\13[\3[\3[\3"+
- "[\3\\\3\\\3\\\3\\\7\\\u0352\n\\\f\\\16\\\u0355\13\\\3\\\3\\\5\\\u0359"+
- "\n\\\3\\\3\\\5\\\u035d\n\\\5\\\u035f\n\\\3\\\5\\\u0362\n\\\3\\\3\\\3]"+
- "\3]\3]\3]\5]\u036a\n]\3]\3]\3^\3^\5^\u0370\n^\3_\3_\3_\5_\u0375\n_\3`"+
- "\3`\3`\3`\3`\5`\u037c\n`\3`\7`\u037f\n`\f`\16`\u0382\13`\3`\3`\6`\u0386"+
- "\n`\r`\16`\u0387\3a\7a\u038b\na\fa\16a\u038e\13a\3a\3a\6a\u0392\na\ra"+
- "\16a\u0393\3b\3b\3b\3b\3b\5b\u039b\nb\3b\7b\u039e\nb\fb\16b\u03a1\13b"+
- "\3b\3b\6b\u03a5\nb\rb\16b\u03a6\3c\3c\3c\5c\u03ac\nc\3c\3c\3c\5c\u03b1"+
- "\nc\3d\3d\3d\6d\u03b6\nd\rd\16d\u03b7\3d\3d\6d\u03bc\nd\rd\16d\u03bd\5"+
- "d\u03c0\nd\3e\6e\u03c3\ne\re\16e\u03c4\3f\3f\3f\3f\3f\5f\u03cc\nf\3f\6"+
- "f\u03cf\nf\rf\16f\u03d0\3g\3g\3h\3h\3i\3i\3j\3j\7j\u03db\nj\fj\16j\u03de"+
- "\13j\3j\3j\3k\3k\3l\3l\3m\6m\u03e7\nm\rm\16m\u03e8\3m\3m\3n\3n\3n\3n\7"+
- "n\u03f1\nn\fn\16n\u03f4\13n\3n\3n\3o\3o\3o\3o\7o\u03fc\no\fo\16o\u03ff"+
+ "=\3=\3=\3=\3=\3>\3>\3>\3>\3>\3>\3>\3>\3?\3?\3?\3?\3?\3?\3?\3?\3?\3?\3"+
+ "?\3?\3?\3?\3?\3?\3?\3?\3?\3?\5?\u0266\n?\3@\3@\3@\3@\3@\3@\3@\3@\3@\3"+
+ "@\3A\3A\3A\3B\3B\3B\3B\3B\3C\3C\3C\3C\3C\3C\3D\3D\3D\3E\3E\3E\3E\3F\3"+
+ "F\3F\3F\3F\3F\3F\3G\3G\3G\3G\3G\3G\3G\3H\3H\3H\3H\3H\3H\3I\3I\3I\3I\3"+
+ "I\3I\3I\3I\3I\3J\3J\3J\3J\3J\3J\3K\3K\3K\3K\3K\3K\3K\3K\3L\3L\3L\3L\3"+
+ "L\3M\3M\3M\3M\3M\3M\3M\3N\3N\3N\3N\3N\3O\3O\3O\3O\3O\3O\3O\3P\3P\3P\3"+
+ "P\3P\3P\3P\3Q\3Q\3Q\3Q\3Q\3Q\3Q\3Q\3R\3R\3R\3R\3R\3R\3R\3R\3R\3S\3S\3"+
+ "S\3S\3S\3T\3T\3T\3T\3T\3T\3T\3T\3T\3U\3U\3U\3U\3U\3U\3V\3V\3V\3V\3V\3"+
+ "V\3V\3W\3W\3X\3X\3X\3X\3X\3X\3X\3X\3X\3X\3X\3X\3X\3X\5X\u030d\nX\3Y\3"+
+ "Y\3Y\3Y\3Y\3Y\3Y\3Y\3Y\3Y\3Y\3Y\3Y\3Y\3Y\3Y\3Y\3Y\3Y\3Y\3Y\3Y\3Y\3Y\3"+
+ "Y\3Y\3Y\3Y\3Y\3Y\3Y\3Y\3Y\3Y\3Y\3Y\3Y\5Y\u0334\nY\3Z\3Z\3Z\3Z\3Z\3Z\3"+
+ "Z\3Z\3Z\5Z\u033f\nZ\3[\3[\3[\3[\7[\u0345\n[\f[\16[\u0348\13[\3[\3[\3["+
+ "\3\\\3\\\3\\\3\\\7\\\u0351\n\\\f\\\16\\\u0354\13\\\3\\\3\\\5\\\u0358\n"+
+ "\\\3\\\3\\\5\\\u035c\n\\\5\\\u035e\n\\\3\\\5\\\u0361\n\\\3\\\3\\\3]\3"+
+ "]\3]\3]\5]\u0369\n]\3]\3]\3^\3^\5^\u036f\n^\3_\3_\3_\5_\u0374\n_\3`\3"+
+ "`\3`\3`\3`\5`\u037b\n`\3`\7`\u037e\n`\f`\16`\u0381\13`\3`\3`\6`\u0385"+
+ "\n`\r`\16`\u0386\3a\7a\u038a\na\fa\16a\u038d\13a\3a\3a\6a\u0391\na\ra"+
+ "\16a\u0392\3b\3b\3b\3b\3b\5b\u039a\nb\3b\7b\u039d\nb\fb\16b\u03a0\13b"+
+ "\3b\3b\6b\u03a4\nb\rb\16b\u03a5\3c\3c\3c\5c\u03ab\nc\3c\3c\3c\5c\u03b0"+
+ "\nc\3d\3d\3d\6d\u03b5\nd\rd\16d\u03b6\3d\3d\6d\u03bb\nd\rd\16d\u03bc\5"+
+ "d\u03bf\nd\3e\6e\u03c2\ne\re\16e\u03c3\3f\3f\3f\3f\3f\5f\u03cb\nf\3f\6"+
+ "f\u03ce\nf\rf\16f\u03cf\3g\3g\3h\3h\3i\3i\3j\3j\7j\u03da\nj\fj\16j\u03dd"+
+ "\13j\3j\3j\3k\3k\3l\3l\3m\6m\u03e6\nm\rm\16m\u03e7\3m\3m\3n\3n\3n\3n\7"+
+ "n\u03f0\nn\fn\16n\u03f3\13n\3n\3n\3o\3o\3o\3o\7o\u03fb\no\fo\16o\u03fe"+
"\13o\3o\3o\3o\3o\3o\3p\3p\3p\3p\3p\3p\3q\3q\3q\3q\3q\3q\3q\3q\3q\3q\3"+
"q\3q\3q\3q\3q\3q\3q\3q\3q\3q\3q\3q\3q\3q\3q\3q\3q\3q\3q\3q\3q\3q\3q\3"+
"q\3q\3q\3q\3q\3q\3q\3q\3q\3q\3q\3q\3q\3q\3q\3q\3q\3q\3q\3q\3q\3q\3q\3"+
@@ -352,29 +352,29 @@ public class KickCLexer extends Lexer {
"q\3q\3q\3q\3q\3q\3q\3q\3q\3q\3q\3q\3q\3q\3q\3q\3q\3q\3q\3q\3q\3q\3q\3"+
"q\3q\3q\3q\3q\3q\3q\3q\3q\3q\3q\3q\3q\3q\3q\3q\3q\3q\3q\3q\3q\3q\3q\3"+
"q\3q\3q\3q\3q\3q\3q\3q\3q\3q\3q\3q\3q\3q\3q\3q\3q\3q\3q\3q\3q\3q\3q\3"+
- "q\3q\3q\3q\3q\5q\u04ea\nq\3r\3r\3s\3s\3t\3t\3u\3u\3v\3v\3w\3w\3x\3x\3"+
+ "q\3q\3q\3q\3q\5q\u04e9\nq\3r\3r\3s\3s\3t\3t\3u\3u\3v\3v\3w\3w\3x\3x\3"+
"y\3y\3z\3z\3z\3{\3{\3{\3|\3|\3}\3}\3~\3~\3\177\3\177\3\u0080\3\u0080\3"+
"\u0081\3\u0081\3\u0082\3\u0082\3\u0082\3\u0083\3\u0083\3\u0083\3\u0084"+
- "\3\u0084\5\u0084\u0516\n\u0084\3\u0085\3\u0085\3\u0085\5\u0085\u051b\n"+
- "\u0085\3\u0086\3\u0086\7\u0086\u051f\n\u0086\f\u0086\16\u0086\u0522\13"+
- "\u0086\3\u0086\3\u0086\6\u0086\u0526\n\u0086\r\u0086\16\u0086\u0527\3"+
- "\u0087\7\u0087\u052b\n\u0087\f\u0087\16\u0087\u052e\13\u0087\3\u0087\3"+
- "\u0087\6\u0087\u0532\n\u0087\r\u0087\16\u0087\u0533\3\u0088\3\u0088\7"+
- "\u0088\u0538\n\u0088\f\u0088\16\u0088\u053b\13\u0088\3\u0088\3\u0088\6"+
- "\u0088\u053f\n\u0088\r\u0088\16\u0088\u0540\3\u0089\3\u0089\3\u0089\5"+
- "\u0089\u0546\n\u0089\3\u008a\3\u008a\6\u008a\u054a\n\u008a\r\u008a\16"+
- "\u008a\u054b\3\u008b\6\u008b\u054f\n\u008b\r\u008b\16\u008b\u0550\3\u008c"+
- "\3\u008c\6\u008c\u0555\n\u008c\r\u008c\16\u008c\u0556\3\u008d\3\u008d"+
+ "\3\u0084\5\u0084\u0515\n\u0084\3\u0085\3\u0085\3\u0085\5\u0085\u051a\n"+
+ "\u0085\3\u0086\3\u0086\7\u0086\u051e\n\u0086\f\u0086\16\u0086\u0521\13"+
+ "\u0086\3\u0086\3\u0086\6\u0086\u0525\n\u0086\r\u0086\16\u0086\u0526\3"+
+ "\u0087\7\u0087\u052a\n\u0087\f\u0087\16\u0087\u052d\13\u0087\3\u0087\3"+
+ "\u0087\6\u0087\u0531\n\u0087\r\u0087\16\u0087\u0532\3\u0088\3\u0088\7"+
+ "\u0088\u0537\n\u0088\f\u0088\16\u0088\u053a\13\u0088\3\u0088\3\u0088\6"+
+ "\u0088\u053e\n\u0088\r\u0088\16\u0088\u053f\3\u0089\3\u0089\3\u0089\5"+
+ "\u0089\u0545\n\u0089\3\u008a\3\u008a\6\u008a\u0549\n\u008a\r\u008a\16"+
+ "\u008a\u054a\3\u008b\6\u008b\u054e\n\u008b\r\u008b\16\u008b\u054f\3\u008c"+
+ "\3\u008c\6\u008c\u0554\n\u008c\r\u008c\16\u008c\u0555\3\u008d\3\u008d"+
"\3\u008e\3\u008e\3\u008f\3\u008f\3\u0090\3\u0090\3\u0090\3\u0090\5\u0090"+
- "\u0563\n\u0090\3\u0090\3\u0090\3\u0091\3\u0091\6\u0091\u0569\n\u0091\r"+
- "\u0091\16\u0091\u056a\3\u0092\3\u0092\7\u0092\u056f\n\u0092\f\u0092\16"+
- "\u0092\u0572\13\u0092\3\u0093\3\u0093\7\u0093\u0576\n\u0093\f\u0093\16"+
- "\u0093\u0579\13\u0093\3\u0094\3\u0094\3\u0095\3\u0095\3\u0096\6\u0096"+
- "\u0580\n\u0096\r\u0096\16\u0096\u0581\3\u0096\3\u0096\3\u0097\3\u0097"+
- "\3\u0097\3\u0097\7\u0097\u058a\n\u0097\f\u0097\16\u0097\u058d\13\u0097"+
- "\3\u0097\3\u0097\3\u0098\3\u0098\3\u0098\3\u0098\7\u0098\u0595\n\u0098"+
- "\f\u0098\16\u0098\u0598\13\u0098\3\u0098\3\u0098\3\u0098\3\u0098\3\u0098"+
- "\5\u0347\u03fd\u0596\2\u0099\4\4\6\5\b\6\n\7\f\b\16\t\20\n\22\13\24\f"+
+ "\u0562\n\u0090\3\u0090\3\u0090\3\u0091\3\u0091\6\u0091\u0568\n\u0091\r"+
+ "\u0091\16\u0091\u0569\3\u0092\3\u0092\7\u0092\u056e\n\u0092\f\u0092\16"+
+ "\u0092\u0571\13\u0092\3\u0093\3\u0093\7\u0093\u0575\n\u0093\f\u0093\16"+
+ "\u0093\u0578\13\u0093\3\u0094\3\u0094\3\u0095\3\u0095\3\u0096\6\u0096"+
+ "\u057f\n\u0096\r\u0096\16\u0096\u0580\3\u0096\3\u0096\3\u0097\3\u0097"+
+ "\3\u0097\3\u0097\7\u0097\u0589\n\u0097\f\u0097\16\u0097\u058c\13\u0097"+
+ "\3\u0097\3\u0097\3\u0098\3\u0098\3\u0098\3\u0098\7\u0098\u0594\n\u0098"+
+ "\f\u0098\16\u0098\u0597\13\u0098\3\u0098\3\u0098\3\u0098\3\u0098\3\u0098"+
+ "\5\u0346\u03fc\u0595\2\u0099\4\4\6\5\b\6\n\7\f\b\16\t\20\n\22\13\24\f"+
"\26\r\30\16\32\17\34\20\36\21 \22\"\23$\24&\25(\26*\27,\30.\31\60\32\62"+
"\33\64\34\66\358\36:\37< >!@\"B#D$F%H&J\'L(N)P*R+T,V-X.Z/\\\60^\61`\62"+
"b\63d\64f\65h\66j\67l8n9p:r;tz?|@~A\u0080B\u0082C\u0084D\u0086E\u0088"+
@@ -390,7 +390,7 @@ public class KickCLexer extends Lexer {
"\2\u012a\2\u012c\u008e\u012e\u008f\u0130\u0090\4\2\3\23\3\2$$\3\2||\4"+
"\2rruu\4\2ooww\7\2$$))hhpptt\3\2))\4\2uuww\7\2dfkknnuuyy\4\2DDdd\3\2\62"+
"\63\3\2\62;\5\2\62;CHch\5\2C\\aac|\6\2\62;C\\aac|\6\2\13\f\17\17\"\"\u00a2"+
- "\u00a2\4\2\f\f\17\17\4\2--//\2\u0628\2\4\3\2\2\2\2\6\3\2\2\2\2\b\3\2\2"+
+ "\u00a2\4\2\f\f\17\17\4\2--//\2\u0627\2\4\3\2\2\2\2\6\3\2\2\2\2\b\3\2\2"+
"\2\2\n\3\2\2\2\2\f\3\2\2\2\2\16\3\2\2\2\2\20\3\2\2\2\2\22\3\2\2\2\2\24"+
"\3\2\2\2\2\26\3\2\2\2\2\30\3\2\2\2\2\32\3\2\2\2\2\34\3\2\2\2\2\36\3\2"+
"\2\2\2 \3\2\2\2\2\"\3\2\2\2\2$\3\2\2\2\2&\3\2\2\2\2(\3\2\2\2\2*\3\2\2"+
@@ -431,33 +431,33 @@ public class KickCLexer extends Lexer {
"\3\2\2\2\\\u01d1\3\2\2\2^\u01da\3\2\2\2`\u01e3\3\2\2\2b\u01ec\3\2\2\2"+
"d\u01f2\3\2\2\2f\u01f9\3\2\2\2h\u0200\3\2\2\2j\u0206\3\2\2\2l\u020d\3"+
"\2\2\2n\u0216\3\2\2\2p\u0220\3\2\2\2r\u0229\3\2\2\2t\u0233\3\2\2\2v\u0238"+
- "\3\2\2\2x\u023e\3\2\2\2z\u0249\3\2\2\2|\u024f\3\2\2\2~\u0254\3\2\2\2\u0080"+
- "\u0270\3\2\2\2\u0082\u0272\3\2\2\2\u0084\u0275\3\2\2\2\u0086\u027a\3\2"+
- "\2\2\u0088\u0280\3\2\2\2\u008a\u0283\3\2\2\2\u008c\u0287\3\2\2\2\u008e"+
- "\u028e\3\2\2\2\u0090\u0295\3\2\2\2\u0092\u029b\3\2\2\2\u0094\u02a4\3\2"+
- "\2\2\u0096\u02aa\3\2\2\2\u0098\u02b2\3\2\2\2\u009a\u02b7\3\2\2\2\u009c"+
- "\u02be\3\2\2\2\u009e\u02c3\3\2\2\2\u00a0\u02ca\3\2\2\2\u00a2\u02d1\3\2"+
- "\2\2\u00a4\u02d9\3\2\2\2\u00a6\u02e2\3\2\2\2\u00a8\u02e7\3\2\2\2\u00aa"+
- "\u02f0\3\2\2\2\u00ac\u02f6\3\2\2\2\u00ae\u02fd\3\2\2\2\u00b0\u030d\3\2"+
- "\2\2\u00b2\u0334\3\2\2\2\u00b4\u033f\3\2\2\2\u00b6\u0341\3\2\2\2\u00b8"+
- "\u034d\3\2\2\2\u00ba\u0365\3\2\2\2\u00bc\u036f\3\2\2\2\u00be\u0374\3\2"+
- "\2\2\u00c0\u037b\3\2\2\2\u00c2\u038c\3\2\2\2\u00c4\u039a\3\2\2\2\u00c6"+
- "\u03ab\3\2\2\2\u00c8\u03bf\3\2\2\2\u00ca\u03c2\3\2\2\2\u00cc\u03cb\3\2"+
- "\2\2\u00ce\u03d2\3\2\2\2\u00d0\u03d4\3\2\2\2\u00d2\u03d6\3\2\2\2\u00d4"+
- "\u03d8\3\2\2\2\u00d6\u03e1\3\2\2\2\u00d8\u03e3\3\2\2\2\u00da\u03e6\3\2"+
- "\2\2\u00dc\u03ec\3\2\2\2\u00de\u03f7\3\2\2\2\u00e0\u0405\3\2\2\2\u00e2"+
- "\u04e9\3\2\2\2\u00e4\u04eb\3\2\2\2\u00e6\u04ed\3\2\2\2\u00e8\u04ef\3\2"+
- "\2\2\u00ea\u04f1\3\2\2\2\u00ec\u04f3\3\2\2\2\u00ee\u04f5\3\2\2\2\u00f0"+
- "\u04f7\3\2\2\2\u00f2\u04f9\3\2\2\2\u00f4\u04fb\3\2\2\2\u00f6\u04fe\3\2"+
- "\2\2\u00f8\u0501\3\2\2\2\u00fa\u0503\3\2\2\2\u00fc\u0505\3\2\2\2\u00fe"+
- "\u0507\3\2\2\2\u0100\u0509\3\2\2\2\u0102\u050b\3\2\2\2\u0104\u050d\3\2"+
- "\2\2\u0106\u0510\3\2\2\2\u0108\u0515\3\2\2\2\u010a\u051a\3\2\2\2\u010c"+
- "\u051c\3\2\2\2\u010e\u052c\3\2\2\2\u0110\u0535\3\2\2\2\u0112\u0545\3\2"+
- "\2\2\u0114\u0547\3\2\2\2\u0116\u054e\3\2\2\2\u0118\u0552\3\2\2\2\u011a"+
- "\u0558\3\2\2\2\u011c\u055a\3\2\2\2\u011e\u055c\3\2\2\2\u0120\u055e\3\2"+
- "\2\2\u0122\u0566\3\2\2\2\u0124\u056c\3\2\2\2\u0126\u0573\3\2\2\2\u0128"+
- "\u057a\3\2\2\2\u012a\u057c\3\2\2\2\u012c\u057f\3\2\2\2\u012e\u0585\3\2"+
- "\2\2\u0130\u0590\3\2\2\2\u0132\u0133\7}\2\2\u0133\u0134\b\2\2\2\u0134"+
+ "\3\2\2\2x\u023e\3\2\2\2z\u0244\3\2\2\2|\u0249\3\2\2\2~\u0265\3\2\2\2\u0080"+
+ "\u0267\3\2\2\2\u0082\u0271\3\2\2\2\u0084\u0274\3\2\2\2\u0086\u0279\3\2"+
+ "\2\2\u0088\u027f\3\2\2\2\u008a\u0282\3\2\2\2\u008c\u0286\3\2\2\2\u008e"+
+ "\u028d\3\2\2\2\u0090\u0294\3\2\2\2\u0092\u029a\3\2\2\2\u0094\u02a3\3\2"+
+ "\2\2\u0096\u02a9\3\2\2\2\u0098\u02b1\3\2\2\2\u009a\u02b6\3\2\2\2\u009c"+
+ "\u02bd\3\2\2\2\u009e\u02c2\3\2\2\2\u00a0\u02c9\3\2\2\2\u00a2\u02d0\3\2"+
+ "\2\2\u00a4\u02d8\3\2\2\2\u00a6\u02e1\3\2\2\2\u00a8\u02e6\3\2\2\2\u00aa"+
+ "\u02ef\3\2\2\2\u00ac\u02f5\3\2\2\2\u00ae\u02fc\3\2\2\2\u00b0\u030c\3\2"+
+ "\2\2\u00b2\u0333\3\2\2\2\u00b4\u033e\3\2\2\2\u00b6\u0340\3\2\2\2\u00b8"+
+ "\u034c\3\2\2\2\u00ba\u0364\3\2\2\2\u00bc\u036e\3\2\2\2\u00be\u0373\3\2"+
+ "\2\2\u00c0\u037a\3\2\2\2\u00c2\u038b\3\2\2\2\u00c4\u0399\3\2\2\2\u00c6"+
+ "\u03aa\3\2\2\2\u00c8\u03be\3\2\2\2\u00ca\u03c1\3\2\2\2\u00cc\u03ca\3\2"+
+ "\2\2\u00ce\u03d1\3\2\2\2\u00d0\u03d3\3\2\2\2\u00d2\u03d5\3\2\2\2\u00d4"+
+ "\u03d7\3\2\2\2\u00d6\u03e0\3\2\2\2\u00d8\u03e2\3\2\2\2\u00da\u03e5\3\2"+
+ "\2\2\u00dc\u03eb\3\2\2\2\u00de\u03f6\3\2\2\2\u00e0\u0404\3\2\2\2\u00e2"+
+ "\u04e8\3\2\2\2\u00e4\u04ea\3\2\2\2\u00e6\u04ec\3\2\2\2\u00e8\u04ee\3\2"+
+ "\2\2\u00ea\u04f0\3\2\2\2\u00ec\u04f2\3\2\2\2\u00ee\u04f4\3\2\2\2\u00f0"+
+ "\u04f6\3\2\2\2\u00f2\u04f8\3\2\2\2\u00f4\u04fa\3\2\2\2\u00f6\u04fd\3\2"+
+ "\2\2\u00f8\u0500\3\2\2\2\u00fa\u0502\3\2\2\2\u00fc\u0504\3\2\2\2\u00fe"+
+ "\u0506\3\2\2\2\u0100\u0508\3\2\2\2\u0102\u050a\3\2\2\2\u0104\u050c\3\2"+
+ "\2\2\u0106\u050f\3\2\2\2\u0108\u0514\3\2\2\2\u010a\u0519\3\2\2\2\u010c"+
+ "\u051b\3\2\2\2\u010e\u052b\3\2\2\2\u0110\u0534\3\2\2\2\u0112\u0544\3\2"+
+ "\2\2\u0114\u0546\3\2\2\2\u0116\u054d\3\2\2\2\u0118\u0551\3\2\2\2\u011a"+
+ "\u0557\3\2\2\2\u011c\u0559\3\2\2\2\u011e\u055b\3\2\2\2\u0120\u055d\3\2"+
+ "\2\2\u0122\u0565\3\2\2\2\u0124\u056b\3\2\2\2\u0126\u0572\3\2\2\2\u0128"+
+ "\u0579\3\2\2\2\u012a\u057b\3\2\2\2\u012c\u057e\3\2\2\2\u012e\u0584\3\2"+
+ "\2\2\u0130\u058f\3\2\2\2\u0132\u0133\7}\2\2\u0133\u0134\b\2\2\2\u0134"+
"\5\3\2\2\2\u0135\u0136\7\177\2\2\u0136\7\3\2\2\2\u0137\u0138\7]\2\2\u0138"+
"\t\3\2\2\2\u0139\u013a\7_\2\2\u013a\13\3\2\2\2\u013b\u013c\7*\2\2\u013c"+
"\r\3\2\2\2\u013d\u013e\7+\2\2\u013e\17\3\2\2\2\u013f\u0140\7=\2\2\u0140"+
@@ -530,293 +530,293 @@ public class KickCLexer extends Lexer {
"\2\u0235\u0236\7|\2\2\u0236\u0237\7r\2\2\u0237u\3\2\2\2\u0238\u0239\7"+
"a\2\2\u0239\u023a\7a\2\2\u023a\u023b\7o\2\2\u023b\u023c\7g\2\2\u023c\u023d"+
"\7o\2\2\u023dw\3\2\2\2\u023e\u023f\7a\2\2\u023f\u0240\7a\2\2\u0240\u0241"+
- "\7p\2\2\u0241\u0242\7q\2\2\u0242\u0243\7v\2\2\u0243\u0244\7e\2\2\u0244"+
- "\u0245\7q\2\2\u0245\u0246\7p\2\2\u0246\u0247\7u\2\2\u0247\u0248\7v\2\2"+
- "\u0248y\3\2\2\2\u0249\u024a\7a\2\2\u024a\u024b\7a\2\2\u024b\u024c\7u\2"+
- "\2\u024c\u024d\7u\2\2\u024d\u024e\7c\2\2\u024e{\3\2\2\2\u024f\u0250\7"+
- "a\2\2\u0250\u0251\7a\2\2\u0251\u0252\7o\2\2\u0252\u0253\7c\2\2\u0253}"+
- "\3\2\2\2\u0254\u0255\7e\2\2\u0255\u0256\7c\2\2\u0256\u0257\7n\2\2\u0257"+
- "\u0258\7n\2\2\u0258\u0259\7k\2\2\u0259\u025a\7p\2\2\u025a\u025b\7i\2\2"+
- "\u025b\177\3\2\2\2\u025c\u025d\7a\2\2\u025d\u025e\7a\2\2\u025e\u025f\7"+
- "u\2\2\u025f\u0260\7v\2\2\u0260\u0261\7c\2\2\u0261\u0262\7e\2\2\u0262\u0263"+
- "\7m\2\2\u0263\u0264\7e\2\2\u0264\u0265\7c\2\2\u0265\u0266\7n\2\2\u0266"+
- "\u0271\7n\2\2\u0267\u0268\7a\2\2\u0268\u0269\7a\2\2\u0269\u026a\7r\2\2"+
- "\u026a\u026b\7j\2\2\u026b\u026c\7k\2\2\u026c\u026d\7e\2\2\u026d\u026e"+
- "\7c\2\2\u026e\u026f\7n\2\2\u026f\u0271\7n\2\2\u0270\u025c\3\2\2\2\u0270"+
- "\u0267\3\2\2\2\u0271\u0081\3\2\2\2\u0272\u0273\7k\2\2\u0273\u0274\7h\2"+
- "\2\u0274\u0083\3\2\2\2\u0275\u0276\7g\2\2\u0276\u0277\7n\2\2\u0277\u0278"+
- "\7u\2\2\u0278\u0279\7g\2\2\u0279\u0085\3\2\2\2\u027a\u027b\7y\2\2\u027b"+
- "\u027c\7j\2\2\u027c\u027d\7k\2\2\u027d\u027e\7n\2\2\u027e\u027f\7g\2\2"+
- "\u027f\u0087\3\2\2\2\u0280\u0281\7f\2\2\u0281\u0282\7q\2\2\u0282\u0089"+
- "\3\2\2\2\u0283\u0284\7h\2\2\u0284\u0285\7q\2\2\u0285\u0286\7t\2\2\u0286"+
- "\u008b\3\2\2\2\u0287\u0288\7u\2\2\u0288\u0289\7y\2\2\u0289\u028a\7k\2"+
- "\2\u028a\u028b\7v\2\2\u028b\u028c\7e\2\2\u028c\u028d\7j\2\2\u028d\u008d"+
- "\3\2\2\2\u028e\u028f\7t\2\2\u028f\u0290\7g\2\2\u0290\u0291\7v\2\2\u0291"+
- "\u0292\7w\2\2\u0292\u0293\7t\2\2\u0293\u0294\7p\2\2\u0294\u008f\3\2\2"+
- "\2\u0295\u0296\7d\2\2\u0296\u0297\7t\2\2\u0297\u0298\7g\2\2\u0298\u0299"+
- "\7c\2\2\u0299\u029a\7m\2\2\u029a\u0091\3\2\2\2\u029b\u029c\7e\2\2\u029c"+
- "\u029d\7q\2\2\u029d\u029e\7p\2\2\u029e\u029f\7v\2\2\u029f\u02a0\7k\2\2"+
- "\u02a0\u02a1\7p\2\2\u02a1\u02a2\7w\2\2\u02a2\u02a3\7g\2\2\u02a3\u0093"+
- "\3\2\2\2\u02a4\u02a5\7c\2\2\u02a5\u02a6\7u\2\2\u02a6\u02a7\7o\2\2\u02a7"+
- "\u02a8\3\2\2\2\u02a8\u02a9\bJ\4\2\u02a9\u0095\3\2\2\2\u02aa\u02ab\7f\2"+
- "\2\u02ab\u02ac\7g\2\2\u02ac\u02ad\7h\2\2\u02ad\u02ae\7c\2\2\u02ae\u02af"+
- "\7w\2\2\u02af\u02b0\7n\2\2\u02b0\u02b1\7v\2\2\u02b1\u0097\3\2\2\2\u02b2"+
- "\u02b3\7e\2\2\u02b3\u02b4\7c\2\2\u02b4\u02b5\7u\2\2\u02b5\u02b6\7g\2\2"+
- "\u02b6\u0099\3\2\2\2\u02b7\u02b8\7u\2\2\u02b8\u02b9\7v\2\2\u02b9\u02ba"+
- "\7t\2\2\u02ba\u02bb\7w\2\2\u02bb\u02bc\7e\2\2\u02bc\u02bd\7v\2\2\u02bd"+
- "\u009b\3\2\2\2\u02be\u02bf\7g\2\2\u02bf\u02c0\7p\2\2\u02c0\u02c1\7w\2"+
- "\2\u02c1\u02c2\7o\2\2\u02c2\u009d\3\2\2\2\u02c3\u02c4\7u\2\2\u02c4\u02c5"+
- "\7k\2\2\u02c5\u02c6\7|\2\2\u02c6\u02c7\7g\2\2\u02c7\u02c8\7q\2\2\u02c8"+
- "\u02c9\7h\2\2\u02c9\u009f\3\2\2\2\u02ca\u02cb\7v\2\2\u02cb\u02cc\7{\2"+
- "\2\u02cc\u02cd\7r\2\2\u02cd\u02ce\7g\2\2\u02ce\u02cf\7k\2\2\u02cf\u02d0"+
- "\7f\2\2\u02d0\u00a1\3\2\2\2\u02d1\u02d2\7m\2\2\u02d2\u02d3\7k\2\2\u02d3"+
- "\u02d4\7e\2\2\u02d4\u02d5\7m\2\2\u02d5\u02d6\7c\2\2\u02d6\u02d7\7u\2\2"+
- "\u02d7\u02d8\7o\2\2\u02d8\u00a3\3\2\2\2\u02d9\u02da\7t\2\2\u02da\u02db"+
- "\7g\2\2\u02db\u02dc\7u\2\2\u02dc\u02dd\7q\2\2\u02dd\u02de\7w\2\2\u02de"+
- "\u02df\7t\2\2\u02df\u02e0\7e\2\2\u02e0\u02e1\7g\2\2\u02e1\u00a5\3\2\2"+
- "\2\u02e2\u02e3\7w\2\2\u02e3\u02e4\7u\2\2\u02e4\u02e5\7g\2\2\u02e5\u02e6"+
- "\7u\2\2\u02e6\u00a7\3\2\2\2\u02e7\u02e8\7e\2\2\u02e8\u02e9\7n\2\2\u02e9"+
- "\u02ea\7q\2\2\u02ea\u02eb\7d\2\2\u02eb\u02ec\7d\2\2\u02ec\u02ed\7g\2\2"+
- "\u02ed\u02ee\7t\2\2\u02ee\u02ef\7u\2\2\u02ef\u00a9\3\2\2\2\u02f0\u02f1"+
- "\7d\2\2\u02f1\u02f2\7{\2\2\u02f2\u02f3\7v\2\2\u02f3\u02f4\7g\2\2\u02f4"+
- "\u02f5\7u\2\2\u02f5\u00ab\3\2\2\2\u02f6\u02f7\7e\2\2\u02f7\u02f8\7{\2"+
- "\2\u02f8\u02f9\7e\2\2\u02f9\u02fa\7n\2\2\u02fa\u02fb\7g\2\2\u02fb\u02fc"+
- "\7u\2\2\u02fc\u00ad\3\2\2\2\u02fd\u02fe\7#\2\2\u02fe\u00af\3\2\2\2\u02ff"+
- "\u0300\7u\2\2\u0300\u0301\7k\2\2\u0301\u0302\7i\2\2\u0302\u0303\7p\2\2"+
- "\u0303\u0304\7g\2\2\u0304\u030e\7f\2\2\u0305\u0306\7w\2\2\u0306\u0307"+
- "\7p\2\2\u0307\u0308\7u\2\2\u0308\u0309\7k\2\2\u0309\u030a\7i\2\2\u030a"+
- "\u030b\7p\2\2\u030b\u030c\7g\2\2\u030c\u030e\7f\2\2\u030d\u02ff\3\2\2"+
- "\2\u030d\u0305\3\2\2\2\u030e\u00b1\3\2\2\2\u030f\u0310\7d\2\2\u0310\u0311"+
- "\7{\2\2\u0311\u0312\7v\2\2\u0312\u0335\7g\2\2\u0313\u0314\7y\2\2\u0314"+
- "\u0315\7q\2\2\u0315\u0316\7t\2\2\u0316\u0335\7f\2\2\u0317\u0318\7f\2\2"+
- "\u0318\u0319\7y\2\2\u0319\u031a\7q\2\2\u031a\u031b\7t\2\2\u031b\u0335"+
- "\7f\2\2\u031c\u031d\7d\2\2\u031d\u031e\7q\2\2\u031e\u031f\7q\2\2\u031f"+
- "\u0335\7n\2\2\u0320\u0321\7e\2\2\u0321\u0322\7j\2\2\u0322\u0323\7c\2\2"+
- "\u0323\u0335\7t\2\2\u0324\u0325\7u\2\2\u0325\u0326\7j\2\2\u0326\u0327"+
- "\7q\2\2\u0327\u0328\7t\2\2\u0328\u0335\7v\2\2\u0329\u032a\7k\2\2\u032a"+
- "\u032b\7p\2\2\u032b\u0335\7v\2\2\u032c\u032d\7n\2\2\u032d\u032e\7q\2\2"+
- "\u032e\u032f\7p\2\2\u032f\u0335\7i\2\2\u0330\u0331\7x\2\2\u0331\u0332"+
- "\7q\2\2\u0332\u0333\7k\2\2\u0333\u0335\7f\2\2\u0334\u030f\3\2\2\2\u0334"+
- "\u0313\3\2\2\2\u0334\u0317\3\2\2\2\u0334\u031c\3\2\2\2\u0334\u0320\3\2"+
- "\2\2\u0334\u0324\3\2\2\2\u0334\u0329\3\2\2\2\u0334\u032c\3\2\2\2\u0334"+
- "\u0330\3\2\2\2\u0335\u00b3\3\2\2\2\u0336\u0337\7v\2\2\u0337\u0338\7t\2"+
- "\2\u0338\u0339\7w\2\2\u0339\u0340\7g\2\2\u033a\u033b\7h\2\2\u033b\u033c"+
- "\7c\2\2\u033c\u033d\7n\2\2\u033d\u033e\7u\2\2\u033e\u0340\7g\2\2\u033f"+
- "\u0336\3\2\2\2\u033f\u033a\3\2\2\2\u0340\u00b5\3\2\2\2\u0341\u0342\7}"+
- "\2\2\u0342\u0343\7}\2\2\u0343\u0347\3\2\2\2\u0344\u0346\13\2\2\2\u0345"+
- "\u0344\3\2\2\2\u0346\u0349\3\2\2\2\u0347\u0348\3\2\2\2\u0347\u0345\3\2"+
- "\2\2\u0348\u034a\3\2\2\2\u0349\u0347\3\2\2\2\u034a\u034b\7\177\2\2\u034b"+
- "\u034c\7\177\2\2\u034c\u00b7\3\2\2\2\u034d\u0353\7$\2\2\u034e\u034f\7"+
- "^\2\2\u034f\u0352\7$\2\2\u0350\u0352\n\2\2\2\u0351\u034e\3\2\2\2\u0351"+
- "\u0350\3\2\2\2\u0352\u0355\3\2\2\2\u0353\u0351\3\2\2\2\u0353\u0354\3\2"+
- "\2\2\u0354\u0356\3\2\2\2\u0355\u0353\3\2\2\2\u0356\u0358\7$\2\2\u0357"+
- "\u0359\t\3\2\2\u0358\u0357\3\2\2\2\u0358\u0359\3\2\2\2\u0359\u035e\3\2"+
- "\2\2\u035a\u035c\t\4\2\2\u035b\u035d\t\5\2\2\u035c\u035b\3\2\2\2\u035c"+
- "\u035d\3\2\2\2\u035d\u035f\3\2\2\2\u035e\u035a\3\2\2\2\u035e\u035f\3\2"+
- "\2\2\u035f\u0361\3\2\2\2\u0360\u0362\t\3\2\2\u0361\u0360\3\2\2\2\u0361"+
- "\u0362\3\2\2\2\u0362\u0363\3\2\2\2\u0363\u0364\b\\\5\2\u0364\u00b9\3\2"+
- "\2\2\u0365\u0369\7)\2\2\u0366\u0367\7^\2\2\u0367\u036a\t\6\2\2\u0368\u036a"+
- "\n\7\2\2\u0369\u0366\3\2\2\2\u0369\u0368\3\2\2\2\u036a\u036b\3\2\2\2\u036b"+
- "\u036c\7)\2\2\u036c\u00bb\3\2\2\2\u036d\u0370\5\u00be_\2\u036e\u0370\5"+
- "\u00c6c\2\u036f\u036d\3\2\2\2\u036f\u036e\3\2\2\2\u0370\u00bd\3\2\2\2"+
- "\u0371\u0375\5\u00c0`\2\u0372\u0375\5\u00c2a\2\u0373\u0375\5\u00c4b\2"+
- "\u0374\u0371\3\2\2\2\u0374\u0372\3\2\2\2\u0374\u0373\3\2\2\2\u0375\u00bf"+
- "\3\2\2\2\u0376\u037c\7\'\2\2\u0377\u0378\7\62\2\2\u0378\u037c\7d\2\2\u0379"+
- "\u037a\7\62\2\2\u037a\u037c\7D\2\2\u037b\u0376\3\2\2\2\u037b\u0377\3\2"+
- "\2\2\u037b\u0379\3\2\2\2\u037c\u0380\3\2\2\2\u037d\u037f\5\u00ceg\2\u037e"+
- "\u037d\3\2\2\2\u037f\u0382\3\2\2\2\u0380\u037e\3\2\2\2\u0380\u0381\3\2"+
- "\2\2\u0381\u0383\3\2\2\2\u0382\u0380\3\2\2\2\u0383\u0385\7\60\2\2\u0384"+
- "\u0386\5\u00ceg\2\u0385\u0384\3\2\2\2\u0386\u0387\3\2\2\2\u0387\u0385"+
- "\3\2\2\2\u0387\u0388\3\2\2\2\u0388\u00c1\3\2\2\2\u0389\u038b\5\u00d0h"+
- "\2\u038a\u0389\3\2\2\2\u038b\u038e\3\2\2\2\u038c\u038a\3\2\2\2\u038c\u038d"+
- "\3\2\2\2\u038d\u038f\3\2\2\2\u038e\u038c\3\2\2\2\u038f\u0391\7\60\2\2"+
- "\u0390\u0392\5\u00d0h\2\u0391\u0390\3\2\2\2\u0392\u0393\3\2\2\2\u0393"+
- "\u0391\3\2\2\2\u0393\u0394\3\2\2\2\u0394\u00c3\3\2\2\2\u0395\u039b\7&"+
- "\2\2\u0396\u0397\7\62\2\2\u0397\u039b\7z\2\2\u0398\u0399\7\62\2\2\u0399"+
- "\u039b\7Z\2\2\u039a\u0395\3\2\2\2\u039a\u0396\3\2\2\2\u039a\u0398\3\2"+
- "\2\2\u039b\u039f\3\2\2\2\u039c\u039e\5\u00d2i\2\u039d\u039c\3\2\2\2\u039e"+
- "\u03a1\3\2\2\2\u039f\u039d\3\2\2\2\u039f\u03a0\3\2\2\2\u03a0\u03a2\3\2"+
- "\2\2\u03a1\u039f\3\2\2\2\u03a2\u03a4\7\60\2\2\u03a3\u03a5\5\u00d2i\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\u00c5\3\2\2\2\u03a8\u03ac\5\u00cae\2\u03a9\u03ac\5\u00ccf\2"+
- "\u03aa\u03ac\5\u00c8d\2\u03ab\u03a8\3\2\2\2\u03ab\u03a9\3\2\2\2\u03ab"+
- "\u03aa\3\2\2\2\u03ac\u03b0\3\2\2\2\u03ad\u03ae\t\b\2\2\u03ae\u03b1\t\t"+
- "\2\2\u03af\u03b1\7n\2\2\u03b0\u03ad\3\2\2\2\u03b0\u03af\3\2\2\2\u03b0"+
- "\u03b1\3\2\2\2\u03b1\u00c7\3\2\2\2\u03b2\u03b3\7\62\2\2\u03b3\u03b5\t"+
- "\n\2\2\u03b4\u03b6\5\u00ceg\2\u03b5\u03b4\3\2\2\2\u03b6\u03b7\3\2\2\2"+
- "\u03b7\u03b5\3\2\2\2\u03b7\u03b8\3\2\2\2\u03b8\u03c0\3\2\2\2\u03b9\u03bb"+
- "\7\'\2\2\u03ba\u03bc\5\u00ceg\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\u03c0\3\2\2\2\u03bf\u03b2"+
- "\3\2\2\2\u03bf\u03b9\3\2\2\2\u03c0\u00c9\3\2\2\2\u03c1\u03c3\5\u00d0h"+
- "\2\u03c2\u03c1\3\2\2\2\u03c3\u03c4\3\2\2\2\u03c4\u03c2\3\2\2\2\u03c4\u03c5"+
- "\3\2\2\2\u03c5\u00cb\3\2\2\2\u03c6\u03cc\7&\2\2\u03c7\u03c8\7\62\2\2\u03c8"+
- "\u03cc\7z\2\2\u03c9\u03ca\7\62\2\2\u03ca\u03cc\7Z\2\2\u03cb\u03c6\3\2"+
- "\2\2\u03cb\u03c7\3\2\2\2\u03cb\u03c9\3\2\2\2\u03cc\u03ce\3\2\2\2\u03cd"+
- "\u03cf\5\u00d2i\2\u03ce\u03cd\3\2\2\2\u03cf\u03d0\3\2\2\2\u03d0\u03ce"+
- "\3\2\2\2\u03d0\u03d1\3\2\2\2\u03d1\u00cd\3\2\2\2\u03d2\u03d3\t\13\2\2"+
- "\u03d3\u00cf\3\2\2\2\u03d4\u03d5\t\f\2\2\u03d5\u00d1\3\2\2\2\u03d6\u03d7"+
- "\t\r\2\2\u03d7\u00d3\3\2\2\2\u03d8\u03dc\5\u00d6k\2\u03d9\u03db\5\u00d8"+
- "l\2\u03da\u03d9\3\2\2\2\u03db\u03de\3\2\2\2\u03dc\u03da\3\2\2\2\u03dc"+
- "\u03dd\3\2\2\2\u03dd\u03df\3\2\2\2\u03de\u03dc\3\2\2\2\u03df\u03e0\bj"+
- "\6\2\u03e0\u00d5\3\2\2\2\u03e1\u03e2\t\16\2\2\u03e2\u00d7\3\2\2\2\u03e3"+
- "\u03e4\t\17\2\2\u03e4\u00d9\3\2\2\2\u03e5\u03e7\t\20\2\2\u03e6\u03e5\3"+
- "\2\2\2\u03e7\u03e8\3\2\2\2\u03e8\u03e6\3\2\2\2\u03e8\u03e9\3\2\2\2\u03e9"+
- "\u03ea\3\2\2\2\u03ea\u03eb\bm\7\2\u03eb\u00db\3\2\2\2\u03ec\u03ed\7\61"+
- "\2\2\u03ed\u03ee\7\61\2\2\u03ee\u03f2\3\2\2\2\u03ef\u03f1\n\21\2\2\u03f0"+
- "\u03ef\3\2\2\2\u03f1\u03f4\3\2\2\2\u03f2\u03f0\3\2\2\2\u03f2\u03f3\3\2"+
- "\2\2\u03f3\u03f5\3\2\2\2\u03f4\u03f2\3\2\2\2\u03f5\u03f6\bn\b\2\u03f6"+
- "\u00dd\3\2\2\2\u03f7\u03f8\7\61\2\2\u03f8\u03f9\7,\2\2\u03f9\u03fd\3\2"+
- "\2\2\u03fa\u03fc\13\2\2\2\u03fb\u03fa\3\2\2\2\u03fc\u03ff\3\2\2\2\u03fd"+
- "\u03fe\3\2\2\2\u03fd\u03fb\3\2\2\2\u03fe\u0400\3\2\2\2\u03ff\u03fd\3\2"+
- "\2\2\u0400\u0401\7,\2\2\u0401\u0402\7\61\2\2\u0402\u0403\3\2\2\2\u0403"+
- "\u0404\bo\b\2\u0404\u00df\3\2\2\2\u0405\u0406\7\60\2\2\u0406\u0407\7d"+
- "\2\2\u0407\u0408\7{\2\2\u0408\u0409\7v\2\2\u0409\u040a\7g\2\2\u040a\u00e1"+
- "\3\2\2\2\u040b\u040c\7d\2\2\u040c\u040d\7t\2\2\u040d\u04ea\7m\2\2\u040e"+
- "\u040f\7q\2\2\u040f\u0410\7t\2\2\u0410\u04ea\7c\2\2\u0411\u0412\7m\2\2"+
- "\u0412\u0413\7k\2\2\u0413\u04ea\7n\2\2\u0414\u0415\7u\2\2\u0415\u0416"+
- "\7n\2\2\u0416\u04ea\7q\2\2\u0417\u0418\7p\2\2\u0418\u0419\7q\2\2\u0419"+
- "\u04ea\7r\2\2\u041a\u041b\7c\2\2\u041b\u041c\7u\2\2\u041c\u04ea\7n\2\2"+
- "\u041d\u041e\7r\2\2\u041e\u041f\7j\2\2\u041f\u04ea\7r\2\2\u0420\u0421"+
- "\7c\2\2\u0421\u0422\7p\2\2\u0422\u04ea\7e\2\2\u0423\u0424\7d\2\2\u0424"+
- "\u0425\7r\2\2\u0425\u04ea\7n\2\2\u0426\u0427\7e\2\2\u0427\u0428\7n\2\2"+
- "\u0428\u04ea\7e\2\2\u0429\u042a\7l\2\2\u042a\u042b\7u\2\2\u042b\u04ea"+
- "\7t\2\2\u042c\u042d\7c\2\2\u042d\u042e\7p\2\2\u042e\u04ea\7f\2\2\u042f"+
- "\u0430\7t\2\2\u0430\u0431\7n\2\2\u0431\u04ea\7c\2\2\u0432\u0433\7d\2\2"+
- "\u0433\u0434\7k\2\2\u0434\u04ea\7v\2\2\u0435\u0436\7t\2\2\u0436\u0437"+
- "\7q\2\2\u0437\u04ea\7n\2\2\u0438\u0439\7r\2\2\u0439\u043a\7n\2\2\u043a"+
- "\u04ea\7c\2\2\u043b\u043c\7r\2\2\u043c\u043d\7n\2\2\u043d\u04ea\7r\2\2"+
- "\u043e\u043f\7d\2\2\u043f\u0440\7o\2\2\u0440\u04ea\7k\2\2\u0441\u0442"+
- "\7u\2\2\u0442\u0443\7g\2\2\u0443\u04ea\7e\2\2\u0444\u0445\7t\2\2\u0445"+
- "\u0446\7v\2\2\u0446\u04ea\7k\2\2\u0447\u0448\7g\2\2\u0448\u0449\7q\2\2"+
- "\u0449\u04ea\7t\2\2\u044a\u044b\7u\2\2\u044b\u044c\7t\2\2\u044c\u04ea"+
- "\7g\2\2\u044d\u044e\7n\2\2\u044e\u044f\7u\2\2\u044f\u04ea\7t\2\2\u0450"+
- "\u0451\7r\2\2\u0451\u0452\7j\2\2\u0452\u04ea\7c\2\2\u0453\u0454\7c\2\2"+
- "\u0454\u0455\7n\2\2\u0455\u04ea\7t\2\2\u0456\u0457\7l\2\2\u0457\u0458"+
- "\7o\2\2\u0458\u04ea\7r\2\2\u0459\u045a\7d\2\2\u045a\u045b\7x\2\2\u045b"+
- "\u04ea\7e\2\2\u045c\u045d\7e\2\2\u045d\u045e\7n\2\2\u045e\u04ea\7k\2\2"+
- "\u045f\u0460\7t\2\2\u0460\u0461\7v\2\2\u0461\u04ea\7u\2\2\u0462\u0463"+
- "\7c\2\2\u0463\u0464\7f\2\2\u0464\u04ea\7e\2\2\u0465\u0466\7t\2\2\u0466"+
- "\u0467\7t\2\2\u0467\u04ea\7c\2\2\u0468\u0469\7d\2\2\u0469\u046a\7x\2\2"+
- "\u046a\u04ea\7u\2\2\u046b\u046c\7u\2\2\u046c\u046d\7g\2\2\u046d\u04ea"+
- "\7k\2\2\u046e\u046f\7u\2\2\u046f\u0470\7c\2\2\u0470\u04ea\7z\2\2\u0471"+
- "\u0472\7u\2\2\u0472\u0473\7v\2\2\u0473\u04ea\7{\2\2\u0474\u0475\7u\2\2"+
- "\u0475\u0476\7v\2\2\u0476\u04ea\7c\2\2\u0477\u0478\7u\2\2\u0478\u0479"+
- "\7v\2\2\u0479\u04ea\7z\2\2\u047a\u047b\7f\2\2\u047b\u047c\7g\2\2\u047c"+
- "\u04ea\7{\2\2\u047d\u047e\7v\2\2\u047e\u047f\7z\2\2\u047f\u04ea\7c\2\2"+
- "\u0480\u0481\7z\2\2\u0481\u0482\7c\2\2\u0482\u04ea\7c\2\2\u0483\u0484"+
- "\7d\2\2\u0484\u0485\7e\2\2\u0485\u04ea\7e\2\2\u0486\u0487\7c\2\2\u0487"+
- "\u0488\7j\2\2\u0488\u04ea\7z\2\2\u0489\u048a\7v\2\2\u048a\u048b\7{\2\2"+
- "\u048b\u04ea\7c\2\2\u048c\u048d\7v\2\2\u048d\u048e\7z\2\2\u048e\u04ea"+
- "\7u\2\2\u048f\u0490\7v\2\2\u0490\u0491\7c\2\2\u0491\u04ea\7u\2\2\u0492"+
- "\u0493\7u\2\2\u0493\u0494\7j\2\2\u0494\u04ea\7{\2\2\u0495\u0496\7u\2\2"+
- "\u0496\u0497\7j\2\2\u0497\u04ea\7z\2\2\u0498\u0499\7n\2\2\u0499\u049a"+
- "\7f\2\2\u049a\u04ea\7{\2\2\u049b\u049c\7n\2\2\u049c\u049d\7f\2\2\u049d"+
- "\u04ea\7c\2\2\u049e\u049f\7n\2\2\u049f\u04a0\7f\2\2\u04a0\u04ea\7z\2\2"+
- "\u04a1\u04a2\7n\2\2\u04a2\u04a3\7c\2\2\u04a3\u04ea\7z\2\2\u04a4\u04a5"+
- "\7v\2\2\u04a5\u04a6\7c\2\2\u04a6\u04ea\7{\2\2\u04a7\u04a8\7v\2\2\u04a8"+
- "\u04a9\7c\2\2\u04a9\u04ea\7z\2\2\u04aa\u04ab\7d\2\2\u04ab\u04ac\7e\2\2"+
- "\u04ac\u04ea\7u\2\2\u04ad\u04ae\7e\2\2\u04ae\u04af\7n\2\2\u04af\u04ea"+
- "\7x\2\2\u04b0\u04b1\7v\2\2\u04b1\u04b2\7u\2\2\u04b2\u04ea\7z\2\2\u04b3"+
- "\u04b4\7n\2\2\u04b4\u04b5\7c\2\2\u04b5\u04ea\7u\2\2\u04b6\u04b7\7e\2\2"+
- "\u04b7\u04b8\7r\2\2\u04b8\u04ea\7{\2\2\u04b9\u04ba\7e\2\2\u04ba\u04bb"+
- "\7o\2\2\u04bb\u04ea\7r\2\2\u04bc\u04bd\7e\2\2\u04bd\u04be\7r\2\2\u04be"+
- "\u04ea\7z\2\2\u04bf\u04c0\7f\2\2\u04c0\u04c1\7e\2\2\u04c1\u04ea\7r\2\2"+
- "\u04c2\u04c3\7f\2\2\u04c3\u04c4\7g\2\2\u04c4\u04ea\7e\2\2\u04c5\u04c6"+
- "\7k\2\2\u04c6\u04c7\7p\2\2\u04c7\u04ea\7e\2\2\u04c8\u04c9\7c\2\2\u04c9"+
- "\u04ca\7z\2\2\u04ca\u04ea\7u\2\2\u04cb\u04cc\7d\2\2\u04cc\u04cd\7p\2\2"+
- "\u04cd\u04ea\7g\2\2\u04ce\u04cf\7e\2\2\u04cf\u04d0\7n\2\2\u04d0\u04ea"+
- "\7f\2\2\u04d1\u04d2\7u\2\2\u04d2\u04d3\7d\2\2\u04d3\u04ea\7e\2\2\u04d4"+
- "\u04d5\7k\2\2\u04d5\u04d6\7u\2\2\u04d6\u04ea\7e\2\2\u04d7\u04d8\7k\2\2"+
- "\u04d8\u04d9\7p\2\2\u04d9\u04ea\7z\2\2\u04da\u04db\7d\2\2\u04db\u04dc"+
- "\7g\2\2\u04dc\u04ea\7s\2\2\u04dd\u04de\7u\2\2\u04de\u04df\7g\2\2\u04df"+
- "\u04ea\7f\2\2\u04e0\u04e1\7f\2\2\u04e1\u04e2\7g\2\2\u04e2\u04ea\7z\2\2"+
- "\u04e3\u04e4\7k\2\2\u04e4\u04e5\7p\2\2\u04e5\u04ea\7{\2\2\u04e6\u04e7"+
- "\7t\2\2\u04e7\u04e8\7q\2\2\u04e8\u04ea\7t\2\2\u04e9\u040b\3\2\2\2\u04e9"+
- "\u040e\3\2\2\2\u04e9\u0411\3\2\2\2\u04e9\u0414\3\2\2\2\u04e9\u0417\3\2"+
- "\2\2\u04e9\u041a\3\2\2\2\u04e9\u041d\3\2\2\2\u04e9\u0420\3\2\2\2\u04e9"+
- "\u0423\3\2\2\2\u04e9\u0426\3\2\2\2\u04e9\u0429\3\2\2\2\u04e9\u042c\3\2"+
- "\2\2\u04e9\u042f\3\2\2\2\u04e9\u0432\3\2\2\2\u04e9\u0435\3\2\2\2\u04e9"+
- "\u0438\3\2\2\2\u04e9\u043b\3\2\2\2\u04e9\u043e\3\2\2\2\u04e9\u0441\3\2"+
- "\2\2\u04e9\u0444\3\2\2\2\u04e9\u0447\3\2\2\2\u04e9\u044a\3\2\2\2\u04e9"+
- "\u044d\3\2\2\2\u04e9\u0450\3\2\2\2\u04e9\u0453\3\2\2\2\u04e9\u0456\3\2"+
- "\2\2\u04e9\u0459\3\2\2\2\u04e9\u045c\3\2\2\2\u04e9\u045f\3\2\2\2\u04e9"+
- "\u0462\3\2\2\2\u04e9\u0465\3\2\2\2\u04e9\u0468\3\2\2\2\u04e9\u046b\3\2"+
- "\2\2\u04e9\u046e\3\2\2\2\u04e9\u0471\3\2\2\2\u04e9\u0474\3\2\2\2\u04e9"+
- "\u0477\3\2\2\2\u04e9\u047a\3\2\2\2\u04e9\u047d\3\2\2\2\u04e9\u0480\3\2"+
- "\2\2\u04e9\u0483\3\2\2\2\u04e9\u0486\3\2\2\2\u04e9\u0489\3\2\2\2\u04e9"+
- "\u048c\3\2\2\2\u04e9\u048f\3\2\2\2\u04e9\u0492\3\2\2\2\u04e9\u0495\3\2"+
- "\2\2\u04e9\u0498\3\2\2\2\u04e9\u049b\3\2\2\2\u04e9\u049e\3\2\2\2\u04e9"+
- "\u04a1\3\2\2\2\u04e9\u04a4\3\2\2\2\u04e9\u04a7\3\2\2\2\u04e9\u04aa\3\2"+
- "\2\2\u04e9\u04ad\3\2\2\2\u04e9\u04b0\3\2\2\2\u04e9\u04b3\3\2\2\2\u04e9"+
- "\u04b6\3\2\2\2\u04e9\u04b9\3\2\2\2\u04e9\u04bc\3\2\2\2\u04e9\u04bf\3\2"+
- "\2\2\u04e9\u04c2\3\2\2\2\u04e9\u04c5\3\2\2\2\u04e9\u04c8\3\2\2\2\u04e9"+
- "\u04cb\3\2\2\2\u04e9\u04ce\3\2\2\2\u04e9\u04d1\3\2\2\2\u04e9\u04d4\3\2"+
- "\2\2\u04e9\u04d7\3\2\2\2\u04e9\u04da\3\2\2\2\u04e9\u04dd\3\2\2\2\u04e9"+
- "\u04e0\3\2\2\2\u04e9\u04e3\3\2\2\2\u04e9\u04e6\3\2\2\2\u04ea\u00e3\3\2"+
- "\2\2\u04eb\u04ec\7%\2\2\u04ec\u00e5\3\2\2\2\u04ed\u04ee\7<\2\2\u04ee\u00e7"+
- "\3\2\2\2\u04ef\u04f0\7.\2\2\u04f0\u00e9\3\2\2\2\u04f1\u04f2\7*\2\2\u04f2"+
- "\u00eb\3\2\2\2\u04f3\u04f4\7+\2\2\u04f4\u00ed\3\2\2\2\u04f5\u04f6\7]\2"+
- "\2\u04f6\u00ef\3\2\2\2\u04f7\u04f8\7_\2\2\u04f8\u00f1\3\2\2\2\u04f9\u04fa"+
- "\7\60\2\2\u04fa\u00f3\3\2\2\2\u04fb\u04fc\7>\2\2\u04fc\u04fd\7>\2\2\u04fd"+
- "\u00f5\3\2\2\2\u04fe\u04ff\7@\2\2\u04ff\u0500\7@\2\2\u0500\u00f7\3\2\2"+
- "\2\u0501\u0502\7-\2\2\u0502\u00f9\3\2\2\2\u0503\u0504\7/\2\2\u0504\u00fb"+
- "\3\2\2\2\u0505\u0506\7>\2\2\u0506\u00fd\3\2\2\2\u0507\u0508\7@\2\2\u0508"+
- "\u00ff\3\2\2\2\u0509\u050a\7,\2\2\u050a\u0101\3\2\2\2\u050b\u050c\7\61"+
- "\2\2\u050c\u0103\3\2\2\2\u050d\u050e\7}\2\2\u050e\u050f\b\u0082\t\2\u050f"+
- "\u0105\3\2\2\2\u0510\u0511\7\177\2\2\u0511\u0512\b\u0083\n\2\u0512\u0107"+
- "\3\2\2\2\u0513\u0516\5\u010a\u0085\2\u0514\u0516\5\u0112\u0089\2\u0515"+
- "\u0513\3\2\2\2\u0515\u0514\3\2\2\2\u0516\u0109\3\2\2\2\u0517\u051b\5\u010c"+
- "\u0086\2\u0518\u051b\5\u010e\u0087\2\u0519\u051b\5\u0110\u0088\2\u051a"+
- "\u0517\3\2\2\2\u051a\u0518\3\2\2\2\u051a\u0519\3\2\2\2\u051b\u010b\3\2"+
- "\2\2\u051c\u0520\7\'\2\2\u051d\u051f\5\u011a\u008d\2\u051e\u051d\3\2\2"+
- "\2\u051f\u0522\3\2\2\2\u0520\u051e\3\2\2\2\u0520\u0521\3\2\2\2\u0521\u0523"+
- "\3\2\2\2\u0522\u0520\3\2\2\2\u0523\u0525\7\60\2\2\u0524\u0526\5\u011a"+
- "\u008d\2\u0525\u0524\3\2\2\2\u0526\u0527\3\2\2\2\u0527\u0525\3\2\2\2\u0527"+
- "\u0528\3\2\2\2\u0528\u010d\3\2\2\2\u0529\u052b\5\u011c\u008e\2\u052a\u0529"+
- "\3\2\2\2\u052b\u052e\3\2\2\2\u052c\u052a\3\2\2\2\u052c\u052d\3\2\2\2\u052d"+
- "\u052f\3\2\2\2\u052e\u052c\3\2\2\2\u052f\u0531\7\60\2\2\u0530\u0532\5"+
- "\u011c\u008e\2\u0531\u0530\3\2\2\2\u0532\u0533\3\2\2\2\u0533\u0531\3\2"+
- "\2\2\u0533\u0534\3\2\2\2\u0534\u010f\3\2\2\2\u0535\u0539\7&\2\2\u0536"+
- "\u0538\5\u011e\u008f\2\u0537\u0536\3\2\2\2\u0538\u053b\3\2\2\2\u0539\u0537"+
- "\3\2\2\2\u0539\u053a\3\2\2\2\u053a\u053c\3\2\2\2\u053b\u0539\3\2\2\2\u053c"+
- "\u053e\7\60\2\2\u053d\u053f\5\u011e\u008f\2\u053e\u053d\3\2\2\2\u053f"+
- "\u0540\3\2\2\2\u0540\u053e\3\2\2\2\u0540\u0541\3\2\2\2\u0541\u0111\3\2"+
- "\2\2\u0542\u0546\5\u0116\u008b\2\u0543\u0546\5\u0118\u008c\2\u0544\u0546"+
- "\5\u0114\u008a\2\u0545\u0542\3\2\2\2\u0545\u0543\3\2\2\2\u0545\u0544\3"+
- "\2\2\2\u0546\u0113\3\2\2\2\u0547\u0549\7\'\2\2\u0548\u054a\5\u011a\u008d"+
- "\2\u0549\u0548\3\2\2\2\u054a\u054b\3\2\2\2\u054b\u0549\3\2\2\2\u054b\u054c"+
- "\3\2\2\2\u054c\u0115\3\2\2\2\u054d\u054f\5\u011c\u008e\2\u054e\u054d\3"+
- "\2\2\2\u054f\u0550\3\2\2\2\u0550\u054e\3\2\2\2\u0550\u0551\3\2\2\2\u0551"+
- "\u0117\3\2\2\2\u0552\u0554\7&\2\2\u0553\u0555\5\u011e\u008f\2\u0554\u0553"+
- "\3\2\2\2\u0555\u0556\3\2\2\2\u0556\u0554\3\2\2\2\u0556\u0557\3\2\2\2\u0557"+
- "\u0119\3\2\2\2\u0558\u0559\t\13\2\2\u0559\u011b\3\2\2\2\u055a\u055b\t"+
- "\f\2\2\u055b\u011d\3\2\2\2\u055c\u055d\t\r\2\2\u055d\u011f\3\2\2\2\u055e"+
- "\u0562\7)\2\2\u055f\u0560\7^\2\2\u0560\u0563\t\6\2\2\u0561\u0563\n\7\2"+
- "\2\u0562\u055f\3\2\2\2\u0562\u0561\3\2\2\2\u0563\u0564\3\2\2\2\u0564\u0565"+
- "\7)\2\2\u0565\u0121\3\2\2\2\u0566\u0568\5\u0124\u0092\2\u0567\u0569\t"+
- "\22\2\2\u0568\u0567\3\2\2\2\u0569\u056a\3\2\2\2\u056a\u0568\3\2\2\2\u056a"+
- "\u056b\3\2\2\2\u056b\u0123\3\2\2\2\u056c\u0570\7#\2\2\u056d\u056f\5\u012a"+
- "\u0095\2\u056e\u056d\3\2\2\2\u056f\u0572\3\2\2\2\u0570\u056e\3\2\2\2\u0570"+
- "\u0571\3\2\2\2\u0571\u0125\3\2\2\2\u0572\u0570\3\2\2\2\u0573\u0577\5\u0128"+
- "\u0094\2\u0574\u0576\5\u012a\u0095\2\u0575\u0574\3\2\2\2\u0576\u0579\3"+
- "\2\2\2\u0577\u0575\3\2\2\2\u0577\u0578\3\2\2\2\u0578\u0127\3\2\2\2\u0579"+
- "\u0577\3\2\2\2\u057a\u057b\t\16\2\2\u057b\u0129\3\2\2\2\u057c\u057d\t"+
- "\17\2\2\u057d\u012b\3\2\2\2\u057e\u0580\t\20\2\2\u057f\u057e\3\2\2\2\u0580"+
- "\u0581\3\2\2\2\u0581\u057f\3\2\2\2\u0581\u0582\3\2\2\2\u0582\u0583\3\2"+
- "\2\2\u0583\u0584\b\u0096\7\2\u0584\u012d\3\2\2\2\u0585\u0586\7\61\2\2"+
- "\u0586\u0587\7\61\2\2\u0587\u058b\3\2\2\2\u0588\u058a\n\21\2\2\u0589\u0588"+
- "\3\2\2\2\u058a\u058d\3\2\2\2\u058b\u0589\3\2\2\2\u058b\u058c\3\2\2\2\u058c"+
- "\u058e\3\2\2\2\u058d\u058b\3\2\2\2\u058e\u058f\b\u0097\b\2\u058f\u012f"+
- "\3\2\2\2\u0590\u0591\7\61\2\2\u0591\u0592\7,\2\2\u0592\u0596\3\2\2\2\u0593"+
- "\u0595\13\2\2\2\u0594\u0593\3\2\2\2\u0595\u0598\3\2\2\2\u0596\u0597\3"+
- "\2\2\2\u0596\u0594\3\2\2\2\u0597\u0599\3\2\2\2\u0598\u0596\3\2\2\2\u0599"+
- "\u059a\7,\2\2\u059a\u059b\7\61\2\2\u059b\u059c\3\2\2\2\u059c\u059d\b\u0098"+
- "\b\2\u059d\u0131\3\2\2\2;\2\3\u019b\u0270\u030d\u0334\u033f\u0347\u0351"+
- "\u0353\u0358\u035c\u035e\u0361\u0369\u036f\u0374\u037b\u0380\u0387\u038c"+
- "\u0393\u039a\u039f\u03a6\u03ab\u03b0\u03b7\u03bd\u03bf\u03c4\u03cb\u03d0"+
- "\u03dc\u03e8\u03f2\u03fd\u04e9\u0515\u051a\u0520\u0527\u052c\u0533\u0539"+
- "\u0540\u0545\u054b\u0550\u0556\u0562\u056a\u0570\u0577\u0581\u058b\u0596"+
- "\13\3\2\2\3&\3\3J\4\3\\\5\3j\6\2\3\2\2\4\2\3\u0082\7\3\u0083\b";
+ "\7u\2\2\u0241\u0242\7u\2\2\u0242\u0243\7c\2\2\u0243y\3\2\2\2\u0244\u0245"+
+ "\7a\2\2\u0245\u0246\7a\2\2\u0246\u0247\7o\2\2\u0247\u0248\7c\2\2\u0248"+
+ "{\3\2\2\2\u0249\u024a\7e\2\2\u024a\u024b\7c\2\2\u024b\u024c\7n\2\2\u024c"+
+ "\u024d\7n\2\2\u024d\u024e\7k\2\2\u024e\u024f\7p\2\2\u024f\u0250\7i\2\2"+
+ "\u0250}\3\2\2\2\u0251\u0252\7a\2\2\u0252\u0253\7a\2\2\u0253\u0254\7u\2"+
+ "\2\u0254\u0255\7v\2\2\u0255\u0256\7c\2\2\u0256\u0257\7e\2\2\u0257\u0258"+
+ "\7m\2\2\u0258\u0259\7e\2\2\u0259\u025a\7c\2\2\u025a\u025b\7n\2\2\u025b"+
+ "\u0266\7n\2\2\u025c\u025d\7a\2\2\u025d\u025e\7a\2\2\u025e\u025f\7r\2\2"+
+ "\u025f\u0260\7j\2\2\u0260\u0261\7k\2\2\u0261\u0262\7e\2\2\u0262\u0263"+
+ "\7c\2\2\u0263\u0264\7n\2\2\u0264\u0266\7n\2\2\u0265\u0251\3\2\2\2\u0265"+
+ "\u025c\3\2\2\2\u0266\177\3\2\2\2\u0267\u0268\7x\2\2\u0268\u0269\7c\2\2"+
+ "\u0269\u026a\7t\2\2\u026a\u026b\7a\2\2\u026b\u026c\7o\2\2\u026c\u026d"+
+ "\7q\2\2\u026d\u026e\7f\2\2\u026e\u026f\7g\2\2\u026f\u0270\7n\2\2\u0270"+
+ "\u0081\3\2\2\2\u0271\u0272\7k\2\2\u0272\u0273\7h\2\2\u0273\u0083\3\2\2"+
+ "\2\u0274\u0275\7g\2\2\u0275\u0276\7n\2\2\u0276\u0277\7u\2\2\u0277\u0278"+
+ "\7g\2\2\u0278\u0085\3\2\2\2\u0279\u027a\7y\2\2\u027a\u027b\7j\2\2\u027b"+
+ "\u027c\7k\2\2\u027c\u027d\7n\2\2\u027d\u027e\7g\2\2\u027e\u0087\3\2\2"+
+ "\2\u027f\u0280\7f\2\2\u0280\u0281\7q\2\2\u0281\u0089\3\2\2\2\u0282\u0283"+
+ "\7h\2\2\u0283\u0284\7q\2\2\u0284\u0285\7t\2\2\u0285\u008b\3\2\2\2\u0286"+
+ "\u0287\7u\2\2\u0287\u0288\7y\2\2\u0288\u0289\7k\2\2\u0289\u028a\7v\2\2"+
+ "\u028a\u028b\7e\2\2\u028b\u028c\7j\2\2\u028c\u008d\3\2\2\2\u028d\u028e"+
+ "\7t\2\2\u028e\u028f\7g\2\2\u028f\u0290\7v\2\2\u0290\u0291\7w\2\2\u0291"+
+ "\u0292\7t\2\2\u0292\u0293\7p\2\2\u0293\u008f\3\2\2\2\u0294\u0295\7d\2"+
+ "\2\u0295\u0296\7t\2\2\u0296\u0297\7g\2\2\u0297\u0298\7c\2\2\u0298\u0299"+
+ "\7m\2\2\u0299\u0091\3\2\2\2\u029a\u029b\7e\2\2\u029b\u029c\7q\2\2\u029c"+
+ "\u029d\7p\2\2\u029d\u029e\7v\2\2\u029e\u029f\7k\2\2\u029f\u02a0\7p\2\2"+
+ "\u02a0\u02a1\7w\2\2\u02a1\u02a2\7g\2\2\u02a2\u0093\3\2\2\2\u02a3\u02a4"+
+ "\7c\2\2\u02a4\u02a5\7u\2\2\u02a5\u02a6\7o\2\2\u02a6\u02a7\3\2\2\2\u02a7"+
+ "\u02a8\bJ\4\2\u02a8\u0095\3\2\2\2\u02a9\u02aa\7f\2\2\u02aa\u02ab\7g\2"+
+ "\2\u02ab\u02ac\7h\2\2\u02ac\u02ad\7c\2\2\u02ad\u02ae\7w\2\2\u02ae\u02af"+
+ "\7n\2\2\u02af\u02b0\7v\2\2\u02b0\u0097\3\2\2\2\u02b1\u02b2\7e\2\2\u02b2"+
+ "\u02b3\7c\2\2\u02b3\u02b4\7u\2\2\u02b4\u02b5\7g\2\2\u02b5\u0099\3\2\2"+
+ "\2\u02b6\u02b7\7u\2\2\u02b7\u02b8\7v\2\2\u02b8\u02b9\7t\2\2\u02b9\u02ba"+
+ "\7w\2\2\u02ba\u02bb\7e\2\2\u02bb\u02bc\7v\2\2\u02bc\u009b\3\2\2\2\u02bd"+
+ "\u02be\7g\2\2\u02be\u02bf\7p\2\2\u02bf\u02c0\7w\2\2\u02c0\u02c1\7o\2\2"+
+ "\u02c1\u009d\3\2\2\2\u02c2\u02c3\7u\2\2\u02c3\u02c4\7k\2\2\u02c4\u02c5"+
+ "\7|\2\2\u02c5\u02c6\7g\2\2\u02c6\u02c7\7q\2\2\u02c7\u02c8\7h\2\2\u02c8"+
+ "\u009f\3\2\2\2\u02c9\u02ca\7v\2\2\u02ca\u02cb\7{\2\2\u02cb\u02cc\7r\2"+
+ "\2\u02cc\u02cd\7g\2\2\u02cd\u02ce\7k\2\2\u02ce\u02cf\7f\2\2\u02cf\u00a1"+
+ "\3\2\2\2\u02d0\u02d1\7m\2\2\u02d1\u02d2\7k\2\2\u02d2\u02d3\7e\2\2\u02d3"+
+ "\u02d4\7m\2\2\u02d4\u02d5\7c\2\2\u02d5\u02d6\7u\2\2\u02d6\u02d7\7o\2\2"+
+ "\u02d7\u00a3\3\2\2\2\u02d8\u02d9\7t\2\2\u02d9\u02da\7g\2\2\u02da\u02db"+
+ "\7u\2\2\u02db\u02dc\7q\2\2\u02dc\u02dd\7w\2\2\u02dd\u02de\7t\2\2\u02de"+
+ "\u02df\7e\2\2\u02df\u02e0\7g\2\2\u02e0\u00a5\3\2\2\2\u02e1\u02e2\7w\2"+
+ "\2\u02e2\u02e3\7u\2\2\u02e3\u02e4\7g\2\2\u02e4\u02e5\7u\2\2\u02e5\u00a7"+
+ "\3\2\2\2\u02e6\u02e7\7e\2\2\u02e7\u02e8\7n\2\2\u02e8\u02e9\7q\2\2\u02e9"+
+ "\u02ea\7d\2\2\u02ea\u02eb\7d\2\2\u02eb\u02ec\7g\2\2\u02ec\u02ed\7t\2\2"+
+ "\u02ed\u02ee\7u\2\2\u02ee\u00a9\3\2\2\2\u02ef\u02f0\7d\2\2\u02f0\u02f1"+
+ "\7{\2\2\u02f1\u02f2\7v\2\2\u02f2\u02f3\7g\2\2\u02f3\u02f4\7u\2\2\u02f4"+
+ "\u00ab\3\2\2\2\u02f5\u02f6\7e\2\2\u02f6\u02f7\7{\2\2\u02f7\u02f8\7e\2"+
+ "\2\u02f8\u02f9\7n\2\2\u02f9\u02fa\7g\2\2\u02fa\u02fb\7u\2\2\u02fb\u00ad"+
+ "\3\2\2\2\u02fc\u02fd\7#\2\2\u02fd\u00af\3\2\2\2\u02fe\u02ff\7u\2\2\u02ff"+
+ "\u0300\7k\2\2\u0300\u0301\7i\2\2\u0301\u0302\7p\2\2\u0302\u0303\7g\2\2"+
+ "\u0303\u030d\7f\2\2\u0304\u0305\7w\2\2\u0305\u0306\7p\2\2\u0306\u0307"+
+ "\7u\2\2\u0307\u0308\7k\2\2\u0308\u0309\7i\2\2\u0309\u030a\7p\2\2\u030a"+
+ "\u030b\7g\2\2\u030b\u030d\7f\2\2\u030c\u02fe\3\2\2\2\u030c\u0304\3\2\2"+
+ "\2\u030d\u00b1\3\2\2\2\u030e\u030f\7d\2\2\u030f\u0310\7{\2\2\u0310\u0311"+
+ "\7v\2\2\u0311\u0334\7g\2\2\u0312\u0313\7y\2\2\u0313\u0314\7q\2\2\u0314"+
+ "\u0315\7t\2\2\u0315\u0334\7f\2\2\u0316\u0317\7f\2\2\u0317\u0318\7y\2\2"+
+ "\u0318\u0319\7q\2\2\u0319\u031a\7t\2\2\u031a\u0334\7f\2\2\u031b\u031c"+
+ "\7d\2\2\u031c\u031d\7q\2\2\u031d\u031e\7q\2\2\u031e\u0334\7n\2\2\u031f"+
+ "\u0320\7e\2\2\u0320\u0321\7j\2\2\u0321\u0322\7c\2\2\u0322\u0334\7t\2\2"+
+ "\u0323\u0324\7u\2\2\u0324\u0325\7j\2\2\u0325\u0326\7q\2\2\u0326\u0327"+
+ "\7t\2\2\u0327\u0334\7v\2\2\u0328\u0329\7k\2\2\u0329\u032a\7p\2\2\u032a"+
+ "\u0334\7v\2\2\u032b\u032c\7n\2\2\u032c\u032d\7q\2\2\u032d\u032e\7p\2\2"+
+ "\u032e\u0334\7i\2\2\u032f\u0330\7x\2\2\u0330\u0331\7q\2\2\u0331\u0332"+
+ "\7k\2\2\u0332\u0334\7f\2\2\u0333\u030e\3\2\2\2\u0333\u0312\3\2\2\2\u0333"+
+ "\u0316\3\2\2\2\u0333\u031b\3\2\2\2\u0333\u031f\3\2\2\2\u0333\u0323\3\2"+
+ "\2\2\u0333\u0328\3\2\2\2\u0333\u032b\3\2\2\2\u0333\u032f\3\2\2\2\u0334"+
+ "\u00b3\3\2\2\2\u0335\u0336\7v\2\2\u0336\u0337\7t\2\2\u0337\u0338\7w\2"+
+ "\2\u0338\u033f\7g\2\2\u0339\u033a\7h\2\2\u033a\u033b\7c\2\2\u033b\u033c"+
+ "\7n\2\2\u033c\u033d\7u\2\2\u033d\u033f\7g\2\2\u033e\u0335\3\2\2\2\u033e"+
+ "\u0339\3\2\2\2\u033f\u00b5\3\2\2\2\u0340\u0341\7}\2\2\u0341\u0342\7}\2"+
+ "\2\u0342\u0346\3\2\2\2\u0343\u0345\13\2\2\2\u0344\u0343\3\2\2\2\u0345"+
+ "\u0348\3\2\2\2\u0346\u0347\3\2\2\2\u0346\u0344\3\2\2\2\u0347\u0349\3\2"+
+ "\2\2\u0348\u0346\3\2\2\2\u0349\u034a\7\177\2\2\u034a\u034b\7\177\2\2\u034b"+
+ "\u00b7\3\2\2\2\u034c\u0352\7$\2\2\u034d\u034e\7^\2\2\u034e\u0351\7$\2"+
+ "\2\u034f\u0351\n\2\2\2\u0350\u034d\3\2\2\2\u0350\u034f\3\2\2\2\u0351\u0354"+
+ "\3\2\2\2\u0352\u0350\3\2\2\2\u0352\u0353\3\2\2\2\u0353\u0355\3\2\2\2\u0354"+
+ "\u0352\3\2\2\2\u0355\u0357\7$\2\2\u0356\u0358\t\3\2\2\u0357\u0356\3\2"+
+ "\2\2\u0357\u0358\3\2\2\2\u0358\u035d\3\2\2\2\u0359\u035b\t\4\2\2\u035a"+
+ "\u035c\t\5\2\2\u035b\u035a\3\2\2\2\u035b\u035c\3\2\2\2\u035c\u035e\3\2"+
+ "\2\2\u035d\u0359\3\2\2\2\u035d\u035e\3\2\2\2\u035e\u0360\3\2\2\2\u035f"+
+ "\u0361\t\3\2\2\u0360\u035f\3\2\2\2\u0360\u0361\3\2\2\2\u0361\u0362\3\2"+
+ "\2\2\u0362\u0363\b\\\5\2\u0363\u00b9\3\2\2\2\u0364\u0368\7)\2\2\u0365"+
+ "\u0366\7^\2\2\u0366\u0369\t\6\2\2\u0367\u0369\n\7\2\2\u0368\u0365\3\2"+
+ "\2\2\u0368\u0367\3\2\2\2\u0369\u036a\3\2\2\2\u036a\u036b\7)\2\2\u036b"+
+ "\u00bb\3\2\2\2\u036c\u036f\5\u00be_\2\u036d\u036f\5\u00c6c\2\u036e\u036c"+
+ "\3\2\2\2\u036e\u036d\3\2\2\2\u036f\u00bd\3\2\2\2\u0370\u0374\5\u00c0`"+
+ "\2\u0371\u0374\5\u00c2a\2\u0372\u0374\5\u00c4b\2\u0373\u0370\3\2\2\2\u0373"+
+ "\u0371\3\2\2\2\u0373\u0372\3\2\2\2\u0374\u00bf\3\2\2\2\u0375\u037b\7\'"+
+ "\2\2\u0376\u0377\7\62\2\2\u0377\u037b\7d\2\2\u0378\u0379\7\62\2\2\u0379"+
+ "\u037b\7D\2\2\u037a\u0375\3\2\2\2\u037a\u0376\3\2\2\2\u037a\u0378\3\2"+
+ "\2\2\u037b\u037f\3\2\2\2\u037c\u037e\5\u00ceg\2\u037d\u037c\3\2\2\2\u037e"+
+ "\u0381\3\2\2\2\u037f\u037d\3\2\2\2\u037f\u0380\3\2\2\2\u0380\u0382\3\2"+
+ "\2\2\u0381\u037f\3\2\2\2\u0382\u0384\7\60\2\2\u0383\u0385\5\u00ceg\2\u0384"+
+ "\u0383\3\2\2\2\u0385\u0386\3\2\2\2\u0386\u0384\3\2\2\2\u0386\u0387\3\2"+
+ "\2\2\u0387\u00c1\3\2\2\2\u0388\u038a\5\u00d0h\2\u0389\u0388\3\2\2\2\u038a"+
+ "\u038d\3\2\2\2\u038b\u0389\3\2\2\2\u038b\u038c\3\2\2\2\u038c\u038e\3\2"+
+ "\2\2\u038d\u038b\3\2\2\2\u038e\u0390\7\60\2\2\u038f\u0391\5\u00d0h\2\u0390"+
+ "\u038f\3\2\2\2\u0391\u0392\3\2\2\2\u0392\u0390\3\2\2\2\u0392\u0393\3\2"+
+ "\2\2\u0393\u00c3\3\2\2\2\u0394\u039a\7&\2\2\u0395\u0396\7\62\2\2\u0396"+
+ "\u039a\7z\2\2\u0397\u0398\7\62\2\2\u0398\u039a\7Z\2\2\u0399\u0394\3\2"+
+ "\2\2\u0399\u0395\3\2\2\2\u0399\u0397\3\2\2\2\u039a\u039e\3\2\2\2\u039b"+
+ "\u039d\5\u00d2i\2\u039c\u039b\3\2\2\2\u039d\u03a0\3\2\2\2\u039e\u039c"+
+ "\3\2\2\2\u039e\u039f\3\2\2\2\u039f\u03a1\3\2\2\2\u03a0\u039e\3\2\2\2\u03a1"+
+ "\u03a3\7\60\2\2\u03a2\u03a4\5\u00d2i\2\u03a3\u03a2\3\2\2\2\u03a4\u03a5"+
+ "\3\2\2\2\u03a5\u03a3\3\2\2\2\u03a5\u03a6\3\2\2\2\u03a6\u00c5\3\2\2\2\u03a7"+
+ "\u03ab\5\u00cae\2\u03a8\u03ab\5\u00ccf\2\u03a9\u03ab\5\u00c8d\2\u03aa"+
+ "\u03a7\3\2\2\2\u03aa\u03a8\3\2\2\2\u03aa\u03a9\3\2\2\2\u03ab\u03af\3\2"+
+ "\2\2\u03ac\u03ad\t\b\2\2\u03ad\u03b0\t\t\2\2\u03ae\u03b0\7n\2\2\u03af"+
+ "\u03ac\3\2\2\2\u03af\u03ae\3\2\2\2\u03af\u03b0\3\2\2\2\u03b0\u00c7\3\2"+
+ "\2\2\u03b1\u03b2\7\62\2\2\u03b2\u03b4\t\n\2\2\u03b3\u03b5\5\u00ceg\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\u03bf\3\2\2\2\u03b8\u03ba\7\'\2\2\u03b9\u03bb\5\u00ceg\2\u03ba"+
+ "\u03b9\3\2\2\2\u03bb\u03bc\3\2\2\2\u03bc\u03ba\3\2\2\2\u03bc\u03bd\3\2"+
+ "\2\2\u03bd\u03bf\3\2\2\2\u03be\u03b1\3\2\2\2\u03be\u03b8\3\2\2\2\u03bf"+
+ "\u00c9\3\2\2\2\u03c0\u03c2\5\u00d0h\2\u03c1\u03c0\3\2\2\2\u03c2\u03c3"+
+ "\3\2\2\2\u03c3\u03c1\3\2\2\2\u03c3\u03c4\3\2\2\2\u03c4\u00cb\3\2\2\2\u03c5"+
+ "\u03cb\7&\2\2\u03c6\u03c7\7\62\2\2\u03c7\u03cb\7z\2\2\u03c8\u03c9\7\62"+
+ "\2\2\u03c9\u03cb\7Z\2\2\u03ca\u03c5\3\2\2\2\u03ca\u03c6\3\2\2\2\u03ca"+
+ "\u03c8\3\2\2\2\u03cb\u03cd\3\2\2\2\u03cc\u03ce\5\u00d2i\2\u03cd\u03cc"+
+ "\3\2\2\2\u03ce\u03cf\3\2\2\2\u03cf\u03cd\3\2\2\2\u03cf\u03d0\3\2\2\2\u03d0"+
+ "\u00cd\3\2\2\2\u03d1\u03d2\t\13\2\2\u03d2\u00cf\3\2\2\2\u03d3\u03d4\t"+
+ "\f\2\2\u03d4\u00d1\3\2\2\2\u03d5\u03d6\t\r\2\2\u03d6\u00d3\3\2\2\2\u03d7"+
+ "\u03db\5\u00d6k\2\u03d8\u03da\5\u00d8l\2\u03d9\u03d8\3\2\2\2\u03da\u03dd"+
+ "\3\2\2\2\u03db\u03d9\3\2\2\2\u03db\u03dc\3\2\2\2\u03dc\u03de\3\2\2\2\u03dd"+
+ "\u03db\3\2\2\2\u03de\u03df\bj\6\2\u03df\u00d5\3\2\2\2\u03e0\u03e1\t\16"+
+ "\2\2\u03e1\u00d7\3\2\2\2\u03e2\u03e3\t\17\2\2\u03e3\u00d9\3\2\2\2\u03e4"+
+ "\u03e6\t\20\2\2\u03e5\u03e4\3\2\2\2\u03e6\u03e7\3\2\2\2\u03e7\u03e5\3"+
+ "\2\2\2\u03e7\u03e8\3\2\2\2\u03e8\u03e9\3\2\2\2\u03e9\u03ea\bm\7\2\u03ea"+
+ "\u00db\3\2\2\2\u03eb\u03ec\7\61\2\2\u03ec\u03ed\7\61\2\2\u03ed\u03f1\3"+
+ "\2\2\2\u03ee\u03f0\n\21\2\2\u03ef\u03ee\3\2\2\2\u03f0\u03f3\3\2\2\2\u03f1"+
+ "\u03ef\3\2\2\2\u03f1\u03f2\3\2\2\2\u03f2\u03f4\3\2\2\2\u03f3\u03f1\3\2"+
+ "\2\2\u03f4\u03f5\bn\b\2\u03f5\u00dd\3\2\2\2\u03f6\u03f7\7\61\2\2\u03f7"+
+ "\u03f8\7,\2\2\u03f8\u03fc\3\2\2\2\u03f9\u03fb\13\2\2\2\u03fa\u03f9\3\2"+
+ "\2\2\u03fb\u03fe\3\2\2\2\u03fc\u03fd\3\2\2\2\u03fc\u03fa\3\2\2\2\u03fd"+
+ "\u03ff\3\2\2\2\u03fe\u03fc\3\2\2\2\u03ff\u0400\7,\2\2\u0400\u0401\7\61"+
+ "\2\2\u0401\u0402\3\2\2\2\u0402\u0403\bo\b\2\u0403\u00df\3\2\2\2\u0404"+
+ "\u0405\7\60\2\2\u0405\u0406\7d\2\2\u0406\u0407\7{\2\2\u0407\u0408\7v\2"+
+ "\2\u0408\u0409\7g\2\2\u0409\u00e1\3\2\2\2\u040a\u040b\7d\2\2\u040b\u040c"+
+ "\7t\2\2\u040c\u04e9\7m\2\2\u040d\u040e\7q\2\2\u040e\u040f\7t\2\2\u040f"+
+ "\u04e9\7c\2\2\u0410\u0411\7m\2\2\u0411\u0412\7k\2\2\u0412\u04e9\7n\2\2"+
+ "\u0413\u0414\7u\2\2\u0414\u0415\7n\2\2\u0415\u04e9\7q\2\2\u0416\u0417"+
+ "\7p\2\2\u0417\u0418\7q\2\2\u0418\u04e9\7r\2\2\u0419\u041a\7c\2\2\u041a"+
+ "\u041b\7u\2\2\u041b\u04e9\7n\2\2\u041c\u041d\7r\2\2\u041d\u041e\7j\2\2"+
+ "\u041e\u04e9\7r\2\2\u041f\u0420\7c\2\2\u0420\u0421\7p\2\2\u0421\u04e9"+
+ "\7e\2\2\u0422\u0423\7d\2\2\u0423\u0424\7r\2\2\u0424\u04e9\7n\2\2\u0425"+
+ "\u0426\7e\2\2\u0426\u0427\7n\2\2\u0427\u04e9\7e\2\2\u0428\u0429\7l\2\2"+
+ "\u0429\u042a\7u\2\2\u042a\u04e9\7t\2\2\u042b\u042c\7c\2\2\u042c\u042d"+
+ "\7p\2\2\u042d\u04e9\7f\2\2\u042e\u042f\7t\2\2\u042f\u0430\7n\2\2\u0430"+
+ "\u04e9\7c\2\2\u0431\u0432\7d\2\2\u0432\u0433\7k\2\2\u0433\u04e9\7v\2\2"+
+ "\u0434\u0435\7t\2\2\u0435\u0436\7q\2\2\u0436\u04e9\7n\2\2\u0437\u0438"+
+ "\7r\2\2\u0438\u0439\7n\2\2\u0439\u04e9\7c\2\2\u043a\u043b\7r\2\2\u043b"+
+ "\u043c\7n\2\2\u043c\u04e9\7r\2\2\u043d\u043e\7d\2\2\u043e\u043f\7o\2\2"+
+ "\u043f\u04e9\7k\2\2\u0440\u0441\7u\2\2\u0441\u0442\7g\2\2\u0442\u04e9"+
+ "\7e\2\2\u0443\u0444\7t\2\2\u0444\u0445\7v\2\2\u0445\u04e9\7k\2\2\u0446"+
+ "\u0447\7g\2\2\u0447\u0448\7q\2\2\u0448\u04e9\7t\2\2\u0449\u044a\7u\2\2"+
+ "\u044a\u044b\7t\2\2\u044b\u04e9\7g\2\2\u044c\u044d\7n\2\2\u044d\u044e"+
+ "\7u\2\2\u044e\u04e9\7t\2\2\u044f\u0450\7r\2\2\u0450\u0451\7j\2\2\u0451"+
+ "\u04e9\7c\2\2\u0452\u0453\7c\2\2\u0453\u0454\7n\2\2\u0454\u04e9\7t\2\2"+
+ "\u0455\u0456\7l\2\2\u0456\u0457\7o\2\2\u0457\u04e9\7r\2\2\u0458\u0459"+
+ "\7d\2\2\u0459\u045a\7x\2\2\u045a\u04e9\7e\2\2\u045b\u045c\7e\2\2\u045c"+
+ "\u045d\7n\2\2\u045d\u04e9\7k\2\2\u045e\u045f\7t\2\2\u045f\u0460\7v\2\2"+
+ "\u0460\u04e9\7u\2\2\u0461\u0462\7c\2\2\u0462\u0463\7f\2\2\u0463\u04e9"+
+ "\7e\2\2\u0464\u0465\7t\2\2\u0465\u0466\7t\2\2\u0466\u04e9\7c\2\2\u0467"+
+ "\u0468\7d\2\2\u0468\u0469\7x\2\2\u0469\u04e9\7u\2\2\u046a\u046b\7u\2\2"+
+ "\u046b\u046c\7g\2\2\u046c\u04e9\7k\2\2\u046d\u046e\7u\2\2\u046e\u046f"+
+ "\7c\2\2\u046f\u04e9\7z\2\2\u0470\u0471\7u\2\2\u0471\u0472\7v\2\2\u0472"+
+ "\u04e9\7{\2\2\u0473\u0474\7u\2\2\u0474\u0475\7v\2\2\u0475\u04e9\7c\2\2"+
+ "\u0476\u0477\7u\2\2\u0477\u0478\7v\2\2\u0478\u04e9\7z\2\2\u0479\u047a"+
+ "\7f\2\2\u047a\u047b\7g\2\2\u047b\u04e9\7{\2\2\u047c\u047d\7v\2\2\u047d"+
+ "\u047e\7z\2\2\u047e\u04e9\7c\2\2\u047f\u0480\7z\2\2\u0480\u0481\7c\2\2"+
+ "\u0481\u04e9\7c\2\2\u0482\u0483\7d\2\2\u0483\u0484\7e\2\2\u0484\u04e9"+
+ "\7e\2\2\u0485\u0486\7c\2\2\u0486\u0487\7j\2\2\u0487\u04e9\7z\2\2\u0488"+
+ "\u0489\7v\2\2\u0489\u048a\7{\2\2\u048a\u04e9\7c\2\2\u048b\u048c\7v\2\2"+
+ "\u048c\u048d\7z\2\2\u048d\u04e9\7u\2\2\u048e\u048f\7v\2\2\u048f\u0490"+
+ "\7c\2\2\u0490\u04e9\7u\2\2\u0491\u0492\7u\2\2\u0492\u0493\7j\2\2\u0493"+
+ "\u04e9\7{\2\2\u0494\u0495\7u\2\2\u0495\u0496\7j\2\2\u0496\u04e9\7z\2\2"+
+ "\u0497\u0498\7n\2\2\u0498\u0499\7f\2\2\u0499\u04e9\7{\2\2\u049a\u049b"+
+ "\7n\2\2\u049b\u049c\7f\2\2\u049c\u04e9\7c\2\2\u049d\u049e\7n\2\2\u049e"+
+ "\u049f\7f\2\2\u049f\u04e9\7z\2\2\u04a0\u04a1\7n\2\2\u04a1\u04a2\7c\2\2"+
+ "\u04a2\u04e9\7z\2\2\u04a3\u04a4\7v\2\2\u04a4\u04a5\7c\2\2\u04a5\u04e9"+
+ "\7{\2\2\u04a6\u04a7\7v\2\2\u04a7\u04a8\7c\2\2\u04a8\u04e9\7z\2\2\u04a9"+
+ "\u04aa\7d\2\2\u04aa\u04ab\7e\2\2\u04ab\u04e9\7u\2\2\u04ac\u04ad\7e\2\2"+
+ "\u04ad\u04ae\7n\2\2\u04ae\u04e9\7x\2\2\u04af\u04b0\7v\2\2\u04b0\u04b1"+
+ "\7u\2\2\u04b1\u04e9\7z\2\2\u04b2\u04b3\7n\2\2\u04b3\u04b4\7c\2\2\u04b4"+
+ "\u04e9\7u\2\2\u04b5\u04b6\7e\2\2\u04b6\u04b7\7r\2\2\u04b7\u04e9\7{\2\2"+
+ "\u04b8\u04b9\7e\2\2\u04b9\u04ba\7o\2\2\u04ba\u04e9\7r\2\2\u04bb\u04bc"+
+ "\7e\2\2\u04bc\u04bd\7r\2\2\u04bd\u04e9\7z\2\2\u04be\u04bf\7f\2\2\u04bf"+
+ "\u04c0\7e\2\2\u04c0\u04e9\7r\2\2\u04c1\u04c2\7f\2\2\u04c2\u04c3\7g\2\2"+
+ "\u04c3\u04e9\7e\2\2\u04c4\u04c5\7k\2\2\u04c5\u04c6\7p\2\2\u04c6\u04e9"+
+ "\7e\2\2\u04c7\u04c8\7c\2\2\u04c8\u04c9\7z\2\2\u04c9\u04e9\7u\2\2\u04ca"+
+ "\u04cb\7d\2\2\u04cb\u04cc\7p\2\2\u04cc\u04e9\7g\2\2\u04cd\u04ce\7e\2\2"+
+ "\u04ce\u04cf\7n\2\2\u04cf\u04e9\7f\2\2\u04d0\u04d1\7u\2\2\u04d1\u04d2"+
+ "\7d\2\2\u04d2\u04e9\7e\2\2\u04d3\u04d4\7k\2\2\u04d4\u04d5\7u\2\2\u04d5"+
+ "\u04e9\7e\2\2\u04d6\u04d7\7k\2\2\u04d7\u04d8\7p\2\2\u04d8\u04e9\7z\2\2"+
+ "\u04d9\u04da\7d\2\2\u04da\u04db\7g\2\2\u04db\u04e9\7s\2\2\u04dc\u04dd"+
+ "\7u\2\2\u04dd\u04de\7g\2\2\u04de\u04e9\7f\2\2\u04df\u04e0\7f\2\2\u04e0"+
+ "\u04e1\7g\2\2\u04e1\u04e9\7z\2\2\u04e2\u04e3\7k\2\2\u04e3\u04e4\7p\2\2"+
+ "\u04e4\u04e9\7{\2\2\u04e5\u04e6\7t\2\2\u04e6\u04e7\7q\2\2\u04e7\u04e9"+
+ "\7t\2\2\u04e8\u040a\3\2\2\2\u04e8\u040d\3\2\2\2\u04e8\u0410\3\2\2\2\u04e8"+
+ "\u0413\3\2\2\2\u04e8\u0416\3\2\2\2\u04e8\u0419\3\2\2\2\u04e8\u041c\3\2"+
+ "\2\2\u04e8\u041f\3\2\2\2\u04e8\u0422\3\2\2\2\u04e8\u0425\3\2\2\2\u04e8"+
+ "\u0428\3\2\2\2\u04e8\u042b\3\2\2\2\u04e8\u042e\3\2\2\2\u04e8\u0431\3\2"+
+ "\2\2\u04e8\u0434\3\2\2\2\u04e8\u0437\3\2\2\2\u04e8\u043a\3\2\2\2\u04e8"+
+ "\u043d\3\2\2\2\u04e8\u0440\3\2\2\2\u04e8\u0443\3\2\2\2\u04e8\u0446\3\2"+
+ "\2\2\u04e8\u0449\3\2\2\2\u04e8\u044c\3\2\2\2\u04e8\u044f\3\2\2\2\u04e8"+
+ "\u0452\3\2\2\2\u04e8\u0455\3\2\2\2\u04e8\u0458\3\2\2\2\u04e8\u045b\3\2"+
+ "\2\2\u04e8\u045e\3\2\2\2\u04e8\u0461\3\2\2\2\u04e8\u0464\3\2\2\2\u04e8"+
+ "\u0467\3\2\2\2\u04e8\u046a\3\2\2\2\u04e8\u046d\3\2\2\2\u04e8\u0470\3\2"+
+ "\2\2\u04e8\u0473\3\2\2\2\u04e8\u0476\3\2\2\2\u04e8\u0479\3\2\2\2\u04e8"+
+ "\u047c\3\2\2\2\u04e8\u047f\3\2\2\2\u04e8\u0482\3\2\2\2\u04e8\u0485\3\2"+
+ "\2\2\u04e8\u0488\3\2\2\2\u04e8\u048b\3\2\2\2\u04e8\u048e\3\2\2\2\u04e8"+
+ "\u0491\3\2\2\2\u04e8\u0494\3\2\2\2\u04e8\u0497\3\2\2\2\u04e8\u049a\3\2"+
+ "\2\2\u04e8\u049d\3\2\2\2\u04e8\u04a0\3\2\2\2\u04e8\u04a3\3\2\2\2\u04e8"+
+ "\u04a6\3\2\2\2\u04e8\u04a9\3\2\2\2\u04e8\u04ac\3\2\2\2\u04e8\u04af\3\2"+
+ "\2\2\u04e8\u04b2\3\2\2\2\u04e8\u04b5\3\2\2\2\u04e8\u04b8\3\2\2\2\u04e8"+
+ "\u04bb\3\2\2\2\u04e8\u04be\3\2\2\2\u04e8\u04c1\3\2\2\2\u04e8\u04c4\3\2"+
+ "\2\2\u04e8\u04c7\3\2\2\2\u04e8\u04ca\3\2\2\2\u04e8\u04cd\3\2\2\2\u04e8"+
+ "\u04d0\3\2\2\2\u04e8\u04d3\3\2\2\2\u04e8\u04d6\3\2\2\2\u04e8\u04d9\3\2"+
+ "\2\2\u04e8\u04dc\3\2\2\2\u04e8\u04df\3\2\2\2\u04e8\u04e2\3\2\2\2\u04e8"+
+ "\u04e5\3\2\2\2\u04e9\u00e3\3\2\2\2\u04ea\u04eb\7%\2\2\u04eb\u00e5\3\2"+
+ "\2\2\u04ec\u04ed\7<\2\2\u04ed\u00e7\3\2\2\2\u04ee\u04ef\7.\2\2\u04ef\u00e9"+
+ "\3\2\2\2\u04f0\u04f1\7*\2\2\u04f1\u00eb\3\2\2\2\u04f2\u04f3\7+\2\2\u04f3"+
+ "\u00ed\3\2\2\2\u04f4\u04f5\7]\2\2\u04f5\u00ef\3\2\2\2\u04f6\u04f7\7_\2"+
+ "\2\u04f7\u00f1\3\2\2\2\u04f8\u04f9\7\60\2\2\u04f9\u00f3\3\2\2\2\u04fa"+
+ "\u04fb\7>\2\2\u04fb\u04fc\7>\2\2\u04fc\u00f5\3\2\2\2\u04fd\u04fe\7@\2"+
+ "\2\u04fe\u04ff\7@\2\2\u04ff\u00f7\3\2\2\2\u0500\u0501\7-\2\2\u0501\u00f9"+
+ "\3\2\2\2\u0502\u0503\7/\2\2\u0503\u00fb\3\2\2\2\u0504\u0505\7>\2\2\u0505"+
+ "\u00fd\3\2\2\2\u0506\u0507\7@\2\2\u0507\u00ff\3\2\2\2\u0508\u0509\7,\2"+
+ "\2\u0509\u0101\3\2\2\2\u050a\u050b\7\61\2\2\u050b\u0103\3\2\2\2\u050c"+
+ "\u050d\7}\2\2\u050d\u050e\b\u0082\t\2\u050e\u0105\3\2\2\2\u050f\u0510"+
+ "\7\177\2\2\u0510\u0511\b\u0083\n\2\u0511\u0107\3\2\2\2\u0512\u0515\5\u010a"+
+ "\u0085\2\u0513\u0515\5\u0112\u0089\2\u0514\u0512\3\2\2\2\u0514\u0513\3"+
+ "\2\2\2\u0515\u0109\3\2\2\2\u0516\u051a\5\u010c\u0086\2\u0517\u051a\5\u010e"+
+ "\u0087\2\u0518\u051a\5\u0110\u0088\2\u0519\u0516\3\2\2\2\u0519\u0517\3"+
+ "\2\2\2\u0519\u0518\3\2\2\2\u051a\u010b\3\2\2\2\u051b\u051f\7\'\2\2\u051c"+
+ "\u051e\5\u011a\u008d\2\u051d\u051c\3\2\2\2\u051e\u0521\3\2\2\2\u051f\u051d"+
+ "\3\2\2\2\u051f\u0520\3\2\2\2\u0520\u0522\3\2\2\2\u0521\u051f\3\2\2\2\u0522"+
+ "\u0524\7\60\2\2\u0523\u0525\5\u011a\u008d\2\u0524\u0523\3\2\2\2\u0525"+
+ "\u0526\3\2\2\2\u0526\u0524\3\2\2\2\u0526\u0527\3\2\2\2\u0527\u010d\3\2"+
+ "\2\2\u0528\u052a\5\u011c\u008e\2\u0529\u0528\3\2\2\2\u052a\u052d\3\2\2"+
+ "\2\u052b\u0529\3\2\2\2\u052b\u052c\3\2\2\2\u052c\u052e\3\2\2\2\u052d\u052b"+
+ "\3\2\2\2\u052e\u0530\7\60\2\2\u052f\u0531\5\u011c\u008e\2\u0530\u052f"+
+ "\3\2\2\2\u0531\u0532\3\2\2\2\u0532\u0530\3\2\2\2\u0532\u0533\3\2\2\2\u0533"+
+ "\u010f\3\2\2\2\u0534\u0538\7&\2\2\u0535\u0537\5\u011e\u008f\2\u0536\u0535"+
+ "\3\2\2\2\u0537\u053a\3\2\2\2\u0538\u0536\3\2\2\2\u0538\u0539\3\2\2\2\u0539"+
+ "\u053b\3\2\2\2\u053a\u0538\3\2\2\2\u053b\u053d\7\60\2\2\u053c\u053e\5"+
+ "\u011e\u008f\2\u053d\u053c\3\2\2\2\u053e\u053f\3\2\2\2\u053f\u053d\3\2"+
+ "\2\2\u053f\u0540\3\2\2\2\u0540\u0111\3\2\2\2\u0541\u0545\5\u0116\u008b"+
+ "\2\u0542\u0545\5\u0118\u008c\2\u0543\u0545\5\u0114\u008a\2\u0544\u0541"+
+ "\3\2\2\2\u0544\u0542\3\2\2\2\u0544\u0543\3\2\2\2\u0545\u0113\3\2\2\2\u0546"+
+ "\u0548\7\'\2\2\u0547\u0549\5\u011a\u008d\2\u0548\u0547\3\2\2\2\u0549\u054a"+
+ "\3\2\2\2\u054a\u0548\3\2\2\2\u054a\u054b\3\2\2\2\u054b\u0115\3\2\2\2\u054c"+
+ "\u054e\5\u011c\u008e\2\u054d\u054c\3\2\2\2\u054e\u054f\3\2\2\2\u054f\u054d"+
+ "\3\2\2\2\u054f\u0550\3\2\2\2\u0550\u0117\3\2\2\2\u0551\u0553\7&\2\2\u0552"+
+ "\u0554\5\u011e\u008f\2\u0553\u0552\3\2\2\2\u0554\u0555\3\2\2\2\u0555\u0553"+
+ "\3\2\2\2\u0555\u0556\3\2\2\2\u0556\u0119\3\2\2\2\u0557\u0558\t\13\2\2"+
+ "\u0558\u011b\3\2\2\2\u0559\u055a\t\f\2\2\u055a\u011d\3\2\2\2\u055b\u055c"+
+ "\t\r\2\2\u055c\u011f\3\2\2\2\u055d\u0561\7)\2\2\u055e\u055f\7^\2\2\u055f"+
+ "\u0562\t\6\2\2\u0560\u0562\n\7\2\2\u0561\u055e\3\2\2\2\u0561\u0560\3\2"+
+ "\2\2\u0562\u0563\3\2\2\2\u0563\u0564\7)\2\2\u0564\u0121\3\2\2\2\u0565"+
+ "\u0567\5\u0124\u0092\2\u0566\u0568\t\22\2\2\u0567\u0566\3\2\2\2\u0568"+
+ "\u0569\3\2\2\2\u0569\u0567\3\2\2\2\u0569\u056a\3\2\2\2\u056a\u0123\3\2"+
+ "\2\2\u056b\u056f\7#\2\2\u056c\u056e\5\u012a\u0095\2\u056d\u056c\3\2\2"+
+ "\2\u056e\u0571\3\2\2\2\u056f\u056d\3\2\2\2\u056f\u0570\3\2\2\2\u0570\u0125"+
+ "\3\2\2\2\u0571\u056f\3\2\2\2\u0572\u0576\5\u0128\u0094\2\u0573\u0575\5"+
+ "\u012a\u0095\2\u0574\u0573\3\2\2\2\u0575\u0578\3\2\2\2\u0576\u0574\3\2"+
+ "\2\2\u0576\u0577\3\2\2\2\u0577\u0127\3\2\2\2\u0578\u0576\3\2\2\2\u0579"+
+ "\u057a\t\16\2\2\u057a\u0129\3\2\2\2\u057b\u057c\t\17\2\2\u057c\u012b\3"+
+ "\2\2\2\u057d\u057f\t\20\2\2\u057e\u057d\3\2\2\2\u057f\u0580\3\2\2\2\u0580"+
+ "\u057e\3\2\2\2\u0580\u0581\3\2\2\2\u0581\u0582\3\2\2\2\u0582\u0583\b\u0096"+
+ "\7\2\u0583\u012d\3\2\2\2\u0584\u0585\7\61\2\2\u0585\u0586\7\61\2\2\u0586"+
+ "\u058a\3\2\2\2\u0587\u0589\n\21\2\2\u0588\u0587\3\2\2\2\u0589\u058c\3"+
+ "\2\2\2\u058a\u0588\3\2\2\2\u058a\u058b\3\2\2\2\u058b\u058d\3\2\2\2\u058c"+
+ "\u058a\3\2\2\2\u058d\u058e\b\u0097\b\2\u058e\u012f\3\2\2\2\u058f\u0590"+
+ "\7\61\2\2\u0590\u0591\7,\2\2\u0591\u0595\3\2\2\2\u0592\u0594\13\2\2\2"+
+ "\u0593\u0592\3\2\2\2\u0594\u0597\3\2\2\2\u0595\u0596\3\2\2\2\u0595\u0593"+
+ "\3\2\2\2\u0596\u0598\3\2\2\2\u0597\u0595\3\2\2\2\u0598\u0599\7,\2\2\u0599"+
+ "\u059a\7\61\2\2\u059a\u059b\3\2\2\2\u059b\u059c\b\u0098\b\2\u059c\u0131"+
+ "\3\2\2\2;\2\3\u019b\u0265\u030c\u0333\u033e\u0346\u0350\u0352\u0357\u035b"+
+ "\u035d\u0360\u0368\u036e\u0373\u037a\u037f\u0386\u038b\u0392\u0399\u039e"+
+ "\u03a5\u03aa\u03af\u03b6\u03bc\u03be\u03c3\u03ca\u03cf\u03db\u03e7\u03f1"+
+ "\u03fc\u04e8\u0514\u0519\u051f\u0526\u052b\u0532\u0538\u053f\u0544\u054a"+
+ "\u054f\u0555\u0561\u0569\u056f\u0576\u0580\u058a\u0595\13\3\2\2\3&\3\3"+
+ "J\4\3\\\5\3j\6\2\3\2\2\4\2\3\u0082\7\3\u0083\b";
public static final ATN _ATN =
new ATNDeserializer().deserialize(_serializedATN.toCharArray());
static {
diff --git a/src/main/java/dk/camelot64/kickc/parser/KickCLexer.tokens b/src/main/java/dk/camelot64/kickc/parser/KickCLexer.tokens
index 5260fa789..2b0c09ad4 100644
--- a/src/main/java/dk/camelot64/kickc/parser/KickCLexer.tokens
+++ b/src/main/java/dk/camelot64/kickc/parser/KickCLexer.tokens
@@ -61,84 +61,85 @@ FORM_SSA=60
FORM_MA=61
CALLING=62
CALLINGCONVENTION=63
-IF=64
-ELSE=65
-WHILE=66
-DO=67
-FOR=68
-SWITCH=69
-RETURN=70
-BREAK=71
-CONTINUE=72
-ASM=73
-DEFAULT=74
-CASE=75
-STRUCT=76
-ENUM=77
-SIZEOF=78
-TYPEID=79
-KICKASM=80
-RESOURCE=81
-USES=82
-CLOBBERS=83
-BYTES=84
-CYCLES=85
-LOGIC_NOT=86
-SIGNEDNESS=87
-SIMPLETYPE=88
-BOOLEAN=89
-KICKASM_BODY=90
-STRING=91
-CHAR=92
-NUMBER=93
-NUMFLOAT=94
-BINFLOAT=95
-DECFLOAT=96
-HEXFLOAT=97
-NUMINT=98
-BININTEGER=99
-DECINTEGER=100
-HEXINTEGER=101
-NAME=102
-WS=103
-COMMENT_LINE=104
-COMMENT_BLOCK=105
-ASM_BYTE=106
-ASM_MNEMONIC=107
-ASM_IMM=108
-ASM_COLON=109
-ASM_COMMA=110
-ASM_PAR_BEGIN=111
-ASM_PAR_END=112
-ASM_BRACKET_BEGIN=113
-ASM_BRACKET_END=114
-ASM_DOT=115
-ASM_SHIFT_LEFT=116
-ASM_SHIFT_RIGHT=117
-ASM_PLUS=118
-ASM_MINUS=119
-ASM_LESS_THAN=120
-ASM_GREATER_THAN=121
-ASM_MULTIPLY=122
-ASM_DIVIDE=123
-ASM_CURLY_BEGIN=124
-ASM_CURLY_END=125
-ASM_NUMBER=126
-ASM_NUMFLOAT=127
-ASM_BINFLOAT=128
-ASM_DECFLOAT=129
-ASM_HEXFLOAT=130
-ASM_NUMINT=131
-ASM_BININTEGER=132
-ASM_DECINTEGER=133
-ASM_HEXINTEGER=134
-ASM_CHAR=135
-ASM_MULTI_REL=136
-ASM_MULTI_NAME=137
-ASM_NAME=138
-ASM_WS=139
-ASM_COMMENT_LINE=140
-ASM_COMMENT_BLOCK=141
+VARMODEL=64
+IF=65
+ELSE=66
+WHILE=67
+DO=68
+FOR=69
+SWITCH=70
+RETURN=71
+BREAK=72
+CONTINUE=73
+ASM=74
+DEFAULT=75
+CASE=76
+STRUCT=77
+ENUM=78
+SIZEOF=79
+TYPEID=80
+KICKASM=81
+RESOURCE=82
+USES=83
+CLOBBERS=84
+BYTES=85
+CYCLES=86
+LOGIC_NOT=87
+SIGNEDNESS=88
+SIMPLETYPE=89
+BOOLEAN=90
+KICKASM_BODY=91
+STRING=92
+CHAR=93
+NUMBER=94
+NUMFLOAT=95
+BINFLOAT=96
+DECFLOAT=97
+HEXFLOAT=98
+NUMINT=99
+BININTEGER=100
+DECINTEGER=101
+HEXINTEGER=102
+NAME=103
+WS=104
+COMMENT_LINE=105
+COMMENT_BLOCK=106
+ASM_BYTE=107
+ASM_MNEMONIC=108
+ASM_IMM=109
+ASM_COLON=110
+ASM_COMMA=111
+ASM_PAR_BEGIN=112
+ASM_PAR_END=113
+ASM_BRACKET_BEGIN=114
+ASM_BRACKET_END=115
+ASM_DOT=116
+ASM_SHIFT_LEFT=117
+ASM_SHIFT_RIGHT=118
+ASM_PLUS=119
+ASM_MINUS=120
+ASM_LESS_THAN=121
+ASM_GREATER_THAN=122
+ASM_MULTIPLY=123
+ASM_DIVIDE=124
+ASM_CURLY_BEGIN=125
+ASM_CURLY_END=126
+ASM_NUMBER=127
+ASM_NUMFLOAT=128
+ASM_BINFLOAT=129
+ASM_DECFLOAT=130
+ASM_HEXFLOAT=131
+ASM_NUMINT=132
+ASM_BININTEGER=133
+ASM_DECINTEGER=134
+ASM_HEXINTEGER=135
+ASM_CHAR=136
+ASM_MULTI_REL=137
+ASM_MULTI_NAME=138
+ASM_NAME=139
+ASM_WS=140
+ASM_COMMENT_LINE=141
+ASM_COMMENT_BLOCK=142
';'=8
'..'=11
'?'=12
@@ -182,28 +183,29 @@ ASM_COMMENT_BLOCK=141
'__ssa'=60
'__ma'=61
'calling'=62
-'if'=64
-'else'=65
-'while'=66
-'do'=67
-'for'=68
-'switch'=69
-'return'=70
-'break'=71
-'continue'=72
-'asm'=73
-'default'=74
-'case'=75
-'struct'=76
-'enum'=77
-'sizeof'=78
-'typeid'=79
-'kickasm'=80
-'resource'=81
-'uses'=82
-'clobbers'=83
-'bytes'=84
-'cycles'=85
-'!'=86
-'.byte'=106
-'#'=108
+'var_model'=64
+'if'=65
+'else'=66
+'while'=67
+'do'=68
+'for'=69
+'switch'=70
+'return'=71
+'break'=72
+'continue'=73
+'asm'=74
+'default'=75
+'case'=76
+'struct'=77
+'enum'=78
+'sizeof'=79
+'typeid'=80
+'kickasm'=81
+'resource'=82
+'uses'=83
+'clobbers'=84
+'bytes'=85
+'cycles'=86
+'!'=87
+'.byte'=107
+'#'=109
diff --git a/src/main/java/dk/camelot64/kickc/parser/KickCParser.g4 b/src/main/java/dk/camelot64/kickc/parser/KickCParser.g4
index e319329f1..78205d91f 100644
--- a/src/main/java/dk/camelot64/kickc/parser/KickCParser.g4
+++ b/src/main/java/dk/camelot64/kickc/parser/KickCParser.g4
@@ -92,6 +92,7 @@ globalDirective
| (PRAGMA DATASEG) PAR_BEGIN NAME PAR_END #globalDirectiveDataSeg
| (PRAGMA ENCODING) PAR_BEGIN NAME PAR_END #globalDirectiveEncoding
| (PRAGMA CALLING) PAR_BEGIN CALLINGCONVENTION PAR_END #globalDirectiveCalling
+ | (PRAGMA VARMODEL) PAR_BEGIN NAME ( COMMA NAME )* PAR_END #globalDirectiveVarModel
;
directive
diff --git a/src/main/java/dk/camelot64/kickc/parser/KickCParser.java b/src/main/java/dk/camelot64/kickc/parser/KickCParser.java
index 541678ab3..569c91c31 100644
--- a/src/main/java/dk/camelot64/kickc/parser/KickCParser.java
+++ b/src/main/java/dk/camelot64/kickc/parser/KickCParser.java
@@ -28,8 +28,8 @@ public class KickCParser extends Parser {
ASSIGN_COMPOUND=37, IMPORT=38, TYPEDEF=39, PRAGMA=40, RESERVE=41, PC=42,
TARGET=43, LINK=44, CPU=45, CODESEG=46, DATASEG=47, ENCODING=48, CONST=49,
EXTERN=50, EXPORT=51, ALIGN=52, INLINE=53, VOLATILE=54, INTERRUPT=55,
- REGISTER=56, ADDRESS=57, ADDRESS_ZEROPAGE=58, ADDRESS_MAINMEM=59, NOTCONST=60,
- FORM_SSA=61, FORM_MA=62, CALLING=63, CALLINGCONVENTION=64, IF=65, ELSE=66,
+ REGISTER=56, ADDRESS=57, ADDRESS_ZEROPAGE=58, ADDRESS_MAINMEM=59, FORM_SSA=60,
+ FORM_MA=61, CALLING=62, CALLINGCONVENTION=63, VARMODEL=64, IF=65, ELSE=66,
WHILE=67, DO=68, FOR=69, SWITCH=70, RETURN=71, BREAK=72, CONTINUE=73,
ASM=74, DEFAULT=75, CASE=76, STRUCT=77, ENUM=78, SIZEOF=79, TYPEID=80,
KICKASM=81, RESOURCE=82, USES=83, CLOBBERS=84, BYTES=85, CYCLES=86, LOGIC_NOT=87,
@@ -82,7 +82,7 @@ public class KickCParser extends Parser {
"'reserve'", "'pc'", "'target'", "'link'", "'cpu'", "'code_seg'", "'data_seg'",
"'encoding'", "'const'", "'extern'", "'export'", "'align'", "'inline'",
"'volatile'", "'interrupt'", "'register'", "'__address'", "'__zp'", "'__mem'",
- "'__notconst'", "'__ssa'", "'__ma'", "'calling'", null, "'if'", "'else'",
+ "'__ssa'", "'__ma'", "'calling'", null, "'var_model'", "'if'", "'else'",
"'while'", "'do'", "'for'", "'switch'", "'return'", "'break'", "'continue'",
"'asm'", "'default'", "'case'", "'struct'", "'enum'", "'sizeof'", "'typeid'",
"'kickasm'", "'resource'", "'uses'", "'clobbers'", "'bytes'", "'cycles'",
@@ -102,12 +102,12 @@ public class KickCParser extends Parser {
"IMPORT", "TYPEDEF", "PRAGMA", "RESERVE", "PC", "TARGET", "LINK", "CPU",
"CODESEG", "DATASEG", "ENCODING", "CONST", "EXTERN", "EXPORT", "ALIGN",
"INLINE", "VOLATILE", "INTERRUPT", "REGISTER", "ADDRESS", "ADDRESS_ZEROPAGE",
- "ADDRESS_MAINMEM", "NOTCONST", "FORM_SSA", "FORM_MA", "CALLING", "CALLINGCONVENTION",
- "IF", "ELSE", "WHILE", "DO", "FOR", "SWITCH", "RETURN", "BREAK", "CONTINUE",
- "ASM", "DEFAULT", "CASE", "STRUCT", "ENUM", "SIZEOF", "TYPEID", "KICKASM",
- "RESOURCE", "USES", "CLOBBERS", "BYTES", "CYCLES", "LOGIC_NOT", "SIGNEDNESS",
- "SIMPLETYPE", "BOOLEAN", "KICKASM_BODY", "STRING", "CHAR", "NUMBER",
- "NUMFLOAT", "BINFLOAT", "DECFLOAT", "HEXFLOAT", "NUMINT", "BININTEGER",
+ "ADDRESS_MAINMEM", "FORM_SSA", "FORM_MA", "CALLING", "CALLINGCONVENTION",
+ "VARMODEL", "IF", "ELSE", "WHILE", "DO", "FOR", "SWITCH", "RETURN", "BREAK",
+ "CONTINUE", "ASM", "DEFAULT", "CASE", "STRUCT", "ENUM", "SIZEOF", "TYPEID",
+ "KICKASM", "RESOURCE", "USES", "CLOBBERS", "BYTES", "CYCLES", "LOGIC_NOT",
+ "SIGNEDNESS", "SIMPLETYPE", "BOOLEAN", "KICKASM_BODY", "STRING", "CHAR",
+ "NUMBER", "NUMFLOAT", "BINFLOAT", "DECFLOAT", "HEXFLOAT", "NUMINT", "BININTEGER",
"DECINTEGER", "HEXINTEGER", "NAME", "WS", "COMMENT_LINE", "COMMENT_BLOCK",
"ASM_BYTE", "ASM_MNEMONIC", "ASM_IMM", "ASM_COLON", "ASM_COMMA", "ASM_PAR_BEGIN",
"ASM_PAR_END", "ASM_BRACKET_BEGIN", "ASM_BRACKET_END", "ASM_DOT", "ASM_SHIFT_LEFT",
@@ -308,7 +308,7 @@ public class KickCParser extends Parser {
setState(95);
_errHandler.sync(this);
_la = _input.LA(1);
- while ((((_la) & ~0x3f) == 0 && ((1L << _la) & ((1L << TYPEDEFNAME) | (1L << PAR_BEGIN) | (1L << IMPORT) | (1L << TYPEDEF) | (1L << PRAGMA) | (1L << RESERVE) | (1L << CONST) | (1L << EXTERN) | (1L << EXPORT) | (1L << ALIGN) | (1L << INLINE) | (1L << VOLATILE) | (1L << INTERRUPT) | (1L << REGISTER) | (1L << ADDRESS) | (1L << ADDRESS_ZEROPAGE) | (1L << ADDRESS_MAINMEM) | (1L << FORM_SSA) | (1L << FORM_MA))) != 0) || ((((_la - 64)) & ~0x3f) == 0 && ((1L << (_la - 64)) & ((1L << (CALLINGCONVENTION - 64)) | (1L << (STRUCT - 64)) | (1L << (ENUM - 64)) | (1L << (KICKASM - 64)) | (1L << (SIGNEDNESS - 64)) | (1L << (SIMPLETYPE - 64)))) != 0)) {
+ while ((((_la) & ~0x3f) == 0 && ((1L << _la) & ((1L << TYPEDEFNAME) | (1L << PAR_BEGIN) | (1L << IMPORT) | (1L << TYPEDEF) | (1L << PRAGMA) | (1L << RESERVE) | (1L << CONST) | (1L << EXTERN) | (1L << EXPORT) | (1L << ALIGN) | (1L << INLINE) | (1L << VOLATILE) | (1L << INTERRUPT) | (1L << REGISTER) | (1L << ADDRESS) | (1L << ADDRESS_ZEROPAGE) | (1L << ADDRESS_MAINMEM) | (1L << FORM_SSA) | (1L << FORM_MA) | (1L << CALLINGCONVENTION))) != 0) || ((((_la - 77)) & ~0x3f) == 0 && ((1L << (_la - 77)) & ((1L << (STRUCT - 77)) | (1L << (ENUM - 77)) | (1L << (KICKASM - 77)) | (1L << (SIGNEDNESS - 77)) | (1L << (SIMPLETYPE - 77)))) != 0)) {
{
{
setState(92);
@@ -672,7 +672,7 @@ public class KickCParser extends Parser {
setState(130);
_errHandler.sync(this);
_la = _input.LA(1);
- while (((((_la - 41)) & ~0x3f) == 0 && ((1L << (_la - 41)) & ((1L << (RESERVE - 41)) | (1L << (CONST - 41)) | (1L << (EXTERN - 41)) | (1L << (EXPORT - 41)) | (1L << (ALIGN - 41)) | (1L << (INLINE - 41)) | (1L << (VOLATILE - 41)) | (1L << (INTERRUPT - 41)) | (1L << (REGISTER - 41)) | (1L << (ADDRESS - 41)) | (1L << (ADDRESS_ZEROPAGE - 41)) | (1L << (ADDRESS_MAINMEM - 41)) | (1L << (FORM_SSA - 41)) | (1L << (FORM_MA - 41)) | (1L << (CALLINGCONVENTION - 41)))) != 0)) {
+ while ((((_la) & ~0x3f) == 0 && ((1L << _la) & ((1L << RESERVE) | (1L << CONST) | (1L << EXTERN) | (1L << EXPORT) | (1L << ALIGN) | (1L << INLINE) | (1L << VOLATILE) | (1L << INTERRUPT) | (1L << REGISTER) | (1L << ADDRESS) | (1L << ADDRESS_ZEROPAGE) | (1L << ADDRESS_MAINMEM) | (1L << FORM_SSA) | (1L << FORM_MA) | (1L << CALLINGCONVENTION))) != 0)) {
{
{
setState(127);
@@ -688,7 +688,7 @@ public class KickCParser extends Parser {
setState(137);
_errHandler.sync(this);
_la = _input.LA(1);
- while (((((_la - 41)) & ~0x3f) == 0 && ((1L << (_la - 41)) & ((1L << (RESERVE - 41)) | (1L << (CONST - 41)) | (1L << (EXTERN - 41)) | (1L << (EXPORT - 41)) | (1L << (ALIGN - 41)) | (1L << (INLINE - 41)) | (1L << (VOLATILE - 41)) | (1L << (INTERRUPT - 41)) | (1L << (REGISTER - 41)) | (1L << (ADDRESS - 41)) | (1L << (ADDRESS_ZEROPAGE - 41)) | (1L << (ADDRESS_MAINMEM - 41)) | (1L << (FORM_SSA - 41)) | (1L << (FORM_MA - 41)) | (1L << (CALLINGCONVENTION - 41)))) != 0)) {
+ while ((((_la) & ~0x3f) == 0 && ((1L << _la) & ((1L << RESERVE) | (1L << CONST) | (1L << EXTERN) | (1L << EXPORT) | (1L << ALIGN) | (1L << INLINE) | (1L << VOLATILE) | (1L << INTERRUPT) | (1L << REGISTER) | (1L << ADDRESS) | (1L << ADDRESS_ZEROPAGE) | (1L << ADDRESS_MAINMEM) | (1L << FORM_SSA) | (1L << FORM_MA) | (1L << CALLINGCONVENTION))) != 0)) {
{
{
setState(134);
@@ -1001,7 +1001,7 @@ public class KickCParser extends Parser {
setState(168);
_errHandler.sync(this);
_la = _input.LA(1);
- if ((((_la) & ~0x3f) == 0 && ((1L << _la) & ((1L << TYPEDEFNAME) | (1L << PAR_BEGIN) | (1L << RESERVE) | (1L << CONST) | (1L << EXTERN) | (1L << EXPORT) | (1L << ALIGN) | (1L << INLINE) | (1L << VOLATILE) | (1L << INTERRUPT) | (1L << REGISTER) | (1L << ADDRESS) | (1L << ADDRESS_ZEROPAGE) | (1L << ADDRESS_MAINMEM) | (1L << FORM_SSA) | (1L << FORM_MA))) != 0) || ((((_la - 64)) & ~0x3f) == 0 && ((1L << (_la - 64)) & ((1L << (CALLINGCONVENTION - 64)) | (1L << (STRUCT - 64)) | (1L << (ENUM - 64)) | (1L << (SIGNEDNESS - 64)) | (1L << (SIMPLETYPE - 64)))) != 0)) {
+ if ((((_la) & ~0x3f) == 0 && ((1L << _la) & ((1L << TYPEDEFNAME) | (1L << PAR_BEGIN) | (1L << RESERVE) | (1L << CONST) | (1L << EXTERN) | (1L << EXPORT) | (1L << ALIGN) | (1L << INLINE) | (1L << VOLATILE) | (1L << INTERRUPT) | (1L << REGISTER) | (1L << ADDRESS) | (1L << ADDRESS_ZEROPAGE) | (1L << ADDRESS_MAINMEM) | (1L << FORM_SSA) | (1L << FORM_MA) | (1L << CALLINGCONVENTION))) != 0) || ((((_la - 77)) & ~0x3f) == 0 && ((1L << (_la - 77)) & ((1L << (STRUCT - 77)) | (1L << (ENUM - 77)) | (1L << (SIGNEDNESS - 77)) | (1L << (SIMPLETYPE - 77)))) != 0)) {
{
setState(167);
parameterListDecl();
@@ -1015,7 +1015,7 @@ public class KickCParser extends Parser {
setState(173);
_errHandler.sync(this);
_la = _input.LA(1);
- if ((((_la) & ~0x3f) == 0 && ((1L << _la) & ((1L << TYPEDEFNAME) | (1L << CURLY_BEGIN) | (1L << PAR_BEGIN) | (1L << PLUS) | (1L << MINUS) | (1L << ASTERISK) | (1L << INC) | (1L << DEC) | (1L << AND) | (1L << BIT_NOT) | (1L << LESS_THAN) | (1L << GREATER_THAN) | (1L << RESERVE) | (1L << CONST) | (1L << EXTERN) | (1L << EXPORT) | (1L << ALIGN) | (1L << INLINE) | (1L << VOLATILE) | (1L << INTERRUPT) | (1L << REGISTER) | (1L << ADDRESS) | (1L << ADDRESS_ZEROPAGE) | (1L << ADDRESS_MAINMEM) | (1L << FORM_SSA) | (1L << FORM_MA))) != 0) || ((((_la - 64)) & ~0x3f) == 0 && ((1L << (_la - 64)) & ((1L << (CALLINGCONVENTION - 64)) | (1L << (IF - 64)) | (1L << (WHILE - 64)) | (1L << (DO - 64)) | (1L << (FOR - 64)) | (1L << (SWITCH - 64)) | (1L << (RETURN - 64)) | (1L << (BREAK - 64)) | (1L << (CONTINUE - 64)) | (1L << (ASM - 64)) | (1L << (STRUCT - 64)) | (1L << (ENUM - 64)) | (1L << (SIZEOF - 64)) | (1L << (TYPEID - 64)) | (1L << (KICKASM - 64)) | (1L << (LOGIC_NOT - 64)) | (1L << (SIGNEDNESS - 64)) | (1L << (SIMPLETYPE - 64)) | (1L << (BOOLEAN - 64)) | (1L << (STRING - 64)) | (1L << (CHAR - 64)) | (1L << (NUMBER - 64)) | (1L << (NAME - 64)))) != 0)) {
+ if ((((_la) & ~0x3f) == 0 && ((1L << _la) & ((1L << TYPEDEFNAME) | (1L << CURLY_BEGIN) | (1L << PAR_BEGIN) | (1L << PLUS) | (1L << MINUS) | (1L << ASTERISK) | (1L << INC) | (1L << DEC) | (1L << AND) | (1L << BIT_NOT) | (1L << LESS_THAN) | (1L << GREATER_THAN) | (1L << RESERVE) | (1L << CONST) | (1L << EXTERN) | (1L << EXPORT) | (1L << ALIGN) | (1L << INLINE) | (1L << VOLATILE) | (1L << INTERRUPT) | (1L << REGISTER) | (1L << ADDRESS) | (1L << ADDRESS_ZEROPAGE) | (1L << ADDRESS_MAINMEM) | (1L << FORM_SSA) | (1L << FORM_MA) | (1L << CALLINGCONVENTION))) != 0) || ((((_la - 65)) & ~0x3f) == 0 && ((1L << (_la - 65)) & ((1L << (IF - 65)) | (1L << (WHILE - 65)) | (1L << (DO - 65)) | (1L << (FOR - 65)) | (1L << (SWITCH - 65)) | (1L << (RETURN - 65)) | (1L << (BREAK - 65)) | (1L << (CONTINUE - 65)) | (1L << (ASM - 65)) | (1L << (STRUCT - 65)) | (1L << (ENUM - 65)) | (1L << (SIZEOF - 65)) | (1L << (TYPEID - 65)) | (1L << (KICKASM - 65)) | (1L << (LOGIC_NOT - 65)) | (1L << (SIGNEDNESS - 65)) | (1L << (SIMPLETYPE - 65)) | (1L << (BOOLEAN - 65)) | (1L << (STRING - 65)) | (1L << (CHAR - 65)) | (1L << (NUMBER - 65)) | (1L << (NAME - 65)))) != 0)) {
{
setState(172);
stmtSeq();
@@ -1357,6 +1357,34 @@ public class KickCParser extends Parser {
else return visitor.visitChildren(this);
}
}
+ public static class GlobalDirectiveVarModelContext extends GlobalDirectiveContext {
+ public TerminalNode PAR_BEGIN() { return getToken(KickCParser.PAR_BEGIN, 0); }
+ public List NAME() { return getTokens(KickCParser.NAME); }
+ public TerminalNode NAME(int i) {
+ return getToken(KickCParser.NAME, i);
+ }
+ public TerminalNode PAR_END() { return getToken(KickCParser.PAR_END, 0); }
+ public TerminalNode PRAGMA() { return getToken(KickCParser.PRAGMA, 0); }
+ public TerminalNode VARMODEL() { return getToken(KickCParser.VARMODEL, 0); }
+ public List COMMA() { return getTokens(KickCParser.COMMA); }
+ public TerminalNode COMMA(int i) {
+ return getToken(KickCParser.COMMA, i);
+ }
+ public GlobalDirectiveVarModelContext(GlobalDirectiveContext ctx) { copyFrom(ctx); }
+ @Override
+ public void enterRule(ParseTreeListener listener) {
+ if ( listener instanceof KickCParserListener ) ((KickCParserListener)listener).enterGlobalDirectiveVarModel(this);
+ }
+ @Override
+ public void exitRule(ParseTreeListener listener) {
+ if ( listener instanceof KickCParserListener ) ((KickCParserListener)listener).exitGlobalDirectiveVarModel(this);
+ }
+ @Override
+ public T accept(ParseTreeVisitor extends T> visitor) {
+ if ( visitor instanceof KickCParserVisitor ) return ((KickCParserVisitor extends T>)visitor).visitGlobalDirectiveVarModel(this);
+ else return visitor.visitChildren(this);
+ }
+ }
public static class GlobalDirectivePlatformContext extends GlobalDirectiveContext {
public TerminalNode PAR_BEGIN() { return getToken(KickCParser.PAR_BEGIN, 0); }
public TerminalNode NAME() { return getToken(KickCParser.NAME, 0); }
@@ -1405,9 +1433,9 @@ public class KickCParser extends Parser {
enterRule(_localctx, 28, RULE_globalDirective);
int _la;
try {
- setState(252);
+ setState(265);
_errHandler.sync(this);
- switch ( getInterpreter().adaptivePredict(_input,13,_ctx) ) {
+ switch ( getInterpreter().adaptivePredict(_input,14,_ctx) ) {
case 1:
_localctx = new GlobalDirectiveReserveContext(_localctx);
enterOuterAlt(_localctx, 1);
@@ -1586,6 +1614,40 @@ public class KickCParser extends Parser {
match(PAR_END);
}
break;
+ case 10:
+ _localctx = new GlobalDirectiveVarModelContext(_localctx);
+ enterOuterAlt(_localctx, 10);
+ {
+ {
+ setState(252);
+ match(PRAGMA);
+ setState(253);
+ match(VARMODEL);
+ }
+ setState(255);
+ match(PAR_BEGIN);
+ setState(256);
+ match(NAME);
+ setState(261);
+ _errHandler.sync(this);
+ _la = _input.LA(1);
+ while (_la==COMMA) {
+ {
+ {
+ setState(257);
+ match(COMMA);
+ setState(258);
+ match(NAME);
+ }
+ }
+ setState(263);
+ _errHandler.sync(this);
+ _la = _input.LA(1);
+ }
+ setState(264);
+ match(PAR_END);
+ }
+ break;
}
}
catch (RecognitionException re) {
@@ -1893,14 +1955,14 @@ public class KickCParser extends Parser {
enterRule(_localctx, 30, RULE_directive);
int _la;
try {
- setState(295);
+ setState(308);
_errHandler.sync(this);
switch (_input.LA(1)) {
case CONST:
_localctx = new DirectiveConstContext(_localctx);
enterOuterAlt(_localctx, 1);
{
- setState(254);
+ setState(267);
match(CONST);
}
break;
@@ -1908,13 +1970,13 @@ public class KickCParser extends Parser {
_localctx = new DirectiveAlignContext(_localctx);
enterOuterAlt(_localctx, 2);
{
- setState(255);
+ setState(268);
match(ALIGN);
- setState(256);
+ setState(269);
match(PAR_BEGIN);
- setState(257);
+ setState(270);
match(NUMBER);
- setState(258);
+ setState(271);
match(PAR_END);
}
break;
@@ -1922,20 +1984,20 @@ public class KickCParser extends Parser {
_localctx = new DirectiveRegisterContext(_localctx);
enterOuterAlt(_localctx, 3);
{
- setState(259);
+ setState(272);
match(REGISTER);
- setState(263);
+ setState(276);
_errHandler.sync(this);
- switch ( getInterpreter().adaptivePredict(_input,14,_ctx) ) {
+ switch ( getInterpreter().adaptivePredict(_input,15,_ctx) ) {
case 1:
{
- setState(260);
+ setState(273);
match(PAR_BEGIN);
{
- setState(261);
+ setState(274);
match(NAME);
}
- setState(262);
+ setState(275);
match(PAR_END);
}
break;
@@ -1946,7 +2008,7 @@ public class KickCParser extends Parser {
_localctx = new DirectiveMemoryAreaZpContext(_localctx);
enterOuterAlt(_localctx, 4);
{
- setState(265);
+ setState(278);
match(ADDRESS_ZEROPAGE);
}
break;
@@ -1954,7 +2016,7 @@ public class KickCParser extends Parser {
_localctx = new DirectiveMemoryAreaMainContext(_localctx);
enterOuterAlt(_localctx, 5);
{
- setState(266);
+ setState(279);
match(ADDRESS_MAINMEM);
}
break;
@@ -1962,15 +2024,15 @@ public class KickCParser extends Parser {
_localctx = new DirectiveMemoryAreaAddressContext(_localctx);
enterOuterAlt(_localctx, 6);
{
- setState(267);
+ setState(280);
match(ADDRESS);
- setState(268);
+ setState(281);
match(PAR_BEGIN);
{
- setState(269);
+ setState(282);
match(NUMBER);
}
- setState(270);
+ setState(283);
match(PAR_END);
}
break;
@@ -1978,7 +2040,7 @@ public class KickCParser extends Parser {
_localctx = new DirectiveVolatileContext(_localctx);
enterOuterAlt(_localctx, 7);
{
- setState(271);
+ setState(284);
match(VOLATILE);
}
break;
@@ -1986,7 +2048,7 @@ public class KickCParser extends Parser {
_localctx = new DirectiveFormSsaContext(_localctx);
enterOuterAlt(_localctx, 8);
{
- setState(272);
+ setState(285);
match(FORM_SSA);
}
break;
@@ -1994,7 +2056,7 @@ public class KickCParser extends Parser {
_localctx = new DirectiveFormMaContext(_localctx);
enterOuterAlt(_localctx, 9);
{
- setState(273);
+ setState(286);
match(FORM_MA);
}
break;
@@ -2002,7 +2064,7 @@ public class KickCParser extends Parser {
_localctx = new DirectiveExternContext(_localctx);
enterOuterAlt(_localctx, 10);
{
- setState(274);
+ setState(287);
match(EXTERN);
}
break;
@@ -2010,7 +2072,7 @@ public class KickCParser extends Parser {
_localctx = new DirectiveExportContext(_localctx);
enterOuterAlt(_localctx, 11);
{
- setState(275);
+ setState(288);
match(EXPORT);
}
break;
@@ -2018,7 +2080,7 @@ public class KickCParser extends Parser {
_localctx = new DirectiveInlineContext(_localctx);
enterOuterAlt(_localctx, 12);
{
- setState(276);
+ setState(289);
match(INLINE);
}
break;
@@ -2026,18 +2088,18 @@ public class KickCParser extends Parser {
_localctx = new DirectiveInterruptContext(_localctx);
enterOuterAlt(_localctx, 13);
{
- setState(277);
+ setState(290);
match(INTERRUPT);
- setState(281);
+ setState(294);
_errHandler.sync(this);
- switch ( getInterpreter().adaptivePredict(_input,15,_ctx) ) {
+ switch ( getInterpreter().adaptivePredict(_input,16,_ctx) ) {
case 1:
{
- setState(278);
+ setState(291);
match(PAR_BEGIN);
- setState(279);
+ setState(292);
match(NAME);
- setState(280);
+ setState(293);
match(PAR_END);
}
break;
@@ -2048,29 +2110,29 @@ public class KickCParser extends Parser {
_localctx = new DirectiveReserveZpContext(_localctx);
enterOuterAlt(_localctx, 14);
{
- setState(283);
+ setState(296);
match(RESERVE);
- setState(284);
+ setState(297);
match(PAR_BEGIN);
- setState(285);
+ setState(298);
match(NUMBER);
- setState(290);
+ setState(303);
_errHandler.sync(this);
_la = _input.LA(1);
while (_la==COMMA) {
{
{
- setState(286);
+ setState(299);
match(COMMA);
- setState(287);
+ setState(300);
match(NUMBER);
}
}
- setState(292);
+ setState(305);
_errHandler.sync(this);
_la = _input.LA(1);
}
- setState(293);
+ setState(306);
match(PAR_END);
}
break;
@@ -2078,7 +2140,7 @@ public class KickCParser extends Parser {
_localctx = new DirectiveCallingConventionContext(_localctx);
enterOuterAlt(_localctx, 15);
{
- setState(294);
+ setState(307);
match(CALLINGCONVENTION);
}
break;
@@ -2130,20 +2192,20 @@ public class KickCParser extends Parser {
try {
enterOuterAlt(_localctx, 1);
{
- setState(298);
+ setState(311);
_errHandler.sync(this);
_la = _input.LA(1);
do {
{
{
- setState(297);
+ setState(310);
stmt();
}
}
- setState(300);
+ setState(313);
_errHandler.sync(this);
_la = _input.LA(1);
- } while ( (((_la) & ~0x3f) == 0 && ((1L << _la) & ((1L << TYPEDEFNAME) | (1L << CURLY_BEGIN) | (1L << PAR_BEGIN) | (1L << PLUS) | (1L << MINUS) | (1L << ASTERISK) | (1L << INC) | (1L << DEC) | (1L << AND) | (1L << BIT_NOT) | (1L << LESS_THAN) | (1L << GREATER_THAN) | (1L << RESERVE) | (1L << CONST) | (1L << EXTERN) | (1L << EXPORT) | (1L << ALIGN) | (1L << INLINE) | (1L << VOLATILE) | (1L << INTERRUPT) | (1L << REGISTER) | (1L << ADDRESS) | (1L << ADDRESS_ZEROPAGE) | (1L << ADDRESS_MAINMEM) | (1L << FORM_SSA) | (1L << FORM_MA))) != 0) || ((((_la - 64)) & ~0x3f) == 0 && ((1L << (_la - 64)) & ((1L << (CALLINGCONVENTION - 64)) | (1L << (IF - 64)) | (1L << (WHILE - 64)) | (1L << (DO - 64)) | (1L << (FOR - 64)) | (1L << (SWITCH - 64)) | (1L << (RETURN - 64)) | (1L << (BREAK - 64)) | (1L << (CONTINUE - 64)) | (1L << (ASM - 64)) | (1L << (STRUCT - 64)) | (1L << (ENUM - 64)) | (1L << (SIZEOF - 64)) | (1L << (TYPEID - 64)) | (1L << (KICKASM - 64)) | (1L << (LOGIC_NOT - 64)) | (1L << (SIGNEDNESS - 64)) | (1L << (SIMPLETYPE - 64)) | (1L << (BOOLEAN - 64)) | (1L << (STRING - 64)) | (1L << (CHAR - 64)) | (1L << (NUMBER - 64)) | (1L << (NAME - 64)))) != 0) );
+ } while ( (((_la) & ~0x3f) == 0 && ((1L << _la) & ((1L << TYPEDEFNAME) | (1L << CURLY_BEGIN) | (1L << PAR_BEGIN) | (1L << PLUS) | (1L << MINUS) | (1L << ASTERISK) | (1L << INC) | (1L << DEC) | (1L << AND) | (1L << BIT_NOT) | (1L << LESS_THAN) | (1L << GREATER_THAN) | (1L << RESERVE) | (1L << CONST) | (1L << EXTERN) | (1L << EXPORT) | (1L << ALIGN) | (1L << INLINE) | (1L << VOLATILE) | (1L << INTERRUPT) | (1L << REGISTER) | (1L << ADDRESS) | (1L << ADDRESS_ZEROPAGE) | (1L << ADDRESS_MAINMEM) | (1L << FORM_SSA) | (1L << FORM_MA) | (1L << CALLINGCONVENTION))) != 0) || ((((_la - 65)) & ~0x3f) == 0 && ((1L << (_la - 65)) & ((1L << (IF - 65)) | (1L << (WHILE - 65)) | (1L << (DO - 65)) | (1L << (FOR - 65)) | (1L << (SWITCH - 65)) | (1L << (RETURN - 65)) | (1L << (BREAK - 65)) | (1L << (CONTINUE - 65)) | (1L << (ASM - 65)) | (1L << (STRUCT - 65)) | (1L << (ENUM - 65)) | (1L << (SIZEOF - 65)) | (1L << (TYPEID - 65)) | (1L << (KICKASM - 65)) | (1L << (LOGIC_NOT - 65)) | (1L << (SIGNEDNESS - 65)) | (1L << (SIMPLETYPE - 65)) | (1L << (BOOLEAN - 65)) | (1L << (STRING - 65)) | (1L << (CHAR - 65)) | (1L << (NUMBER - 65)) | (1L << (NAME - 65)))) != 0) );
}
}
catch (RecognitionException re) {
@@ -2487,16 +2549,16 @@ public class KickCParser extends Parser {
enterRule(_localctx, 34, RULE_stmt);
int _la;
try {
- setState(386);
+ setState(399);
_errHandler.sync(this);
- switch ( getInterpreter().adaptivePredict(_input,26,_ctx) ) {
+ switch ( getInterpreter().adaptivePredict(_input,27,_ctx) ) {
case 1:
_localctx = new StmtDeclVarContext(_localctx);
enterOuterAlt(_localctx, 1);
{
- setState(302);
+ setState(315);
declVariables();
- setState(303);
+ setState(316);
match(SEMICOLON);
}
break;
@@ -2504,19 +2566,19 @@ public class KickCParser extends Parser {
_localctx = new StmtBlockContext(_localctx);
enterOuterAlt(_localctx, 2);
{
- setState(305);
+ setState(318);
match(CURLY_BEGIN);
- setState(307);
+ setState(320);
_errHandler.sync(this);
_la = _input.LA(1);
- if ((((_la) & ~0x3f) == 0 && ((1L << _la) & ((1L << TYPEDEFNAME) | (1L << CURLY_BEGIN) | (1L << PAR_BEGIN) | (1L << PLUS) | (1L << MINUS) | (1L << ASTERISK) | (1L << INC) | (1L << DEC) | (1L << AND) | (1L << BIT_NOT) | (1L << LESS_THAN) | (1L << GREATER_THAN) | (1L << RESERVE) | (1L << CONST) | (1L << EXTERN) | (1L << EXPORT) | (1L << ALIGN) | (1L << INLINE) | (1L << VOLATILE) | (1L << INTERRUPT) | (1L << REGISTER) | (1L << ADDRESS) | (1L << ADDRESS_ZEROPAGE) | (1L << ADDRESS_MAINMEM) | (1L << FORM_SSA) | (1L << FORM_MA))) != 0) || ((((_la - 64)) & ~0x3f) == 0 && ((1L << (_la - 64)) & ((1L << (CALLINGCONVENTION - 64)) | (1L << (IF - 64)) | (1L << (WHILE - 64)) | (1L << (DO - 64)) | (1L << (FOR - 64)) | (1L << (SWITCH - 64)) | (1L << (RETURN - 64)) | (1L << (BREAK - 64)) | (1L << (CONTINUE - 64)) | (1L << (ASM - 64)) | (1L << (STRUCT - 64)) | (1L << (ENUM - 64)) | (1L << (SIZEOF - 64)) | (1L << (TYPEID - 64)) | (1L << (KICKASM - 64)) | (1L << (LOGIC_NOT - 64)) | (1L << (SIGNEDNESS - 64)) | (1L << (SIMPLETYPE - 64)) | (1L << (BOOLEAN - 64)) | (1L << (STRING - 64)) | (1L << (CHAR - 64)) | (1L << (NUMBER - 64)) | (1L << (NAME - 64)))) != 0)) {
+ if ((((_la) & ~0x3f) == 0 && ((1L << _la) & ((1L << TYPEDEFNAME) | (1L << CURLY_BEGIN) | (1L << PAR_BEGIN) | (1L << PLUS) | (1L << MINUS) | (1L << ASTERISK) | (1L << INC) | (1L << DEC) | (1L << AND) | (1L << BIT_NOT) | (1L << LESS_THAN) | (1L << GREATER_THAN) | (1L << RESERVE) | (1L << CONST) | (1L << EXTERN) | (1L << EXPORT) | (1L << ALIGN) | (1L << INLINE) | (1L << VOLATILE) | (1L << INTERRUPT) | (1L << REGISTER) | (1L << ADDRESS) | (1L << ADDRESS_ZEROPAGE) | (1L << ADDRESS_MAINMEM) | (1L << FORM_SSA) | (1L << FORM_MA) | (1L << CALLINGCONVENTION))) != 0) || ((((_la - 65)) & ~0x3f) == 0 && ((1L << (_la - 65)) & ((1L << (IF - 65)) | (1L << (WHILE - 65)) | (1L << (DO - 65)) | (1L << (FOR - 65)) | (1L << (SWITCH - 65)) | (1L << (RETURN - 65)) | (1L << (BREAK - 65)) | (1L << (CONTINUE - 65)) | (1L << (ASM - 65)) | (1L << (STRUCT - 65)) | (1L << (ENUM - 65)) | (1L << (SIZEOF - 65)) | (1L << (TYPEID - 65)) | (1L << (KICKASM - 65)) | (1L << (LOGIC_NOT - 65)) | (1L << (SIGNEDNESS - 65)) | (1L << (SIMPLETYPE - 65)) | (1L << (BOOLEAN - 65)) | (1L << (STRING - 65)) | (1L << (CHAR - 65)) | (1L << (NUMBER - 65)) | (1L << (NAME - 65)))) != 0)) {
{
- setState(306);
+ setState(319);
stmtSeq();
}
}
- setState(309);
+ setState(322);
match(CURLY_END);
}
break;
@@ -2524,9 +2586,9 @@ public class KickCParser extends Parser {
_localctx = new StmtExprContext(_localctx);
enterOuterAlt(_localctx, 3);
{
- setState(310);
+ setState(323);
commaExpr(0);
- setState(311);
+ setState(324);
match(SEMICOLON);
}
break;
@@ -2534,24 +2596,24 @@ public class KickCParser extends Parser {
_localctx = new StmtIfElseContext(_localctx);
enterOuterAlt(_localctx, 4);
{
- setState(313);
+ setState(326);
match(IF);
- setState(314);
+ setState(327);
match(PAR_BEGIN);
- setState(315);
+ setState(328);
commaExpr(0);
- setState(316);
+ setState(329);
match(PAR_END);
- setState(317);
+ setState(330);
stmt();
- setState(320);
+ setState(333);
_errHandler.sync(this);
- switch ( getInterpreter().adaptivePredict(_input,20,_ctx) ) {
+ switch ( getInterpreter().adaptivePredict(_input,21,_ctx) ) {
case 1:
{
- setState(318);
+ setState(331);
match(ELSE);
- setState(319);
+ setState(332);
stmt();
}
break;
@@ -2562,29 +2624,29 @@ public class KickCParser extends Parser {
_localctx = new StmtWhileContext(_localctx);
enterOuterAlt(_localctx, 5);
{
- setState(325);
+ setState(338);
_errHandler.sync(this);
_la = _input.LA(1);
- while (((((_la - 41)) & ~0x3f) == 0 && ((1L << (_la - 41)) & ((1L << (RESERVE - 41)) | (1L << (CONST - 41)) | (1L << (EXTERN - 41)) | (1L << (EXPORT - 41)) | (1L << (ALIGN - 41)) | (1L << (INLINE - 41)) | (1L << (VOLATILE - 41)) | (1L << (INTERRUPT - 41)) | (1L << (REGISTER - 41)) | (1L << (ADDRESS - 41)) | (1L << (ADDRESS_ZEROPAGE - 41)) | (1L << (ADDRESS_MAINMEM - 41)) | (1L << (FORM_SSA - 41)) | (1L << (FORM_MA - 41)) | (1L << (CALLINGCONVENTION - 41)))) != 0)) {
+ while ((((_la) & ~0x3f) == 0 && ((1L << _la) & ((1L << RESERVE) | (1L << CONST) | (1L << EXTERN) | (1L << EXPORT) | (1L << ALIGN) | (1L << INLINE) | (1L << VOLATILE) | (1L << INTERRUPT) | (1L << REGISTER) | (1L << ADDRESS) | (1L << ADDRESS_ZEROPAGE) | (1L << ADDRESS_MAINMEM) | (1L << FORM_SSA) | (1L << FORM_MA) | (1L << CALLINGCONVENTION))) != 0)) {
{
{
- setState(322);
+ setState(335);
directive();
}
}
- setState(327);
+ setState(340);
_errHandler.sync(this);
_la = _input.LA(1);
}
- setState(328);
+ setState(341);
match(WHILE);
- setState(329);
+ setState(342);
match(PAR_BEGIN);
- setState(330);
+ setState(343);
commaExpr(0);
- setState(331);
+ setState(344);
match(PAR_END);
- setState(332);
+ setState(345);
stmt();
}
break;
@@ -2592,33 +2654,33 @@ public class KickCParser extends Parser {
_localctx = new StmtDoWhileContext(_localctx);
enterOuterAlt(_localctx, 6);
{
- setState(337);
+ setState(350);
_errHandler.sync(this);
_la = _input.LA(1);
- while (((((_la - 41)) & ~0x3f) == 0 && ((1L << (_la - 41)) & ((1L << (RESERVE - 41)) | (1L << (CONST - 41)) | (1L << (EXTERN - 41)) | (1L << (EXPORT - 41)) | (1L << (ALIGN - 41)) | (1L << (INLINE - 41)) | (1L << (VOLATILE - 41)) | (1L << (INTERRUPT - 41)) | (1L << (REGISTER - 41)) | (1L << (ADDRESS - 41)) | (1L << (ADDRESS_ZEROPAGE - 41)) | (1L << (ADDRESS_MAINMEM - 41)) | (1L << (FORM_SSA - 41)) | (1L << (FORM_MA - 41)) | (1L << (CALLINGCONVENTION - 41)))) != 0)) {
+ while ((((_la) & ~0x3f) == 0 && ((1L << _la) & ((1L << RESERVE) | (1L << CONST) | (1L << EXTERN) | (1L << EXPORT) | (1L << ALIGN) | (1L << INLINE) | (1L << VOLATILE) | (1L << INTERRUPT) | (1L << REGISTER) | (1L << ADDRESS) | (1L << ADDRESS_ZEROPAGE) | (1L << ADDRESS_MAINMEM) | (1L << FORM_SSA) | (1L << FORM_MA) | (1L << CALLINGCONVENTION))) != 0)) {
{
{
- setState(334);
+ setState(347);
directive();
}
}
- setState(339);
+ setState(352);
_errHandler.sync(this);
_la = _input.LA(1);
}
- setState(340);
+ setState(353);
match(DO);
- setState(341);
+ setState(354);
stmt();
- setState(342);
+ setState(355);
match(WHILE);
- setState(343);
+ setState(356);
match(PAR_BEGIN);
- setState(344);
+ setState(357);
commaExpr(0);
- setState(345);
+ setState(358);
match(PAR_END);
- setState(346);
+ setState(359);
match(SEMICOLON);
}
break;
@@ -2626,29 +2688,29 @@ public class KickCParser extends Parser {
_localctx = new StmtForContext(_localctx);
enterOuterAlt(_localctx, 7);
{
- setState(351);
+ setState(364);
_errHandler.sync(this);
_la = _input.LA(1);
- while (((((_la - 41)) & ~0x3f) == 0 && ((1L << (_la - 41)) & ((1L << (RESERVE - 41)) | (1L << (CONST - 41)) | (1L << (EXTERN - 41)) | (1L << (EXPORT - 41)) | (1L << (ALIGN - 41)) | (1L << (INLINE - 41)) | (1L << (VOLATILE - 41)) | (1L << (INTERRUPT - 41)) | (1L << (REGISTER - 41)) | (1L << (ADDRESS - 41)) | (1L << (ADDRESS_ZEROPAGE - 41)) | (1L << (ADDRESS_MAINMEM - 41)) | (1L << (FORM_SSA - 41)) | (1L << (FORM_MA - 41)) | (1L << (CALLINGCONVENTION - 41)))) != 0)) {
+ while ((((_la) & ~0x3f) == 0 && ((1L << _la) & ((1L << RESERVE) | (1L << CONST) | (1L << EXTERN) | (1L << EXPORT) | (1L << ALIGN) | (1L << INLINE) | (1L << VOLATILE) | (1L << INTERRUPT) | (1L << REGISTER) | (1L << ADDRESS) | (1L << ADDRESS_ZEROPAGE) | (1L << ADDRESS_MAINMEM) | (1L << FORM_SSA) | (1L << FORM_MA) | (1L << CALLINGCONVENTION))) != 0)) {
{
{
- setState(348);
+ setState(361);
directive();
}
}
- setState(353);
+ setState(366);
_errHandler.sync(this);
_la = _input.LA(1);
}
- setState(354);
+ setState(367);
match(FOR);
- setState(355);
+ setState(368);
match(PAR_BEGIN);
- setState(356);
+ setState(369);
forLoop();
- setState(357);
+ setState(370);
match(PAR_END);
- setState(358);
+ setState(371);
stmt();
}
break;
@@ -2656,19 +2718,19 @@ public class KickCParser extends Parser {
_localctx = new StmtSwitchContext(_localctx);
enterOuterAlt(_localctx, 8);
{
- setState(360);
+ setState(373);
match(SWITCH);
- setState(361);
+ setState(374);
match(PAR_BEGIN);
- setState(362);
+ setState(375);
commaExpr(0);
- setState(363);
+ setState(376);
match(PAR_END);
- setState(364);
+ setState(377);
match(CURLY_BEGIN);
- setState(365);
+ setState(378);
switchCases();
- setState(366);
+ setState(379);
match(CURLY_END);
}
break;
@@ -2676,19 +2738,19 @@ public class KickCParser extends Parser {
_localctx = new StmtReturnContext(_localctx);
enterOuterAlt(_localctx, 9);
{
- setState(368);
+ setState(381);
match(RETURN);
- setState(370);
+ setState(383);
_errHandler.sync(this);
_la = _input.LA(1);
if ((((_la) & ~0x3f) == 0 && ((1L << _la) & ((1L << CURLY_BEGIN) | (1L << PAR_BEGIN) | (1L << PLUS) | (1L << MINUS) | (1L << ASTERISK) | (1L << INC) | (1L << DEC) | (1L << AND) | (1L << BIT_NOT) | (1L << LESS_THAN) | (1L << GREATER_THAN))) != 0) || ((((_la - 79)) & ~0x3f) == 0 && ((1L << (_la - 79)) & ((1L << (SIZEOF - 79)) | (1L << (TYPEID - 79)) | (1L << (LOGIC_NOT - 79)) | (1L << (BOOLEAN - 79)) | (1L << (STRING - 79)) | (1L << (CHAR - 79)) | (1L << (NUMBER - 79)) | (1L << (NAME - 79)))) != 0)) {
{
- setState(369);
+ setState(382);
commaExpr(0);
}
}
- setState(372);
+ setState(385);
match(SEMICOLON);
}
break;
@@ -2696,9 +2758,9 @@ public class KickCParser extends Parser {
_localctx = new StmtBreakContext(_localctx);
enterOuterAlt(_localctx, 10);
{
- setState(373);
+ setState(386);
match(BREAK);
- setState(374);
+ setState(387);
match(SEMICOLON);
}
break;
@@ -2706,9 +2768,9 @@ public class KickCParser extends Parser {
_localctx = new StmtContinueContext(_localctx);
enterOuterAlt(_localctx, 11);
{
- setState(375);
+ setState(388);
match(CONTINUE);
- setState(376);
+ setState(389);
match(SEMICOLON);
}
break;
@@ -2716,23 +2778,23 @@ public class KickCParser extends Parser {
_localctx = new StmtAsmContext(_localctx);
enterOuterAlt(_localctx, 12);
{
- setState(377);
+ setState(390);
match(ASM);
- setState(379);
+ setState(392);
_errHandler.sync(this);
_la = _input.LA(1);
if (_la==PAR_BEGIN) {
{
- setState(378);
+ setState(391);
asmDirectives();
}
}
- setState(381);
+ setState(394);
match(CURLY_BEGIN);
- setState(382);
+ setState(395);
asmLines();
- setState(383);
+ setState(396);
match(ASM_CURLY_END);
}
break;
@@ -2740,7 +2802,7 @@ public class KickCParser extends Parser {
_localctx = new StmtDeclKasmContext(_localctx);
enterOuterAlt(_localctx, 13);
{
- setState(385);
+ setState(398);
declKasm();
}
break;
@@ -2795,35 +2857,35 @@ public class KickCParser extends Parser {
try {
enterOuterAlt(_localctx, 1);
{
- setState(389);
+ setState(402);
_errHandler.sync(this);
_la = _input.LA(1);
do {
{
{
- setState(388);
+ setState(401);
switchCase();
}
}
- setState(391);
+ setState(404);
_errHandler.sync(this);
_la = _input.LA(1);
} while ( _la==CASE );
- setState(398);
+ setState(411);
_errHandler.sync(this);
_la = _input.LA(1);
if (_la==DEFAULT) {
{
- setState(393);
+ setState(406);
match(DEFAULT);
- setState(394);
+ setState(407);
match(COLON);
- setState(396);
+ setState(409);
_errHandler.sync(this);
_la = _input.LA(1);
- if ((((_la) & ~0x3f) == 0 && ((1L << _la) & ((1L << TYPEDEFNAME) | (1L << CURLY_BEGIN) | (1L << PAR_BEGIN) | (1L << PLUS) | (1L << MINUS) | (1L << ASTERISK) | (1L << INC) | (1L << DEC) | (1L << AND) | (1L << BIT_NOT) | (1L << LESS_THAN) | (1L << GREATER_THAN) | (1L << RESERVE) | (1L << CONST) | (1L << EXTERN) | (1L << EXPORT) | (1L << ALIGN) | (1L << INLINE) | (1L << VOLATILE) | (1L << INTERRUPT) | (1L << REGISTER) | (1L << ADDRESS) | (1L << ADDRESS_ZEROPAGE) | (1L << ADDRESS_MAINMEM) | (1L << FORM_SSA) | (1L << FORM_MA))) != 0) || ((((_la - 64)) & ~0x3f) == 0 && ((1L << (_la - 64)) & ((1L << (CALLINGCONVENTION - 64)) | (1L << (IF - 64)) | (1L << (WHILE - 64)) | (1L << (DO - 64)) | (1L << (FOR - 64)) | (1L << (SWITCH - 64)) | (1L << (RETURN - 64)) | (1L << (BREAK - 64)) | (1L << (CONTINUE - 64)) | (1L << (ASM - 64)) | (1L << (STRUCT - 64)) | (1L << (ENUM - 64)) | (1L << (SIZEOF - 64)) | (1L << (TYPEID - 64)) | (1L << (KICKASM - 64)) | (1L << (LOGIC_NOT - 64)) | (1L << (SIGNEDNESS - 64)) | (1L << (SIMPLETYPE - 64)) | (1L << (BOOLEAN - 64)) | (1L << (STRING - 64)) | (1L << (CHAR - 64)) | (1L << (NUMBER - 64)) | (1L << (NAME - 64)))) != 0)) {
+ if ((((_la) & ~0x3f) == 0 && ((1L << _la) & ((1L << TYPEDEFNAME) | (1L << CURLY_BEGIN) | (1L << PAR_BEGIN) | (1L << PLUS) | (1L << MINUS) | (1L << ASTERISK) | (1L << INC) | (1L << DEC) | (1L << AND) | (1L << BIT_NOT) | (1L << LESS_THAN) | (1L << GREATER_THAN) | (1L << RESERVE) | (1L << CONST) | (1L << EXTERN) | (1L << EXPORT) | (1L << ALIGN) | (1L << INLINE) | (1L << VOLATILE) | (1L << INTERRUPT) | (1L << REGISTER) | (1L << ADDRESS) | (1L << ADDRESS_ZEROPAGE) | (1L << ADDRESS_MAINMEM) | (1L << FORM_SSA) | (1L << FORM_MA) | (1L << CALLINGCONVENTION))) != 0) || ((((_la - 65)) & ~0x3f) == 0 && ((1L << (_la - 65)) & ((1L << (IF - 65)) | (1L << (WHILE - 65)) | (1L << (DO - 65)) | (1L << (FOR - 65)) | (1L << (SWITCH - 65)) | (1L << (RETURN - 65)) | (1L << (BREAK - 65)) | (1L << (CONTINUE - 65)) | (1L << (ASM - 65)) | (1L << (STRUCT - 65)) | (1L << (ENUM - 65)) | (1L << (SIZEOF - 65)) | (1L << (TYPEID - 65)) | (1L << (KICKASM - 65)) | (1L << (LOGIC_NOT - 65)) | (1L << (SIGNEDNESS - 65)) | (1L << (SIMPLETYPE - 65)) | (1L << (BOOLEAN - 65)) | (1L << (STRING - 65)) | (1L << (CHAR - 65)) | (1L << (NUMBER - 65)) | (1L << (NAME - 65)))) != 0)) {
{
- setState(395);
+ setState(408);
stmtSeq();
}
}
@@ -2879,18 +2941,18 @@ public class KickCParser extends Parser {
try {
enterOuterAlt(_localctx, 1);
{
- setState(400);
+ setState(413);
match(CASE);
- setState(401);
+ setState(414);
expr(0);
- setState(402);
+ setState(415);
match(COLON);
- setState(404);
+ setState(417);
_errHandler.sync(this);
_la = _input.LA(1);
- if ((((_la) & ~0x3f) == 0 && ((1L << _la) & ((1L << TYPEDEFNAME) | (1L << CURLY_BEGIN) | (1L << PAR_BEGIN) | (1L << PLUS) | (1L << MINUS) | (1L << ASTERISK) | (1L << INC) | (1L << DEC) | (1L << AND) | (1L << BIT_NOT) | (1L << LESS_THAN) | (1L << GREATER_THAN) | (1L << RESERVE) | (1L << CONST) | (1L << EXTERN) | (1L << EXPORT) | (1L << ALIGN) | (1L << INLINE) | (1L << VOLATILE) | (1L << INTERRUPT) | (1L << REGISTER) | (1L << ADDRESS) | (1L << ADDRESS_ZEROPAGE) | (1L << ADDRESS_MAINMEM) | (1L << FORM_SSA) | (1L << FORM_MA))) != 0) || ((((_la - 64)) & ~0x3f) == 0 && ((1L << (_la - 64)) & ((1L << (CALLINGCONVENTION - 64)) | (1L << (IF - 64)) | (1L << (WHILE - 64)) | (1L << (DO - 64)) | (1L << (FOR - 64)) | (1L << (SWITCH - 64)) | (1L << (RETURN - 64)) | (1L << (BREAK - 64)) | (1L << (CONTINUE - 64)) | (1L << (ASM - 64)) | (1L << (STRUCT - 64)) | (1L << (ENUM - 64)) | (1L << (SIZEOF - 64)) | (1L << (TYPEID - 64)) | (1L << (KICKASM - 64)) | (1L << (LOGIC_NOT - 64)) | (1L << (SIGNEDNESS - 64)) | (1L << (SIMPLETYPE - 64)) | (1L << (BOOLEAN - 64)) | (1L << (STRING - 64)) | (1L << (CHAR - 64)) | (1L << (NUMBER - 64)) | (1L << (NAME - 64)))) != 0)) {
+ if ((((_la) & ~0x3f) == 0 && ((1L << _la) & ((1L << TYPEDEFNAME) | (1L << CURLY_BEGIN) | (1L << PAR_BEGIN) | (1L << PLUS) | (1L << MINUS) | (1L << ASTERISK) | (1L << INC) | (1L << DEC) | (1L << AND) | (1L << BIT_NOT) | (1L << LESS_THAN) | (1L << GREATER_THAN) | (1L << RESERVE) | (1L << CONST) | (1L << EXTERN) | (1L << EXPORT) | (1L << ALIGN) | (1L << INLINE) | (1L << VOLATILE) | (1L << INTERRUPT) | (1L << REGISTER) | (1L << ADDRESS) | (1L << ADDRESS_ZEROPAGE) | (1L << ADDRESS_MAINMEM) | (1L << FORM_SSA) | (1L << FORM_MA) | (1L << CALLINGCONVENTION))) != 0) || ((((_la - 65)) & ~0x3f) == 0 && ((1L << (_la - 65)) & ((1L << (IF - 65)) | (1L << (WHILE - 65)) | (1L << (DO - 65)) | (1L << (FOR - 65)) | (1L << (SWITCH - 65)) | (1L << (RETURN - 65)) | (1L << (BREAK - 65)) | (1L << (CONTINUE - 65)) | (1L << (ASM - 65)) | (1L << (STRUCT - 65)) | (1L << (ENUM - 65)) | (1L << (SIZEOF - 65)) | (1L << (TYPEID - 65)) | (1L << (KICKASM - 65)) | (1L << (LOGIC_NOT - 65)) | (1L << (SIGNEDNESS - 65)) | (1L << (SIMPLETYPE - 65)) | (1L << (BOOLEAN - 65)) | (1L << (STRING - 65)) | (1L << (CHAR - 65)) | (1L << (NUMBER - 65)) | (1L << (NAME - 65)))) != 0)) {
{
- setState(403);
+ setState(416);
stmtSeq();
}
}
@@ -2982,27 +3044,27 @@ public class KickCParser extends Parser {
enterRule(_localctx, 40, RULE_forLoop);
int _la;
try {
- setState(422);
+ setState(435);
_errHandler.sync(this);
- switch ( getInterpreter().adaptivePredict(_input,33,_ctx) ) {
+ switch ( getInterpreter().adaptivePredict(_input,34,_ctx) ) {
case 1:
_localctx = new ForClassicContext(_localctx);
enterOuterAlt(_localctx, 1);
{
- setState(406);
+ setState(419);
forClassicInit();
- setState(407);
+ setState(420);
match(SEMICOLON);
- setState(408);
+ setState(421);
commaExpr(0);
- setState(409);
+ setState(422);
match(SEMICOLON);
- setState(411);
+ setState(424);
_errHandler.sync(this);
_la = _input.LA(1);
if ((((_la) & ~0x3f) == 0 && ((1L << _la) & ((1L << CURLY_BEGIN) | (1L << PAR_BEGIN) | (1L << PLUS) | (1L << MINUS) | (1L << ASTERISK) | (1L << INC) | (1L << DEC) | (1L << AND) | (1L << BIT_NOT) | (1L << LESS_THAN) | (1L << GREATER_THAN))) != 0) || ((((_la - 79)) & ~0x3f) == 0 && ((1L << (_la - 79)) & ((1L << (SIZEOF - 79)) | (1L << (TYPEID - 79)) | (1L << (LOGIC_NOT - 79)) | (1L << (BOOLEAN - 79)) | (1L << (STRING - 79)) | (1L << (CHAR - 79)) | (1L << (NUMBER - 79)) | (1L << (NAME - 79)))) != 0)) {
{
- setState(410);
+ setState(423);
commaExpr(0);
}
}
@@ -3013,25 +3075,25 @@ public class KickCParser extends Parser {
_localctx = new ForRangeContext(_localctx);
enterOuterAlt(_localctx, 2);
{
- setState(414);
+ setState(427);
_errHandler.sync(this);
_la = _input.LA(1);
- if ((((_la) & ~0x3f) == 0 && ((1L << _la) & ((1L << TYPEDEFNAME) | (1L << PAR_BEGIN) | (1L << RESERVE) | (1L << CONST) | (1L << EXTERN) | (1L << EXPORT) | (1L << ALIGN) | (1L << INLINE) | (1L << VOLATILE) | (1L << INTERRUPT) | (1L << REGISTER) | (1L << ADDRESS) | (1L << ADDRESS_ZEROPAGE) | (1L << ADDRESS_MAINMEM) | (1L << FORM_SSA) | (1L << FORM_MA))) != 0) || ((((_la - 64)) & ~0x3f) == 0 && ((1L << (_la - 64)) & ((1L << (CALLINGCONVENTION - 64)) | (1L << (STRUCT - 64)) | (1L << (ENUM - 64)) | (1L << (SIGNEDNESS - 64)) | (1L << (SIMPLETYPE - 64)))) != 0)) {
+ if ((((_la) & ~0x3f) == 0 && ((1L << _la) & ((1L << TYPEDEFNAME) | (1L << PAR_BEGIN) | (1L << RESERVE) | (1L << CONST) | (1L << EXTERN) | (1L << EXPORT) | (1L << ALIGN) | (1L << INLINE) | (1L << VOLATILE) | (1L << INTERRUPT) | (1L << REGISTER) | (1L << ADDRESS) | (1L << ADDRESS_ZEROPAGE) | (1L << ADDRESS_MAINMEM) | (1L << FORM_SSA) | (1L << FORM_MA) | (1L << CALLINGCONVENTION))) != 0) || ((((_la - 77)) & ~0x3f) == 0 && ((1L << (_la - 77)) & ((1L << (STRUCT - 77)) | (1L << (ENUM - 77)) | (1L << (SIGNEDNESS - 77)) | (1L << (SIMPLETYPE - 77)))) != 0)) {
{
- setState(413);
+ setState(426);
declTypes();
}
}
- setState(416);
+ setState(429);
match(NAME);
- setState(417);
+ setState(430);
match(COLON);
- setState(418);
+ setState(431);
expr(0);
- setState(419);
+ setState(432);
match(RANGE);
- setState(420);
+ setState(433);
expr(0);
}
break;
@@ -3103,19 +3165,19 @@ public class KickCParser extends Parser {
enterRule(_localctx, 42, RULE_forClassicInit);
int _la;
try {
- setState(428);
+ setState(441);
_errHandler.sync(this);
- switch ( getInterpreter().adaptivePredict(_input,35,_ctx) ) {
+ switch ( getInterpreter().adaptivePredict(_input,36,_ctx) ) {
case 1:
_localctx = new ForClassicInitDeclContext(_localctx);
enterOuterAlt(_localctx, 1);
{
- setState(425);
+ setState(438);
_errHandler.sync(this);
_la = _input.LA(1);
- if ((((_la) & ~0x3f) == 0 && ((1L << _la) & ((1L << TYPEDEFNAME) | (1L << PAR_BEGIN) | (1L << RESERVE) | (1L << CONST) | (1L << EXTERN) | (1L << EXPORT) | (1L << ALIGN) | (1L << INLINE) | (1L << VOLATILE) | (1L << INTERRUPT) | (1L << REGISTER) | (1L << ADDRESS) | (1L << ADDRESS_ZEROPAGE) | (1L << ADDRESS_MAINMEM) | (1L << FORM_SSA) | (1L << FORM_MA))) != 0) || ((((_la - 64)) & ~0x3f) == 0 && ((1L << (_la - 64)) & ((1L << (CALLINGCONVENTION - 64)) | (1L << (STRUCT - 64)) | (1L << (ENUM - 64)) | (1L << (SIGNEDNESS - 64)) | (1L << (SIMPLETYPE - 64)))) != 0)) {
+ if ((((_la) & ~0x3f) == 0 && ((1L << _la) & ((1L << TYPEDEFNAME) | (1L << PAR_BEGIN) | (1L << RESERVE) | (1L << CONST) | (1L << EXTERN) | (1L << EXPORT) | (1L << ALIGN) | (1L << INLINE) | (1L << VOLATILE) | (1L << INTERRUPT) | (1L << REGISTER) | (1L << ADDRESS) | (1L << ADDRESS_ZEROPAGE) | (1L << ADDRESS_MAINMEM) | (1L << FORM_SSA) | (1L << FORM_MA) | (1L << CALLINGCONVENTION))) != 0) || ((((_la - 77)) & ~0x3f) == 0 && ((1L << (_la - 77)) & ((1L << (STRUCT - 77)) | (1L << (ENUM - 77)) | (1L << (SIGNEDNESS - 77)) | (1L << (SIMPLETYPE - 77)))) != 0)) {
{
- setState(424);
+ setState(437);
declVariables();
}
}
@@ -3126,7 +3188,7 @@ public class KickCParser extends Parser {
_localctx = new ForClassicInitExprContext(_localctx);
enterOuterAlt(_localctx, 2);
{
- setState(427);
+ setState(440);
commaExpr(0);
}
break;
@@ -3385,20 +3447,20 @@ public class KickCParser extends Parser {
int _alt;
enterOuterAlt(_localctx, 1);
{
- setState(445);
+ setState(458);
_errHandler.sync(this);
- switch ( getInterpreter().adaptivePredict(_input,37,_ctx) ) {
+ switch ( getInterpreter().adaptivePredict(_input,38,_ctx) ) {
case 1:
{
_localctx = new TypeParContext(_localctx);
_ctx = _localctx;
_prevctx = _localctx;
- setState(431);
+ setState(444);
match(PAR_BEGIN);
- setState(432);
+ setState(445);
typeDecl(0);
- setState(433);
+ setState(446);
match(PAR_END);
}
break;
@@ -3407,7 +3469,7 @@ public class KickCParser extends Parser {
_localctx = new TypeSimpleContext(_localctx);
_ctx = _localctx;
_prevctx = _localctx;
- setState(435);
+ setState(448);
match(SIMPLETYPE);
}
break;
@@ -3416,14 +3478,14 @@ public class KickCParser extends Parser {
_localctx = new TypeSignedSimpleContext(_localctx);
_ctx = _localctx;
_prevctx = _localctx;
- setState(436);
+ setState(449);
match(SIGNEDNESS);
- setState(438);
+ setState(451);
_errHandler.sync(this);
- switch ( getInterpreter().adaptivePredict(_input,36,_ctx) ) {
+ switch ( getInterpreter().adaptivePredict(_input,37,_ctx) ) {
case 1:
{
- setState(437);
+ setState(450);
match(SIMPLETYPE);
}
break;
@@ -3435,7 +3497,7 @@ public class KickCParser extends Parser {
_localctx = new TypeStructDefContext(_localctx);
_ctx = _localctx;
_prevctx = _localctx;
- setState(440);
+ setState(453);
structDef();
}
break;
@@ -3444,7 +3506,7 @@ public class KickCParser extends Parser {
_localctx = new TypeStructRefContext(_localctx);
_ctx = _localctx;
_prevctx = _localctx;
- setState(441);
+ setState(454);
structRef();
}
break;
@@ -3453,7 +3515,7 @@ public class KickCParser extends Parser {
_localctx = new TypeEnumDefContext(_localctx);
_ctx = _localctx;
_prevctx = _localctx;
- setState(442);
+ setState(455);
enumDef();
}
break;
@@ -3462,7 +3524,7 @@ public class KickCParser extends Parser {
_localctx = new TypeEnumRefContext(_localctx);
_ctx = _localctx;
_prevctx = _localctx;
- setState(443);
+ setState(456);
enumRef();
}
break;
@@ -3471,30 +3533,30 @@ public class KickCParser extends Parser {
_localctx = new TypeNamedRefContext(_localctx);
_ctx = _localctx;
_prevctx = _localctx;
- setState(444);
+ setState(457);
match(TYPEDEFNAME);
}
break;
}
_ctx.stop = _input.LT(-1);
- setState(460);
+ setState(473);
_errHandler.sync(this);
- _alt = getInterpreter().adaptivePredict(_input,40,_ctx);
+ _alt = getInterpreter().adaptivePredict(_input,41,_ctx);
while ( _alt!=2 && _alt!=org.antlr.v4.runtime.atn.ATN.INVALID_ALT_NUMBER ) {
if ( _alt==1 ) {
if ( _parseListeners!=null ) triggerExitRuleEvent();
_prevctx = _localctx;
{
- setState(458);
+ setState(471);
_errHandler.sync(this);
- switch ( getInterpreter().adaptivePredict(_input,39,_ctx) ) {
+ switch ( getInterpreter().adaptivePredict(_input,40,_ctx) ) {
case 1:
{
_localctx = new TypePtrContext(new TypeDeclContext(_parentctx, _parentState));
pushNewRecursionContext(_localctx, _startState, RULE_typeDecl);
- setState(447);
+ setState(460);
if (!(precpred(_ctx, 8))) throw new FailedPredicateException(this, "precpred(_ctx, 8)");
- setState(448);
+ setState(461);
match(ASTERISK);
}
break;
@@ -3502,21 +3564,21 @@ public class KickCParser extends Parser {
{
_localctx = new TypeArrayContext(new TypeDeclContext(_parentctx, _parentState));
pushNewRecursionContext(_localctx, _startState, RULE_typeDecl);
- setState(449);
+ setState(462);
if (!(precpred(_ctx, 7))) throw new FailedPredicateException(this, "precpred(_ctx, 7)");
- setState(450);
+ setState(463);
match(BRACKET_BEGIN);
- setState(452);
+ setState(465);
_errHandler.sync(this);
_la = _input.LA(1);
if ((((_la) & ~0x3f) == 0 && ((1L << _la) & ((1L << CURLY_BEGIN) | (1L << PAR_BEGIN) | (1L << PLUS) | (1L << MINUS) | (1L << ASTERISK) | (1L << INC) | (1L << DEC) | (1L << AND) | (1L << BIT_NOT) | (1L << LESS_THAN) | (1L << GREATER_THAN))) != 0) || ((((_la - 79)) & ~0x3f) == 0 && ((1L << (_la - 79)) & ((1L << (SIZEOF - 79)) | (1L << (TYPEID - 79)) | (1L << (LOGIC_NOT - 79)) | (1L << (BOOLEAN - 79)) | (1L << (STRING - 79)) | (1L << (CHAR - 79)) | (1L << (NUMBER - 79)) | (1L << (NAME - 79)))) != 0)) {
{
- setState(451);
+ setState(464);
expr(0);
}
}
- setState(454);
+ setState(467);
match(BRACKET_END);
}
break;
@@ -3524,20 +3586,20 @@ public class KickCParser extends Parser {
{
_localctx = new TypeProcedureContext(new TypeDeclContext(_parentctx, _parentState));
pushNewRecursionContext(_localctx, _startState, RULE_typeDecl);
- setState(455);
+ setState(468);
if (!(precpred(_ctx, 6))) throw new FailedPredicateException(this, "precpred(_ctx, 6)");
- setState(456);
+ setState(469);
match(PAR_BEGIN);
- setState(457);
+ setState(470);
match(PAR_END);
}
break;
}
}
}
- setState(462);
+ setState(475);
_errHandler.sync(this);
- _alt = getInterpreter().adaptivePredict(_input,40,_ctx);
+ _alt = getInterpreter().adaptivePredict(_input,41,_ctx);
}
}
}
@@ -3580,9 +3642,9 @@ public class KickCParser extends Parser {
try {
enterOuterAlt(_localctx, 1);
{
- setState(463);
+ setState(476);
match(STRUCT);
- setState(464);
+ setState(477);
match(NAME);
}
}
@@ -3634,35 +3696,35 @@ public class KickCParser extends Parser {
try {
enterOuterAlt(_localctx, 1);
{
- setState(466);
+ setState(479);
match(STRUCT);
- setState(468);
+ setState(481);
_errHandler.sync(this);
_la = _input.LA(1);
if (_la==NAME) {
{
- setState(467);
+ setState(480);
match(NAME);
}
}
- setState(470);
+ setState(483);
match(CURLY_BEGIN);
- setState(472);
+ setState(485);
_errHandler.sync(this);
_la = _input.LA(1);
do {
{
{
- setState(471);
+ setState(484);
structMembers();
}
}
- setState(474);
+ setState(487);
_errHandler.sync(this);
_la = _input.LA(1);
- } while ( (((_la) & ~0x3f) == 0 && ((1L << _la) & ((1L << TYPEDEFNAME) | (1L << PAR_BEGIN) | (1L << RESERVE) | (1L << CONST) | (1L << EXTERN) | (1L << EXPORT) | (1L << ALIGN) | (1L << INLINE) | (1L << VOLATILE) | (1L << INTERRUPT) | (1L << REGISTER) | (1L << ADDRESS) | (1L << ADDRESS_ZEROPAGE) | (1L << ADDRESS_MAINMEM) | (1L << FORM_SSA) | (1L << FORM_MA))) != 0) || ((((_la - 64)) & ~0x3f) == 0 && ((1L << (_la - 64)) & ((1L << (CALLINGCONVENTION - 64)) | (1L << (STRUCT - 64)) | (1L << (ENUM - 64)) | (1L << (SIGNEDNESS - 64)) | (1L << (SIMPLETYPE - 64)))) != 0) );
- setState(476);
+ } while ( (((_la) & ~0x3f) == 0 && ((1L << _la) & ((1L << TYPEDEFNAME) | (1L << PAR_BEGIN) | (1L << RESERVE) | (1L << CONST) | (1L << EXTERN) | (1L << EXPORT) | (1L << ALIGN) | (1L << INLINE) | (1L << VOLATILE) | (1L << INTERRUPT) | (1L << REGISTER) | (1L << ADDRESS) | (1L << ADDRESS_ZEROPAGE) | (1L << ADDRESS_MAINMEM) | (1L << FORM_SSA) | (1L << FORM_MA) | (1L << CALLINGCONVENTION))) != 0) || ((((_la - 77)) & ~0x3f) == 0 && ((1L << (_la - 77)) & ((1L << (STRUCT - 77)) | (1L << (ENUM - 77)) | (1L << (SIGNEDNESS - 77)) | (1L << (SIMPLETYPE - 77)))) != 0) );
+ setState(489);
match(CURLY_END);
}
}
@@ -3707,9 +3769,9 @@ public class KickCParser extends Parser {
try {
enterOuterAlt(_localctx, 1);
{
- setState(478);
+ setState(491);
declVariables();
- setState(479);
+ setState(492);
match(SEMICOLON);
}
}
@@ -3752,9 +3814,9 @@ public class KickCParser extends Parser {
try {
enterOuterAlt(_localctx, 1);
{
- setState(481);
+ setState(494);
match(ENUM);
- setState(482);
+ setState(495);
match(NAME);
}
}
@@ -3803,23 +3865,23 @@ public class KickCParser extends Parser {
try {
enterOuterAlt(_localctx, 1);
{
- setState(484);
+ setState(497);
match(ENUM);
- setState(486);
+ setState(499);
_errHandler.sync(this);
_la = _input.LA(1);
if (_la==NAME) {
{
- setState(485);
+ setState(498);
match(NAME);
}
}
- setState(488);
+ setState(501);
match(CURLY_BEGIN);
- setState(489);
+ setState(502);
enumMemberList(0);
- setState(490);
+ setState(503);
match(CURLY_END);
}
}
@@ -3877,13 +3939,13 @@ public class KickCParser extends Parser {
enterOuterAlt(_localctx, 1);
{
{
- setState(493);
+ setState(506);
enumMember();
}
_ctx.stop = _input.LT(-1);
- setState(500);
+ setState(513);
_errHandler.sync(this);
- _alt = getInterpreter().adaptivePredict(_input,44,_ctx);
+ _alt = getInterpreter().adaptivePredict(_input,45,_ctx);
while ( _alt!=2 && _alt!=org.antlr.v4.runtime.atn.ATN.INVALID_ALT_NUMBER ) {
if ( _alt==1 ) {
if ( _parseListeners!=null ) triggerExitRuleEvent();
@@ -3892,18 +3954,18 @@ public class KickCParser extends Parser {
{
_localctx = new EnumMemberListContext(_parentctx, _parentState);
pushNewRecursionContext(_localctx, _startState, RULE_enumMemberList);
- setState(495);
+ setState(508);
if (!(precpred(_ctx, 1))) throw new FailedPredicateException(this, "precpred(_ctx, 1)");
- setState(496);
+ setState(509);
match(COMMA);
- setState(497);
+ setState(510);
enumMember();
}
}
}
- setState(502);
+ setState(515);
_errHandler.sync(this);
- _alt = getInterpreter().adaptivePredict(_input,44,_ctx);
+ _alt = getInterpreter().adaptivePredict(_input,45,_ctx);
}
}
}
@@ -3949,16 +4011,16 @@ public class KickCParser extends Parser {
try {
enterOuterAlt(_localctx, 1);
{
- setState(503);
+ setState(516);
match(NAME);
- setState(506);
+ setState(519);
_errHandler.sync(this);
- switch ( getInterpreter().adaptivePredict(_input,45,_ctx) ) {
+ switch ( getInterpreter().adaptivePredict(_input,46,_ctx) ) {
case 1:
{
- setState(504);
+ setState(517);
match(ASSIGN);
- setState(505);
+ setState(518);
expr(0);
}
break;
@@ -4050,13 +4112,13 @@ public class KickCParser extends Parser {
_ctx = _localctx;
_prevctx = _localctx;
- setState(509);
+ setState(522);
expr(0);
}
_ctx.stop = _input.LT(-1);
- setState(516);
+ setState(529);
_errHandler.sync(this);
- _alt = getInterpreter().adaptivePredict(_input,46,_ctx);
+ _alt = getInterpreter().adaptivePredict(_input,47,_ctx);
while ( _alt!=2 && _alt!=org.antlr.v4.runtime.atn.ATN.INVALID_ALT_NUMBER ) {
if ( _alt==1 ) {
if ( _parseListeners!=null ) triggerExitRuleEvent();
@@ -4065,18 +4127,18 @@ public class KickCParser extends Parser {
{
_localctx = new CommaSimpleContext(new CommaExprContext(_parentctx, _parentState));
pushNewRecursionContext(_localctx, _startState, RULE_commaExpr);
- setState(511);
+ setState(524);
if (!(precpred(_ctx, 1))) throw new FailedPredicateException(this, "precpred(_ctx, 1)");
- setState(512);
+ setState(525);
match(COMMA);
- setState(513);
+ setState(526);
expr(0);
}
}
}
- setState(518);
+ setState(531);
_errHandler.sync(this);
- _alt = getInterpreter().adaptivePredict(_input,46,_ctx);
+ _alt = getInterpreter().adaptivePredict(_input,47,_ctx);
}
}
}
@@ -4618,20 +4680,20 @@ public class KickCParser extends Parser {
int _alt;
enterOuterAlt(_localctx, 1);
{
- setState(573);
+ setState(586);
_errHandler.sync(this);
- switch ( getInterpreter().adaptivePredict(_input,51,_ctx) ) {
+ switch ( getInterpreter().adaptivePredict(_input,52,_ctx) ) {
case 1:
{
_localctx = new ExprParContext(_localctx);
_ctx = _localctx;
_prevctx = _localctx;
- setState(520);
+ setState(533);
match(PAR_BEGIN);
- setState(521);
+ setState(534);
commaExpr(0);
- setState(522);
+ setState(535);
match(PAR_END);
}
break;
@@ -4640,27 +4702,27 @@ public class KickCParser extends Parser {
_localctx = new ExprSizeOfContext(_localctx);
_ctx = _localctx;
_prevctx = _localctx;
- setState(524);
+ setState(537);
match(SIZEOF);
- setState(525);
+ setState(538);
match(PAR_BEGIN);
- setState(528);
+ setState(541);
_errHandler.sync(this);
- switch ( getInterpreter().adaptivePredict(_input,47,_ctx) ) {
+ switch ( getInterpreter().adaptivePredict(_input,48,_ctx) ) {
case 1:
{
- setState(526);
+ setState(539);
expr(0);
}
break;
case 2:
{
- setState(527);
+ setState(540);
typeDecl(0);
}
break;
}
- setState(530);
+ setState(543);
match(PAR_END);
}
break;
@@ -4669,27 +4731,27 @@ public class KickCParser extends Parser {
_localctx = new ExprTypeIdContext(_localctx);
_ctx = _localctx;
_prevctx = _localctx;
- setState(532);
+ setState(545);
match(TYPEID);
- setState(533);
+ setState(546);
match(PAR_BEGIN);
- setState(536);
+ setState(549);
_errHandler.sync(this);
- switch ( getInterpreter().adaptivePredict(_input,48,_ctx) ) {
+ switch ( getInterpreter().adaptivePredict(_input,49,_ctx) ) {
case 1:
{
- setState(534);
+ setState(547);
expr(0);
}
break;
case 2:
{
- setState(535);
+ setState(548);
typeDecl(0);
}
break;
}
- setState(538);
+ setState(551);
match(PAR_END);
}
break;
@@ -4698,13 +4760,13 @@ public class KickCParser extends Parser {
_localctx = new ExprCastContext(_localctx);
_ctx = _localctx;
_prevctx = _localctx;
- setState(540);
+ setState(553);
match(PAR_BEGIN);
- setState(541);
+ setState(554);
typeDecl(0);
- setState(542);
+ setState(555);
match(PAR_END);
- setState(543);
+ setState(556);
expr(24);
}
break;
@@ -4713,7 +4775,7 @@ public class KickCParser extends Parser {
_localctx = new ExprPreModContext(_localctx);
_ctx = _localctx;
_prevctx = _localctx;
- setState(545);
+ setState(558);
_la = _input.LA(1);
if ( !(_la==INC || _la==DEC) ) {
_errHandler.recoverInline(this);
@@ -4723,7 +4785,7 @@ public class KickCParser extends Parser {
_errHandler.reportMatch(this);
consume();
}
- setState(546);
+ setState(559);
expr(23);
}
break;
@@ -4732,9 +4794,9 @@ public class KickCParser extends Parser {
_localctx = new ExprPtrContext(_localctx);
_ctx = _localctx;
_prevctx = _localctx;
- setState(547);
+ setState(560);
match(ASTERISK);
- setState(548);
+ setState(561);
expr(21);
}
break;
@@ -4743,7 +4805,7 @@ public class KickCParser extends Parser {
_localctx = new ExprUnaryContext(_localctx);
_ctx = _localctx;
_prevctx = _localctx;
- setState(549);
+ setState(562);
_la = _input.LA(1);
if ( !((((_la) & ~0x3f) == 0 && ((1L << _la) & ((1L << PLUS) | (1L << MINUS) | (1L << AND) | (1L << BIT_NOT))) != 0) || _la==LOGIC_NOT) ) {
_errHandler.recoverInline(this);
@@ -4753,7 +4815,7 @@ public class KickCParser extends Parser {
_errHandler.reportMatch(this);
consume();
}
- setState(550);
+ setState(563);
expr(20);
}
break;
@@ -4762,7 +4824,7 @@ public class KickCParser extends Parser {
_localctx = new ExprUnaryContext(_localctx);
_ctx = _localctx;
_prevctx = _localctx;
- setState(551);
+ setState(564);
_la = _input.LA(1);
if ( !(_la==LESS_THAN || _la==GREATER_THAN) ) {
_errHandler.recoverInline(this);
@@ -4772,7 +4834,7 @@ public class KickCParser extends Parser {
_errHandler.reportMatch(this);
consume();
}
- setState(552);
+ setState(565);
expr(16);
}
break;
@@ -4781,27 +4843,27 @@ public class KickCParser extends Parser {
_localctx = new InitListContext(_localctx);
_ctx = _localctx;
_prevctx = _localctx;
- setState(553);
+ setState(566);
match(CURLY_BEGIN);
- setState(554);
+ setState(567);
expr(0);
- setState(559);
+ setState(572);
_errHandler.sync(this);
_la = _input.LA(1);
while (_la==COMMA) {
{
{
- setState(555);
+ setState(568);
match(COMMA);
- setState(556);
+ setState(569);
expr(0);
}
}
- setState(561);
+ setState(574);
_errHandler.sync(this);
_la = _input.LA(1);
}
- setState(562);
+ setState(575);
match(CURLY_END);
}
break;
@@ -4810,7 +4872,7 @@ public class KickCParser extends Parser {
_localctx = new ExprIdContext(_localctx);
_ctx = _localctx;
_prevctx = _localctx;
- setState(564);
+ setState(577);
match(NAME);
}
break;
@@ -4819,7 +4881,7 @@ public class KickCParser extends Parser {
_localctx = new ExprNumberContext(_localctx);
_ctx = _localctx;
_prevctx = _localctx;
- setState(565);
+ setState(578);
match(NUMBER);
}
break;
@@ -4828,7 +4890,7 @@ public class KickCParser extends Parser {
_localctx = new ExprStringContext(_localctx);
_ctx = _localctx;
_prevctx = _localctx;
- setState(567);
+ setState(580);
_errHandler.sync(this);
_alt = 1;
do {
@@ -4836,7 +4898,7 @@ public class KickCParser extends Parser {
case 1:
{
{
- setState(566);
+ setState(579);
match(STRING);
}
}
@@ -4844,9 +4906,9 @@ public class KickCParser extends Parser {
default:
throw new NoViableAltException(this);
}
- setState(569);
+ setState(582);
_errHandler.sync(this);
- _alt = getInterpreter().adaptivePredict(_input,50,_ctx);
+ _alt = getInterpreter().adaptivePredict(_input,51,_ctx);
} while ( _alt!=2 && _alt!=org.antlr.v4.runtime.atn.ATN.INVALID_ALT_NUMBER );
}
break;
@@ -4855,7 +4917,7 @@ public class KickCParser extends Parser {
_localctx = new ExprCharContext(_localctx);
_ctx = _localctx;
_prevctx = _localctx;
- setState(571);
+ setState(584);
match(CHAR);
}
break;
@@ -4864,30 +4926,30 @@ public class KickCParser extends Parser {
_localctx = new ExprBoolContext(_localctx);
_ctx = _localctx;
_prevctx = _localctx;
- setState(572);
+ setState(585);
match(BOOLEAN);
}
break;
}
_ctx.stop = _input.LT(-1);
- setState(635);
+ setState(648);
_errHandler.sync(this);
- _alt = getInterpreter().adaptivePredict(_input,54,_ctx);
+ _alt = getInterpreter().adaptivePredict(_input,55,_ctx);
while ( _alt!=2 && _alt!=org.antlr.v4.runtime.atn.ATN.INVALID_ALT_NUMBER ) {
if ( _alt==1 ) {
if ( _parseListeners!=null ) triggerExitRuleEvent();
_prevctx = _localctx;
{
- setState(633);
+ setState(646);
_errHandler.sync(this);
- switch ( getInterpreter().adaptivePredict(_input,53,_ctx) ) {
+ switch ( getInterpreter().adaptivePredict(_input,54,_ctx) ) {
case 1:
{
_localctx = new ExprBinaryContext(new ExprContext(_parentctx, _parentState));
pushNewRecursionContext(_localctx, _startState, RULE_expr);
- setState(575);
+ setState(588);
if (!(precpred(_ctx, 19))) throw new FailedPredicateException(this, "precpred(_ctx, 19)");
- setState(576);
+ setState(589);
_la = _input.LA(1);
if ( !(_la==SHIFT_LEFT || _la==SHIFT_RIGHT) ) {
_errHandler.recoverInline(this);
@@ -4897,7 +4959,7 @@ public class KickCParser extends Parser {
_errHandler.reportMatch(this);
consume();
}
- setState(577);
+ setState(590);
expr(20);
}
break;
@@ -4905,9 +4967,9 @@ public class KickCParser extends Parser {
{
_localctx = new ExprBinaryContext(new ExprContext(_parentctx, _parentState));
pushNewRecursionContext(_localctx, _startState, RULE_expr);
- setState(578);
+ setState(591);
if (!(precpred(_ctx, 18))) throw new FailedPredicateException(this, "precpred(_ctx, 18)");
- setState(579);
+ setState(592);
_la = _input.LA(1);
if ( !((((_la) & ~0x3f) == 0 && ((1L << _la) & ((1L << ASTERISK) | (1L << DIVIDE) | (1L << MODULO))) != 0)) ) {
_errHandler.recoverInline(this);
@@ -4917,7 +4979,7 @@ public class KickCParser extends Parser {
_errHandler.reportMatch(this);
consume();
}
- setState(580);
+ setState(593);
expr(19);
}
break;
@@ -4925,9 +4987,9 @@ public class KickCParser extends Parser {
{
_localctx = new ExprBinaryContext(new ExprContext(_parentctx, _parentState));
pushNewRecursionContext(_localctx, _startState, RULE_expr);
- setState(581);
+ setState(594);
if (!(precpred(_ctx, 17))) throw new FailedPredicateException(this, "precpred(_ctx, 17)");
- setState(582);
+ setState(595);
_la = _input.LA(1);
if ( !(_la==PLUS || _la==MINUS) ) {
_errHandler.recoverInline(this);
@@ -4937,7 +4999,7 @@ public class KickCParser extends Parser {
_errHandler.reportMatch(this);
consume();
}
- setState(583);
+ setState(596);
expr(18);
}
break;
@@ -4945,9 +5007,9 @@ public class KickCParser extends Parser {
{
_localctx = new ExprBinaryContext(new ExprContext(_parentctx, _parentState));
pushNewRecursionContext(_localctx, _startState, RULE_expr);
- setState(584);
+ setState(597);
if (!(precpred(_ctx, 15))) throw new FailedPredicateException(this, "precpred(_ctx, 15)");
- setState(585);
+ setState(598);
_la = _input.LA(1);
if ( !((((_la) & ~0x3f) == 0 && ((1L << _la) & ((1L << EQUAL) | (1L << NOT_EQUAL) | (1L << LESS_THAN) | (1L << LESS_THAN_EQUAL) | (1L << GREATER_THAN_EQUAL) | (1L << GREATER_THAN))) != 0)) ) {
_errHandler.recoverInline(this);
@@ -4957,7 +5019,7 @@ public class KickCParser extends Parser {
_errHandler.reportMatch(this);
consume();
}
- setState(586);
+ setState(599);
expr(16);
}
break;
@@ -4965,13 +5027,13 @@ public class KickCParser extends Parser {
{
_localctx = new ExprBinaryContext(new ExprContext(_parentctx, _parentState));
pushNewRecursionContext(_localctx, _startState, RULE_expr);
- setState(587);
+ setState(600);
if (!(precpred(_ctx, 14))) throw new FailedPredicateException(this, "precpred(_ctx, 14)");
{
- setState(588);
+ setState(601);
match(AND);
}
- setState(589);
+ setState(602);
expr(15);
}
break;
@@ -4979,13 +5041,13 @@ public class KickCParser extends Parser {
{
_localctx = new ExprBinaryContext(new ExprContext(_parentctx, _parentState));
pushNewRecursionContext(_localctx, _startState, RULE_expr);
- setState(590);
+ setState(603);
if (!(precpred(_ctx, 13))) throw new FailedPredicateException(this, "precpred(_ctx, 13)");
{
- setState(591);
+ setState(604);
match(BIT_XOR);
}
- setState(592);
+ setState(605);
expr(14);
}
break;
@@ -4993,13 +5055,13 @@ public class KickCParser extends Parser {
{
_localctx = new ExprBinaryContext(new ExprContext(_parentctx, _parentState));
pushNewRecursionContext(_localctx, _startState, RULE_expr);
- setState(593);
+ setState(606);
if (!(precpred(_ctx, 12))) throw new FailedPredicateException(this, "precpred(_ctx, 12)");
{
- setState(594);
+ setState(607);
match(BIT_OR);
}
- setState(595);
+ setState(608);
expr(13);
}
break;
@@ -5007,13 +5069,13 @@ public class KickCParser extends Parser {
{
_localctx = new ExprBinaryContext(new ExprContext(_parentctx, _parentState));
pushNewRecursionContext(_localctx, _startState, RULE_expr);
- setState(596);
+ setState(609);
if (!(precpred(_ctx, 11))) throw new FailedPredicateException(this, "precpred(_ctx, 11)");
{
- setState(597);
+ setState(610);
match(LOGIC_AND);
}
- setState(598);
+ setState(611);
expr(12);
}
break;
@@ -5021,13 +5083,13 @@ public class KickCParser extends Parser {
{
_localctx = new ExprBinaryContext(new ExprContext(_parentctx, _parentState));
pushNewRecursionContext(_localctx, _startState, RULE_expr);
- setState(599);
+ setState(612);
if (!(precpred(_ctx, 10))) throw new FailedPredicateException(this, "precpred(_ctx, 10)");
{
- setState(600);
+ setState(613);
match(LOGIC_OR);
}
- setState(601);
+ setState(614);
expr(11);
}
break;
@@ -5035,15 +5097,15 @@ public class KickCParser extends Parser {
{
_localctx = new ExprTernaryContext(new ExprContext(_parentctx, _parentState));
pushNewRecursionContext(_localctx, _startState, RULE_expr);
- setState(602);
+ setState(615);
if (!(precpred(_ctx, 9))) throw new FailedPredicateException(this, "precpred(_ctx, 9)");
- setState(603);
+ setState(616);
match(CONDITION);
- setState(604);
+ setState(617);
expr(0);
- setState(605);
+ setState(618);
match(COLON);
- setState(606);
+ setState(619);
expr(10);
}
break;
@@ -5051,11 +5113,11 @@ public class KickCParser extends Parser {
{
_localctx = new ExprAssignmentContext(new ExprContext(_parentctx, _parentState));
pushNewRecursionContext(_localctx, _startState, RULE_expr);
- setState(608);
+ setState(621);
if (!(precpred(_ctx, 8))) throw new FailedPredicateException(this, "precpred(_ctx, 8)");
- setState(609);
+ setState(622);
match(ASSIGN);
- setState(610);
+ setState(623);
expr(8);
}
break;
@@ -5063,11 +5125,11 @@ public class KickCParser extends Parser {
{
_localctx = new ExprAssignmentCompoundContext(new ExprContext(_parentctx, _parentState));
pushNewRecursionContext(_localctx, _startState, RULE_expr);
- setState(611);
+ setState(624);
if (!(precpred(_ctx, 7))) throw new FailedPredicateException(this, "precpred(_ctx, 7)");
- setState(612);
+ setState(625);
match(ASSIGN_COMPOUND);
- setState(613);
+ setState(626);
expr(7);
}
break;
@@ -5075,11 +5137,11 @@ public class KickCParser extends Parser {
{
_localctx = new ExprDotContext(new ExprContext(_parentctx, _parentState));
pushNewRecursionContext(_localctx, _startState, RULE_expr);
- setState(614);
+ setState(627);
if (!(precpred(_ctx, 30))) throw new FailedPredicateException(this, "precpred(_ctx, 30)");
- setState(615);
+ setState(628);
match(DOT);
- setState(616);
+ setState(629);
match(NAME);
}
break;
@@ -5087,11 +5149,11 @@ public class KickCParser extends Parser {
{
_localctx = new ExprArrowContext(new ExprContext(_parentctx, _parentState));
pushNewRecursionContext(_localctx, _startState, RULE_expr);
- setState(617);
+ setState(630);
if (!(precpred(_ctx, 29))) throw new FailedPredicateException(this, "precpred(_ctx, 29)");
- setState(618);
+ setState(631);
match(ARROW);
- setState(619);
+ setState(632);
match(NAME);
}
break;
@@ -5099,21 +5161,21 @@ public class KickCParser extends Parser {
{
_localctx = new ExprCallContext(new ExprContext(_parentctx, _parentState));
pushNewRecursionContext(_localctx, _startState, RULE_expr);
- setState(620);
+ setState(633);
if (!(precpred(_ctx, 28))) throw new FailedPredicateException(this, "precpred(_ctx, 28)");
- setState(621);
+ setState(634);
match(PAR_BEGIN);
- setState(623);
+ setState(636);
_errHandler.sync(this);
_la = _input.LA(1);
if ((((_la) & ~0x3f) == 0 && ((1L << _la) & ((1L << CURLY_BEGIN) | (1L << PAR_BEGIN) | (1L << PLUS) | (1L << MINUS) | (1L << ASTERISK) | (1L << INC) | (1L << DEC) | (1L << AND) | (1L << BIT_NOT) | (1L << LESS_THAN) | (1L << GREATER_THAN))) != 0) || ((((_la - 79)) & ~0x3f) == 0 && ((1L << (_la - 79)) & ((1L << (SIZEOF - 79)) | (1L << (TYPEID - 79)) | (1L << (LOGIC_NOT - 79)) | (1L << (BOOLEAN - 79)) | (1L << (STRING - 79)) | (1L << (CHAR - 79)) | (1L << (NUMBER - 79)) | (1L << (NAME - 79)))) != 0)) {
{
- setState(622);
+ setState(635);
parameterList();
}
}
- setState(625);
+ setState(638);
match(PAR_END);
}
break;
@@ -5121,13 +5183,13 @@ public class KickCParser extends Parser {
{
_localctx = new ExprArrayContext(new ExprContext(_parentctx, _parentState));
pushNewRecursionContext(_localctx, _startState, RULE_expr);
- setState(626);
+ setState(639);
if (!(precpred(_ctx, 25))) throw new FailedPredicateException(this, "precpred(_ctx, 25)");
- setState(627);
+ setState(640);
match(BRACKET_BEGIN);
- setState(628);
+ setState(641);
commaExpr(0);
- setState(629);
+ setState(642);
match(BRACKET_END);
}
break;
@@ -5135,9 +5197,9 @@ public class KickCParser extends Parser {
{
_localctx = new ExprPostModContext(new ExprContext(_parentctx, _parentState));
pushNewRecursionContext(_localctx, _startState, RULE_expr);
- setState(631);
+ setState(644);
if (!(precpred(_ctx, 22))) throw new FailedPredicateException(this, "precpred(_ctx, 22)");
- setState(632);
+ setState(645);
_la = _input.LA(1);
if ( !(_la==INC || _la==DEC) ) {
_errHandler.recoverInline(this);
@@ -5152,9 +5214,9 @@ public class KickCParser extends Parser {
}
}
}
- setState(637);
+ setState(650);
_errHandler.sync(this);
- _alt = getInterpreter().adaptivePredict(_input,54,_ctx);
+ _alt = getInterpreter().adaptivePredict(_input,55,_ctx);
}
}
}
@@ -5206,21 +5268,21 @@ public class KickCParser extends Parser {
try {
enterOuterAlt(_localctx, 1);
{
- setState(638);
+ setState(651);
expr(0);
- setState(643);
+ setState(656);
_errHandler.sync(this);
_la = _input.LA(1);
while (_la==COMMA) {
{
{
- setState(639);
+ setState(652);
match(COMMA);
- setState(640);
+ setState(653);
expr(0);
}
}
- setState(645);
+ setState(658);
_errHandler.sync(this);
_la = _input.LA(1);
}
@@ -5269,19 +5331,19 @@ public class KickCParser extends Parser {
try {
enterOuterAlt(_localctx, 1);
{
- setState(646);
+ setState(659);
match(KICKASM);
- setState(648);
+ setState(661);
_errHandler.sync(this);
_la = _input.LA(1);
if (_la==PAR_BEGIN) {
{
- setState(647);
+ setState(660);
asmDirectives();
}
}
- setState(650);
+ setState(663);
match(KICKASM_BODY);
}
}
@@ -5335,27 +5397,27 @@ public class KickCParser extends Parser {
try {
enterOuterAlt(_localctx, 1);
{
- setState(652);
+ setState(665);
match(PAR_BEGIN);
- setState(653);
+ setState(666);
asmDirective();
- setState(658);
+ setState(671);
_errHandler.sync(this);
_la = _input.LA(1);
while (_la==COMMA) {
{
{
- setState(654);
+ setState(667);
match(COMMA);
- setState(655);
+ setState(668);
asmDirective();
}
}
- setState(660);
+ setState(673);
_errHandler.sync(this);
_la = _input.LA(1);
}
- setState(661);
+ setState(674);
match(PAR_END);
}
}
@@ -5501,16 +5563,16 @@ public class KickCParser extends Parser {
AsmDirectiveContext _localctx = new AsmDirectiveContext(_ctx, getState());
enterRule(_localctx, 70, RULE_asmDirective);
try {
- setState(678);
+ setState(691);
_errHandler.sync(this);
switch (_input.LA(1)) {
case RESOURCE:
_localctx = new AsmDirectiveResourceContext(_localctx);
enterOuterAlt(_localctx, 1);
{
- setState(663);
+ setState(676);
match(RESOURCE);
- setState(664);
+ setState(677);
match(STRING);
}
break;
@@ -5518,9 +5580,9 @@ public class KickCParser extends Parser {
_localctx = new AsmDirectiveUsesContext(_localctx);
enterOuterAlt(_localctx, 2);
{
- setState(665);
+ setState(678);
match(USES);
- setState(666);
+ setState(679);
match(NAME);
}
break;
@@ -5528,9 +5590,9 @@ public class KickCParser extends Parser {
_localctx = new AsmDirectiveClobberContext(_localctx);
enterOuterAlt(_localctx, 3);
{
- setState(667);
+ setState(680);
match(CLOBBERS);
- setState(668);
+ setState(681);
match(STRING);
}
break;
@@ -5538,9 +5600,9 @@ public class KickCParser extends Parser {
_localctx = new AsmDirectiveBytesContext(_localctx);
enterOuterAlt(_localctx, 4);
{
- setState(669);
+ setState(682);
match(BYTES);
- setState(670);
+ setState(683);
expr(0);
}
break;
@@ -5548,9 +5610,9 @@ public class KickCParser extends Parser {
_localctx = new AsmDirectiveCyclesContext(_localctx);
enterOuterAlt(_localctx, 5);
{
- setState(671);
+ setState(684);
match(CYCLES);
- setState(672);
+ setState(685);
expr(0);
}
break;
@@ -5558,14 +5620,14 @@ public class KickCParser extends Parser {
_localctx = new AsmDirectiveAddressContext(_localctx);
enterOuterAlt(_localctx, 6);
{
- setState(673);
+ setState(686);
match(PC);
- setState(676);
+ setState(689);
_errHandler.sync(this);
switch (_input.LA(1)) {
case INLINE:
{
- setState(674);
+ setState(687);
match(INLINE);
}
break;
@@ -5589,7 +5651,7 @@ public class KickCParser extends Parser {
case NUMBER:
case NAME:
{
- setState(675);
+ setState(688);
expr(0);
}
break;
@@ -5646,17 +5708,17 @@ public class KickCParser extends Parser {
try {
enterOuterAlt(_localctx, 1);
{
- setState(683);
+ setState(696);
_errHandler.sync(this);
_la = _input.LA(1);
while (((((_la - 107)) & ~0x3f) == 0 && ((1L << (_la - 107)) & ((1L << (ASM_BYTE - 107)) | (1L << (ASM_MNEMONIC - 107)) | (1L << (ASM_MULTI_NAME - 107)) | (1L << (ASM_NAME - 107)))) != 0)) {
{
{
- setState(680);
+ setState(693);
asmLine();
}
}
- setState(685);
+ setState(698);
_errHandler.sync(this);
_la = _input.LA(1);
}
@@ -5706,28 +5768,28 @@ public class KickCParser extends Parser {
AsmLineContext _localctx = new AsmLineContext(_ctx, getState());
enterRule(_localctx, 74, RULE_asmLine);
try {
- setState(689);
+ setState(702);
_errHandler.sync(this);
switch (_input.LA(1)) {
case ASM_MULTI_NAME:
case ASM_NAME:
enterOuterAlt(_localctx, 1);
{
- setState(686);
+ setState(699);
asmLabel();
}
break;
case ASM_MNEMONIC:
enterOuterAlt(_localctx, 2);
{
- setState(687);
+ setState(700);
asmInstruction();
}
break;
case ASM_BYTE:
enterOuterAlt(_localctx, 3);
{
- setState(688);
+ setState(701);
asmBytes();
}
break;
@@ -5798,16 +5860,16 @@ public class KickCParser extends Parser {
AsmLabelContext _localctx = new AsmLabelContext(_ctx, getState());
enterRule(_localctx, 76, RULE_asmLabel);
try {
- setState(695);
+ setState(708);
_errHandler.sync(this);
switch (_input.LA(1)) {
case ASM_NAME:
_localctx = new AsmLabelNameContext(_localctx);
enterOuterAlt(_localctx, 1);
{
- setState(691);
+ setState(704);
match(ASM_NAME);
- setState(692);
+ setState(705);
match(ASM_COLON);
}
break;
@@ -5815,9 +5877,9 @@ public class KickCParser extends Parser {
_localctx = new AsmLabelMultiContext(_localctx);
enterOuterAlt(_localctx, 2);
{
- setState(693);
+ setState(706);
match(ASM_MULTI_NAME);
- setState(694);
+ setState(707);
match(ASM_COLON);
}
break;
@@ -5866,14 +5928,14 @@ public class KickCParser extends Parser {
try {
enterOuterAlt(_localctx, 1);
{
- setState(697);
+ setState(710);
match(ASM_MNEMONIC);
- setState(699);
+ setState(712);
_errHandler.sync(this);
- switch ( getInterpreter().adaptivePredict(_input,63,_ctx) ) {
+ switch ( getInterpreter().adaptivePredict(_input,64,_ctx) ) {
case 1:
{
- setState(698);
+ setState(711);
asmParamMode();
}
break;
@@ -5929,23 +5991,23 @@ public class KickCParser extends Parser {
try {
enterOuterAlt(_localctx, 1);
{
- setState(701);
+ setState(714);
match(ASM_BYTE);
- setState(702);
+ setState(715);
asmExpr(0);
- setState(707);
+ setState(720);
_errHandler.sync(this);
_la = _input.LA(1);
while (_la==ASM_COMMA) {
{
{
- setState(703);
+ setState(716);
match(ASM_COMMA);
- setState(704);
+ setState(717);
asmExpr(0);
}
}
- setState(709);
+ setState(722);
_errHandler.sync(this);
_la = _input.LA(1);
}
@@ -6105,14 +6167,14 @@ public class KickCParser extends Parser {
AsmParamModeContext _localctx = new AsmParamModeContext(_ctx, getState());
enterRule(_localctx, 82, RULE_asmParamMode);
try {
- setState(733);
+ setState(746);
_errHandler.sync(this);
- switch ( getInterpreter().adaptivePredict(_input,65,_ctx) ) {
+ switch ( getInterpreter().adaptivePredict(_input,66,_ctx) ) {
case 1:
_localctx = new AsmModeAbsContext(_localctx);
enterOuterAlt(_localctx, 1);
{
- setState(710);
+ setState(723);
asmExpr(0);
}
break;
@@ -6120,9 +6182,9 @@ public class KickCParser extends Parser {
_localctx = new AsmModeImmContext(_localctx);
enterOuterAlt(_localctx, 2);
{
- setState(711);
+ setState(724);
match(ASM_IMM);
- setState(712);
+ setState(725);
asmExpr(0);
}
break;
@@ -6130,11 +6192,11 @@ public class KickCParser extends Parser {
_localctx = new AsmModeAbsXYContext(_localctx);
enterOuterAlt(_localctx, 3);
{
- setState(713);
+ setState(726);
asmExpr(0);
- setState(714);
+ setState(727);
match(ASM_COMMA);
- setState(715);
+ setState(728);
match(ASM_NAME);
}
break;
@@ -6142,15 +6204,15 @@ public class KickCParser extends Parser {
_localctx = new AsmModeIndIdxXYContext(_localctx);
enterOuterAlt(_localctx, 4);
{
- setState(717);
+ setState(730);
match(ASM_PAR_BEGIN);
- setState(718);
+ setState(731);
asmExpr(0);
- setState(719);
+ setState(732);
match(ASM_PAR_END);
- setState(720);
+ setState(733);
match(ASM_COMMA);
- setState(721);
+ setState(734);
match(ASM_NAME);
}
break;
@@ -6158,15 +6220,15 @@ public class KickCParser extends Parser {
_localctx = new AsmModeIdxIndXYContext(_localctx);
enterOuterAlt(_localctx, 5);
{
- setState(723);
+ setState(736);
match(ASM_PAR_BEGIN);
- setState(724);
+ setState(737);
asmExpr(0);
- setState(725);
+ setState(738);
match(ASM_COMMA);
- setState(726);
+ setState(739);
match(ASM_NAME);
- setState(727);
+ setState(740);
match(ASM_PAR_END);
}
break;
@@ -6174,11 +6236,11 @@ public class KickCParser extends Parser {
_localctx = new AsmModeIndContext(_localctx);
enterOuterAlt(_localctx, 6);
{
- setState(729);
+ setState(742);
match(ASM_PAR_BEGIN);
- setState(730);
+ setState(743);
asmExpr(0);
- setState(731);
+ setState(744);
match(ASM_PAR_END);
}
break;
@@ -6383,7 +6445,7 @@ public class KickCParser extends Parser {
int _alt;
enterOuterAlt(_localctx, 1);
{
- setState(749);
+ setState(762);
_errHandler.sync(this);
switch (_input.LA(1)) {
case ASM_BRACKET_BEGIN:
@@ -6392,11 +6454,11 @@ public class KickCParser extends Parser {
_ctx = _localctx;
_prevctx = _localctx;
- setState(736);
+ setState(749);
match(ASM_BRACKET_BEGIN);
- setState(737);
+ setState(750);
asmExpr(0);
- setState(738);
+ setState(751);
match(ASM_BRACKET_END);
}
break;
@@ -6408,7 +6470,7 @@ public class KickCParser extends Parser {
_localctx = new AsmExprUnaryContext(_localctx);
_ctx = _localctx;
_prevctx = _localctx;
- setState(740);
+ setState(753);
_la = _input.LA(1);
if ( !(((((_la - 119)) & ~0x3f) == 0 && ((1L << (_la - 119)) & ((1L << (ASM_PLUS - 119)) | (1L << (ASM_MINUS - 119)) | (1L << (ASM_LESS_THAN - 119)) | (1L << (ASM_GREATER_THAN - 119)))) != 0)) ) {
_errHandler.recoverInline(this);
@@ -6418,7 +6480,7 @@ public class KickCParser extends Parser {
_errHandler.reportMatch(this);
consume();
}
- setState(741);
+ setState(754);
asmExpr(8);
}
break;
@@ -6427,7 +6489,7 @@ public class KickCParser extends Parser {
_localctx = new AsmExprLabelContext(_localctx);
_ctx = _localctx;
_prevctx = _localctx;
- setState(742);
+ setState(755);
match(ASM_NAME);
}
break;
@@ -6436,7 +6498,7 @@ public class KickCParser extends Parser {
_localctx = new AsmExprLabelRelContext(_localctx);
_ctx = _localctx;
_prevctx = _localctx;
- setState(743);
+ setState(756);
match(ASM_MULTI_REL);
}
break;
@@ -6445,11 +6507,11 @@ public class KickCParser extends Parser {
_localctx = new AsmExprReplaceContext(_localctx);
_ctx = _localctx;
_prevctx = _localctx;
- setState(744);
+ setState(757);
match(ASM_CURLY_BEGIN);
- setState(745);
+ setState(758);
match(ASM_NAME);
- setState(746);
+ setState(759);
match(ASM_CURLY_END);
}
break;
@@ -6458,7 +6520,7 @@ public class KickCParser extends Parser {
_localctx = new AsmExprIntContext(_localctx);
_ctx = _localctx;
_prevctx = _localctx;
- setState(747);
+ setState(760);
match(ASM_NUMBER);
}
break;
@@ -6467,7 +6529,7 @@ public class KickCParser extends Parser {
_localctx = new AsmExprCharContext(_localctx);
_ctx = _localctx;
_prevctx = _localctx;
- setState(748);
+ setState(761);
match(ASM_CHAR);
}
break;
@@ -6475,28 +6537,28 @@ public class KickCParser extends Parser {
throw new NoViableAltException(this);
}
_ctx.stop = _input.LT(-1);
- setState(765);
+ setState(778);
_errHandler.sync(this);
- _alt = getInterpreter().adaptivePredict(_input,68,_ctx);
+ _alt = getInterpreter().adaptivePredict(_input,69,_ctx);
while ( _alt!=2 && _alt!=org.antlr.v4.runtime.atn.ATN.INVALID_ALT_NUMBER ) {
if ( _alt==1 ) {
if ( _parseListeners!=null ) triggerExitRuleEvent();
_prevctx = _localctx;
{
- setState(763);
+ setState(776);
_errHandler.sync(this);
- switch ( getInterpreter().adaptivePredict(_input,67,_ctx) ) {
+ switch ( getInterpreter().adaptivePredict(_input,68,_ctx) ) {
case 1:
{
_localctx = new AsmExprBinaryContext(new AsmExprContext(_parentctx, _parentState));
pushNewRecursionContext(_localctx, _startState, RULE_asmExpr);
- setState(751);
+ setState(764);
if (!(precpred(_ctx, 10))) throw new FailedPredicateException(this, "precpred(_ctx, 10)");
{
- setState(752);
+ setState(765);
match(ASM_DOT);
}
- setState(753);
+ setState(766);
asmExpr(11);
}
break;
@@ -6504,9 +6566,9 @@ public class KickCParser extends Parser {
{
_localctx = new AsmExprBinaryContext(new AsmExprContext(_parentctx, _parentState));
pushNewRecursionContext(_localctx, _startState, RULE_asmExpr);
- setState(754);
+ setState(767);
if (!(precpred(_ctx, 9))) throw new FailedPredicateException(this, "precpred(_ctx, 9)");
- setState(755);
+ setState(768);
_la = _input.LA(1);
if ( !(_la==ASM_SHIFT_LEFT || _la==ASM_SHIFT_RIGHT) ) {
_errHandler.recoverInline(this);
@@ -6516,7 +6578,7 @@ public class KickCParser extends Parser {
_errHandler.reportMatch(this);
consume();
}
- setState(756);
+ setState(769);
asmExpr(10);
}
break;
@@ -6524,9 +6586,9 @@ public class KickCParser extends Parser {
{
_localctx = new AsmExprBinaryContext(new AsmExprContext(_parentctx, _parentState));
pushNewRecursionContext(_localctx, _startState, RULE_asmExpr);
- setState(757);
+ setState(770);
if (!(precpred(_ctx, 7))) throw new FailedPredicateException(this, "precpred(_ctx, 7)");
- setState(758);
+ setState(771);
_la = _input.LA(1);
if ( !(_la==ASM_MULTIPLY || _la==ASM_DIVIDE) ) {
_errHandler.recoverInline(this);
@@ -6536,7 +6598,7 @@ public class KickCParser extends Parser {
_errHandler.reportMatch(this);
consume();
}
- setState(759);
+ setState(772);
asmExpr(8);
}
break;
@@ -6544,9 +6606,9 @@ public class KickCParser extends Parser {
{
_localctx = new AsmExprBinaryContext(new AsmExprContext(_parentctx, _parentState));
pushNewRecursionContext(_localctx, _startState, RULE_asmExpr);
- setState(760);
+ setState(773);
if (!(precpred(_ctx, 6))) throw new FailedPredicateException(this, "precpred(_ctx, 6)");
- setState(761);
+ setState(774);
_la = _input.LA(1);
if ( !(_la==ASM_PLUS || _la==ASM_MINUS) ) {
_errHandler.recoverInline(this);
@@ -6556,16 +6618,16 @@ public class KickCParser extends Parser {
_errHandler.reportMatch(this);
consume();
}
- setState(762);
+ setState(775);
asmExpr(7);
}
break;
}
}
}
- setState(767);
+ setState(780);
_errHandler.sync(this);
- _alt = getInterpreter().adaptivePredict(_input,68,_ctx);
+ _alt = getInterpreter().adaptivePredict(_input,69,_ctx);
}
}
}
@@ -6683,7 +6745,7 @@ public class KickCParser extends Parser {
}
public static final String _serializedATN =
- "\3\u608b\ua72a\u8133\ub9ed\u417c\u3be7\u7786\u5964\3\u0090\u0303\4\2\t"+
+ "\3\u608b\ua72a\u8133\ub9ed\u417c\u3be7\u7786\u5964\3\u0090\u0310\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"+
@@ -6701,286 +6763,292 @@ public class KickCParser extends Parser {
"\3\20\3\20\3\20\3\20\3\20\3\20\3\20\3\20\3\20\3\20\3\20\3\20\3\20\3\20"+
"\3\20\3\20\3\20\3\20\3\20\3\20\3\20\3\20\3\20\3\20\3\20\3\20\3\20\3\20"+
"\3\20\3\20\3\20\3\20\3\20\3\20\3\20\3\20\3\20\3\20\3\20\3\20\3\20\3\20"+
- "\3\20\3\20\3\20\3\20\5\20\u00ff\n\20\3\21\3\21\3\21\3\21\3\21\3\21\3\21"+
- "\3\21\3\21\5\21\u010a\n\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\3\21\5\21\u011c\n\21\3\21\3\21\3\21\3\21"+
- "\3\21\7\21\u0123\n\21\f\21\16\21\u0126\13\21\3\21\3\21\5\21\u012a\n\21"+
- "\3\22\6\22\u012d\n\22\r\22\16\22\u012e\3\23\3\23\3\23\3\23\3\23\5\23\u0136"+
- "\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\u0143"+
- "\n\23\3\23\7\23\u0146\n\23\f\23\16\23\u0149\13\23\3\23\3\23\3\23\3\23"+
- "\3\23\3\23\3\23\7\23\u0152\n\23\f\23\16\23\u0155\13\23\3\23\3\23\3\23"+
- "\3\23\3\23\3\23\3\23\3\23\3\23\7\23\u0160\n\23\f\23\16\23\u0163\13\23"+
- "\3\23\3\23\3\23\3\23\3\23\3\23\3\23\3\23\3\23\3\23\3\23\3\23\3\23\3\23"+
- "\3\23\3\23\5\23\u0175\n\23\3\23\3\23\3\23\3\23\3\23\3\23\3\23\5\23\u017e"+
- "\n\23\3\23\3\23\3\23\3\23\3\23\5\23\u0185\n\23\3\24\6\24\u0188\n\24\r"+
- "\24\16\24\u0189\3\24\3\24\3\24\5\24\u018f\n\24\5\24\u0191\n\24\3\25\3"+
- "\25\3\25\3\25\5\25\u0197\n\25\3\26\3\26\3\26\3\26\3\26\5\26\u019e\n\26"+
- "\3\26\5\26\u01a1\n\26\3\26\3\26\3\26\3\26\3\26\3\26\5\26\u01a9\n\26\3"+
- "\27\5\27\u01ac\n\27\3\27\5\27\u01af\n\27\3\30\3\30\3\30\3\30\3\30\3\30"+
- "\3\30\3\30\5\30\u01b9\n\30\3\30\3\30\3\30\3\30\3\30\5\30\u01c0\n\30\3"+
- "\30\3\30\3\30\3\30\3\30\5\30\u01c7\n\30\3\30\3\30\3\30\3\30\7\30\u01cd"+
- "\n\30\f\30\16\30\u01d0\13\30\3\31\3\31\3\31\3\32\3\32\5\32\u01d7\n\32"+
- "\3\32\3\32\6\32\u01db\n\32\r\32\16\32\u01dc\3\32\3\32\3\33\3\33\3\33\3"+
- "\34\3\34\3\34\3\35\3\35\5\35\u01e9\n\35\3\35\3\35\3\35\3\35\3\36\3\36"+
- "\3\36\3\36\3\36\3\36\7\36\u01f5\n\36\f\36\16\36\u01f8\13\36\3\37\3\37"+
- "\3\37\5\37\u01fd\n\37\3 \3 \3 \3 \3 \3 \7 \u0205\n \f \16 \u0208\13 \3"+
- "!\3!\3!\3!\3!\3!\3!\3!\3!\5!\u0213\n!\3!\3!\3!\3!\3!\3!\5!\u021b\n!\3"+
- "!\3!\3!\3!\3!\3!\3!\3!\3!\3!\3!\3!\3!\3!\3!\3!\3!\3!\3!\7!\u0230\n!\f"+
- "!\16!\u0233\13!\3!\3!\3!\3!\3!\6!\u023a\n!\r!\16!\u023b\3!\3!\5!\u0240"+
- "\n!\3!\3!\3!\3!\3!\3!\3!\3!\3!\3!\3!\3!\3!\3!\3!\3!\3!\3!\3!\3!\3!\3!"+
+ "\3\20\3\20\3\20\3\20\3\20\3\20\3\20\3\20\3\20\3\20\3\20\7\20\u0106\n\20"+
+ "\f\20\16\20\u0109\13\20\3\20\5\20\u010c\n\20\3\21\3\21\3\21\3\21\3\21"+
+ "\3\21\3\21\3\21\3\21\5\21\u0117\n\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\3\21\5\21\u0129\n\21\3\21\3\21"+
+ "\3\21\3\21\3\21\7\21\u0130\n\21\f\21\16\21\u0133\13\21\3\21\3\21\5\21"+
+ "\u0137\n\21\3\22\6\22\u013a\n\22\r\22\16\22\u013b\3\23\3\23\3\23\3\23"+
+ "\3\23\5\23\u0143\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\u0150\n\23\3\23\7\23\u0153\n\23\f\23\16\23\u0156\13\23\3\23"+
+ "\3\23\3\23\3\23\3\23\3\23\3\23\7\23\u015f\n\23\f\23\16\23\u0162\13\23"+
+ "\3\23\3\23\3\23\3\23\3\23\3\23\3\23\3\23\3\23\7\23\u016d\n\23\f\23\16"+
+ "\23\u0170\13\23\3\23\3\23\3\23\3\23\3\23\3\23\3\23\3\23\3\23\3\23\3\23"+
+ "\3\23\3\23\3\23\3\23\3\23\5\23\u0182\n\23\3\23\3\23\3\23\3\23\3\23\3\23"+
+ "\3\23\5\23\u018b\n\23\3\23\3\23\3\23\3\23\3\23\5\23\u0192\n\23\3\24\6"+
+ "\24\u0195\n\24\r\24\16\24\u0196\3\24\3\24\3\24\5\24\u019c\n\24\5\24\u019e"+
+ "\n\24\3\25\3\25\3\25\3\25\5\25\u01a4\n\25\3\26\3\26\3\26\3\26\3\26\5\26"+
+ "\u01ab\n\26\3\26\5\26\u01ae\n\26\3\26\3\26\3\26\3\26\3\26\3\26\5\26\u01b6"+
+ "\n\26\3\27\5\27\u01b9\n\27\3\27\5\27\u01bc\n\27\3\30\3\30\3\30\3\30\3"+
+ "\30\3\30\3\30\3\30\5\30\u01c6\n\30\3\30\3\30\3\30\3\30\3\30\5\30\u01cd"+
+ "\n\30\3\30\3\30\3\30\3\30\3\30\5\30\u01d4\n\30\3\30\3\30\3\30\3\30\7\30"+
+ "\u01da\n\30\f\30\16\30\u01dd\13\30\3\31\3\31\3\31\3\32\3\32\5\32\u01e4"+
+ "\n\32\3\32\3\32\6\32\u01e8\n\32\r\32\16\32\u01e9\3\32\3\32\3\33\3\33\3"+
+ "\33\3\34\3\34\3\34\3\35\3\35\5\35\u01f6\n\35\3\35\3\35\3\35\3\35\3\36"+
+ "\3\36\3\36\3\36\3\36\3\36\7\36\u0202\n\36\f\36\16\36\u0205\13\36\3\37"+
+ "\3\37\3\37\5\37\u020a\n\37\3 \3 \3 \3 \3 \3 \7 \u0212\n \f \16 \u0215"+
+ "\13 \3!\3!\3!\3!\3!\3!\3!\3!\3!\5!\u0220\n!\3!\3!\3!\3!\3!\3!\5!\u0228"+
+ "\n!\3!\3!\3!\3!\3!\3!\3!\3!\3!\3!\3!\3!\3!\3!\3!\3!\3!\3!\3!\7!\u023d"+
+ "\n!\f!\16!\u0240\13!\3!\3!\3!\3!\3!\6!\u0247\n!\r!\16!\u0248\3!\3!\5!"+
+ "\u024d\n!\3!\3!\3!\3!\3!\3!\3!\3!\3!\3!\3!\3!\3!\3!\3!\3!\3!\3!\3!\3!"+
"\3!\3!\3!\3!\3!\3!\3!\3!\3!\3!\3!\3!\3!\3!\3!\3!\3!\3!\3!\3!\3!\3!\3!"+
- "\3!\3!\3!\5!\u0272\n!\3!\3!\3!\3!\3!\3!\3!\3!\7!\u027c\n!\f!\16!\u027f"+
- "\13!\3\"\3\"\3\"\7\"\u0284\n\"\f\"\16\"\u0287\13\"\3#\3#\5#\u028b\n#\3"+
- "#\3#\3$\3$\3$\3$\7$\u0293\n$\f$\16$\u0296\13$\3$\3$\3%\3%\3%\3%\3%\3%"+
- "\3%\3%\3%\3%\3%\3%\3%\5%\u02a7\n%\5%\u02a9\n%\3&\7&\u02ac\n&\f&\16&\u02af"+
- "\13&\3\'\3\'\3\'\5\'\u02b4\n\'\3(\3(\3(\3(\5(\u02ba\n(\3)\3)\5)\u02be"+
- "\n)\3*\3*\3*\3*\7*\u02c4\n*\f*\16*\u02c7\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+\u02e0\n+\3,\3,\3,\3,\3"+
- ",\3,\3,\3,\3,\3,\3,\3,\3,\3,\5,\u02f0\n,\3,\3,\3,\3,\3,\3,\3,\3,\3,\3"+
- ",\3,\3,\7,\u02fe\n,\f,\16,\u0301\13,\3,\2\b\24.:>@V-\2\4\6\b\n\f\16\20"+
- "\22\24\26\30\32\34\36 \"$&(*,.\60\62\64\668:<>@BDFHJLNPRTV\2\r\3\2\26"+
- "\27\5\2\21\22\30\31YY\4\2 ##\3\2\34\35\3\2\23\25\3\2\21\22\3\2\36#\3"+
- "\2y|\3\2wx\3\2}~\3\2yz\2\u0372\2X\3\2\2\2\4[\3\2\2\2\6a\3\2\2\2\bf\3\2"+
- "\2\2\nh\3\2\2\2\fz\3\2\2\2\16|\3\2\2\2\20\u0084\3\2\2\2\22\u008e\3\2\2"+
- "\2\24\u0091\3\2\2\2\26\u00a4\3\2\2\2\30\u00a6\3\2\2\2\32\u00b3\3\2\2\2"+
- "\34\u00bf\3\2\2\2\36\u00fe\3\2\2\2 \u0129\3\2\2\2\"\u012c\3\2\2\2$\u0184"+
- "\3\2\2\2&\u0187\3\2\2\2(\u0192\3\2\2\2*\u01a8\3\2\2\2,\u01ae\3\2\2\2."+
- "\u01bf\3\2\2\2\60\u01d1\3\2\2\2\62\u01d4\3\2\2\2\64\u01e0\3\2\2\2\66\u01e3"+
- "\3\2\2\28\u01e6\3\2\2\2:\u01ee\3\2\2\2<\u01f9\3\2\2\2>\u01fe\3\2\2\2@"+
- "\u023f\3\2\2\2B\u0280\3\2\2\2D\u0288\3\2\2\2F\u028e\3\2\2\2H\u02a8\3\2"+
- "\2\2J\u02ad\3\2\2\2L\u02b3\3\2\2\2N\u02b9\3\2\2\2P\u02bb\3\2\2\2R\u02bf"+
- "\3\2\2\2T\u02df\3\2\2\2V\u02ef\3\2\2\2XY\5\6\4\2YZ\7\2\2\3Z\3\3\2\2\2"+
- "[\\\5J&\2\\]\7\2\2\3]\5\3\2\2\2^`\5\b\5\2_^\3\2\2\2`c\3\2\2\2a_\3\2\2"+
- "\2ab\3\2\2\2b\7\3\2\2\2ca\3\2\2\2dg\5\f\7\2eg\5\n\6\2fd\3\2\2\2fe\3\2"+
- "\2\2g\t\3\2\2\2hi\7(\2\2ij\7^\2\2j\13\3\2\2\2kl\5\22\n\2lm\7\n\2\2m{\3"+
- "\2\2\2no\5\62\32\2op\7\n\2\2p{\3\2\2\2qr\58\35\2rs\7\n\2\2s{\3\2\2\2t"+
- "{\5\30\r\2u{\5D#\2v{\5\36\20\2wx\5\16\b\2xy\7\n\2\2y{\3\2\2\2zk\3\2\2"+
- "\2zn\3\2\2\2zq\3\2\2\2zt\3\2\2\2zu\3\2\2\2zv\3\2\2\2zw\3\2\2\2{\r\3\2"+
- "\2\2|}\7)\2\2}~\5.\30\2~\177\7i\2\2\177\u0080\b\b\1\2\u0080\17\3\2\2\2"+
- "\u0081\u0083\5 \21\2\u0082\u0081\3\2\2\2\u0083\u0086\3\2\2\2\u0084\u0082"+
- "\3\2\2\2\u0084\u0085\3\2\2\2\u0085\u0087\3\2\2\2\u0086\u0084\3\2\2\2\u0087"+
- "\u008b\5.\30\2\u0088\u008a\5 \21\2\u0089\u0088\3\2\2\2\u008a\u008d\3\2"+
- "\2\2\u008b\u0089\3\2\2\2\u008b\u008c\3\2\2\2\u008c\21\3\2\2\2\u008d\u008b"+
- "\3\2\2\2\u008e\u008f\5\20\t\2\u008f\u0090\5\24\13\2\u0090\23\3\2\2\2\u0091"+
- "\u0092\b\13\1\2\u0092\u0093\5\26\f\2\u0093\u0099\3\2\2\2\u0094\u0095\f"+
- "\3\2\2\u0095\u0096\7\f\2\2\u0096\u0098\5\26\f\2\u0097\u0094\3\2\2\2\u0098"+
- "\u009b\3\2\2\2\u0099\u0097\3\2\2\2\u0099\u009a\3\2\2\2\u009a\25\3\2\2"+
- "\2\u009b\u0099\3\2\2\2\u009c\u009f\7i\2\2\u009d\u009e\7&\2\2\u009e\u00a0"+
- "\5@!\2\u009f\u009d\3\2\2\2\u009f\u00a0\3\2\2\2\u00a0\u00a5\3\2\2\2\u00a1"+
- "\u00a2\7i\2\2\u00a2\u00a3\7&\2\2\u00a3\u00a5\5D#\2\u00a4\u009c\3\2\2\2"+
- "\u00a4\u00a1\3\2\2\2\u00a5\27\3\2\2\2\u00a6\u00a7\5\20\t\2\u00a7\u00a8"+
- "\7i\2\2\u00a8\u00aa\7\b\2\2\u00a9\u00ab\5\32\16\2\u00aa\u00a9\3\2\2\2"+
- "\u00aa\u00ab\3\2\2\2\u00ab\u00ac\3\2\2\2\u00ac\u00ad\7\t\2\2\u00ad\u00af"+
- "\7\4\2\2\u00ae\u00b0\5\"\22\2\u00af\u00ae\3\2\2\2\u00af\u00b0\3\2\2\2"+
- "\u00b0\u00b1\3\2\2\2\u00b1\u00b2\7\5\2\2\u00b2\31\3\2\2\2\u00b3\u00b8"+
- "\5\34\17\2\u00b4\u00b5\7\f\2\2\u00b5\u00b7\5\34\17\2\u00b6\u00b4\3\2\2"+
- "\2\u00b7\u00ba\3\2\2\2\u00b8\u00b6\3\2\2\2\u00b8\u00b9\3\2\2\2\u00b9\33"+
- "\3\2\2\2\u00ba\u00b8\3\2\2\2\u00bb\u00bc\5\20\t\2\u00bc\u00bd\7i\2\2\u00bd"+
- "\u00c0\3\2\2\2\u00be\u00c0\7[\2\2\u00bf\u00bb\3\2\2\2\u00bf\u00be\3\2"+
- "\2\2\u00c0\35\3\2\2\2\u00c1\u00c2\7*\2\2\u00c2\u00c3\7+\2\2\u00c3\u00c4"+
- "\3\2\2\2\u00c4\u00c5\7\b\2\2\u00c5\u00ca\7`\2\2\u00c6\u00c7\7\f\2\2\u00c7"+
- "\u00c9\7`\2\2\u00c8\u00c6\3\2\2\2\u00c9\u00cc\3\2\2\2\u00ca\u00c8\3\2"+
- "\2\2\u00ca\u00cb\3\2\2\2\u00cb\u00cd\3\2\2\2\u00cc\u00ca\3\2\2\2\u00cd"+
- "\u00ff\7\t\2\2\u00ce\u00cf\7*\2\2\u00cf\u00d0\7,\2\2\u00d0\u00d1\3\2\2"+
- "\2\u00d1\u00d2\7\b\2\2\u00d2\u00d3\7`\2\2\u00d3\u00ff\7\t\2\2\u00d4\u00d5"+
- "\7*\2\2\u00d5\u00d6\7-\2\2\u00d6\u00d7\3\2\2\2\u00d7\u00d8\7\b\2\2\u00d8"+
- "\u00d9\7i\2\2\u00d9\u00ff\7\t\2\2\u00da\u00db\7*\2\2\u00db\u00dc\7/\2"+
- "\2\u00dc\u00dd\3\2\2\2\u00dd\u00de\7\b\2\2\u00de\u00df\7i\2\2\u00df\u00ff"+
- "\7\t\2\2\u00e0\u00e1\7*\2\2\u00e1\u00e2\7.\2\2\u00e2\u00e3\3\2\2\2\u00e3"+
- "\u00e4\7\b\2\2\u00e4\u00e5\7^\2\2\u00e5\u00ff\7\t\2\2\u00e6\u00e7\7*\2"+
- "\2\u00e7\u00e8\7\60\2\2\u00e8\u00e9\3\2\2\2\u00e9\u00ea\7\b\2\2\u00ea"+
- "\u00eb\7i\2\2\u00eb\u00ff\7\t\2\2\u00ec\u00ed\7*\2\2\u00ed\u00ee\7\61"+
- "\2\2\u00ee\u00ef\3\2\2\2\u00ef\u00f0\7\b\2\2\u00f0\u00f1\7i\2\2\u00f1"+
- "\u00ff\7\t\2\2\u00f2\u00f3\7*\2\2\u00f3\u00f4\7\62\2\2\u00f4\u00f5\3\2"+
- "\2\2\u00f5\u00f6\7\b\2\2\u00f6\u00f7\7i\2\2\u00f7\u00ff\7\t\2\2\u00f8"+
- "\u00f9\7*\2\2\u00f9\u00fa\7A\2\2\u00fa\u00fb\3\2\2\2\u00fb\u00fc\7\b\2"+
- "\2\u00fc\u00fd\7B\2\2\u00fd\u00ff\7\t\2\2\u00fe\u00c1\3\2\2\2\u00fe\u00ce"+
- "\3\2\2\2\u00fe\u00d4\3\2\2\2\u00fe\u00da\3\2\2\2\u00fe\u00e0\3\2\2\2\u00fe"+
- "\u00e6\3\2\2\2\u00fe\u00ec\3\2\2\2\u00fe\u00f2\3\2\2\2\u00fe\u00f8\3\2"+
- "\2\2\u00ff\37\3\2\2\2\u0100\u012a\7\63\2\2\u0101\u0102\7\66\2\2\u0102"+
- "\u0103\7\b\2\2\u0103\u0104\7`\2\2\u0104\u012a\7\t\2\2\u0105\u0109\7:\2"+
- "\2\u0106\u0107\7\b\2\2\u0107\u0108\7i\2\2\u0108\u010a\7\t\2\2\u0109\u0106"+
- "\3\2\2\2\u0109\u010a\3\2\2\2\u010a\u012a\3\2\2\2\u010b\u012a\7<\2\2\u010c"+
- "\u012a\7=\2\2\u010d\u010e\7;\2\2\u010e\u010f\7\b\2\2\u010f\u0110\7`\2"+
- "\2\u0110\u012a\7\t\2\2\u0111\u012a\78\2\2\u0112\u012a\7?\2\2\u0113\u012a"+
- "\7@\2\2\u0114\u012a\7\64\2\2\u0115\u012a\7\65\2\2\u0116\u012a\7\67\2\2"+
- "\u0117\u011b\79\2\2\u0118\u0119\7\b\2\2\u0119\u011a\7i\2\2\u011a\u011c"+
- "\7\t\2\2\u011b\u0118\3\2\2\2\u011b\u011c\3\2\2\2\u011c\u012a\3\2\2\2\u011d"+
- "\u011e\7+\2\2\u011e\u011f\7\b\2\2\u011f\u0124\7`\2\2\u0120\u0121\7\f\2"+
- "\2\u0121\u0123\7`\2\2\u0122\u0120\3\2\2\2\u0123\u0126\3\2\2\2\u0124\u0122"+
- "\3\2\2\2\u0124\u0125\3\2\2\2\u0125\u0127\3\2\2\2\u0126\u0124\3\2\2\2\u0127"+
- "\u012a\7\t\2\2\u0128\u012a\7B\2\2\u0129\u0100\3\2\2\2\u0129\u0101\3\2"+
- "\2\2\u0129\u0105\3\2\2\2\u0129\u010b\3\2\2\2\u0129\u010c\3\2\2\2\u0129"+
- "\u010d\3\2\2\2\u0129\u0111\3\2\2\2\u0129\u0112\3\2\2\2\u0129\u0113\3\2"+
- "\2\2\u0129\u0114\3\2\2\2\u0129\u0115\3\2\2\2\u0129\u0116\3\2\2\2\u0129"+
- "\u0117\3\2\2\2\u0129\u011d\3\2\2\2\u0129\u0128\3\2\2\2\u012a!\3\2\2\2"+
- "\u012b\u012d\5$\23\2\u012c\u012b\3\2\2\2\u012d\u012e\3\2\2\2\u012e\u012c"+
- "\3\2\2\2\u012e\u012f\3\2\2\2\u012f#\3\2\2\2\u0130\u0131\5\22\n\2\u0131"+
- "\u0132\7\n\2\2\u0132\u0185\3\2\2\2\u0133\u0135\7\4\2\2\u0134\u0136\5\""+
- "\22\2\u0135\u0134\3\2\2\2\u0135\u0136\3\2\2\2\u0136\u0137\3\2\2\2\u0137"+
- "\u0185\7\5\2\2\u0138\u0139\5> \2\u0139\u013a\7\n\2\2\u013a\u0185\3\2\2"+
- "\2\u013b\u013c\7C\2\2\u013c\u013d\7\b\2\2\u013d\u013e\5> \2\u013e\u013f"+
- "\7\t\2\2\u013f\u0142\5$\23\2\u0140\u0141\7D\2\2\u0141\u0143\5$\23\2\u0142"+
- "\u0140\3\2\2\2\u0142\u0143\3\2\2\2\u0143\u0185\3\2\2\2\u0144\u0146\5 "+
- "\21\2\u0145\u0144\3\2\2\2\u0146\u0149\3\2\2\2\u0147\u0145\3\2\2\2\u0147"+
- "\u0148\3\2\2\2\u0148\u014a\3\2\2\2\u0149\u0147\3\2\2\2\u014a\u014b\7E"+
- "\2\2\u014b\u014c\7\b\2\2\u014c\u014d\5> \2\u014d\u014e\7\t\2\2\u014e\u014f"+
- "\5$\23\2\u014f\u0185\3\2\2\2\u0150\u0152\5 \21\2\u0151\u0150\3\2\2\2\u0152"+
- "\u0155\3\2\2\2\u0153\u0151\3\2\2\2\u0153\u0154\3\2\2\2\u0154\u0156\3\2"+
- "\2\2\u0155\u0153\3\2\2\2\u0156\u0157\7F\2\2\u0157\u0158\5$\23\2\u0158"+
- "\u0159\7E\2\2\u0159\u015a\7\b\2\2\u015a\u015b\5> \2\u015b\u015c\7\t\2"+
- "\2\u015c\u015d\7\n\2\2\u015d\u0185\3\2\2\2\u015e\u0160\5 \21\2\u015f\u015e"+
- "\3\2\2\2\u0160\u0163\3\2\2\2\u0161\u015f\3\2\2\2\u0161\u0162\3\2\2\2\u0162"+
- "\u0164\3\2\2\2\u0163\u0161\3\2\2\2\u0164\u0165\7G\2\2\u0165\u0166\7\b"+
- "\2\2\u0166\u0167\5*\26\2\u0167\u0168\7\t\2\2\u0168\u0169\5$\23\2\u0169"+
- "\u0185\3\2\2\2\u016a\u016b\7H\2\2\u016b\u016c\7\b\2\2\u016c\u016d\5> "+
- "\2\u016d\u016e\7\t\2\2\u016e\u016f\7\4\2\2\u016f\u0170\5&\24\2\u0170\u0171"+
- "\7\5\2\2\u0171\u0185\3\2\2\2\u0172\u0174\7I\2\2\u0173\u0175\5> \2\u0174"+
- "\u0173\3\2\2\2\u0174\u0175\3\2\2\2\u0175\u0176\3\2\2\2\u0176\u0185\7\n"+
- "\2\2\u0177\u0178\7J\2\2\u0178\u0185\7\n\2\2\u0179\u017a\7K\2\2\u017a\u0185"+
- "\7\n\2\2\u017b\u017d\7L\2\2\u017c\u017e\5F$\2\u017d\u017c\3\2\2\2\u017d"+
- "\u017e\3\2\2\2\u017e\u017f\3\2\2\2\u017f\u0180\7\4\2\2\u0180\u0181\5J"+
- "&\2\u0181\u0182\7\u0080\2\2\u0182\u0185\3\2\2\2\u0183\u0185\5D#\2\u0184"+
- "\u0130\3\2\2\2\u0184\u0133\3\2\2\2\u0184\u0138\3\2\2\2\u0184\u013b\3\2"+
- "\2\2\u0184\u0147\3\2\2\2\u0184\u0153\3\2\2\2\u0184\u0161\3\2\2\2\u0184"+
- "\u016a\3\2\2\2\u0184\u0172\3\2\2\2\u0184\u0177\3\2\2\2\u0184\u0179\3\2"+
- "\2\2\u0184\u017b\3\2\2\2\u0184\u0183\3\2\2\2\u0185%\3\2\2\2\u0186\u0188"+
- "\5(\25\2\u0187\u0186\3\2\2\2\u0188\u0189\3\2\2\2\u0189\u0187\3\2\2\2\u0189"+
- "\u018a\3\2\2\2\u018a\u0190\3\2\2\2\u018b\u018c\7M\2\2\u018c\u018e\7\13"+
- "\2\2\u018d\u018f\5\"\22\2\u018e\u018d\3\2\2\2\u018e\u018f\3\2\2\2\u018f"+
- "\u0191\3\2\2\2\u0190\u018b\3\2\2\2\u0190\u0191\3\2\2\2\u0191\'\3\2\2\2"+
- "\u0192\u0193\7N\2\2\u0193\u0194\5@!\2\u0194\u0196\7\13\2\2\u0195\u0197"+
- "\5\"\22\2\u0196\u0195\3\2\2\2\u0196\u0197\3\2\2\2\u0197)\3\2\2\2\u0198"+
- "\u0199\5,\27\2\u0199\u019a\7\n\2\2\u019a\u019b\5> \2\u019b\u019d\7\n\2"+
- "\2\u019c\u019e\5> \2\u019d\u019c\3\2\2\2\u019d\u019e\3\2\2\2\u019e\u01a9"+
- "\3\2\2\2\u019f\u01a1\5\20\t\2\u01a0\u019f\3\2\2\2\u01a0\u01a1\3\2\2\2"+
- "\u01a1\u01a2\3\2\2\2\u01a2\u01a3\7i\2\2\u01a3\u01a4\7\13\2\2\u01a4\u01a5"+
- "\5@!\2\u01a5\u01a6\7\r\2\2\u01a6\u01a7\5@!\2\u01a7\u01a9\3\2\2\2\u01a8"+
- "\u0198\3\2\2\2\u01a8\u01a0\3\2\2\2\u01a9+\3\2\2\2\u01aa\u01ac\5\22\n\2"+
- "\u01ab\u01aa\3\2\2\2\u01ab\u01ac\3\2\2\2\u01ac\u01af\3\2\2\2\u01ad\u01af"+
- "\5> \2\u01ae\u01ab\3\2\2\2\u01ae\u01ad\3\2\2\2\u01af-\3\2\2\2\u01b0\u01b1"+
- "\b\30\1\2\u01b1\u01b2\7\b\2\2\u01b2\u01b3\5.\30\2\u01b3\u01b4\7\t\2\2"+
- "\u01b4\u01c0\3\2\2\2\u01b5\u01c0\7[\2\2\u01b6\u01b8\7Z\2\2\u01b7\u01b9"+
- "\7[\2\2\u01b8\u01b7\3\2\2\2\u01b8\u01b9\3\2\2\2\u01b9\u01c0\3\2\2\2\u01ba"+
- "\u01c0\5\62\32\2\u01bb\u01c0\5\60\31\2\u01bc\u01c0\58\35\2\u01bd\u01c0"+
- "\5\66\34\2\u01be\u01c0\7\3\2\2\u01bf\u01b0\3\2\2\2\u01bf\u01b5\3\2\2\2"+
- "\u01bf\u01b6\3\2\2\2\u01bf\u01ba\3\2\2\2\u01bf\u01bb\3\2\2\2\u01bf\u01bc"+
- "\3\2\2\2\u01bf\u01bd\3\2\2\2\u01bf\u01be\3\2\2\2\u01c0\u01ce\3\2\2\2\u01c1"+
- "\u01c2\f\n\2\2\u01c2\u01cd\7\23\2\2\u01c3\u01c4\f\t\2\2\u01c4\u01c6\7"+
- "\6\2\2\u01c5\u01c7\5@!\2\u01c6\u01c5\3\2\2\2\u01c6\u01c7\3\2\2\2\u01c7"+
- "\u01c8\3\2\2\2\u01c8\u01cd\7\7\2\2\u01c9\u01ca\f\b\2\2\u01ca\u01cb\7\b"+
- "\2\2\u01cb\u01cd\7\t\2\2\u01cc\u01c1\3\2\2\2\u01cc\u01c3\3\2\2\2\u01cc"+
- "\u01c9\3\2\2\2\u01cd\u01d0\3\2\2\2\u01ce\u01cc\3\2\2\2\u01ce\u01cf\3\2"+
- "\2\2\u01cf/\3\2\2\2\u01d0\u01ce\3\2\2\2\u01d1\u01d2\7O\2\2\u01d2\u01d3"+
- "\7i\2\2\u01d3\61\3\2\2\2\u01d4\u01d6\7O\2\2\u01d5\u01d7\7i\2\2\u01d6\u01d5"+
- "\3\2\2\2\u01d6\u01d7\3\2\2\2\u01d7\u01d8\3\2\2\2\u01d8\u01da\7\4\2\2\u01d9"+
- "\u01db\5\64\33\2\u01da\u01d9\3\2\2\2\u01db\u01dc\3\2\2\2\u01dc\u01da\3"+
- "\2\2\2\u01dc\u01dd\3\2\2\2\u01dd\u01de\3\2\2\2\u01de\u01df\7\5\2\2\u01df"+
- "\63\3\2\2\2\u01e0\u01e1\5\22\n\2\u01e1\u01e2\7\n\2\2\u01e2\65\3\2\2\2"+
- "\u01e3\u01e4\7P\2\2\u01e4\u01e5\7i\2\2\u01e5\67\3\2\2\2\u01e6\u01e8\7"+
- "P\2\2\u01e7\u01e9\7i\2\2\u01e8\u01e7\3\2\2\2\u01e8\u01e9\3\2\2\2\u01e9"+
- "\u01ea\3\2\2\2\u01ea\u01eb\7\4\2\2\u01eb\u01ec\5:\36\2\u01ec\u01ed\7\5"+
- "\2\2\u01ed9\3\2\2\2\u01ee\u01ef\b\36\1\2\u01ef\u01f0\5<\37\2\u01f0\u01f6"+
- "\3\2\2\2\u01f1\u01f2\f\3\2\2\u01f2\u01f3\7\f\2\2\u01f3\u01f5\5<\37\2\u01f4"+
- "\u01f1\3\2\2\2\u01f5\u01f8\3\2\2\2\u01f6\u01f4\3\2\2\2\u01f6\u01f7\3\2"+
- "\2\2\u01f7;\3\2\2\2\u01f8\u01f6\3\2\2\2\u01f9\u01fc\7i\2\2\u01fa\u01fb"+
- "\7&\2\2\u01fb\u01fd\5@!\2\u01fc\u01fa\3\2\2\2\u01fc\u01fd\3\2\2\2\u01fd"+
- "=\3\2\2\2\u01fe\u01ff\b \1\2\u01ff\u0200\5@!\2\u0200\u0206\3\2\2\2\u0201"+
- "\u0202\f\3\2\2\u0202\u0203\7\f\2\2\u0203\u0205\5@!\2\u0204\u0201\3\2\2"+
- "\2\u0205\u0208\3\2\2\2\u0206\u0204\3\2\2\2\u0206\u0207\3\2\2\2\u0207?"+
- "\3\2\2\2\u0208\u0206\3\2\2\2\u0209\u020a\b!\1\2\u020a\u020b\7\b\2\2\u020b"+
- "\u020c\5> \2\u020c\u020d\7\t\2\2\u020d\u0240\3\2\2\2\u020e\u020f\7Q\2"+
- "\2\u020f\u0212\7\b\2\2\u0210\u0213\5@!\2\u0211\u0213\5.\30\2\u0212\u0210"+
- "\3\2\2\2\u0212\u0211\3\2\2\2\u0213\u0214\3\2\2\2\u0214\u0215\7\t\2\2\u0215"+
- "\u0240\3\2\2\2\u0216\u0217\7R\2\2\u0217\u021a\7\b\2\2\u0218\u021b\5@!"+
- "\2\u0219\u021b\5.\30\2\u021a\u0218\3\2\2\2\u021a\u0219\3\2\2\2\u021b\u021c"+
- "\3\2\2\2\u021c\u021d\7\t\2\2\u021d\u0240\3\2\2\2\u021e\u021f\7\b\2\2\u021f"+
- "\u0220\5.\30\2\u0220\u0221\7\t\2\2\u0221\u0222\5@!\32\u0222\u0240\3\2"+
- "\2\2\u0223\u0224\t\2\2\2\u0224\u0240\5@!\31\u0225\u0226\7\23\2\2\u0226"+
- "\u0240\5@!\27\u0227\u0228\t\3\2\2\u0228\u0240\5@!\26\u0229\u022a\t\4\2"+
- "\2\u022a\u0240\5@!\22\u022b\u022c\7\4\2\2\u022c\u0231\5@!\2\u022d\u022e"+
- "\7\f\2\2\u022e\u0230\5@!\2\u022f\u022d\3\2\2\2\u0230\u0233\3\2\2\2\u0231"+
- "\u022f\3\2\2\2\u0231\u0232\3\2\2\2\u0232\u0234\3\2\2\2\u0233\u0231\3\2"+
- "\2\2\u0234\u0235\7\5\2\2\u0235\u0240\3\2\2\2\u0236\u0240\7i\2\2\u0237"+
- "\u0240\7`\2\2\u0238\u023a\7^\2\2\u0239\u0238\3\2\2\2\u023a\u023b\3\2\2"+
- "\2\u023b\u0239\3\2\2\2\u023b\u023c\3\2\2\2\u023c\u0240\3\2\2\2\u023d\u0240"+
- "\7_\2\2\u023e\u0240\7\\\2\2\u023f\u0209\3\2\2\2\u023f\u020e\3\2\2\2\u023f"+
- "\u0216\3\2\2\2\u023f\u021e\3\2\2\2\u023f\u0223\3\2\2\2\u023f\u0225\3\2"+
- "\2\2\u023f\u0227\3\2\2\2\u023f\u0229\3\2\2\2\u023f\u022b\3\2\2\2\u023f"+
- "\u0236\3\2\2\2\u023f\u0237\3\2\2\2\u023f\u0239\3\2\2\2\u023f\u023d\3\2"+
- "\2\2\u023f\u023e\3\2\2\2\u0240\u027d\3\2\2\2\u0241\u0242\f\25\2\2\u0242"+
- "\u0243\t\5\2\2\u0243\u027c\5@!\26\u0244\u0245\f\24\2\2\u0245\u0246\t\6"+
- "\2\2\u0246\u027c\5@!\25\u0247\u0248\f\23\2\2\u0248\u0249\t\7\2\2\u0249"+
- "\u027c\5@!\24\u024a\u024b\f\21\2\2\u024b\u024c\t\b\2\2\u024c\u027c\5@"+
- "!\22\u024d\u024e\f\20\2\2\u024e\u024f\7\30\2\2\u024f\u027c\5@!\21\u0250"+
- "\u0251\f\17\2\2\u0251\u0252\7\32\2\2\u0252\u027c\5@!\20\u0253\u0254\f"+
- "\16\2\2\u0254\u0255\7\33\2\2\u0255\u027c\5@!\17\u0256\u0257\f\r\2\2\u0257"+
- "\u0258\7$\2\2\u0258\u027c\5@!\16\u0259\u025a\f\f\2\2\u025a\u025b\7%\2"+
- "\2\u025b\u027c\5@!\r\u025c\u025d\f\13\2\2\u025d\u025e\7\16\2\2\u025e\u025f"+
- "\5@!\2\u025f\u0260\7\13\2\2\u0260\u0261\5@!\f\u0261\u027c\3\2\2\2\u0262"+
- "\u0263\f\n\2\2\u0263\u0264\7&\2\2\u0264\u027c\5@!\n\u0265\u0266\f\t\2"+
- "\2\u0266\u0267\7\'\2\2\u0267\u027c\5@!\t\u0268\u0269\f \2\2\u0269\u026a"+
- "\7\17\2\2\u026a\u027c\7i\2\2\u026b\u026c\f\37\2\2\u026c\u026d\7\20\2\2"+
- "\u026d\u027c\7i\2\2\u026e\u026f\f\36\2\2\u026f\u0271\7\b\2\2\u0270\u0272"+
- "\5B\"\2\u0271\u0270\3\2\2\2\u0271\u0272\3\2\2\2\u0272\u0273\3\2\2\2\u0273"+
- "\u027c\7\t\2\2\u0274\u0275\f\33\2\2\u0275\u0276\7\6\2\2\u0276\u0277\5"+
- "> \2\u0277\u0278\7\7\2\2\u0278\u027c\3\2\2\2\u0279\u027a\f\30\2\2\u027a"+
- "\u027c\t\2\2\2\u027b\u0241\3\2\2\2\u027b\u0244\3\2\2\2\u027b\u0247\3\2"+
- "\2\2\u027b\u024a\3\2\2\2\u027b\u024d\3\2\2\2\u027b\u0250\3\2\2\2\u027b"+
- "\u0253\3\2\2\2\u027b\u0256\3\2\2\2\u027b\u0259\3\2\2\2\u027b\u025c\3\2"+
- "\2\2\u027b\u0262\3\2\2\2\u027b\u0265\3\2\2\2\u027b\u0268\3\2\2\2\u027b"+
- "\u026b\3\2\2\2\u027b\u026e\3\2\2\2\u027b\u0274\3\2\2\2\u027b\u0279\3\2"+
- "\2\2\u027c\u027f\3\2\2\2\u027d\u027b\3\2\2\2\u027d\u027e\3\2\2\2\u027e"+
- "A\3\2\2\2\u027f\u027d\3\2\2\2\u0280\u0285\5@!\2\u0281\u0282\7\f\2\2\u0282"+
- "\u0284\5@!\2\u0283\u0281\3\2\2\2\u0284\u0287\3\2\2\2\u0285\u0283\3\2\2"+
- "\2\u0285\u0286\3\2\2\2\u0286C\3\2\2\2\u0287\u0285\3\2\2\2\u0288\u028a"+
- "\7S\2\2\u0289\u028b\5F$\2\u028a\u0289\3\2\2\2\u028a\u028b\3\2\2\2\u028b"+
- "\u028c\3\2\2\2\u028c\u028d\7]\2\2\u028dE\3\2\2\2\u028e\u028f\7\b\2\2\u028f"+
- "\u0294\5H%\2\u0290\u0291\7\f\2\2\u0291\u0293\5H%\2\u0292\u0290\3\2\2\2"+
- "\u0293\u0296\3\2\2\2\u0294\u0292\3\2\2\2\u0294\u0295\3\2\2\2\u0295\u0297"+
- "\3\2\2\2\u0296\u0294\3\2\2\2\u0297\u0298\7\t\2\2\u0298G\3\2\2\2\u0299"+
- "\u029a\7T\2\2\u029a\u02a9\7^\2\2\u029b\u029c\7U\2\2\u029c\u02a9\7i\2\2"+
- "\u029d\u029e\7V\2\2\u029e\u02a9\7^\2\2\u029f\u02a0\7W\2\2\u02a0\u02a9"+
- "\5@!\2\u02a1\u02a2\7X\2\2\u02a2\u02a9\5@!\2\u02a3\u02a6\7,\2\2\u02a4\u02a7"+
- "\7\67\2\2\u02a5\u02a7\5@!\2\u02a6\u02a4\3\2\2\2\u02a6\u02a5\3\2\2\2\u02a7"+
- "\u02a9\3\2\2\2\u02a8\u0299\3\2\2\2\u02a8\u029b\3\2\2\2\u02a8\u029d\3\2"+
- "\2\2\u02a8\u029f\3\2\2\2\u02a8\u02a1\3\2\2\2\u02a8\u02a3\3\2\2\2\u02a9"+
- "I\3\2\2\2\u02aa\u02ac\5L\'\2\u02ab\u02aa\3\2\2\2\u02ac\u02af\3\2\2\2\u02ad"+
- "\u02ab\3\2\2\2\u02ad\u02ae\3\2\2\2\u02aeK\3\2\2\2\u02af\u02ad\3\2\2\2"+
- "\u02b0\u02b4\5N(\2\u02b1\u02b4\5P)\2\u02b2\u02b4\5R*\2\u02b3\u02b0\3\2"+
- "\2\2\u02b3\u02b1\3\2\2\2\u02b3\u02b2\3\2\2\2\u02b4M\3\2\2\2\u02b5\u02b6"+
- "\7\u008d\2\2\u02b6\u02ba\7p\2\2\u02b7\u02b8\7\u008c\2\2\u02b8\u02ba\7"+
- "p\2\2\u02b9\u02b5\3\2\2\2\u02b9\u02b7\3\2\2\2\u02baO\3\2\2\2\u02bb\u02bd"+
- "\7n\2\2\u02bc\u02be\5T+\2\u02bd\u02bc\3\2\2\2\u02bd\u02be\3\2\2\2\u02be"+
- "Q\3\2\2\2\u02bf\u02c0\7m\2\2\u02c0\u02c5\5V,\2\u02c1\u02c2\7q\2\2\u02c2"+
- "\u02c4\5V,\2\u02c3\u02c1\3\2\2\2\u02c4\u02c7\3\2\2\2\u02c5\u02c3\3\2\2"+
- "\2\u02c5\u02c6\3\2\2\2\u02c6S\3\2\2\2\u02c7\u02c5\3\2\2\2\u02c8\u02e0"+
- "\5V,\2\u02c9\u02ca\7o\2\2\u02ca\u02e0\5V,\2\u02cb\u02cc\5V,\2\u02cc\u02cd"+
- "\7q\2\2\u02cd\u02ce\7\u008d\2\2\u02ce\u02e0\3\2\2\2\u02cf\u02d0\7r\2\2"+
- "\u02d0\u02d1\5V,\2\u02d1\u02d2\7s\2\2\u02d2\u02d3\7q\2\2\u02d3\u02d4\7"+
- "\u008d\2\2\u02d4\u02e0\3\2\2\2\u02d5\u02d6\7r\2\2\u02d6\u02d7\5V,\2\u02d7"+
- "\u02d8\7q\2\2\u02d8\u02d9\7\u008d\2\2\u02d9\u02da\7s\2\2\u02da\u02e0\3"+
- "\2\2\2\u02db\u02dc\7r\2\2\u02dc\u02dd\5V,\2\u02dd\u02de\7s\2\2\u02de\u02e0"+
- "\3\2\2\2\u02df\u02c8\3\2\2\2\u02df\u02c9\3\2\2\2\u02df\u02cb\3\2\2\2\u02df"+
- "\u02cf\3\2\2\2\u02df\u02d5\3\2\2\2\u02df\u02db\3\2\2\2\u02e0U\3\2\2\2"+
- "\u02e1\u02e2\b,\1\2\u02e2\u02e3\7t\2\2\u02e3\u02e4\5V,\2\u02e4\u02e5\7"+
- "u\2\2\u02e5\u02f0\3\2\2\2\u02e6\u02e7\t\t\2\2\u02e7\u02f0\5V,\n\u02e8"+
- "\u02f0\7\u008d\2\2\u02e9\u02f0\7\u008b\2\2\u02ea\u02eb\7\177\2\2\u02eb"+
- "\u02ec\7\u008d\2\2\u02ec\u02f0\7\u0080\2\2\u02ed\u02f0\7\u0081\2\2\u02ee"+
- "\u02f0\7\u008a\2\2\u02ef\u02e1\3\2\2\2\u02ef\u02e6\3\2\2\2\u02ef\u02e8"+
- "\3\2\2\2\u02ef\u02e9\3\2\2\2\u02ef\u02ea\3\2\2\2\u02ef\u02ed\3\2\2\2\u02ef"+
- "\u02ee\3\2\2\2\u02f0\u02ff\3\2\2\2\u02f1\u02f2\f\f\2\2\u02f2\u02f3\7v"+
- "\2\2\u02f3\u02fe\5V,\r\u02f4\u02f5\f\13\2\2\u02f5\u02f6\t\n\2\2\u02f6"+
- "\u02fe\5V,\f\u02f7\u02f8\f\t\2\2\u02f8\u02f9\t\13\2\2\u02f9\u02fe\5V,"+
- "\n\u02fa\u02fb\f\b\2\2\u02fb\u02fc\t\f\2\2\u02fc\u02fe\5V,\t\u02fd\u02f1"+
- "\3\2\2\2\u02fd\u02f4\3\2\2\2\u02fd\u02f7\3\2\2\2\u02fd\u02fa\3\2\2\2\u02fe"+
- "\u0301\3\2\2\2\u02ff\u02fd\3\2\2\2\u02ff\u0300\3\2\2\2\u0300W\3\2\2\2"+
- "\u0301\u02ff\3\2\2\2Gafz\u0084\u008b\u0099\u009f\u00a4\u00aa\u00af\u00b8"+
- "\u00bf\u00ca\u00fe\u0109\u011b\u0124\u0129\u012e\u0135\u0142\u0147\u0153"+
- "\u0161\u0174\u017d\u0184\u0189\u018e\u0190\u0196\u019d\u01a0\u01a8\u01ab"+
- "\u01ae\u01b8\u01bf\u01c6\u01cc\u01ce\u01d6\u01dc\u01e8\u01f6\u01fc\u0206"+
- "\u0212\u021a\u0231\u023b\u023f\u0271\u027b\u027d\u0285\u028a\u0294\u02a6"+
- "\u02a8\u02ad\u02b3\u02b9\u02bd\u02c5\u02df\u02ef\u02fd\u02ff";
+ "\3!\3!\3!\3!\3!\5!\u027f\n!\3!\3!\3!\3!\3!\3!\3!\3!\7!\u0289\n!\f!\16"+
+ "!\u028c\13!\3\"\3\"\3\"\7\"\u0291\n\"\f\"\16\"\u0294\13\"\3#\3#\5#\u0298"+
+ "\n#\3#\3#\3$\3$\3$\3$\7$\u02a0\n$\f$\16$\u02a3\13$\3$\3$\3%\3%\3%\3%\3"+
+ "%\3%\3%\3%\3%\3%\3%\3%\3%\5%\u02b4\n%\5%\u02b6\n%\3&\7&\u02b9\n&\f&\16"+
+ "&\u02bc\13&\3\'\3\'\3\'\5\'\u02c1\n\'\3(\3(\3(\3(\5(\u02c7\n(\3)\3)\5"+
+ ")\u02cb\n)\3*\3*\3*\3*\7*\u02d1\n*\f*\16*\u02d4\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+\u02ed\n+\3,\3,"+
+ "\3,\3,\3,\3,\3,\3,\3,\3,\3,\3,\3,\3,\5,\u02fd\n,\3,\3,\3,\3,\3,\3,\3,"+
+ "\3,\3,\3,\3,\3,\7,\u030b\n,\f,\16,\u030e\13,\3,\2\b\24.:>@V-\2\4\6\b\n"+
+ "\f\16\20\22\24\26\30\32\34\36 \"$&(*,.\60\62\64\668:<>@BDFHJLNPRTV\2\r"+
+ "\3\2\26\27\5\2\21\22\30\31YY\4\2 ##\3\2\34\35\3\2\23\25\3\2\21\22\3\2"+
+ "\36#\3\2y|\3\2wx\3\2}~\3\2yz\2\u0381\2X\3\2\2\2\4[\3\2\2\2\6a\3\2\2\2"+
+ "\bf\3\2\2\2\nh\3\2\2\2\fz\3\2\2\2\16|\3\2\2\2\20\u0084\3\2\2\2\22\u008e"+
+ "\3\2\2\2\24\u0091\3\2\2\2\26\u00a4\3\2\2\2\30\u00a6\3\2\2\2\32\u00b3\3"+
+ "\2\2\2\34\u00bf\3\2\2\2\36\u010b\3\2\2\2 \u0136\3\2\2\2\"\u0139\3\2\2"+
+ "\2$\u0191\3\2\2\2&\u0194\3\2\2\2(\u019f\3\2\2\2*\u01b5\3\2\2\2,\u01bb"+
+ "\3\2\2\2.\u01cc\3\2\2\2\60\u01de\3\2\2\2\62\u01e1\3\2\2\2\64\u01ed\3\2"+
+ "\2\2\66\u01f0\3\2\2\28\u01f3\3\2\2\2:\u01fb\3\2\2\2<\u0206\3\2\2\2>\u020b"+
+ "\3\2\2\2@\u024c\3\2\2\2B\u028d\3\2\2\2D\u0295\3\2\2\2F\u029b\3\2\2\2H"+
+ "\u02b5\3\2\2\2J\u02ba\3\2\2\2L\u02c0\3\2\2\2N\u02c6\3\2\2\2P\u02c8\3\2"+
+ "\2\2R\u02cc\3\2\2\2T\u02ec\3\2\2\2V\u02fc\3\2\2\2XY\5\6\4\2YZ\7\2\2\3"+
+ "Z\3\3\2\2\2[\\\5J&\2\\]\7\2\2\3]\5\3\2\2\2^`\5\b\5\2_^\3\2\2\2`c\3\2\2"+
+ "\2a_\3\2\2\2ab\3\2\2\2b\7\3\2\2\2ca\3\2\2\2dg\5\f\7\2eg\5\n\6\2fd\3\2"+
+ "\2\2fe\3\2\2\2g\t\3\2\2\2hi\7(\2\2ij\7^\2\2j\13\3\2\2\2kl\5\22\n\2lm\7"+
+ "\n\2\2m{\3\2\2\2no\5\62\32\2op\7\n\2\2p{\3\2\2\2qr\58\35\2rs\7\n\2\2s"+
+ "{\3\2\2\2t{\5\30\r\2u{\5D#\2v{\5\36\20\2wx\5\16\b\2xy\7\n\2\2y{\3\2\2"+
+ "\2zk\3\2\2\2zn\3\2\2\2zq\3\2\2\2zt\3\2\2\2zu\3\2\2\2zv\3\2\2\2zw\3\2\2"+
+ "\2{\r\3\2\2\2|}\7)\2\2}~\5.\30\2~\177\7i\2\2\177\u0080\b\b\1\2\u0080\17"+
+ "\3\2\2\2\u0081\u0083\5 \21\2\u0082\u0081\3\2\2\2\u0083\u0086\3\2\2\2\u0084"+
+ "\u0082\3\2\2\2\u0084\u0085\3\2\2\2\u0085\u0087\3\2\2\2\u0086\u0084\3\2"+
+ "\2\2\u0087\u008b\5.\30\2\u0088\u008a\5 \21\2\u0089\u0088\3\2\2\2\u008a"+
+ "\u008d\3\2\2\2\u008b\u0089\3\2\2\2\u008b\u008c\3\2\2\2\u008c\21\3\2\2"+
+ "\2\u008d\u008b\3\2\2\2\u008e\u008f\5\20\t\2\u008f\u0090\5\24\13\2\u0090"+
+ "\23\3\2\2\2\u0091\u0092\b\13\1\2\u0092\u0093\5\26\f\2\u0093\u0099\3\2"+
+ "\2\2\u0094\u0095\f\3\2\2\u0095\u0096\7\f\2\2\u0096\u0098\5\26\f\2\u0097"+
+ "\u0094\3\2\2\2\u0098\u009b\3\2\2\2\u0099\u0097\3\2\2\2\u0099\u009a\3\2"+
+ "\2\2\u009a\25\3\2\2\2\u009b\u0099\3\2\2\2\u009c\u009f\7i\2\2\u009d\u009e"+
+ "\7&\2\2\u009e\u00a0\5@!\2\u009f\u009d\3\2\2\2\u009f\u00a0\3\2\2\2\u00a0"+
+ "\u00a5\3\2\2\2\u00a1\u00a2\7i\2\2\u00a2\u00a3\7&\2\2\u00a3\u00a5\5D#\2"+
+ "\u00a4\u009c\3\2\2\2\u00a4\u00a1\3\2\2\2\u00a5\27\3\2\2\2\u00a6\u00a7"+
+ "\5\20\t\2\u00a7\u00a8\7i\2\2\u00a8\u00aa\7\b\2\2\u00a9\u00ab\5\32\16\2"+
+ "\u00aa\u00a9\3\2\2\2\u00aa\u00ab\3\2\2\2\u00ab\u00ac\3\2\2\2\u00ac\u00ad"+
+ "\7\t\2\2\u00ad\u00af\7\4\2\2\u00ae\u00b0\5\"\22\2\u00af\u00ae\3\2\2\2"+
+ "\u00af\u00b0\3\2\2\2\u00b0\u00b1\3\2\2\2\u00b1\u00b2\7\5\2\2\u00b2\31"+
+ "\3\2\2\2\u00b3\u00b8\5\34\17\2\u00b4\u00b5\7\f\2\2\u00b5\u00b7\5\34\17"+
+ "\2\u00b6\u00b4\3\2\2\2\u00b7\u00ba\3\2\2\2\u00b8\u00b6\3\2\2\2\u00b8\u00b9"+
+ "\3\2\2\2\u00b9\33\3\2\2\2\u00ba\u00b8\3\2\2\2\u00bb\u00bc\5\20\t\2\u00bc"+
+ "\u00bd\7i\2\2\u00bd\u00c0\3\2\2\2\u00be\u00c0\7[\2\2\u00bf\u00bb\3\2\2"+
+ "\2\u00bf\u00be\3\2\2\2\u00c0\35\3\2\2\2\u00c1\u00c2\7*\2\2\u00c2\u00c3"+
+ "\7+\2\2\u00c3\u00c4\3\2\2\2\u00c4\u00c5\7\b\2\2\u00c5\u00ca\7`\2\2\u00c6"+
+ "\u00c7\7\f\2\2\u00c7\u00c9\7`\2\2\u00c8\u00c6\3\2\2\2\u00c9\u00cc\3\2"+
+ "\2\2\u00ca\u00c8\3\2\2\2\u00ca\u00cb\3\2\2\2\u00cb\u00cd\3\2\2\2\u00cc"+
+ "\u00ca\3\2\2\2\u00cd\u010c\7\t\2\2\u00ce\u00cf\7*\2\2\u00cf\u00d0\7,\2"+
+ "\2\u00d0\u00d1\3\2\2\2\u00d1\u00d2\7\b\2\2\u00d2\u00d3\7`\2\2\u00d3\u010c"+
+ "\7\t\2\2\u00d4\u00d5\7*\2\2\u00d5\u00d6\7-\2\2\u00d6\u00d7\3\2\2\2\u00d7"+
+ "\u00d8\7\b\2\2\u00d8\u00d9\7i\2\2\u00d9\u010c\7\t\2\2\u00da\u00db\7*\2"+
+ "\2\u00db\u00dc\7/\2\2\u00dc\u00dd\3\2\2\2\u00dd\u00de\7\b\2\2\u00de\u00df"+
+ "\7i\2\2\u00df\u010c\7\t\2\2\u00e0\u00e1\7*\2\2\u00e1\u00e2\7.\2\2\u00e2"+
+ "\u00e3\3\2\2\2\u00e3\u00e4\7\b\2\2\u00e4\u00e5\7^\2\2\u00e5\u010c\7\t"+
+ "\2\2\u00e6\u00e7\7*\2\2\u00e7\u00e8\7\60\2\2\u00e8\u00e9\3\2\2\2\u00e9"+
+ "\u00ea\7\b\2\2\u00ea\u00eb\7i\2\2\u00eb\u010c\7\t\2\2\u00ec\u00ed\7*\2"+
+ "\2\u00ed\u00ee\7\61\2\2\u00ee\u00ef\3\2\2\2\u00ef\u00f0\7\b\2\2\u00f0"+
+ "\u00f1\7i\2\2\u00f1\u010c\7\t\2\2\u00f2\u00f3\7*\2\2\u00f3\u00f4\7\62"+
+ "\2\2\u00f4\u00f5\3\2\2\2\u00f5\u00f6\7\b\2\2\u00f6\u00f7\7i\2\2\u00f7"+
+ "\u010c\7\t\2\2\u00f8\u00f9\7*\2\2\u00f9\u00fa\7@\2\2\u00fa\u00fb\3\2\2"+
+ "\2\u00fb\u00fc\7\b\2\2\u00fc\u00fd\7A\2\2\u00fd\u010c\7\t\2\2\u00fe\u00ff"+
+ "\7*\2\2\u00ff\u0100\7B\2\2\u0100\u0101\3\2\2\2\u0101\u0102\7\b\2\2\u0102"+
+ "\u0107\7i\2\2\u0103\u0104\7\f\2\2\u0104\u0106\7i\2\2\u0105\u0103\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\u010c\7\t\2\2\u010b\u00c1\3\2\2\2\u010b"+
+ "\u00ce\3\2\2\2\u010b\u00d4\3\2\2\2\u010b\u00da\3\2\2\2\u010b\u00e0\3\2"+
+ "\2\2\u010b\u00e6\3\2\2\2\u010b\u00ec\3\2\2\2\u010b\u00f2\3\2\2\2\u010b"+
+ "\u00f8\3\2\2\2\u010b\u00fe\3\2\2\2\u010c\37\3\2\2\2\u010d\u0137\7\63\2"+
+ "\2\u010e\u010f\7\66\2\2\u010f\u0110\7\b\2\2\u0110\u0111\7`\2\2\u0111\u0137"+
+ "\7\t\2\2\u0112\u0116\7:\2\2\u0113\u0114\7\b\2\2\u0114\u0115\7i\2\2\u0115"+
+ "\u0117\7\t\2\2\u0116\u0113\3\2\2\2\u0116\u0117\3\2\2\2\u0117\u0137\3\2"+
+ "\2\2\u0118\u0137\7<\2\2\u0119\u0137\7=\2\2\u011a\u011b\7;\2\2\u011b\u011c"+
+ "\7\b\2\2\u011c\u011d\7`\2\2\u011d\u0137\7\t\2\2\u011e\u0137\78\2\2\u011f"+
+ "\u0137\7>\2\2\u0120\u0137\7?\2\2\u0121\u0137\7\64\2\2\u0122\u0137\7\65"+
+ "\2\2\u0123\u0137\7\67\2\2\u0124\u0128\79\2\2\u0125\u0126\7\b\2\2\u0126"+
+ "\u0127\7i\2\2\u0127\u0129\7\t\2\2\u0128\u0125\3\2\2\2\u0128\u0129\3\2"+
+ "\2\2\u0129\u0137\3\2\2\2\u012a\u012b\7+\2\2\u012b\u012c\7\b\2\2\u012c"+
+ "\u0131\7`\2\2\u012d\u012e\7\f\2\2\u012e\u0130\7`\2\2\u012f\u012d\3\2\2"+
+ "\2\u0130\u0133\3\2\2\2\u0131\u012f\3\2\2\2\u0131\u0132\3\2\2\2\u0132\u0134"+
+ "\3\2\2\2\u0133\u0131\3\2\2\2\u0134\u0137\7\t\2\2\u0135\u0137\7A\2\2\u0136"+
+ "\u010d\3\2\2\2\u0136\u010e\3\2\2\2\u0136\u0112\3\2\2\2\u0136\u0118\3\2"+
+ "\2\2\u0136\u0119\3\2\2\2\u0136\u011a\3\2\2\2\u0136\u011e\3\2\2\2\u0136"+
+ "\u011f\3\2\2\2\u0136\u0120\3\2\2\2\u0136\u0121\3\2\2\2\u0136\u0122\3\2"+
+ "\2\2\u0136\u0123\3\2\2\2\u0136\u0124\3\2\2\2\u0136\u012a\3\2\2\2\u0136"+
+ "\u0135\3\2\2\2\u0137!\3\2\2\2\u0138\u013a\5$\23\2\u0139\u0138\3\2\2\2"+
+ "\u013a\u013b\3\2\2\2\u013b\u0139\3\2\2\2\u013b\u013c\3\2\2\2\u013c#\3"+
+ "\2\2\2\u013d\u013e\5\22\n\2\u013e\u013f\7\n\2\2\u013f\u0192\3\2\2\2\u0140"+
+ "\u0142\7\4\2\2\u0141\u0143\5\"\22\2\u0142\u0141\3\2\2\2\u0142\u0143\3"+
+ "\2\2\2\u0143\u0144\3\2\2\2\u0144\u0192\7\5\2\2\u0145\u0146\5> \2\u0146"+
+ "\u0147\7\n\2\2\u0147\u0192\3\2\2\2\u0148\u0149\7C\2\2\u0149\u014a\7\b"+
+ "\2\2\u014a\u014b\5> \2\u014b\u014c\7\t\2\2\u014c\u014f\5$\23\2\u014d\u014e"+
+ "\7D\2\2\u014e\u0150\5$\23\2\u014f\u014d\3\2\2\2\u014f\u0150\3\2\2\2\u0150"+
+ "\u0192\3\2\2\2\u0151\u0153\5 \21\2\u0152\u0151\3\2\2\2\u0153\u0156\3\2"+
+ "\2\2\u0154\u0152\3\2\2\2\u0154\u0155\3\2\2\2\u0155\u0157\3\2\2\2\u0156"+
+ "\u0154\3\2\2\2\u0157\u0158\7E\2\2\u0158\u0159\7\b\2\2\u0159\u015a\5> "+
+ "\2\u015a\u015b\7\t\2\2\u015b\u015c\5$\23\2\u015c\u0192\3\2\2\2\u015d\u015f"+
+ "\5 \21\2\u015e\u015d\3\2\2\2\u015f\u0162\3\2\2\2\u0160\u015e\3\2\2\2\u0160"+
+ "\u0161\3\2\2\2\u0161\u0163\3\2\2\2\u0162\u0160\3\2\2\2\u0163\u0164\7F"+
+ "\2\2\u0164\u0165\5$\23\2\u0165\u0166\7E\2\2\u0166\u0167\7\b\2\2\u0167"+
+ "\u0168\5> \2\u0168\u0169\7\t\2\2\u0169\u016a\7\n\2\2\u016a\u0192\3\2\2"+
+ "\2\u016b\u016d\5 \21\2\u016c\u016b\3\2\2\2\u016d\u0170\3\2\2\2\u016e\u016c"+
+ "\3\2\2\2\u016e\u016f\3\2\2\2\u016f\u0171\3\2\2\2\u0170\u016e\3\2\2\2\u0171"+
+ "\u0172\7G\2\2\u0172\u0173\7\b\2\2\u0173\u0174\5*\26\2\u0174\u0175\7\t"+
+ "\2\2\u0175\u0176\5$\23\2\u0176\u0192\3\2\2\2\u0177\u0178\7H\2\2\u0178"+
+ "\u0179\7\b\2\2\u0179\u017a\5> \2\u017a\u017b\7\t\2\2\u017b\u017c\7\4\2"+
+ "\2\u017c\u017d\5&\24\2\u017d\u017e\7\5\2\2\u017e\u0192\3\2\2\2\u017f\u0181"+
+ "\7I\2\2\u0180\u0182\5> \2\u0181\u0180\3\2\2\2\u0181\u0182\3\2\2\2\u0182"+
+ "\u0183\3\2\2\2\u0183\u0192\7\n\2\2\u0184\u0185\7J\2\2\u0185\u0192\7\n"+
+ "\2\2\u0186\u0187\7K\2\2\u0187\u0192\7\n\2\2\u0188\u018a\7L\2\2\u0189\u018b"+
+ "\5F$\2\u018a\u0189\3\2\2\2\u018a\u018b\3\2\2\2\u018b\u018c\3\2\2\2\u018c"+
+ "\u018d\7\4\2\2\u018d\u018e\5J&\2\u018e\u018f\7\u0080\2\2\u018f\u0192\3"+
+ "\2\2\2\u0190\u0192\5D#\2\u0191\u013d\3\2\2\2\u0191\u0140\3\2\2\2\u0191"+
+ "\u0145\3\2\2\2\u0191\u0148\3\2\2\2\u0191\u0154\3\2\2\2\u0191\u0160\3\2"+
+ "\2\2\u0191\u016e\3\2\2\2\u0191\u0177\3\2\2\2\u0191\u017f\3\2\2\2\u0191"+
+ "\u0184\3\2\2\2\u0191\u0186\3\2\2\2\u0191\u0188\3\2\2\2\u0191\u0190\3\2"+
+ "\2\2\u0192%\3\2\2\2\u0193\u0195\5(\25\2\u0194\u0193\3\2\2\2\u0195\u0196"+
+ "\3\2\2\2\u0196\u0194\3\2\2\2\u0196\u0197\3\2\2\2\u0197\u019d\3\2\2\2\u0198"+
+ "\u0199\7M\2\2\u0199\u019b\7\13\2\2\u019a\u019c\5\"\22\2\u019b\u019a\3"+
+ "\2\2\2\u019b\u019c\3\2\2\2\u019c\u019e\3\2\2\2\u019d\u0198\3\2\2\2\u019d"+
+ "\u019e\3\2\2\2\u019e\'\3\2\2\2\u019f\u01a0\7N\2\2\u01a0\u01a1\5@!\2\u01a1"+
+ "\u01a3\7\13\2\2\u01a2\u01a4\5\"\22\2\u01a3\u01a2\3\2\2\2\u01a3\u01a4\3"+
+ "\2\2\2\u01a4)\3\2\2\2\u01a5\u01a6\5,\27\2\u01a6\u01a7\7\n\2\2\u01a7\u01a8"+
+ "\5> \2\u01a8\u01aa\7\n\2\2\u01a9\u01ab\5> \2\u01aa\u01a9\3\2\2\2\u01aa"+
+ "\u01ab\3\2\2\2\u01ab\u01b6\3\2\2\2\u01ac\u01ae\5\20\t\2\u01ad\u01ac\3"+
+ "\2\2\2\u01ad\u01ae\3\2\2\2\u01ae\u01af\3\2\2\2\u01af\u01b0\7i\2\2\u01b0"+
+ "\u01b1\7\13\2\2\u01b1\u01b2\5@!\2\u01b2\u01b3\7\r\2\2\u01b3\u01b4\5@!"+
+ "\2\u01b4\u01b6\3\2\2\2\u01b5\u01a5\3\2\2\2\u01b5\u01ad\3\2\2\2\u01b6+"+
+ "\3\2\2\2\u01b7\u01b9\5\22\n\2\u01b8\u01b7\3\2\2\2\u01b8\u01b9\3\2\2\2"+
+ "\u01b9\u01bc\3\2\2\2\u01ba\u01bc\5> \2\u01bb\u01b8\3\2\2\2\u01bb\u01ba"+
+ "\3\2\2\2\u01bc-\3\2\2\2\u01bd\u01be\b\30\1\2\u01be\u01bf\7\b\2\2\u01bf"+
+ "\u01c0\5.\30\2\u01c0\u01c1\7\t\2\2\u01c1\u01cd\3\2\2\2\u01c2\u01cd\7["+
+ "\2\2\u01c3\u01c5\7Z\2\2\u01c4\u01c6\7[\2\2\u01c5\u01c4\3\2\2\2\u01c5\u01c6"+
+ "\3\2\2\2\u01c6\u01cd\3\2\2\2\u01c7\u01cd\5\62\32\2\u01c8\u01cd\5\60\31"+
+ "\2\u01c9\u01cd\58\35\2\u01ca\u01cd\5\66\34\2\u01cb\u01cd\7\3\2\2\u01cc"+
+ "\u01bd\3\2\2\2\u01cc\u01c2\3\2\2\2\u01cc\u01c3\3\2\2\2\u01cc\u01c7\3\2"+
+ "\2\2\u01cc\u01c8\3\2\2\2\u01cc\u01c9\3\2\2\2\u01cc\u01ca\3\2\2\2\u01cc"+
+ "\u01cb\3\2\2\2\u01cd\u01db\3\2\2\2\u01ce\u01cf\f\n\2\2\u01cf\u01da\7\23"+
+ "\2\2\u01d0\u01d1\f\t\2\2\u01d1\u01d3\7\6\2\2\u01d2\u01d4\5@!\2\u01d3\u01d2"+
+ "\3\2\2\2\u01d3\u01d4\3\2\2\2\u01d4\u01d5\3\2\2\2\u01d5\u01da\7\7\2\2\u01d6"+
+ "\u01d7\f\b\2\2\u01d7\u01d8\7\b\2\2\u01d8\u01da\7\t\2\2\u01d9\u01ce\3\2"+
+ "\2\2\u01d9\u01d0\3\2\2\2\u01d9\u01d6\3\2\2\2\u01da\u01dd\3\2\2\2\u01db"+
+ "\u01d9\3\2\2\2\u01db\u01dc\3\2\2\2\u01dc/\3\2\2\2\u01dd\u01db\3\2\2\2"+
+ "\u01de\u01df\7O\2\2\u01df\u01e0\7i\2\2\u01e0\61\3\2\2\2\u01e1\u01e3\7"+
+ "O\2\2\u01e2\u01e4\7i\2\2\u01e3\u01e2\3\2\2\2\u01e3\u01e4\3\2\2\2\u01e4"+
+ "\u01e5\3\2\2\2\u01e5\u01e7\7\4\2\2\u01e6\u01e8\5\64\33\2\u01e7\u01e6\3"+
+ "\2\2\2\u01e8\u01e9\3\2\2\2\u01e9\u01e7\3\2\2\2\u01e9\u01ea\3\2\2\2\u01ea"+
+ "\u01eb\3\2\2\2\u01eb\u01ec\7\5\2\2\u01ec\63\3\2\2\2\u01ed\u01ee\5\22\n"+
+ "\2\u01ee\u01ef\7\n\2\2\u01ef\65\3\2\2\2\u01f0\u01f1\7P\2\2\u01f1\u01f2"+
+ "\7i\2\2\u01f2\67\3\2\2\2\u01f3\u01f5\7P\2\2\u01f4\u01f6\7i\2\2\u01f5\u01f4"+
+ "\3\2\2\2\u01f5\u01f6\3\2\2\2\u01f6\u01f7\3\2\2\2\u01f7\u01f8\7\4\2\2\u01f8"+
+ "\u01f9\5:\36\2\u01f9\u01fa\7\5\2\2\u01fa9\3\2\2\2\u01fb\u01fc\b\36\1\2"+
+ "\u01fc\u01fd\5<\37\2\u01fd\u0203\3\2\2\2\u01fe\u01ff\f\3\2\2\u01ff\u0200"+
+ "\7\f\2\2\u0200\u0202\5<\37\2\u0201\u01fe\3\2\2\2\u0202\u0205\3\2\2\2\u0203"+
+ "\u0201\3\2\2\2\u0203\u0204\3\2\2\2\u0204;\3\2\2\2\u0205\u0203\3\2\2\2"+
+ "\u0206\u0209\7i\2\2\u0207\u0208\7&\2\2\u0208\u020a\5@!\2\u0209\u0207\3"+
+ "\2\2\2\u0209\u020a\3\2\2\2\u020a=\3\2\2\2\u020b\u020c\b \1\2\u020c\u020d"+
+ "\5@!\2\u020d\u0213\3\2\2\2\u020e\u020f\f\3\2\2\u020f\u0210\7\f\2\2\u0210"+
+ "\u0212\5@!\2\u0211\u020e\3\2\2\2\u0212\u0215\3\2\2\2\u0213\u0211\3\2\2"+
+ "\2\u0213\u0214\3\2\2\2\u0214?\3\2\2\2\u0215\u0213\3\2\2\2\u0216\u0217"+
+ "\b!\1\2\u0217\u0218\7\b\2\2\u0218\u0219\5> \2\u0219\u021a\7\t\2\2\u021a"+
+ "\u024d\3\2\2\2\u021b\u021c\7Q\2\2\u021c\u021f\7\b\2\2\u021d\u0220\5@!"+
+ "\2\u021e\u0220\5.\30\2\u021f\u021d\3\2\2\2\u021f\u021e\3\2\2\2\u0220\u0221"+
+ "\3\2\2\2\u0221\u0222\7\t\2\2\u0222\u024d\3\2\2\2\u0223\u0224\7R\2\2\u0224"+
+ "\u0227\7\b\2\2\u0225\u0228\5@!\2\u0226\u0228\5.\30\2\u0227\u0225\3\2\2"+
+ "\2\u0227\u0226\3\2\2\2\u0228\u0229\3\2\2\2\u0229\u022a\7\t\2\2\u022a\u024d"+
+ "\3\2\2\2\u022b\u022c\7\b\2\2\u022c\u022d\5.\30\2\u022d\u022e\7\t\2\2\u022e"+
+ "\u022f\5@!\32\u022f\u024d\3\2\2\2\u0230\u0231\t\2\2\2\u0231\u024d\5@!"+
+ "\31\u0232\u0233\7\23\2\2\u0233\u024d\5@!\27\u0234\u0235\t\3\2\2\u0235"+
+ "\u024d\5@!\26\u0236\u0237\t\4\2\2\u0237\u024d\5@!\22\u0238\u0239\7\4\2"+
+ "\2\u0239\u023e\5@!\2\u023a\u023b\7\f\2\2\u023b\u023d\5@!\2\u023c\u023a"+
+ "\3\2\2\2\u023d\u0240\3\2\2\2\u023e\u023c\3\2\2\2\u023e\u023f\3\2\2\2\u023f"+
+ "\u0241\3\2\2\2\u0240\u023e\3\2\2\2\u0241\u0242\7\5\2\2\u0242\u024d\3\2"+
+ "\2\2\u0243\u024d\7i\2\2\u0244\u024d\7`\2\2\u0245\u0247\7^\2\2\u0246\u0245"+
+ "\3\2\2\2\u0247\u0248\3\2\2\2\u0248\u0246\3\2\2\2\u0248\u0249\3\2\2\2\u0249"+
+ "\u024d\3\2\2\2\u024a\u024d\7_\2\2\u024b\u024d\7\\\2\2\u024c\u0216\3\2"+
+ "\2\2\u024c\u021b\3\2\2\2\u024c\u0223\3\2\2\2\u024c\u022b\3\2\2\2\u024c"+
+ "\u0230\3\2\2\2\u024c\u0232\3\2\2\2\u024c\u0234\3\2\2\2\u024c\u0236\3\2"+
+ "\2\2\u024c\u0238\3\2\2\2\u024c\u0243\3\2\2\2\u024c\u0244\3\2\2\2\u024c"+
+ "\u0246\3\2\2\2\u024c\u024a\3\2\2\2\u024c\u024b\3\2\2\2\u024d\u028a\3\2"+
+ "\2\2\u024e\u024f\f\25\2\2\u024f\u0250\t\5\2\2\u0250\u0289\5@!\26\u0251"+
+ "\u0252\f\24\2\2\u0252\u0253\t\6\2\2\u0253\u0289\5@!\25\u0254\u0255\f\23"+
+ "\2\2\u0255\u0256\t\7\2\2\u0256\u0289\5@!\24\u0257\u0258\f\21\2\2\u0258"+
+ "\u0259\t\b\2\2\u0259\u0289\5@!\22\u025a\u025b\f\20\2\2\u025b\u025c\7\30"+
+ "\2\2\u025c\u0289\5@!\21\u025d\u025e\f\17\2\2\u025e\u025f\7\32\2\2\u025f"+
+ "\u0289\5@!\20\u0260\u0261\f\16\2\2\u0261\u0262\7\33\2\2\u0262\u0289\5"+
+ "@!\17\u0263\u0264\f\r\2\2\u0264\u0265\7$\2\2\u0265\u0289\5@!\16\u0266"+
+ "\u0267\f\f\2\2\u0267\u0268\7%\2\2\u0268\u0289\5@!\r\u0269\u026a\f\13\2"+
+ "\2\u026a\u026b\7\16\2\2\u026b\u026c\5@!\2\u026c\u026d\7\13\2\2\u026d\u026e"+
+ "\5@!\f\u026e\u0289\3\2\2\2\u026f\u0270\f\n\2\2\u0270\u0271\7&\2\2\u0271"+
+ "\u0289\5@!\n\u0272\u0273\f\t\2\2\u0273\u0274\7\'\2\2\u0274\u0289\5@!\t"+
+ "\u0275\u0276\f \2\2\u0276\u0277\7\17\2\2\u0277\u0289\7i\2\2\u0278\u0279"+
+ "\f\37\2\2\u0279\u027a\7\20\2\2\u027a\u0289\7i\2\2\u027b\u027c\f\36\2\2"+
+ "\u027c\u027e\7\b\2\2\u027d\u027f\5B\"\2\u027e\u027d\3\2\2\2\u027e\u027f"+
+ "\3\2\2\2\u027f\u0280\3\2\2\2\u0280\u0289\7\t\2\2\u0281\u0282\f\33\2\2"+
+ "\u0282\u0283\7\6\2\2\u0283\u0284\5> \2\u0284\u0285\7\7\2\2\u0285\u0289"+
+ "\3\2\2\2\u0286\u0287\f\30\2\2\u0287\u0289\t\2\2\2\u0288\u024e\3\2\2\2"+
+ "\u0288\u0251\3\2\2\2\u0288\u0254\3\2\2\2\u0288\u0257\3\2\2\2\u0288\u025a"+
+ "\3\2\2\2\u0288\u025d\3\2\2\2\u0288\u0260\3\2\2\2\u0288\u0263\3\2\2\2\u0288"+
+ "\u0266\3\2\2\2\u0288\u0269\3\2\2\2\u0288\u026f\3\2\2\2\u0288\u0272\3\2"+
+ "\2\2\u0288\u0275\3\2\2\2\u0288\u0278\3\2\2\2\u0288\u027b\3\2\2\2\u0288"+
+ "\u0281\3\2\2\2\u0288\u0286\3\2\2\2\u0289\u028c\3\2\2\2\u028a\u0288\3\2"+
+ "\2\2\u028a\u028b\3\2\2\2\u028bA\3\2\2\2\u028c\u028a\3\2\2\2\u028d\u0292"+
+ "\5@!\2\u028e\u028f\7\f\2\2\u028f\u0291\5@!\2\u0290\u028e\3\2\2\2\u0291"+
+ "\u0294\3\2\2\2\u0292\u0290\3\2\2\2\u0292\u0293\3\2\2\2\u0293C\3\2\2\2"+
+ "\u0294\u0292\3\2\2\2\u0295\u0297\7S\2\2\u0296\u0298\5F$\2\u0297\u0296"+
+ "\3\2\2\2\u0297\u0298\3\2\2\2\u0298\u0299\3\2\2\2\u0299\u029a\7]\2\2\u029a"+
+ "E\3\2\2\2\u029b\u029c\7\b\2\2\u029c\u02a1\5H%\2\u029d\u029e\7\f\2\2\u029e"+
+ "\u02a0\5H%\2\u029f\u029d\3\2\2\2\u02a0\u02a3\3\2\2\2\u02a1\u029f\3\2\2"+
+ "\2\u02a1\u02a2\3\2\2\2\u02a2\u02a4\3\2\2\2\u02a3\u02a1\3\2\2\2\u02a4\u02a5"+
+ "\7\t\2\2\u02a5G\3\2\2\2\u02a6\u02a7\7T\2\2\u02a7\u02b6\7^\2\2\u02a8\u02a9"+
+ "\7U\2\2\u02a9\u02b6\7i\2\2\u02aa\u02ab\7V\2\2\u02ab\u02b6\7^\2\2\u02ac"+
+ "\u02ad\7W\2\2\u02ad\u02b6\5@!\2\u02ae\u02af\7X\2\2\u02af\u02b6\5@!\2\u02b0"+
+ "\u02b3\7,\2\2\u02b1\u02b4\7\67\2\2\u02b2\u02b4\5@!\2\u02b3\u02b1\3\2\2"+
+ "\2\u02b3\u02b2\3\2\2\2\u02b4\u02b6\3\2\2\2\u02b5\u02a6\3\2\2\2\u02b5\u02a8"+
+ "\3\2\2\2\u02b5\u02aa\3\2\2\2\u02b5\u02ac\3\2\2\2\u02b5\u02ae\3\2\2\2\u02b5"+
+ "\u02b0\3\2\2\2\u02b6I\3\2\2\2\u02b7\u02b9\5L\'\2\u02b8\u02b7\3\2\2\2\u02b9"+
+ "\u02bc\3\2\2\2\u02ba\u02b8\3\2\2\2\u02ba\u02bb\3\2\2\2\u02bbK\3\2\2\2"+
+ "\u02bc\u02ba\3\2\2\2\u02bd\u02c1\5N(\2\u02be\u02c1\5P)\2\u02bf\u02c1\5"+
+ "R*\2\u02c0\u02bd\3\2\2\2\u02c0\u02be\3\2\2\2\u02c0\u02bf\3\2\2\2\u02c1"+
+ "M\3\2\2\2\u02c2\u02c3\7\u008d\2\2\u02c3\u02c7\7p\2\2\u02c4\u02c5\7\u008c"+
+ "\2\2\u02c5\u02c7\7p\2\2\u02c6\u02c2\3\2\2\2\u02c6\u02c4\3\2\2\2\u02c7"+
+ "O\3\2\2\2\u02c8\u02ca\7n\2\2\u02c9\u02cb\5T+\2\u02ca\u02c9\3\2\2\2\u02ca"+
+ "\u02cb\3\2\2\2\u02cbQ\3\2\2\2\u02cc\u02cd\7m\2\2\u02cd\u02d2\5V,\2\u02ce"+
+ "\u02cf\7q\2\2\u02cf\u02d1\5V,\2\u02d0\u02ce\3\2\2\2\u02d1\u02d4\3\2\2"+
+ "\2\u02d2\u02d0\3\2\2\2\u02d2\u02d3\3\2\2\2\u02d3S\3\2\2\2\u02d4\u02d2"+
+ "\3\2\2\2\u02d5\u02ed\5V,\2\u02d6\u02d7\7o\2\2\u02d7\u02ed\5V,\2\u02d8"+
+ "\u02d9\5V,\2\u02d9\u02da\7q\2\2\u02da\u02db\7\u008d\2\2\u02db\u02ed\3"+
+ "\2\2\2\u02dc\u02dd\7r\2\2\u02dd\u02de\5V,\2\u02de\u02df\7s\2\2\u02df\u02e0"+
+ "\7q\2\2\u02e0\u02e1\7\u008d\2\2\u02e1\u02ed\3\2\2\2\u02e2\u02e3\7r\2\2"+
+ "\u02e3\u02e4\5V,\2\u02e4\u02e5\7q\2\2\u02e5\u02e6\7\u008d\2\2\u02e6\u02e7"+
+ "\7s\2\2\u02e7\u02ed\3\2\2\2\u02e8\u02e9\7r\2\2\u02e9\u02ea\5V,\2\u02ea"+
+ "\u02eb\7s\2\2\u02eb\u02ed\3\2\2\2\u02ec\u02d5\3\2\2\2\u02ec\u02d6\3\2"+
+ "\2\2\u02ec\u02d8\3\2\2\2\u02ec\u02dc\3\2\2\2\u02ec\u02e2\3\2\2\2\u02ec"+
+ "\u02e8\3\2\2\2\u02edU\3\2\2\2\u02ee\u02ef\b,\1\2\u02ef\u02f0\7t\2\2\u02f0"+
+ "\u02f1\5V,\2\u02f1\u02f2\7u\2\2\u02f2\u02fd\3\2\2\2\u02f3\u02f4\t\t\2"+
+ "\2\u02f4\u02fd\5V,\n\u02f5\u02fd\7\u008d\2\2\u02f6\u02fd\7\u008b\2\2\u02f7"+
+ "\u02f8\7\177\2\2\u02f8\u02f9\7\u008d\2\2\u02f9\u02fd\7\u0080\2\2\u02fa"+
+ "\u02fd\7\u0081\2\2\u02fb\u02fd\7\u008a\2\2\u02fc\u02ee\3\2\2\2\u02fc\u02f3"+
+ "\3\2\2\2\u02fc\u02f5\3\2\2\2\u02fc\u02f6\3\2\2\2\u02fc\u02f7\3\2\2\2\u02fc"+
+ "\u02fa\3\2\2\2\u02fc\u02fb\3\2\2\2\u02fd\u030c\3\2\2\2\u02fe\u02ff\f\f"+
+ "\2\2\u02ff\u0300\7v\2\2\u0300\u030b\5V,\r\u0301\u0302\f\13\2\2\u0302\u0303"+
+ "\t\n\2\2\u0303\u030b\5V,\f\u0304\u0305\f\t\2\2\u0305\u0306\t\13\2\2\u0306"+
+ "\u030b\5V,\n\u0307\u0308\f\b\2\2\u0308\u0309\t\f\2\2\u0309\u030b\5V,\t"+
+ "\u030a\u02fe\3\2\2\2\u030a\u0301\3\2\2\2\u030a\u0304\3\2\2\2\u030a\u0307"+
+ "\3\2\2\2\u030b\u030e\3\2\2\2\u030c\u030a\3\2\2\2\u030c\u030d\3\2\2\2\u030d"+
+ "W\3\2\2\2\u030e\u030c\3\2\2\2Hafz\u0084\u008b\u0099\u009f\u00a4\u00aa"+
+ "\u00af\u00b8\u00bf\u00ca\u0107\u010b\u0116\u0128\u0131\u0136\u013b\u0142"+
+ "\u014f\u0154\u0160\u016e\u0181\u018a\u0191\u0196\u019b\u019d\u01a3\u01aa"+
+ "\u01ad\u01b5\u01b8\u01bb\u01c5\u01cc\u01d3\u01d9\u01db\u01e3\u01e9\u01f5"+
+ "\u0203\u0209\u0213\u021f\u0227\u023e\u0248\u024c\u027e\u0288\u028a\u0292"+
+ "\u0297\u02a1\u02b3\u02b5\u02ba\u02c0\u02c6\u02ca\u02d2\u02ec\u02fc\u030a"+
+ "\u030c";
public static final ATN _ATN =
new ATNDeserializer().deserialize(_serializedATN.toCharArray());
static {
diff --git a/src/main/java/dk/camelot64/kickc/parser/KickCParser.tokens b/src/main/java/dk/camelot64/kickc/parser/KickCParser.tokens
index c6924f1b4..2b0c09ad4 100644
--- a/src/main/java/dk/camelot64/kickc/parser/KickCParser.tokens
+++ b/src/main/java/dk/camelot64/kickc/parser/KickCParser.tokens
@@ -57,11 +57,11 @@ REGISTER=56
ADDRESS=57
ADDRESS_ZEROPAGE=58
ADDRESS_MAINMEM=59
-NOTCONST=60
-FORM_SSA=61
-FORM_MA=62
-CALLING=63
-CALLINGCONVENTION=64
+FORM_SSA=60
+FORM_MA=61
+CALLING=62
+CALLINGCONVENTION=63
+VARMODEL=64
IF=65
ELSE=66
WHILE=67
@@ -180,10 +180,10 @@ ASM_COMMENT_BLOCK=142
'__address'=57
'__zp'=58
'__mem'=59
-'__notconst'=60
-'__ssa'=61
-'__ma'=62
-'calling'=63
+'__ssa'=60
+'__ma'=61
+'calling'=62
+'var_model'=64
'if'=65
'else'=66
'while'=67
diff --git a/src/main/java/dk/camelot64/kickc/parser/KickCParserBaseListener.java b/src/main/java/dk/camelot64/kickc/parser/KickCParserBaseListener.java
index 35429b5e7..a96ce9c69 100644
--- a/src/main/java/dk/camelot64/kickc/parser/KickCParserBaseListener.java
+++ b/src/main/java/dk/camelot64/kickc/parser/KickCParserBaseListener.java
@@ -313,6 +313,18 @@ public class KickCParserBaseListener implements KickCParserListener {
* The default implementation does nothing.
*/
@Override public void exitGlobalDirectiveCalling(KickCParser.GlobalDirectiveCallingContext ctx) { }
+ /**
+ * {@inheritDoc}
+ *
+ * The default implementation does nothing.
+ */
+ @Override public void enterGlobalDirectiveVarModel(KickCParser.GlobalDirectiveVarModelContext ctx) { }
+ /**
+ * {@inheritDoc}
+ *
+ * The default implementation does nothing.
+ */
+ @Override public void exitGlobalDirectiveVarModel(KickCParser.GlobalDirectiveVarModelContext ctx) { }
/**
* {@inheritDoc}
*
diff --git a/src/main/java/dk/camelot64/kickc/parser/KickCParserBaseVisitor.java b/src/main/java/dk/camelot64/kickc/parser/KickCParserBaseVisitor.java
index 5c017c5ef..8970b9ee9 100644
--- a/src/main/java/dk/camelot64/kickc/parser/KickCParserBaseVisitor.java
+++ b/src/main/java/dk/camelot64/kickc/parser/KickCParserBaseVisitor.java
@@ -188,6 +188,13 @@ public class KickCParserBaseVisitor extends AbstractParseTreeVisitor imple
* {@link #visitChildren} on {@code ctx}.
*/
@Override public T visitGlobalDirectiveCalling(KickCParser.GlobalDirectiveCallingContext ctx) { return visitChildren(ctx); }
+ /**
+ * {@inheritDoc}
+ *
+ * The default implementation returns the result of calling
+ * {@link #visitChildren} on {@code ctx}.
+ */
+ @Override public T visitGlobalDirectiveVarModel(KickCParser.GlobalDirectiveVarModelContext ctx) { return visitChildren(ctx); }
/**
* {@inheritDoc}
*
diff --git a/src/main/java/dk/camelot64/kickc/parser/KickCParserListener.java b/src/main/java/dk/camelot64/kickc/parser/KickCParserListener.java
index c5db52da5..cf0145010 100644
--- a/src/main/java/dk/camelot64/kickc/parser/KickCParserListener.java
+++ b/src/main/java/dk/camelot64/kickc/parser/KickCParserListener.java
@@ -285,6 +285,18 @@ public interface KickCParserListener extends ParseTreeListener {
* @param ctx the parse tree
*/
void exitGlobalDirectiveCalling(KickCParser.GlobalDirectiveCallingContext ctx);
+ /**
+ * Enter a parse tree produced by the {@code globalDirectiveVarModel}
+ * labeled alternative in {@link KickCParser#globalDirective}.
+ * @param ctx the parse tree
+ */
+ void enterGlobalDirectiveVarModel(KickCParser.GlobalDirectiveVarModelContext ctx);
+ /**
+ * Exit a parse tree produced by the {@code globalDirectiveVarModel}
+ * labeled alternative in {@link KickCParser#globalDirective}.
+ * @param ctx the parse tree
+ */
+ void exitGlobalDirectiveVarModel(KickCParser.GlobalDirectiveVarModelContext ctx);
/**
* Enter a parse tree produced by the {@code directiveConst}
* labeled alternative in {@link KickCParser#directive}.
diff --git a/src/main/java/dk/camelot64/kickc/parser/KickCParserVisitor.java b/src/main/java/dk/camelot64/kickc/parser/KickCParserVisitor.java
index 34727dfd6..290bce1ca 100644
--- a/src/main/java/dk/camelot64/kickc/parser/KickCParserVisitor.java
+++ b/src/main/java/dk/camelot64/kickc/parser/KickCParserVisitor.java
@@ -175,6 +175,13 @@ public interface KickCParserVisitor extends ParseTreeVisitor {
* @return the visitor result
*/
T visitGlobalDirectiveCalling(KickCParser.GlobalDirectiveCallingContext ctx);
+ /**
+ * Visit a parse tree produced by the {@code globalDirectiveVarModel}
+ * labeled alternative in {@link KickCParser#globalDirective}.
+ * @param ctx the parse tree
+ * @return the visitor result
+ */
+ T visitGlobalDirectiveVarModel(KickCParser.GlobalDirectiveVarModelContext ctx);
/**
* Visit a parse tree produced by the {@code directiveConst}
* labeled alternative in {@link KickCParser#directive}.
diff --git a/src/main/java/dk/camelot64/kickc/passes/Pass0GenerateStatementSequence.java b/src/main/java/dk/camelot64/kickc/passes/Pass0GenerateStatementSequence.java
index e739e80c2..abf99fe64 100644
--- a/src/main/java/dk/camelot64/kickc/passes/Pass0GenerateStatementSequence.java
+++ b/src/main/java/dk/camelot64/kickc/passes/Pass0GenerateStatementSequence.java
@@ -48,6 +48,8 @@ public class Pass0GenerateStatementSequence extends KickCParserBaseVisitor scopeStack;
/** The memory area used by default for variables. */
private Variable.MemoryArea defaultMemoryArea;
+ /** Configuration for the variable builder. */
+ private VariableBuilderConfig variableBuilderConfig;
public Pass0GenerateStatementSequence(CParser cParser, KickCParser.FileContext fileCtx, Program program) {
this.cParser = cParser;
@@ -56,6 +58,7 @@ public class Pass0GenerateStatementSequence extends KickCParserBaseVisitor();
this.defaultMemoryArea = Variable.MemoryArea.ZEROPAGE_MEMORY;
+ this.variableBuilderConfig = VariableBuilder.getDefaultConfig(program.getLog());
scopeStack.push(program.getScope());
}
@@ -99,6 +102,14 @@ public class Pass0GenerateStatementSequence extends KickCParserBaseVisitor