From ddc469da073ceb953c3a08266b8ce354dcf09a29 Mon Sep 17 00:00:00 2001
From: Mann Patel <130435633+Patel-Mann@users.noreply.github.com>
Date: Wed, 24 Sep 2025 18:43:46 -0600
Subject: [PATCH] Bug: self-referencing grammer fixed
fixed self referencing grammer fixed and also connected the two file ,parser and grammer. initial parser code added
---
.idea/misc.xml | 4 +
lexerA1.g4 => ExprLexer.g4 | 18 +-
ExprParser.g4 | 36 ++
gen/ExprLexer.interp | 375 +++++++++++++++++
gen/ExprLexer.java | 813 +++++++++++++++++++++++++++++++++++++
gen/ExprLexer.tokens | 203 +++++++++
main.java | 461 +++++++++++++++++++++
syntatic.g4 | 0
8 files changed, 1900 insertions(+), 10 deletions(-)
create mode 100644 .idea/misc.xml
rename lexerA1.g4 => ExprLexer.g4 (94%)
create mode 100644 ExprParser.g4
create mode 100644 gen/ExprLexer.interp
create mode 100644 gen/ExprLexer.java
create mode 100644 gen/ExprLexer.tokens
create mode 100644 main.java
delete mode 100644 syntatic.g4
diff --git a/.idea/misc.xml b/.idea/misc.xml
new file mode 100644
index 0000000..422c89b
--- /dev/null
+++ b/.idea/misc.xml
@@ -0,0 +1,4 @@
+
+
+
+
\ No newline at end of file
diff --git a/lexerA1.g4 b/ExprLexer.g4
similarity index 94%
rename from lexerA1.g4
rename to ExprLexer.g4
index 4830e0d..8e6c8b6 100644
--- a/lexerA1.g4
+++ b/ExprLexer.g4
@@ -1,13 +1,12 @@
-lexer grammar lexerA1;
+lexer grammar ExprLexer;
// UNICODE --------------------------------------------------------------------------------------------------------------
UnicodeInputCharacter: UnicodeEscape | RawInputCharacter;
-fragement UnicodeEscape:
- '\\' UnicodeMarker HexDigit HexDigit HexDigit HexDigit;
+fragment UnicodeEscape: '\\' UnicodeMarker HexDigit HexDigit HexDigit HexDigit;
+
+fragment UnicodeMarker: 'u'+;
-fragment UnicodeMarker:
- 'u' | UnicodeMarker 'u';
fragment RawInputCharacter:;
//not complete need to ask question from prof.
@@ -29,8 +28,7 @@ fragment TraditionalComment:
fragment EndOfLineComment:
'//' CharactersInLine? LineTerminator;
-fragment CommentTail:
- '*' CommentTailStar | NotStar | CommentTail;
+fragment CommentTail: '*' CommentTailStar | NotStar ;
fragment CommentTailStar:
'/' | '*' CommentTailStar | NotStarNotSlash CommentTail;
@@ -41,8 +39,8 @@ fragment NotStar:
fragment NotStarNotSlash:
[^*/] | LineTerminator;
-fragment CharactersInLine:
- InputCharacter | CharactersInLine InputCharacter;
+fragment CharactersInLine: InputCharacter
+ | InputCharacter;
@@ -176,7 +174,7 @@ fragment OctalNumeral:
'0' OctalDigits;
fragment OctalDigits:
- OctalDigit | OctalDigit | OctalDigits;
+ OctalDigit;
fragment OctalDigit:
[0-7];
diff --git a/ExprParser.g4 b/ExprParser.g4
new file mode 100644
index 0000000..bf25fa7
--- /dev/null
+++ b/ExprParser.g4
@@ -0,0 +1,36 @@
+parser grammar ExprParser;
+
+options {
+ tokenVocab=ExprLexer;
+}
+
+// Class Parser rules
+prog : class EOF;
+
+class:(Public | Private | Protected ) Class ID SLPAREN method+ SRPAREN;
+
+//Method Decloration
+method: Public Static Void ID LPAREN arg* RPAREN SLPAREN methodCode SRPAREN
+ | Private Static Void ID SLPAREN methodCode SRPAREN
+ | Protected Static Void ID SLPAREN methodCode SRPAREN
+ ;
+
+methodCode: systemOutPrint* forloop*
+ ;
+
+systemOutPrint
+ : SYSTEM DOT OUT DOT PRINT LPAREN data RPAREN SEMI;
+
+forloop: For LPAREN arg RPAREN SLPAREN methodCode SRPAREN;
+
+arg: String arraydef* ID
+ | exp SEMI exp SEMI exp
+ ;
+
+exp: define
+ | ID GreterEql INTE
+ | ID INCMENT
+ ;
+define : Int ID EQL INTE;
+arraydef: SqLPAREN (data T)* SqRPAREN;
+data: STRING ;
\ No newline at end of file
diff --git a/gen/ExprLexer.interp b/gen/ExprLexer.interp
new file mode 100644
index 0000000..789c9e8
--- /dev/null
+++ b/gen/ExprLexer.interp
@@ -0,0 +1,375 @@
+token literal names:
+null
+null
+null
+null
+null
+null
+'abstract'
+'assert'
+'boolean'
+'break'
+'byte'
+'case'
+'catch'
+'char'
+'class'
+'const'
+'continue'
+'default'
+'do'
+'double'
+'else'
+'extends'
+'final'
+'finally'
+'float'
+'for'
+'goto'
+'if'
+'implements'
+'import'
+'instanceof'
+'int'
+'interface'
+'long'
+'native'
+'new'
+'package'
+'private'
+'protected'
+'public'
+'return'
+'short'
+'static'
+'strictfp'
+'super'
+'switch'
+'synchronized'
+'this'
+'throw'
+'throws'
+'transient'
+'try'
+'void'
+'volatile'
+'while'
+null
+null
+null
+null
+null
+'null'
+'('
+')'
+'{'
+'}'
+'['
+']'
+';'
+','
+'.'
+'='
+'>'
+'<'
+'!'
+'~'
+'?'
+':'
+'=='
+'<='
+'>='
+'!='
+'&&'
+'||'
+'++'
+'--'
+'+'
+'-'
+'*'
+'/'
+'&'
+'|'
+'^'
+'%'
+'<<'
+'>>'
+'>>>'
+'+='
+'-='
+'*='
+'/='
+'&='
+'|='
+'^='
+'%='
+'<<='
+'>>='
+'>>>='
+null
+
+token symbolic names:
+null
+UnicodeInputCharacter
+LineTerminator
+InputCharacter
+WhiteSpace
+Comment
+Abstract
+Assert
+Boolean
+Break
+Byte
+Case
+Catch
+Char
+Class
+Const
+Continue
+Default
+Do
+Double
+Else
+Extends
+Final
+Finally
+Float
+For
+Goto
+If
+Implements
+Import
+InstanceOf
+Int
+Interface
+Long
+Native
+New
+Package
+Private
+Protected
+Public
+Return
+Short
+Static
+Strictfp
+Super
+Switch
+Synchronized
+This
+Throw
+Throws
+Transient
+Try
+Void
+Volatile
+While
+IntigerLiteral
+FloatingPointLiteral
+CharacterLiteral
+StringLiteral
+BooleanLiteral
+NullLiteral
+ParanthesesLeft
+ParanthesesRight
+CurlyBracketLeft
+CurlyBracketRight
+SquareBracketLeft
+SquareBracketRight
+Semicolon
+Comma
+Dot
+Assignment
+GreterThan
+LessThan
+LogicalComplement
+BitwiseComplement
+Question
+Colon
+EqualTo
+LessThanEqualTo
+GreaterThanEqualTo
+NotEqualTO
+ConditionalAND
+ConditionalOR
+Increment
+Decrement
+Addition
+Subtaction
+Multiplication
+Division
+BitwiseAND
+BitwiseOR
+BitwiseXOR
+Remainder
+LeftShift
+SignedRightShift
+UnsignedRightShift
+AddAssign
+SubtractAssign
+MultiplyAssign
+DivideAssign
+BitwiseANDAssign
+BitwiseORAssign
+BitwiseXORAssign
+RemainderAssign
+LeftShiftAssign
+SighnedRightShiftAssign
+UnsighnedRightShiftAssign
+Identifier
+
+rule names:
+UnicodeInputCharacter
+UnicodeEscape
+UnicodeMarker
+RawInputCharacter
+LineTerminator
+InputCharacter
+WhiteSpace
+Comment
+TraditionalComment
+EndOfLineComment
+CommentTail
+CommentTailStar
+NotStar
+NotStarNotSlash
+CharactersInLine
+Abstract
+Assert
+Boolean
+Break
+Byte
+Case
+Catch
+Char
+Class
+Const
+Continue
+Default
+Do
+Double
+Else
+Extends
+Final
+Finally
+Float
+For
+Goto
+If
+Implements
+Import
+InstanceOf
+Int
+Interface
+Long
+Native
+New
+Package
+Private
+Protected
+Public
+Return
+Short
+Static
+Strictfp
+Super
+Switch
+Synchronized
+This
+Throw
+Throws
+Transient
+Try
+Void
+Volatile
+While
+IntigerLiteral
+DecimalIntegerLiteral
+HexIntegerLiteral
+OctalIntegerLiteral
+IntegerTypeSuffix
+DecimalNumeral
+HexNumeral
+HexDigits
+HexDigit
+FloatingPointLiteral
+ExponentPart
+ExponentIndicator
+SignedInteger
+Digits
+Digit
+NonZeroDigit
+Sign
+FloatTypeSuffix
+CharacterLiteral
+SingleCharacter
+StringLiteral
+StringCharacters
+StringCharacter
+EscapeSequence
+OctalEscape
+OctalNumeral
+OctalDigits
+OctalDigit
+ZeroToThree
+BooleanLiteral
+NullLiteral
+ParanthesesLeft
+ParanthesesRight
+CurlyBracketLeft
+CurlyBracketRight
+SquareBracketLeft
+SquareBracketRight
+Semicolon
+Comma
+Dot
+Assignment
+GreterThan
+LessThan
+LogicalComplement
+BitwiseComplement
+Question
+Colon
+EqualTo
+LessThanEqualTo
+GreaterThanEqualTo
+NotEqualTO
+ConditionalAND
+ConditionalOR
+Increment
+Decrement
+Addition
+Subtaction
+Multiplication
+Division
+BitwiseAND
+BitwiseOR
+BitwiseXOR
+Remainder
+LeftShift
+SignedRightShift
+UnsignedRightShift
+AddAssign
+SubtractAssign
+MultiplyAssign
+DivideAssign
+BitwiseANDAssign
+BitwiseORAssign
+BitwiseXORAssign
+RemainderAssign
+LeftShiftAssign
+SighnedRightShiftAssign
+UnsighnedRightShiftAssign
+Identifier
+JavaLetter
+JavaLetterOrDigit
+
+channel names:
+DEFAULT_TOKEN_CHANNEL
+HIDDEN
+
+mode names:
+DEFAULT_MODE
+
+atn:
+[4, 0, 107, 1031, 6, -1, 2, 0, 7, 0, 2, 1, 7, 1, 2, 2, 7, 2, 2, 3, 7, 3, 2, 4, 7, 4, 2, 5, 7, 5, 2, 6, 7, 6, 2, 7, 7, 7, 2, 8, 7, 8, 2, 9, 7, 9, 2, 10, 7, 10, 2, 11, 7, 11, 2, 12, 7, 12, 2, 13, 7, 13, 2, 14, 7, 14, 2, 15, 7, 15, 2, 16, 7, 16, 2, 17, 7, 17, 2, 18, 7, 18, 2, 19, 7, 19, 2, 20, 7, 20, 2, 21, 7, 21, 2, 22, 7, 22, 2, 23, 7, 23, 2, 24, 7, 24, 2, 25, 7, 25, 2, 26, 7, 26, 2, 27, 7, 27, 2, 28, 7, 28, 2, 29, 7, 29, 2, 30, 7, 30, 2, 31, 7, 31, 2, 32, 7, 32, 2, 33, 7, 33, 2, 34, 7, 34, 2, 35, 7, 35, 2, 36, 7, 36, 2, 37, 7, 37, 2, 38, 7, 38, 2, 39, 7, 39, 2, 40, 7, 40, 2, 41, 7, 41, 2, 42, 7, 42, 2, 43, 7, 43, 2, 44, 7, 44, 2, 45, 7, 45, 2, 46, 7, 46, 2, 47, 7, 47, 2, 48, 7, 48, 2, 49, 7, 49, 2, 50, 7, 50, 2, 51, 7, 51, 2, 52, 7, 52, 2, 53, 7, 53, 2, 54, 7, 54, 2, 55, 7, 55, 2, 56, 7, 56, 2, 57, 7, 57, 2, 58, 7, 58, 2, 59, 7, 59, 2, 60, 7, 60, 2, 61, 7, 61, 2, 62, 7, 62, 2, 63, 7, 63, 2, 64, 7, 64, 2, 65, 7, 65, 2, 66, 7, 66, 2, 67, 7, 67, 2, 68, 7, 68, 2, 69, 7, 69, 2, 70, 7, 70, 2, 71, 7, 71, 2, 72, 7, 72, 2, 73, 7, 73, 2, 74, 7, 74, 2, 75, 7, 75, 2, 76, 7, 76, 2, 77, 7, 77, 2, 78, 7, 78, 2, 79, 7, 79, 2, 80, 7, 80, 2, 81, 7, 81, 2, 82, 7, 82, 2, 83, 7, 83, 2, 84, 7, 84, 2, 85, 7, 85, 2, 86, 7, 86, 2, 87, 7, 87, 2, 88, 7, 88, 2, 89, 7, 89, 2, 90, 7, 90, 2, 91, 7, 91, 2, 92, 7, 92, 2, 93, 7, 93, 2, 94, 7, 94, 2, 95, 7, 95, 2, 96, 7, 96, 2, 97, 7, 97, 2, 98, 7, 98, 2, 99, 7, 99, 2, 100, 7, 100, 2, 101, 7, 101, 2, 102, 7, 102, 2, 103, 7, 103, 2, 104, 7, 104, 2, 105, 7, 105, 2, 106, 7, 106, 2, 107, 7, 107, 2, 108, 7, 108, 2, 109, 7, 109, 2, 110, 7, 110, 2, 111, 7, 111, 2, 112, 7, 112, 2, 113, 7, 113, 2, 114, 7, 114, 2, 115, 7, 115, 2, 116, 7, 116, 2, 117, 7, 117, 2, 118, 7, 118, 2, 119, 7, 119, 2, 120, 7, 120, 2, 121, 7, 121, 2, 122, 7, 122, 2, 123, 7, 123, 2, 124, 7, 124, 2, 125, 7, 125, 2, 126, 7, 126, 2, 127, 7, 127, 2, 128, 7, 128, 2, 129, 7, 129, 2, 130, 7, 130, 2, 131, 7, 131, 2, 132, 7, 132, 2, 133, 7, 133, 2, 134, 7, 134, 2, 135, 7, 135, 2, 136, 7, 136, 2, 137, 7, 137, 2, 138, 7, 138, 2, 139, 7, 139, 2, 140, 7, 140, 2, 141, 7, 141, 2, 142, 7, 142, 2, 143, 7, 143, 1, 0, 1, 0, 3, 0, 292, 8, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 2, 4, 2, 302, 8, 2, 11, 2, 12, 2, 303, 1, 3, 1, 3, 1, 4, 1, 4, 1, 4, 3, 4, 311, 8, 4, 1, 5, 1, 5, 1, 6, 1, 6, 3, 6, 317, 8, 6, 1, 7, 1, 7, 3, 7, 321, 8, 7, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 9, 1, 9, 1, 9, 1, 9, 3, 9, 333, 8, 9, 1, 9, 1, 9, 1, 10, 1, 10, 1, 10, 3, 10, 340, 8, 10, 1, 11, 1, 11, 1, 11, 1, 11, 1, 11, 1, 11, 3, 11, 348, 8, 11, 1, 12, 1, 12, 3, 12, 352, 8, 12, 1, 13, 1, 13, 3, 13, 356, 8, 13, 1, 14, 1, 14, 3, 14, 360, 8, 14, 1, 15, 1, 15, 1, 15, 1, 15, 1, 15, 1, 15, 1, 15, 1, 15, 1, 15, 1, 16, 1, 16, 1, 16, 1, 16, 1, 16, 1, 16, 1, 16, 1, 17, 1, 17, 1, 17, 1, 17, 1, 17, 1, 17, 1, 17, 1, 17, 1, 18, 1, 18, 1, 18, 1, 18, 1, 18, 1, 18, 1, 19, 1, 19, 1, 19, 1, 19, 1, 19, 1, 20, 1, 20, 1, 20, 1, 20, 1, 20, 1, 21, 1, 21, 1, 21, 1, 21, 1, 21, 1, 21, 1, 22, 1, 22, 1, 22, 1, 22, 1, 22, 1, 23, 1, 23, 1, 23, 1, 23, 1, 23, 1, 23, 1, 24, 1, 24, 1, 24, 1, 24, 1, 24, 1, 24, 1, 25, 1, 25, 1, 25, 1, 25, 1, 25, 1, 25, 1, 25, 1, 25, 1, 25, 1, 26, 1, 26, 1, 26, 1, 26, 1, 26, 1, 26, 1, 26, 1, 26, 1, 27, 1, 27, 1, 27, 1, 28, 1, 28, 1, 28, 1, 28, 1, 28, 1, 28, 1, 28, 1, 29, 1, 29, 1, 29, 1, 29, 1, 29, 1, 30, 1, 30, 1, 30, 1, 30, 1, 30, 1, 30, 1, 30, 1, 30, 1, 31, 1, 31, 1, 31, 1, 31, 1, 31, 1, 31, 1, 32, 1, 32, 1, 32, 1, 32, 1, 32, 1, 32, 1, 32, 1, 32, 1, 33, 1, 33, 1, 33, 1, 33, 1, 33, 1, 33, 1, 34, 1, 34, 1, 34, 1, 34, 1, 35, 1, 35, 1, 35, 1, 35, 1, 35, 1, 36, 1, 36, 1, 36, 1, 37, 1, 37, 1, 37, 1, 37, 1, 37, 1, 37, 1, 37, 1, 37, 1, 37, 1, 37, 1, 37, 1, 38, 1, 38, 1, 38, 1, 38, 1, 38, 1, 38, 1, 38, 1, 39, 1, 39, 1, 39, 1, 39, 1, 39, 1, 39, 1, 39, 1, 39, 1, 39, 1, 39, 1, 39, 1, 40, 1, 40, 1, 40, 1, 40, 1, 41, 1, 41, 1, 41, 1, 41, 1, 41, 1, 41, 1, 41, 1, 41, 1, 41, 1, 41, 1, 42, 1, 42, 1, 42, 1, 42, 1, 42, 1, 43, 1, 43, 1, 43, 1, 43, 1, 43, 1, 43, 1, 43, 1, 44, 1, 44, 1, 44, 1, 44, 1, 45, 1, 45, 1, 45, 1, 45, 1, 45, 1, 45, 1, 45, 1, 45, 1, 46, 1, 46, 1, 46, 1, 46, 1, 46, 1, 46, 1, 46, 1, 46, 1, 47, 1, 47, 1, 47, 1, 47, 1, 47, 1, 47, 1, 47, 1, 47, 1, 47, 1, 47, 1, 48, 1, 48, 1, 48, 1, 48, 1, 48, 1, 48, 1, 48, 1, 49, 1, 49, 1, 49, 1, 49, 1, 49, 1, 49, 1, 49, 1, 50, 1, 50, 1, 50, 1, 50, 1, 50, 1, 50, 1, 51, 1, 51, 1, 51, 1, 51, 1, 51, 1, 51, 1, 51, 1, 52, 1, 52, 1, 52, 1, 52, 1, 52, 1, 52, 1, 52, 1, 52, 1, 52, 1, 53, 1, 53, 1, 53, 1, 53, 1, 53, 1, 53, 1, 54, 1, 54, 1, 54, 1, 54, 1, 54, 1, 54, 1, 54, 1, 55, 1, 55, 1, 55, 1, 55, 1, 55, 1, 55, 1, 55, 1, 55, 1, 55, 1, 55, 1, 55, 1, 55, 1, 55, 1, 56, 1, 56, 1, 56, 1, 56, 1, 56, 1, 57, 1, 57, 1, 57, 1, 57, 1, 57, 1, 57, 1, 58, 1, 58, 1, 58, 1, 58, 1, 58, 1, 58, 1, 58, 1, 59, 1, 59, 1, 59, 1, 59, 1, 59, 1, 59, 1, 59, 1, 59, 1, 59, 1, 59, 1, 60, 1, 60, 1, 60, 1, 60, 1, 61, 1, 61, 1, 61, 1, 61, 1, 61, 1, 62, 1, 62, 1, 62, 1, 62, 1, 62, 1, 62, 1, 62, 1, 62, 1, 62, 1, 63, 1, 63, 1, 63, 1, 63, 1, 63, 1, 63, 1, 64, 1, 64, 1, 64, 3, 64, 699, 8, 64, 1, 65, 1, 65, 3, 65, 703, 8, 65, 1, 66, 1, 66, 3, 66, 707, 8, 66, 1, 67, 1, 67, 3, 67, 711, 8, 67, 1, 68, 1, 68, 1, 69, 1, 69, 1, 69, 3, 69, 718, 8, 69, 3, 69, 720, 8, 69, 1, 70, 1, 70, 1, 70, 1, 70, 1, 70, 1, 70, 3, 70, 728, 8, 70, 1, 71, 1, 71, 1, 71, 1, 71, 3, 71, 734, 8, 71, 1, 72, 1, 72, 1, 73, 1, 73, 1, 73, 3, 73, 741, 8, 73, 1, 73, 3, 73, 744, 8, 73, 1, 73, 3, 73, 747, 8, 73, 1, 73, 1, 73, 1, 73, 3, 73, 752, 8, 73, 1, 73, 3, 73, 755, 8, 73, 1, 73, 1, 73, 1, 73, 3, 73, 760, 8, 73, 1, 73, 1, 73, 3, 73, 764, 8, 73, 1, 73, 1, 73, 3, 73, 768, 8, 73, 1, 74, 1, 74, 1, 74, 1, 75, 1, 75, 1, 76, 3, 76, 776, 8, 76, 1, 76, 1, 76, 1, 77, 4, 77, 781, 8, 77, 11, 77, 12, 77, 782, 1, 78, 1, 78, 3, 78, 787, 8, 78, 1, 79, 1, 79, 1, 80, 1, 80, 1, 81, 1, 81, 1, 82, 1, 82, 1, 82, 1, 82, 1, 82, 1, 82, 1, 82, 1, 82, 3, 82, 803, 8, 82, 1, 83, 1, 83, 1, 84, 1, 84, 3, 84, 809, 8, 84, 1, 84, 1, 84, 1, 85, 4, 85, 814, 8, 85, 11, 85, 12, 85, 815, 1, 86, 1, 86, 3, 86, 820, 8, 86, 1, 87, 1, 87, 1, 87, 1, 87, 1, 87, 1, 87, 1, 87, 1, 87, 1, 87, 1, 87, 1, 87, 1, 87, 1, 87, 1, 87, 1, 87, 1, 87, 1, 87, 1, 87, 1, 87, 1, 87, 1, 87, 1, 87, 1, 87, 1, 87, 1, 87, 1, 87, 1, 87, 1, 87, 1, 87, 1, 87, 1, 87, 1, 87, 1, 87, 1, 87, 1, 87, 1, 87, 1, 87, 1, 87, 1, 87, 1, 87, 1, 87, 1, 87, 3, 87, 864, 8, 87, 1, 88, 1, 88, 1, 88, 1, 88, 1, 88, 1, 88, 1, 88, 1, 88, 1, 88, 1, 88, 1, 88, 3, 88, 877, 8, 88, 1, 89, 1, 89, 1, 89, 1, 90, 1, 90, 1, 91, 1, 91, 1, 92, 1, 92, 1, 93, 1, 93, 1, 93, 1, 93, 1, 93, 1, 93, 1, 93, 1, 93, 1, 93, 3, 93, 897, 8, 93, 1, 94, 1, 94, 1, 94, 1, 94, 1, 94, 1, 95, 1, 95, 1, 96, 1, 96, 1, 97, 1, 97, 1, 98, 1, 98, 1, 99, 1, 99, 1, 100, 1, 100, 1, 101, 1, 101, 1, 102, 1, 102, 1, 103, 1, 103, 1, 104, 1, 104, 1, 105, 1, 105, 1, 106, 1, 106, 1, 107, 1, 107, 1, 108, 1, 108, 1, 109, 1, 109, 1, 110, 1, 110, 1, 111, 1, 111, 1, 111, 1, 112, 1, 112, 1, 112, 1, 113, 1, 113, 1, 113, 1, 114, 1, 114, 1, 114, 1, 115, 1, 115, 1, 115, 1, 116, 1, 116, 1, 116, 1, 117, 1, 117, 1, 117, 1, 118, 1, 118, 1, 118, 1, 119, 1, 119, 1, 120, 1, 120, 1, 121, 1, 121, 1, 122, 1, 122, 1, 123, 1, 123, 1, 124, 1, 124, 1, 125, 1, 125, 1, 126, 1, 126, 1, 127, 1, 127, 1, 127, 1, 128, 1, 128, 1, 128, 1, 129, 1, 129, 1, 129, 1, 129, 1, 130, 1, 130, 1, 130, 1, 131, 1, 131, 1, 131, 1, 132, 1, 132, 1, 132, 1, 133, 1, 133, 1, 133, 1, 134, 1, 134, 1, 134, 1, 135, 1, 135, 1, 135, 1, 136, 1, 136, 1, 136, 1, 137, 1, 137, 1, 137, 1, 138, 1, 138, 1, 138, 1, 138, 1, 139, 1, 139, 1, 139, 1, 139, 1, 140, 1, 140, 1, 140, 1, 140, 1, 140, 1, 141, 1, 141, 1, 141, 1, 142, 1, 142, 1, 143, 1, 143, 3, 143, 1030, 8, 143, 0, 0, 144, 1, 1, 3, 0, 5, 0, 7, 0, 9, 2, 11, 3, 13, 4, 15, 5, 17, 0, 19, 0, 21, 0, 23, 0, 25, 0, 27, 0, 29, 0, 31, 6, 33, 7, 35, 8, 37, 9, 39, 10, 41, 11, 43, 12, 45, 13, 47, 14, 49, 15, 51, 16, 53, 17, 55, 18, 57, 19, 59, 20, 61, 21, 63, 22, 65, 23, 67, 24, 69, 25, 71, 26, 73, 27, 75, 28, 77, 29, 79, 30, 81, 31, 83, 32, 85, 33, 87, 34, 89, 35, 91, 36, 93, 37, 95, 38, 97, 39, 99, 40, 101, 41, 103, 42, 105, 43, 107, 44, 109, 45, 111, 46, 113, 47, 115, 48, 117, 49, 119, 50, 121, 51, 123, 52, 125, 53, 127, 54, 129, 55, 131, 0, 133, 0, 135, 0, 137, 0, 139, 0, 141, 0, 143, 0, 145, 0, 147, 56, 149, 0, 151, 0, 153, 0, 155, 0, 157, 0, 159, 0, 161, 0, 163, 0, 165, 57, 167, 0, 169, 58, 171, 0, 173, 0, 175, 0, 177, 0, 179, 0, 181, 0, 183, 0, 185, 0, 187, 59, 189, 60, 191, 61, 193, 62, 195, 63, 197, 64, 199, 65, 201, 66, 203, 67, 205, 68, 207, 69, 209, 70, 211, 71, 213, 72, 215, 73, 217, 74, 219, 75, 221, 76, 223, 77, 225, 78, 227, 79, 229, 80, 231, 81, 233, 82, 235, 83, 237, 84, 239, 85, 241, 86, 243, 87, 245, 88, 247, 89, 249, 90, 251, 91, 253, 92, 255, 93, 257, 94, 259, 95, 261, 96, 263, 97, 265, 98, 267, 99, 269, 100, 271, 101, 273, 102, 275, 103, 277, 104, 279, 105, 281, 106, 283, 107, 285, 0, 287, 0, 1, 0, 16, 2, 0, 10, 10, 13, 13, 3, 0, 10, 10, 13, 13, 94, 94, 3, 0, 9, 9, 12, 12, 32, 32, 2, 0, 42, 42, 94, 94, 3, 0, 42, 42, 47, 47, 94, 94, 2, 0, 76, 76, 108, 108, 3, 0, 48, 57, 65, 70, 97, 102, 2, 0, 69, 69, 101, 101, 1, 0, 49, 57, 2, 0, 43, 43, 45, 45, 4, 0, 68, 68, 70, 70, 100, 100, 102, 102, 3, 0, 39, 39, 92, 92, 94, 94, 1, 0, 48, 55, 1, 0, 48, 51, 4, 0, 36, 36, 65, 90, 95, 95, 97, 122, 1, 0, 48, 57, 1043, 0, 1, 1, 0, 0, 0, 0, 9, 1, 0, 0, 0, 0, 11, 1, 0, 0, 0, 0, 13, 1, 0, 0, 0, 0, 15, 1, 0, 0, 0, 0, 31, 1, 0, 0, 0, 0, 33, 1, 0, 0, 0, 0, 35, 1, 0, 0, 0, 0, 37, 1, 0, 0, 0, 0, 39, 1, 0, 0, 0, 0, 41, 1, 0, 0, 0, 0, 43, 1, 0, 0, 0, 0, 45, 1, 0, 0, 0, 0, 47, 1, 0, 0, 0, 0, 49, 1, 0, 0, 0, 0, 51, 1, 0, 0, 0, 0, 53, 1, 0, 0, 0, 0, 55, 1, 0, 0, 0, 0, 57, 1, 0, 0, 0, 0, 59, 1, 0, 0, 0, 0, 61, 1, 0, 0, 0, 0, 63, 1, 0, 0, 0, 0, 65, 1, 0, 0, 0, 0, 67, 1, 0, 0, 0, 0, 69, 1, 0, 0, 0, 0, 71, 1, 0, 0, 0, 0, 73, 1, 0, 0, 0, 0, 75, 1, 0, 0, 0, 0, 77, 1, 0, 0, 0, 0, 79, 1, 0, 0, 0, 0, 81, 1, 0, 0, 0, 0, 83, 1, 0, 0, 0, 0, 85, 1, 0, 0, 0, 0, 87, 1, 0, 0, 0, 0, 89, 1, 0, 0, 0, 0, 91, 1, 0, 0, 0, 0, 93, 1, 0, 0, 0, 0, 95, 1, 0, 0, 0, 0, 97, 1, 0, 0, 0, 0, 99, 1, 0, 0, 0, 0, 101, 1, 0, 0, 0, 0, 103, 1, 0, 0, 0, 0, 105, 1, 0, 0, 0, 0, 107, 1, 0, 0, 0, 0, 109, 1, 0, 0, 0, 0, 111, 1, 0, 0, 0, 0, 113, 1, 0, 0, 0, 0, 115, 1, 0, 0, 0, 0, 117, 1, 0, 0, 0, 0, 119, 1, 0, 0, 0, 0, 121, 1, 0, 0, 0, 0, 123, 1, 0, 0, 0, 0, 125, 1, 0, 0, 0, 0, 127, 1, 0, 0, 0, 0, 129, 1, 0, 0, 0, 0, 147, 1, 0, 0, 0, 0, 165, 1, 0, 0, 0, 0, 169, 1, 0, 0, 0, 0, 187, 1, 0, 0, 0, 0, 189, 1, 0, 0, 0, 0, 191, 1, 0, 0, 0, 0, 193, 1, 0, 0, 0, 0, 195, 1, 0, 0, 0, 0, 197, 1, 0, 0, 0, 0, 199, 1, 0, 0, 0, 0, 201, 1, 0, 0, 0, 0, 203, 1, 0, 0, 0, 0, 205, 1, 0, 0, 0, 0, 207, 1, 0, 0, 0, 0, 209, 1, 0, 0, 0, 0, 211, 1, 0, 0, 0, 0, 213, 1, 0, 0, 0, 0, 215, 1, 0, 0, 0, 0, 217, 1, 0, 0, 0, 0, 219, 1, 0, 0, 0, 0, 221, 1, 0, 0, 0, 0, 223, 1, 0, 0, 0, 0, 225, 1, 0, 0, 0, 0, 227, 1, 0, 0, 0, 0, 229, 1, 0, 0, 0, 0, 231, 1, 0, 0, 0, 0, 233, 1, 0, 0, 0, 0, 235, 1, 0, 0, 0, 0, 237, 1, 0, 0, 0, 0, 239, 1, 0, 0, 0, 0, 241, 1, 0, 0, 0, 0, 243, 1, 0, 0, 0, 0, 245, 1, 0, 0, 0, 0, 247, 1, 0, 0, 0, 0, 249, 1, 0, 0, 0, 0, 251, 1, 0, 0, 0, 0, 253, 1, 0, 0, 0, 0, 255, 1, 0, 0, 0, 0, 257, 1, 0, 0, 0, 0, 259, 1, 0, 0, 0, 0, 261, 1, 0, 0, 0, 0, 263, 1, 0, 0, 0, 0, 265, 1, 0, 0, 0, 0, 267, 1, 0, 0, 0, 0, 269, 1, 0, 0, 0, 0, 271, 1, 0, 0, 0, 0, 273, 1, 0, 0, 0, 0, 275, 1, 0, 0, 0, 0, 277, 1, 0, 0, 0, 0, 279, 1, 0, 0, 0, 0, 281, 1, 0, 0, 0, 0, 283, 1, 0, 0, 0, 1, 291, 1, 0, 0, 0, 3, 293, 1, 0, 0, 0, 5, 301, 1, 0, 0, 0, 7, 305, 1, 0, 0, 0, 9, 310, 1, 0, 0, 0, 11, 312, 1, 0, 0, 0, 13, 316, 1, 0, 0, 0, 15, 320, 1, 0, 0, 0, 17, 322, 1, 0, 0, 0, 19, 328, 1, 0, 0, 0, 21, 339, 1, 0, 0, 0, 23, 347, 1, 0, 0, 0, 25, 351, 1, 0, 0, 0, 27, 355, 1, 0, 0, 0, 29, 359, 1, 0, 0, 0, 31, 361, 1, 0, 0, 0, 33, 370, 1, 0, 0, 0, 35, 377, 1, 0, 0, 0, 37, 385, 1, 0, 0, 0, 39, 391, 1, 0, 0, 0, 41, 396, 1, 0, 0, 0, 43, 401, 1, 0, 0, 0, 45, 407, 1, 0, 0, 0, 47, 412, 1, 0, 0, 0, 49, 418, 1, 0, 0, 0, 51, 424, 1, 0, 0, 0, 53, 433, 1, 0, 0, 0, 55, 441, 1, 0, 0, 0, 57, 444, 1, 0, 0, 0, 59, 451, 1, 0, 0, 0, 61, 456, 1, 0, 0, 0, 63, 464, 1, 0, 0, 0, 65, 470, 1, 0, 0, 0, 67, 478, 1, 0, 0, 0, 69, 484, 1, 0, 0, 0, 71, 488, 1, 0, 0, 0, 73, 493, 1, 0, 0, 0, 75, 496, 1, 0, 0, 0, 77, 507, 1, 0, 0, 0, 79, 514, 1, 0, 0, 0, 81, 525, 1, 0, 0, 0, 83, 529, 1, 0, 0, 0, 85, 539, 1, 0, 0, 0, 87, 544, 1, 0, 0, 0, 89, 551, 1, 0, 0, 0, 91, 555, 1, 0, 0, 0, 93, 563, 1, 0, 0, 0, 95, 571, 1, 0, 0, 0, 97, 581, 1, 0, 0, 0, 99, 588, 1, 0, 0, 0, 101, 595, 1, 0, 0, 0, 103, 601, 1, 0, 0, 0, 105, 608, 1, 0, 0, 0, 107, 617, 1, 0, 0, 0, 109, 623, 1, 0, 0, 0, 111, 630, 1, 0, 0, 0, 113, 643, 1, 0, 0, 0, 115, 648, 1, 0, 0, 0, 117, 654, 1, 0, 0, 0, 119, 661, 1, 0, 0, 0, 121, 671, 1, 0, 0, 0, 123, 675, 1, 0, 0, 0, 125, 680, 1, 0, 0, 0, 127, 689, 1, 0, 0, 0, 129, 698, 1, 0, 0, 0, 131, 700, 1, 0, 0, 0, 133, 704, 1, 0, 0, 0, 135, 708, 1, 0, 0, 0, 137, 712, 1, 0, 0, 0, 139, 719, 1, 0, 0, 0, 141, 727, 1, 0, 0, 0, 143, 733, 1, 0, 0, 0, 145, 735, 1, 0, 0, 0, 147, 767, 1, 0, 0, 0, 149, 769, 1, 0, 0, 0, 151, 772, 1, 0, 0, 0, 153, 775, 1, 0, 0, 0, 155, 780, 1, 0, 0, 0, 157, 786, 1, 0, 0, 0, 159, 788, 1, 0, 0, 0, 161, 790, 1, 0, 0, 0, 163, 792, 1, 0, 0, 0, 165, 802, 1, 0, 0, 0, 167, 804, 1, 0, 0, 0, 169, 806, 1, 0, 0, 0, 171, 813, 1, 0, 0, 0, 173, 819, 1, 0, 0, 0, 175, 821, 1, 0, 0, 0, 177, 876, 1, 0, 0, 0, 179, 878, 1, 0, 0, 0, 181, 881, 1, 0, 0, 0, 183, 883, 1, 0, 0, 0, 185, 885, 1, 0, 0, 0, 187, 896, 1, 0, 0, 0, 189, 898, 1, 0, 0, 0, 191, 903, 1, 0, 0, 0, 193, 905, 1, 0, 0, 0, 195, 907, 1, 0, 0, 0, 197, 909, 1, 0, 0, 0, 199, 911, 1, 0, 0, 0, 201, 913, 1, 0, 0, 0, 203, 915, 1, 0, 0, 0, 205, 917, 1, 0, 0, 0, 207, 919, 1, 0, 0, 0, 209, 921, 1, 0, 0, 0, 211, 923, 1, 0, 0, 0, 213, 925, 1, 0, 0, 0, 215, 927, 1, 0, 0, 0, 217, 929, 1, 0, 0, 0, 219, 931, 1, 0, 0, 0, 221, 933, 1, 0, 0, 0, 223, 935, 1, 0, 0, 0, 225, 938, 1, 0, 0, 0, 227, 941, 1, 0, 0, 0, 229, 944, 1, 0, 0, 0, 231, 947, 1, 0, 0, 0, 233, 950, 1, 0, 0, 0, 235, 953, 1, 0, 0, 0, 237, 956, 1, 0, 0, 0, 239, 959, 1, 0, 0, 0, 241, 961, 1, 0, 0, 0, 243, 963, 1, 0, 0, 0, 245, 965, 1, 0, 0, 0, 247, 967, 1, 0, 0, 0, 249, 969, 1, 0, 0, 0, 251, 971, 1, 0, 0, 0, 253, 973, 1, 0, 0, 0, 255, 975, 1, 0, 0, 0, 257, 978, 1, 0, 0, 0, 259, 981, 1, 0, 0, 0, 261, 985, 1, 0, 0, 0, 263, 988, 1, 0, 0, 0, 265, 991, 1, 0, 0, 0, 267, 994, 1, 0, 0, 0, 269, 997, 1, 0, 0, 0, 271, 1000, 1, 0, 0, 0, 273, 1003, 1, 0, 0, 0, 275, 1006, 1, 0, 0, 0, 277, 1009, 1, 0, 0, 0, 279, 1013, 1, 0, 0, 0, 281, 1017, 1, 0, 0, 0, 283, 1022, 1, 0, 0, 0, 285, 1025, 1, 0, 0, 0, 287, 1029, 1, 0, 0, 0, 289, 292, 3, 3, 1, 0, 290, 292, 3, 7, 3, 0, 291, 289, 1, 0, 0, 0, 291, 290, 1, 0, 0, 0, 292, 2, 1, 0, 0, 0, 293, 294, 5, 92, 0, 0, 294, 295, 3, 5, 2, 0, 295, 296, 3, 145, 72, 0, 296, 297, 3, 145, 72, 0, 297, 298, 3, 145, 72, 0, 298, 299, 3, 145, 72, 0, 299, 4, 1, 0, 0, 0, 300, 302, 5, 117, 0, 0, 301, 300, 1, 0, 0, 0, 302, 303, 1, 0, 0, 0, 303, 301, 1, 0, 0, 0, 303, 304, 1, 0, 0, 0, 304, 6, 1, 0, 0, 0, 305, 306, 1, 0, 0, 0, 306, 8, 1, 0, 0, 0, 307, 311, 7, 0, 0, 0, 308, 309, 5, 13, 0, 0, 309, 311, 5, 10, 0, 0, 310, 307, 1, 0, 0, 0, 310, 308, 1, 0, 0, 0, 311, 10, 1, 0, 0, 0, 312, 313, 7, 1, 0, 0, 313, 12, 1, 0, 0, 0, 314, 317, 7, 2, 0, 0, 315, 317, 3, 9, 4, 0, 316, 314, 1, 0, 0, 0, 316, 315, 1, 0, 0, 0, 317, 14, 1, 0, 0, 0, 318, 321, 3, 17, 8, 0, 319, 321, 3, 19, 9, 0, 320, 318, 1, 0, 0, 0, 320, 319, 1, 0, 0, 0, 321, 16, 1, 0, 0, 0, 322, 323, 5, 47, 0, 0, 323, 324, 5, 42, 0, 0, 324, 325, 1, 0, 0, 0, 325, 326, 3, 25, 12, 0, 326, 327, 3, 21, 10, 0, 327, 18, 1, 0, 0, 0, 328, 329, 5, 47, 0, 0, 329, 330, 5, 47, 0, 0, 330, 332, 1, 0, 0, 0, 331, 333, 3, 29, 14, 0, 332, 331, 1, 0, 0, 0, 332, 333, 1, 0, 0, 0, 333, 334, 1, 0, 0, 0, 334, 335, 3, 9, 4, 0, 335, 20, 1, 0, 0, 0, 336, 337, 5, 42, 0, 0, 337, 340, 3, 23, 11, 0, 338, 340, 3, 25, 12, 0, 339, 336, 1, 0, 0, 0, 339, 338, 1, 0, 0, 0, 340, 22, 1, 0, 0, 0, 341, 348, 5, 47, 0, 0, 342, 343, 5, 42, 0, 0, 343, 348, 3, 23, 11, 0, 344, 345, 3, 27, 13, 0, 345, 346, 3, 21, 10, 0, 346, 348, 1, 0, 0, 0, 347, 341, 1, 0, 0, 0, 347, 342, 1, 0, 0, 0, 347, 344, 1, 0, 0, 0, 348, 24, 1, 0, 0, 0, 349, 352, 7, 3, 0, 0, 350, 352, 3, 9, 4, 0, 351, 349, 1, 0, 0, 0, 351, 350, 1, 0, 0, 0, 352, 26, 1, 0, 0, 0, 353, 356, 7, 4, 0, 0, 354, 356, 3, 9, 4, 0, 355, 353, 1, 0, 0, 0, 355, 354, 1, 0, 0, 0, 356, 28, 1, 0, 0, 0, 357, 360, 3, 11, 5, 0, 358, 360, 3, 11, 5, 0, 359, 357, 1, 0, 0, 0, 359, 358, 1, 0, 0, 0, 360, 30, 1, 0, 0, 0, 361, 362, 5, 97, 0, 0, 362, 363, 5, 98, 0, 0, 363, 364, 5, 115, 0, 0, 364, 365, 5, 116, 0, 0, 365, 366, 5, 114, 0, 0, 366, 367, 5, 97, 0, 0, 367, 368, 5, 99, 0, 0, 368, 369, 5, 116, 0, 0, 369, 32, 1, 0, 0, 0, 370, 371, 5, 97, 0, 0, 371, 372, 5, 115, 0, 0, 372, 373, 5, 115, 0, 0, 373, 374, 5, 101, 0, 0, 374, 375, 5, 114, 0, 0, 375, 376, 5, 116, 0, 0, 376, 34, 1, 0, 0, 0, 377, 378, 5, 98, 0, 0, 378, 379, 5, 111, 0, 0, 379, 380, 5, 111, 0, 0, 380, 381, 5, 108, 0, 0, 381, 382, 5, 101, 0, 0, 382, 383, 5, 97, 0, 0, 383, 384, 5, 110, 0, 0, 384, 36, 1, 0, 0, 0, 385, 386, 5, 98, 0, 0, 386, 387, 5, 114, 0, 0, 387, 388, 5, 101, 0, 0, 388, 389, 5, 97, 0, 0, 389, 390, 5, 107, 0, 0, 390, 38, 1, 0, 0, 0, 391, 392, 5, 98, 0, 0, 392, 393, 5, 121, 0, 0, 393, 394, 5, 116, 0, 0, 394, 395, 5, 101, 0, 0, 395, 40, 1, 0, 0, 0, 396, 397, 5, 99, 0, 0, 397, 398, 5, 97, 0, 0, 398, 399, 5, 115, 0, 0, 399, 400, 5, 101, 0, 0, 400, 42, 1, 0, 0, 0, 401, 402, 5, 99, 0, 0, 402, 403, 5, 97, 0, 0, 403, 404, 5, 116, 0, 0, 404, 405, 5, 99, 0, 0, 405, 406, 5, 104, 0, 0, 406, 44, 1, 0, 0, 0, 407, 408, 5, 99, 0, 0, 408, 409, 5, 104, 0, 0, 409, 410, 5, 97, 0, 0, 410, 411, 5, 114, 0, 0, 411, 46, 1, 0, 0, 0, 412, 413, 5, 99, 0, 0, 413, 414, 5, 108, 0, 0, 414, 415, 5, 97, 0, 0, 415, 416, 5, 115, 0, 0, 416, 417, 5, 115, 0, 0, 417, 48, 1, 0, 0, 0, 418, 419, 5, 99, 0, 0, 419, 420, 5, 111, 0, 0, 420, 421, 5, 110, 0, 0, 421, 422, 5, 115, 0, 0, 422, 423, 5, 116, 0, 0, 423, 50, 1, 0, 0, 0, 424, 425, 5, 99, 0, 0, 425, 426, 5, 111, 0, 0, 426, 427, 5, 110, 0, 0, 427, 428, 5, 116, 0, 0, 428, 429, 5, 105, 0, 0, 429, 430, 5, 110, 0, 0, 430, 431, 5, 117, 0, 0, 431, 432, 5, 101, 0, 0, 432, 52, 1, 0, 0, 0, 433, 434, 5, 100, 0, 0, 434, 435, 5, 101, 0, 0, 435, 436, 5, 102, 0, 0, 436, 437, 5, 97, 0, 0, 437, 438, 5, 117, 0, 0, 438, 439, 5, 108, 0, 0, 439, 440, 5, 116, 0, 0, 440, 54, 1, 0, 0, 0, 441, 442, 5, 100, 0, 0, 442, 443, 5, 111, 0, 0, 443, 56, 1, 0, 0, 0, 444, 445, 5, 100, 0, 0, 445, 446, 5, 111, 0, 0, 446, 447, 5, 117, 0, 0, 447, 448, 5, 98, 0, 0, 448, 449, 5, 108, 0, 0, 449, 450, 5, 101, 0, 0, 450, 58, 1, 0, 0, 0, 451, 452, 5, 101, 0, 0, 452, 453, 5, 108, 0, 0, 453, 454, 5, 115, 0, 0, 454, 455, 5, 101, 0, 0, 455, 60, 1, 0, 0, 0, 456, 457, 5, 101, 0, 0, 457, 458, 5, 120, 0, 0, 458, 459, 5, 116, 0, 0, 459, 460, 5, 101, 0, 0, 460, 461, 5, 110, 0, 0, 461, 462, 5, 100, 0, 0, 462, 463, 5, 115, 0, 0, 463, 62, 1, 0, 0, 0, 464, 465, 5, 102, 0, 0, 465, 466, 5, 105, 0, 0, 466, 467, 5, 110, 0, 0, 467, 468, 5, 97, 0, 0, 468, 469, 5, 108, 0, 0, 469, 64, 1, 0, 0, 0, 470, 471, 5, 102, 0, 0, 471, 472, 5, 105, 0, 0, 472, 473, 5, 110, 0, 0, 473, 474, 5, 97, 0, 0, 474, 475, 5, 108, 0, 0, 475, 476, 5, 108, 0, 0, 476, 477, 5, 121, 0, 0, 477, 66, 1, 0, 0, 0, 478, 479, 5, 102, 0, 0, 479, 480, 5, 108, 0, 0, 480, 481, 5, 111, 0, 0, 481, 482, 5, 97, 0, 0, 482, 483, 5, 116, 0, 0, 483, 68, 1, 0, 0, 0, 484, 485, 5, 102, 0, 0, 485, 486, 5, 111, 0, 0, 486, 487, 5, 114, 0, 0, 487, 70, 1, 0, 0, 0, 488, 489, 5, 103, 0, 0, 489, 490, 5, 111, 0, 0, 490, 491, 5, 116, 0, 0, 491, 492, 5, 111, 0, 0, 492, 72, 1, 0, 0, 0, 493, 494, 5, 105, 0, 0, 494, 495, 5, 102, 0, 0, 495, 74, 1, 0, 0, 0, 496, 497, 5, 105, 0, 0, 497, 498, 5, 109, 0, 0, 498, 499, 5, 112, 0, 0, 499, 500, 5, 108, 0, 0, 500, 501, 5, 101, 0, 0, 501, 502, 5, 109, 0, 0, 502, 503, 5, 101, 0, 0, 503, 504, 5, 110, 0, 0, 504, 505, 5, 116, 0, 0, 505, 506, 5, 115, 0, 0, 506, 76, 1, 0, 0, 0, 507, 508, 5, 105, 0, 0, 508, 509, 5, 109, 0, 0, 509, 510, 5, 112, 0, 0, 510, 511, 5, 111, 0, 0, 511, 512, 5, 114, 0, 0, 512, 513, 5, 116, 0, 0, 513, 78, 1, 0, 0, 0, 514, 515, 5, 105, 0, 0, 515, 516, 5, 110, 0, 0, 516, 517, 5, 115, 0, 0, 517, 518, 5, 116, 0, 0, 518, 519, 5, 97, 0, 0, 519, 520, 5, 110, 0, 0, 520, 521, 5, 99, 0, 0, 521, 522, 5, 101, 0, 0, 522, 523, 5, 111, 0, 0, 523, 524, 5, 102, 0, 0, 524, 80, 1, 0, 0, 0, 525, 526, 5, 105, 0, 0, 526, 527, 5, 110, 0, 0, 527, 528, 5, 116, 0, 0, 528, 82, 1, 0, 0, 0, 529, 530, 5, 105, 0, 0, 530, 531, 5, 110, 0, 0, 531, 532, 5, 116, 0, 0, 532, 533, 5, 101, 0, 0, 533, 534, 5, 114, 0, 0, 534, 535, 5, 102, 0, 0, 535, 536, 5, 97, 0, 0, 536, 537, 5, 99, 0, 0, 537, 538, 5, 101, 0, 0, 538, 84, 1, 0, 0, 0, 539, 540, 5, 108, 0, 0, 540, 541, 5, 111, 0, 0, 541, 542, 5, 110, 0, 0, 542, 543, 5, 103, 0, 0, 543, 86, 1, 0, 0, 0, 544, 545, 5, 110, 0, 0, 545, 546, 5, 97, 0, 0, 546, 547, 5, 116, 0, 0, 547, 548, 5, 105, 0, 0, 548, 549, 5, 118, 0, 0, 549, 550, 5, 101, 0, 0, 550, 88, 1, 0, 0, 0, 551, 552, 5, 110, 0, 0, 552, 553, 5, 101, 0, 0, 553, 554, 5, 119, 0, 0, 554, 90, 1, 0, 0, 0, 555, 556, 5, 112, 0, 0, 556, 557, 5, 97, 0, 0, 557, 558, 5, 99, 0, 0, 558, 559, 5, 107, 0, 0, 559, 560, 5, 97, 0, 0, 560, 561, 5, 103, 0, 0, 561, 562, 5, 101, 0, 0, 562, 92, 1, 0, 0, 0, 563, 564, 5, 112, 0, 0, 564, 565, 5, 114, 0, 0, 565, 566, 5, 105, 0, 0, 566, 567, 5, 118, 0, 0, 567, 568, 5, 97, 0, 0, 568, 569, 5, 116, 0, 0, 569, 570, 5, 101, 0, 0, 570, 94, 1, 0, 0, 0, 571, 572, 5, 112, 0, 0, 572, 573, 5, 114, 0, 0, 573, 574, 5, 111, 0, 0, 574, 575, 5, 116, 0, 0, 575, 576, 5, 101, 0, 0, 576, 577, 5, 99, 0, 0, 577, 578, 5, 116, 0, 0, 578, 579, 5, 101, 0, 0, 579, 580, 5, 100, 0, 0, 580, 96, 1, 0, 0, 0, 581, 582, 5, 112, 0, 0, 582, 583, 5, 117, 0, 0, 583, 584, 5, 98, 0, 0, 584, 585, 5, 108, 0, 0, 585, 586, 5, 105, 0, 0, 586, 587, 5, 99, 0, 0, 587, 98, 1, 0, 0, 0, 588, 589, 5, 114, 0, 0, 589, 590, 5, 101, 0, 0, 590, 591, 5, 116, 0, 0, 591, 592, 5, 117, 0, 0, 592, 593, 5, 114, 0, 0, 593, 594, 5, 110, 0, 0, 594, 100, 1, 0, 0, 0, 595, 596, 5, 115, 0, 0, 596, 597, 5, 104, 0, 0, 597, 598, 5, 111, 0, 0, 598, 599, 5, 114, 0, 0, 599, 600, 5, 116, 0, 0, 600, 102, 1, 0, 0, 0, 601, 602, 5, 115, 0, 0, 602, 603, 5, 116, 0, 0, 603, 604, 5, 97, 0, 0, 604, 605, 5, 116, 0, 0, 605, 606, 5, 105, 0, 0, 606, 607, 5, 99, 0, 0, 607, 104, 1, 0, 0, 0, 608, 609, 5, 115, 0, 0, 609, 610, 5, 116, 0, 0, 610, 611, 5, 114, 0, 0, 611, 612, 5, 105, 0, 0, 612, 613, 5, 99, 0, 0, 613, 614, 5, 116, 0, 0, 614, 615, 5, 102, 0, 0, 615, 616, 5, 112, 0, 0, 616, 106, 1, 0, 0, 0, 617, 618, 5, 115, 0, 0, 618, 619, 5, 117, 0, 0, 619, 620, 5, 112, 0, 0, 620, 621, 5, 101, 0, 0, 621, 622, 5, 114, 0, 0, 622, 108, 1, 0, 0, 0, 623, 624, 5, 115, 0, 0, 624, 625, 5, 119, 0, 0, 625, 626, 5, 105, 0, 0, 626, 627, 5, 116, 0, 0, 627, 628, 5, 99, 0, 0, 628, 629, 5, 104, 0, 0, 629, 110, 1, 0, 0, 0, 630, 631, 5, 115, 0, 0, 631, 632, 5, 121, 0, 0, 632, 633, 5, 110, 0, 0, 633, 634, 5, 99, 0, 0, 634, 635, 5, 104, 0, 0, 635, 636, 5, 114, 0, 0, 636, 637, 5, 111, 0, 0, 637, 638, 5, 110, 0, 0, 638, 639, 5, 105, 0, 0, 639, 640, 5, 122, 0, 0, 640, 641, 5, 101, 0, 0, 641, 642, 5, 100, 0, 0, 642, 112, 1, 0, 0, 0, 643, 644, 5, 116, 0, 0, 644, 645, 5, 104, 0, 0, 645, 646, 5, 105, 0, 0, 646, 647, 5, 115, 0, 0, 647, 114, 1, 0, 0, 0, 648, 649, 5, 116, 0, 0, 649, 650, 5, 104, 0, 0, 650, 651, 5, 114, 0, 0, 651, 652, 5, 111, 0, 0, 652, 653, 5, 119, 0, 0, 653, 116, 1, 0, 0, 0, 654, 655, 5, 116, 0, 0, 655, 656, 5, 104, 0, 0, 656, 657, 5, 114, 0, 0, 657, 658, 5, 111, 0, 0, 658, 659, 5, 119, 0, 0, 659, 660, 5, 115, 0, 0, 660, 118, 1, 0, 0, 0, 661, 662, 5, 116, 0, 0, 662, 663, 5, 114, 0, 0, 663, 664, 5, 97, 0, 0, 664, 665, 5, 110, 0, 0, 665, 666, 5, 115, 0, 0, 666, 667, 5, 105, 0, 0, 667, 668, 5, 101, 0, 0, 668, 669, 5, 110, 0, 0, 669, 670, 5, 116, 0, 0, 670, 120, 1, 0, 0, 0, 671, 672, 5, 116, 0, 0, 672, 673, 5, 114, 0, 0, 673, 674, 5, 121, 0, 0, 674, 122, 1, 0, 0, 0, 675, 676, 5, 118, 0, 0, 676, 677, 5, 111, 0, 0, 677, 678, 5, 105, 0, 0, 678, 679, 5, 100, 0, 0, 679, 124, 1, 0, 0, 0, 680, 681, 5, 118, 0, 0, 681, 682, 5, 111, 0, 0, 682, 683, 5, 108, 0, 0, 683, 684, 5, 97, 0, 0, 684, 685, 5, 116, 0, 0, 685, 686, 5, 105, 0, 0, 686, 687, 5, 108, 0, 0, 687, 688, 5, 101, 0, 0, 688, 126, 1, 0, 0, 0, 689, 690, 5, 119, 0, 0, 690, 691, 5, 104, 0, 0, 691, 692, 5, 105, 0, 0, 692, 693, 5, 108, 0, 0, 693, 694, 5, 101, 0, 0, 694, 128, 1, 0, 0, 0, 695, 699, 3, 131, 65, 0, 696, 699, 3, 133, 66, 0, 697, 699, 3, 135, 67, 0, 698, 695, 1, 0, 0, 0, 698, 696, 1, 0, 0, 0, 698, 697, 1, 0, 0, 0, 699, 130, 1, 0, 0, 0, 700, 702, 3, 139, 69, 0, 701, 703, 3, 137, 68, 0, 702, 701, 1, 0, 0, 0, 702, 703, 1, 0, 0, 0, 703, 132, 1, 0, 0, 0, 704, 706, 3, 141, 70, 0, 705, 707, 3, 137, 68, 0, 706, 705, 1, 0, 0, 0, 706, 707, 1, 0, 0, 0, 707, 134, 1, 0, 0, 0, 708, 710, 3, 179, 89, 0, 709, 711, 3, 137, 68, 0, 710, 709, 1, 0, 0, 0, 710, 711, 1, 0, 0, 0, 711, 136, 1, 0, 0, 0, 712, 713, 7, 5, 0, 0, 713, 138, 1, 0, 0, 0, 714, 720, 5, 48, 0, 0, 715, 717, 3, 159, 79, 0, 716, 718, 3, 155, 77, 0, 717, 716, 1, 0, 0, 0, 717, 718, 1, 0, 0, 0, 718, 720, 1, 0, 0, 0, 719, 714, 1, 0, 0, 0, 719, 715, 1, 0, 0, 0, 720, 140, 1, 0, 0, 0, 721, 722, 5, 48, 0, 0, 722, 723, 5, 120, 0, 0, 723, 728, 3, 143, 71, 0, 724, 725, 5, 48, 0, 0, 725, 726, 5, 88, 0, 0, 726, 728, 3, 143, 71, 0, 727, 721, 1, 0, 0, 0, 727, 724, 1, 0, 0, 0, 728, 142, 1, 0, 0, 0, 729, 734, 3, 145, 72, 0, 730, 731, 3, 145, 72, 0, 731, 732, 3, 143, 71, 0, 732, 734, 1, 0, 0, 0, 733, 729, 1, 0, 0, 0, 733, 730, 1, 0, 0, 0, 734, 144, 1, 0, 0, 0, 735, 736, 7, 6, 0, 0, 736, 146, 1, 0, 0, 0, 737, 738, 3, 155, 77, 0, 738, 740, 5, 46, 0, 0, 739, 741, 3, 155, 77, 0, 740, 739, 1, 0, 0, 0, 740, 741, 1, 0, 0, 0, 741, 743, 1, 0, 0, 0, 742, 744, 3, 149, 74, 0, 743, 742, 1, 0, 0, 0, 743, 744, 1, 0, 0, 0, 744, 746, 1, 0, 0, 0, 745, 747, 3, 163, 81, 0, 746, 745, 1, 0, 0, 0, 746, 747, 1, 0, 0, 0, 747, 768, 1, 0, 0, 0, 748, 749, 5, 46, 0, 0, 749, 751, 3, 155, 77, 0, 750, 752, 3, 149, 74, 0, 751, 750, 1, 0, 0, 0, 751, 752, 1, 0, 0, 0, 752, 754, 1, 0, 0, 0, 753, 755, 3, 163, 81, 0, 754, 753, 1, 0, 0, 0, 754, 755, 1, 0, 0, 0, 755, 768, 1, 0, 0, 0, 756, 757, 3, 155, 77, 0, 757, 759, 3, 149, 74, 0, 758, 760, 3, 163, 81, 0, 759, 758, 1, 0, 0, 0, 759, 760, 1, 0, 0, 0, 760, 768, 1, 0, 0, 0, 761, 763, 3, 155, 77, 0, 762, 764, 3, 149, 74, 0, 763, 762, 1, 0, 0, 0, 763, 764, 1, 0, 0, 0, 764, 765, 1, 0, 0, 0, 765, 766, 3, 163, 81, 0, 766, 768, 1, 0, 0, 0, 767, 737, 1, 0, 0, 0, 767, 748, 1, 0, 0, 0, 767, 756, 1, 0, 0, 0, 767, 761, 1, 0, 0, 0, 768, 148, 1, 0, 0, 0, 769, 770, 3, 151, 75, 0, 770, 771, 3, 153, 76, 0, 771, 150, 1, 0, 0, 0, 772, 773, 7, 7, 0, 0, 773, 152, 1, 0, 0, 0, 774, 776, 3, 161, 80, 0, 775, 774, 1, 0, 0, 0, 775, 776, 1, 0, 0, 0, 776, 777, 1, 0, 0, 0, 777, 778, 3, 155, 77, 0, 778, 154, 1, 0, 0, 0, 779, 781, 3, 157, 78, 0, 780, 779, 1, 0, 0, 0, 781, 782, 1, 0, 0, 0, 782, 780, 1, 0, 0, 0, 782, 783, 1, 0, 0, 0, 783, 156, 1, 0, 0, 0, 784, 787, 5, 48, 0, 0, 785, 787, 3, 159, 79, 0, 786, 784, 1, 0, 0, 0, 786, 785, 1, 0, 0, 0, 787, 158, 1, 0, 0, 0, 788, 789, 7, 8, 0, 0, 789, 160, 1, 0, 0, 0, 790, 791, 7, 9, 0, 0, 791, 162, 1, 0, 0, 0, 792, 793, 7, 10, 0, 0, 793, 164, 1, 0, 0, 0, 794, 795, 5, 39, 0, 0, 795, 796, 3, 167, 83, 0, 796, 797, 5, 39, 0, 0, 797, 803, 1, 0, 0, 0, 798, 799, 5, 39, 0, 0, 799, 800, 3, 175, 87, 0, 800, 801, 5, 39, 0, 0, 801, 803, 1, 0, 0, 0, 802, 794, 1, 0, 0, 0, 802, 798, 1, 0, 0, 0, 803, 166, 1, 0, 0, 0, 804, 805, 7, 11, 0, 0, 805, 168, 1, 0, 0, 0, 806, 808, 5, 34, 0, 0, 807, 809, 3, 171, 85, 0, 808, 807, 1, 0, 0, 0, 808, 809, 1, 0, 0, 0, 809, 810, 1, 0, 0, 0, 810, 811, 5, 34, 0, 0, 811, 170, 1, 0, 0, 0, 812, 814, 3, 173, 86, 0, 813, 812, 1, 0, 0, 0, 814, 815, 1, 0, 0, 0, 815, 813, 1, 0, 0, 0, 815, 816, 1, 0, 0, 0, 816, 172, 1, 0, 0, 0, 817, 820, 3, 167, 83, 0, 818, 820, 3, 175, 87, 0, 819, 817, 1, 0, 0, 0, 819, 818, 1, 0, 0, 0, 820, 174, 1, 0, 0, 0, 821, 863, 5, 92, 0, 0, 822, 823, 5, 117, 0, 0, 823, 824, 5, 48, 0, 0, 824, 825, 5, 48, 0, 0, 825, 826, 5, 48, 0, 0, 826, 864, 5, 56, 0, 0, 827, 828, 5, 117, 0, 0, 828, 829, 5, 48, 0, 0, 829, 830, 5, 48, 0, 0, 830, 831, 5, 48, 0, 0, 831, 864, 5, 57, 0, 0, 832, 833, 5, 117, 0, 0, 833, 834, 5, 48, 0, 0, 834, 835, 5, 48, 0, 0, 835, 836, 5, 48, 0, 0, 836, 864, 5, 97, 0, 0, 837, 838, 5, 117, 0, 0, 838, 839, 5, 48, 0, 0, 839, 840, 5, 48, 0, 0, 840, 841, 5, 48, 0, 0, 841, 864, 5, 99, 0, 0, 842, 843, 5, 117, 0, 0, 843, 844, 5, 48, 0, 0, 844, 845, 5, 48, 0, 0, 845, 846, 5, 48, 0, 0, 846, 864, 5, 100, 0, 0, 847, 848, 5, 117, 0, 0, 848, 849, 5, 48, 0, 0, 849, 850, 5, 48, 0, 0, 850, 851, 5, 50, 0, 0, 851, 864, 5, 50, 0, 0, 852, 853, 5, 117, 0, 0, 853, 854, 5, 48, 0, 0, 854, 855, 5, 48, 0, 0, 855, 856, 5, 50, 0, 0, 856, 864, 5, 55, 0, 0, 857, 858, 5, 117, 0, 0, 858, 859, 5, 48, 0, 0, 859, 860, 5, 48, 0, 0, 860, 861, 5, 53, 0, 0, 861, 864, 5, 99, 0, 0, 862, 864, 3, 177, 88, 0, 863, 822, 1, 0, 0, 0, 863, 827, 1, 0, 0, 0, 863, 832, 1, 0, 0, 0, 863, 837, 1, 0, 0, 0, 863, 842, 1, 0, 0, 0, 863, 847, 1, 0, 0, 0, 863, 852, 1, 0, 0, 0, 863, 857, 1, 0, 0, 0, 863, 862, 1, 0, 0, 0, 864, 176, 1, 0, 0, 0, 865, 866, 5, 92, 0, 0, 866, 877, 3, 183, 91, 0, 867, 868, 5, 92, 0, 0, 868, 869, 3, 183, 91, 0, 869, 870, 3, 183, 91, 0, 870, 877, 1, 0, 0, 0, 871, 872, 5, 92, 0, 0, 872, 873, 3, 185, 92, 0, 873, 874, 3, 183, 91, 0, 874, 875, 3, 183, 91, 0, 875, 877, 1, 0, 0, 0, 876, 865, 1, 0, 0, 0, 876, 867, 1, 0, 0, 0, 876, 871, 1, 0, 0, 0, 877, 178, 1, 0, 0, 0, 878, 879, 5, 48, 0, 0, 879, 880, 3, 181, 90, 0, 880, 180, 1, 0, 0, 0, 881, 882, 3, 183, 91, 0, 882, 182, 1, 0, 0, 0, 883, 884, 7, 12, 0, 0, 884, 184, 1, 0, 0, 0, 885, 886, 7, 13, 0, 0, 886, 186, 1, 0, 0, 0, 887, 888, 5, 116, 0, 0, 888, 889, 5, 114, 0, 0, 889, 890, 5, 117, 0, 0, 890, 897, 5, 101, 0, 0, 891, 892, 5, 102, 0, 0, 892, 893, 5, 97, 0, 0, 893, 894, 5, 108, 0, 0, 894, 895, 5, 115, 0, 0, 895, 897, 5, 101, 0, 0, 896, 887, 1, 0, 0, 0, 896, 891, 1, 0, 0, 0, 897, 188, 1, 0, 0, 0, 898, 899, 5, 110, 0, 0, 899, 900, 5, 117, 0, 0, 900, 901, 5, 108, 0, 0, 901, 902, 5, 108, 0, 0, 902, 190, 1, 0, 0, 0, 903, 904, 5, 40, 0, 0, 904, 192, 1, 0, 0, 0, 905, 906, 5, 41, 0, 0, 906, 194, 1, 0, 0, 0, 907, 908, 5, 123, 0, 0, 908, 196, 1, 0, 0, 0, 909, 910, 5, 125, 0, 0, 910, 198, 1, 0, 0, 0, 911, 912, 5, 91, 0, 0, 912, 200, 1, 0, 0, 0, 913, 914, 5, 93, 0, 0, 914, 202, 1, 0, 0, 0, 915, 916, 5, 59, 0, 0, 916, 204, 1, 0, 0, 0, 917, 918, 5, 44, 0, 0, 918, 206, 1, 0, 0, 0, 919, 920, 5, 46, 0, 0, 920, 208, 1, 0, 0, 0, 921, 922, 5, 61, 0, 0, 922, 210, 1, 0, 0, 0, 923, 924, 5, 62, 0, 0, 924, 212, 1, 0, 0, 0, 925, 926, 5, 60, 0, 0, 926, 214, 1, 0, 0, 0, 927, 928, 5, 33, 0, 0, 928, 216, 1, 0, 0, 0, 929, 930, 5, 126, 0, 0, 930, 218, 1, 0, 0, 0, 931, 932, 5, 63, 0, 0, 932, 220, 1, 0, 0, 0, 933, 934, 5, 58, 0, 0, 934, 222, 1, 0, 0, 0, 935, 936, 5, 61, 0, 0, 936, 937, 5, 61, 0, 0, 937, 224, 1, 0, 0, 0, 938, 939, 5, 60, 0, 0, 939, 940, 5, 61, 0, 0, 940, 226, 1, 0, 0, 0, 941, 942, 5, 62, 0, 0, 942, 943, 5, 61, 0, 0, 943, 228, 1, 0, 0, 0, 944, 945, 5, 33, 0, 0, 945, 946, 5, 61, 0, 0, 946, 230, 1, 0, 0, 0, 947, 948, 5, 38, 0, 0, 948, 949, 5, 38, 0, 0, 949, 232, 1, 0, 0, 0, 950, 951, 5, 124, 0, 0, 951, 952, 5, 124, 0, 0, 952, 234, 1, 0, 0, 0, 953, 954, 5, 43, 0, 0, 954, 955, 5, 43, 0, 0, 955, 236, 1, 0, 0, 0, 956, 957, 5, 45, 0, 0, 957, 958, 5, 45, 0, 0, 958, 238, 1, 0, 0, 0, 959, 960, 5, 43, 0, 0, 960, 240, 1, 0, 0, 0, 961, 962, 5, 45, 0, 0, 962, 242, 1, 0, 0, 0, 963, 964, 5, 42, 0, 0, 964, 244, 1, 0, 0, 0, 965, 966, 5, 47, 0, 0, 966, 246, 1, 0, 0, 0, 967, 968, 5, 38, 0, 0, 968, 248, 1, 0, 0, 0, 969, 970, 5, 124, 0, 0, 970, 250, 1, 0, 0, 0, 971, 972, 5, 94, 0, 0, 972, 252, 1, 0, 0, 0, 973, 974, 5, 37, 0, 0, 974, 254, 1, 0, 0, 0, 975, 976, 5, 60, 0, 0, 976, 977, 5, 60, 0, 0, 977, 256, 1, 0, 0, 0, 978, 979, 5, 62, 0, 0, 979, 980, 5, 62, 0, 0, 980, 258, 1, 0, 0, 0, 981, 982, 5, 62, 0, 0, 982, 983, 5, 62, 0, 0, 983, 984, 5, 62, 0, 0, 984, 260, 1, 0, 0, 0, 985, 986, 5, 43, 0, 0, 986, 987, 5, 61, 0, 0, 987, 262, 1, 0, 0, 0, 988, 989, 5, 45, 0, 0, 989, 990, 5, 61, 0, 0, 990, 264, 1, 0, 0, 0, 991, 992, 5, 42, 0, 0, 992, 993, 5, 61, 0, 0, 993, 266, 1, 0, 0, 0, 994, 995, 5, 47, 0, 0, 995, 996, 5, 61, 0, 0, 996, 268, 1, 0, 0, 0, 997, 998, 5, 38, 0, 0, 998, 999, 5, 61, 0, 0, 999, 270, 1, 0, 0, 0, 1000, 1001, 5, 124, 0, 0, 1001, 1002, 5, 61, 0, 0, 1002, 272, 1, 0, 0, 0, 1003, 1004, 5, 94, 0, 0, 1004, 1005, 5, 61, 0, 0, 1005, 274, 1, 0, 0, 0, 1006, 1007, 5, 37, 0, 0, 1007, 1008, 5, 61, 0, 0, 1008, 276, 1, 0, 0, 0, 1009, 1010, 5, 60, 0, 0, 1010, 1011, 5, 60, 0, 0, 1011, 1012, 5, 61, 0, 0, 1012, 278, 1, 0, 0, 0, 1013, 1014, 5, 62, 0, 0, 1014, 1015, 5, 62, 0, 0, 1015, 1016, 5, 61, 0, 0, 1016, 280, 1, 0, 0, 0, 1017, 1018, 5, 62, 0, 0, 1018, 1019, 5, 62, 0, 0, 1019, 1020, 5, 62, 0, 0, 1020, 1021, 5, 61, 0, 0, 1021, 282, 1, 0, 0, 0, 1022, 1023, 3, 285, 142, 0, 1023, 1024, 3, 287, 143, 0, 1024, 284, 1, 0, 0, 0, 1025, 1026, 7, 14, 0, 0, 1026, 286, 1, 0, 0, 0, 1027, 1030, 3, 285, 142, 0, 1028, 1030, 7, 15, 0, 0, 1029, 1027, 1, 0, 0, 0, 1029, 1028, 1, 0, 0, 0, 1030, 288, 1, 0, 0, 0, 39, 0, 291, 303, 310, 316, 320, 332, 339, 347, 351, 355, 359, 698, 702, 706, 710, 717, 719, 727, 733, 740, 743, 746, 751, 754, 759, 763, 767, 775, 782, 786, 802, 808, 815, 819, 863, 876, 896, 1029, 0]
\ No newline at end of file
diff --git a/gen/ExprLexer.java b/gen/ExprLexer.java
new file mode 100644
index 0000000..d9e7973
--- /dev/null
+++ b/gen/ExprLexer.java
@@ -0,0 +1,813 @@
+// Generated from /Users/mannpatel/Desktop/CPSC-499/ExprLexer.g4 by ANTLR 4.13.2
+import org.antlr.v4.runtime.Lexer;
+import org.antlr.v4.runtime.CharStream;
+import org.antlr.v4.runtime.Token;
+import org.antlr.v4.runtime.TokenStream;
+import org.antlr.v4.runtime.*;
+import org.antlr.v4.runtime.atn.*;
+import org.antlr.v4.runtime.dfa.DFA;
+import org.antlr.v4.runtime.misc.*;
+
+@SuppressWarnings({"all", "warnings", "unchecked", "unused", "cast", "CheckReturnValue", "this-escape"})
+public class ExprLexer extends Lexer {
+ static { RuntimeMetaData.checkVersion("4.13.2", RuntimeMetaData.VERSION); }
+
+ protected static final DFA[] _decisionToDFA;
+ protected static final PredictionContextCache _sharedContextCache =
+ new PredictionContextCache();
+ public static final int
+ UnicodeInputCharacter=1, LineTerminator=2, InputCharacter=3, WhiteSpace=4,
+ Comment=5, Abstract=6, Assert=7, Boolean=8, Break=9, Byte=10, Case=11,
+ Catch=12, Char=13, Class=14, Const=15, Continue=16, Default=17, Do=18,
+ Double=19, Else=20, Extends=21, Final=22, Finally=23, Float=24, For=25,
+ Goto=26, If=27, Implements=28, Import=29, InstanceOf=30, Int=31, Interface=32,
+ Long=33, Native=34, New=35, Package=36, Private=37, Protected=38, Public=39,
+ Return=40, Short=41, Static=42, Strictfp=43, Super=44, Switch=45, Synchronized=46,
+ This=47, Throw=48, Throws=49, Transient=50, Try=51, Void=52, Volatile=53,
+ While=54, IntigerLiteral=55, FloatingPointLiteral=56, CharacterLiteral=57,
+ StringLiteral=58, BooleanLiteral=59, NullLiteral=60, ParanthesesLeft=61,
+ ParanthesesRight=62, CurlyBracketLeft=63, CurlyBracketRight=64, SquareBracketLeft=65,
+ SquareBracketRight=66, Semicolon=67, Comma=68, Dot=69, Assignment=70,
+ GreterThan=71, LessThan=72, LogicalComplement=73, BitwiseComplement=74,
+ Question=75, Colon=76, EqualTo=77, LessThanEqualTo=78, GreaterThanEqualTo=79,
+ NotEqualTO=80, ConditionalAND=81, ConditionalOR=82, Increment=83, Decrement=84,
+ Addition=85, Subtaction=86, Multiplication=87, Division=88, BitwiseAND=89,
+ BitwiseOR=90, BitwiseXOR=91, Remainder=92, LeftShift=93, SignedRightShift=94,
+ UnsignedRightShift=95, AddAssign=96, SubtractAssign=97, MultiplyAssign=98,
+ DivideAssign=99, BitwiseANDAssign=100, BitwiseORAssign=101, BitwiseXORAssign=102,
+ RemainderAssign=103, LeftShiftAssign=104, SighnedRightShiftAssign=105,
+ UnsighnedRightShiftAssign=106, Identifier=107;
+ public static String[] channelNames = {
+ "DEFAULT_TOKEN_CHANNEL", "HIDDEN"
+ };
+
+ public static String[] modeNames = {
+ "DEFAULT_MODE"
+ };
+
+ private static String[] makeRuleNames() {
+ return new String[] {
+ "UnicodeInputCharacter", "UnicodeEscape", "UnicodeMarker", "RawInputCharacter",
+ "LineTerminator", "InputCharacter", "WhiteSpace", "Comment", "TraditionalComment",
+ "EndOfLineComment", "CommentTail", "CommentTailStar", "NotStar", "NotStarNotSlash",
+ "CharactersInLine", "Abstract", "Assert", "Boolean", "Break", "Byte",
+ "Case", "Catch", "Char", "Class", "Const", "Continue", "Default", "Do",
+ "Double", "Else", "Extends", "Final", "Finally", "Float", "For", "Goto",
+ "If", "Implements", "Import", "InstanceOf", "Int", "Interface", "Long",
+ "Native", "New", "Package", "Private", "Protected", "Public", "Return",
+ "Short", "Static", "Strictfp", "Super", "Switch", "Synchronized", "This",
+ "Throw", "Throws", "Transient", "Try", "Void", "Volatile", "While", "IntigerLiteral",
+ "DecimalIntegerLiteral", "HexIntegerLiteral", "OctalIntegerLiteral",
+ "IntegerTypeSuffix", "DecimalNumeral", "HexNumeral", "HexDigits", "HexDigit",
+ "FloatingPointLiteral", "ExponentPart", "ExponentIndicator", "SignedInteger",
+ "Digits", "Digit", "NonZeroDigit", "Sign", "FloatTypeSuffix", "CharacterLiteral",
+ "SingleCharacter", "StringLiteral", "StringCharacters", "StringCharacter",
+ "EscapeSequence", "OctalEscape", "OctalNumeral", "OctalDigits", "OctalDigit",
+ "ZeroToThree", "BooleanLiteral", "NullLiteral", "ParanthesesLeft", "ParanthesesRight",
+ "CurlyBracketLeft", "CurlyBracketRight", "SquareBracketLeft", "SquareBracketRight",
+ "Semicolon", "Comma", "Dot", "Assignment", "GreterThan", "LessThan",
+ "LogicalComplement", "BitwiseComplement", "Question", "Colon", "EqualTo",
+ "LessThanEqualTo", "GreaterThanEqualTo", "NotEqualTO", "ConditionalAND",
+ "ConditionalOR", "Increment", "Decrement", "Addition", "Subtaction",
+ "Multiplication", "Division", "BitwiseAND", "BitwiseOR", "BitwiseXOR",
+ "Remainder", "LeftShift", "SignedRightShift", "UnsignedRightShift", "AddAssign",
+ "SubtractAssign", "MultiplyAssign", "DivideAssign", "BitwiseANDAssign",
+ "BitwiseORAssign", "BitwiseXORAssign", "RemainderAssign", "LeftShiftAssign",
+ "SighnedRightShiftAssign", "UnsighnedRightShiftAssign", "Identifier",
+ "JavaLetter", "JavaLetterOrDigit"
+ };
+ }
+ public static final String[] ruleNames = makeRuleNames();
+
+ private static String[] makeLiteralNames() {
+ return new String[] {
+ null, null, null, null, null, null, "'abstract'", "'assert'", "'boolean'",
+ "'break'", "'byte'", "'case'", "'catch'", "'char'", "'class'", "'const'",
+ "'continue'", "'default'", "'do'", "'double'", "'else'", "'extends'",
+ "'final'", "'finally'", "'float'", "'for'", "'goto'", "'if'", "'implements'",
+ "'import'", "'instanceof'", "'int'", "'interface'", "'long'", "'native'",
+ "'new'", "'package'", "'private'", "'protected'", "'public'", "'return'",
+ "'short'", "'static'", "'strictfp'", "'super'", "'switch'", "'synchronized'",
+ "'this'", "'throw'", "'throws'", "'transient'", "'try'", "'void'", "'volatile'",
+ "'while'", null, null, null, null, null, "'null'", "'('", "')'", "'{'",
+ "'}'", "'['", "']'", "';'", "','", "'.'", "'='", "'>'", "'<'", "'!'",
+ "'~'", "'?'", "':'", "'=='", "'<='", "'>='", "'!='", "'&&'", "'||'",
+ "'++'", "'--'", "'+'", "'-'", "'*'", "'/'", "'&'", "'|'", "'^'", "'%'",
+ "'<<'", "'>>'", "'>>>'", "'+='", "'-='", "'*='", "'/='", "'&='", "'|='",
+ "'^='", "'%='", "'<<='", "'>>='", "'>>>='"
+ };
+ }
+ private static final String[] _LITERAL_NAMES = makeLiteralNames();
+ private static String[] makeSymbolicNames() {
+ return new String[] {
+ null, "UnicodeInputCharacter", "LineTerminator", "InputCharacter", "WhiteSpace",
+ "Comment", "Abstract", "Assert", "Boolean", "Break", "Byte", "Case",
+ "Catch", "Char", "Class", "Const", "Continue", "Default", "Do", "Double",
+ "Else", "Extends", "Final", "Finally", "Float", "For", "Goto", "If",
+ "Implements", "Import", "InstanceOf", "Int", "Interface", "Long", "Native",
+ "New", "Package", "Private", "Protected", "Public", "Return", "Short",
+ "Static", "Strictfp", "Super", "Switch", "Synchronized", "This", "Throw",
+ "Throws", "Transient", "Try", "Void", "Volatile", "While", "IntigerLiteral",
+ "FloatingPointLiteral", "CharacterLiteral", "StringLiteral", "BooleanLiteral",
+ "NullLiteral", "ParanthesesLeft", "ParanthesesRight", "CurlyBracketLeft",
+ "CurlyBracketRight", "SquareBracketLeft", "SquareBracketRight", "Semicolon",
+ "Comma", "Dot", "Assignment", "GreterThan", "LessThan", "LogicalComplement",
+ "BitwiseComplement", "Question", "Colon", "EqualTo", "LessThanEqualTo",
+ "GreaterThanEqualTo", "NotEqualTO", "ConditionalAND", "ConditionalOR",
+ "Increment", "Decrement", "Addition", "Subtaction", "Multiplication",
+ "Division", "BitwiseAND", "BitwiseOR", "BitwiseXOR", "Remainder", "LeftShift",
+ "SignedRightShift", "UnsignedRightShift", "AddAssign", "SubtractAssign",
+ "MultiplyAssign", "DivideAssign", "BitwiseANDAssign", "BitwiseORAssign",
+ "BitwiseXORAssign", "RemainderAssign", "LeftShiftAssign", "SighnedRightShiftAssign",
+ "UnsighnedRightShiftAssign", "Identifier"
+ };
+ }
+ private static final String[] _SYMBOLIC_NAMES = makeSymbolicNames();
+ public static final Vocabulary VOCABULARY = new VocabularyImpl(_LITERAL_NAMES, _SYMBOLIC_NAMES);
+
+ /**
+ * @deprecated Use {@link #VOCABULARY} instead.
+ */
+ @Deprecated
+ public static final String[] tokenNames;
+ static {
+ tokenNames = new String[_SYMBOLIC_NAMES.length];
+ for (int i = 0; i < tokenNames.length; i++) {
+ tokenNames[i] = VOCABULARY.getLiteralName(i);
+ if (tokenNames[i] == null) {
+ tokenNames[i] = VOCABULARY.getSymbolicName(i);
+ }
+
+ if (tokenNames[i] == null) {
+ tokenNames[i] = "";
+ }
+ }
+ }
+
+ @Override
+ @Deprecated
+ public String[] getTokenNames() {
+ return tokenNames;
+ }
+
+ @Override
+
+ public Vocabulary getVocabulary() {
+ return VOCABULARY;
+ }
+
+
+ public ExprLexer(CharStream input) {
+ super(input);
+ _interp = new LexerATNSimulator(this,_ATN,_decisionToDFA,_sharedContextCache);
+ }
+
+ @Override
+ public String getGrammarFileName() { return "ExprLexer.g4"; }
+
+ @Override
+ public String[] getRuleNames() { return ruleNames; }
+
+ @Override
+ public String getSerializedATN() { return _serializedATN; }
+
+ @Override
+ public String[] getChannelNames() { return channelNames; }
+
+ @Override
+ public String[] getModeNames() { return modeNames; }
+
+ @Override
+ public ATN getATN() { return _ATN; }
+
+ public static final String _serializedATN =
+ "\u0004\u0000k\u0407\u0006\uffff\uffff\u0002\u0000\u0007\u0000\u0002\u0001"+
+ "\u0007\u0001\u0002\u0002\u0007\u0002\u0002\u0003\u0007\u0003\u0002\u0004"+
+ "\u0007\u0004\u0002\u0005\u0007\u0005\u0002\u0006\u0007\u0006\u0002\u0007"+
+ "\u0007\u0007\u0002\b\u0007\b\u0002\t\u0007\t\u0002\n\u0007\n\u0002\u000b"+
+ "\u0007\u000b\u0002\f\u0007\f\u0002\r\u0007\r\u0002\u000e\u0007\u000e\u0002"+
+ "\u000f\u0007\u000f\u0002\u0010\u0007\u0010\u0002\u0011\u0007\u0011\u0002"+
+ "\u0012\u0007\u0012\u0002\u0013\u0007\u0013\u0002\u0014\u0007\u0014\u0002"+
+ "\u0015\u0007\u0015\u0002\u0016\u0007\u0016\u0002\u0017\u0007\u0017\u0002"+
+ "\u0018\u0007\u0018\u0002\u0019\u0007\u0019\u0002\u001a\u0007\u001a\u0002"+
+ "\u001b\u0007\u001b\u0002\u001c\u0007\u001c\u0002\u001d\u0007\u001d\u0002"+
+ "\u001e\u0007\u001e\u0002\u001f\u0007\u001f\u0002 \u0007 \u0002!\u0007"+
+ "!\u0002\"\u0007\"\u0002#\u0007#\u0002$\u0007$\u0002%\u0007%\u0002&\u0007"+
+ "&\u0002\'\u0007\'\u0002(\u0007(\u0002)\u0007)\u0002*\u0007*\u0002+\u0007"+
+ "+\u0002,\u0007,\u0002-\u0007-\u0002.\u0007.\u0002/\u0007/\u00020\u0007"+
+ "0\u00021\u00071\u00022\u00072\u00023\u00073\u00024\u00074\u00025\u0007"+
+ "5\u00026\u00076\u00027\u00077\u00028\u00078\u00029\u00079\u0002:\u0007"+
+ ":\u0002;\u0007;\u0002<\u0007<\u0002=\u0007=\u0002>\u0007>\u0002?\u0007"+
+ "?\u0002@\u0007@\u0002A\u0007A\u0002B\u0007B\u0002C\u0007C\u0002D\u0007"+
+ "D\u0002E\u0007E\u0002F\u0007F\u0002G\u0007G\u0002H\u0007H\u0002I\u0007"+
+ "I\u0002J\u0007J\u0002K\u0007K\u0002L\u0007L\u0002M\u0007M\u0002N\u0007"+
+ "N\u0002O\u0007O\u0002P\u0007P\u0002Q\u0007Q\u0002R\u0007R\u0002S\u0007"+
+ "S\u0002T\u0007T\u0002U\u0007U\u0002V\u0007V\u0002W\u0007W\u0002X\u0007"+
+ "X\u0002Y\u0007Y\u0002Z\u0007Z\u0002[\u0007[\u0002\\\u0007\\\u0002]\u0007"+
+ "]\u0002^\u0007^\u0002_\u0007_\u0002`\u0007`\u0002a\u0007a\u0002b\u0007"+
+ "b\u0002c\u0007c\u0002d\u0007d\u0002e\u0007e\u0002f\u0007f\u0002g\u0007"+
+ "g\u0002h\u0007h\u0002i\u0007i\u0002j\u0007j\u0002k\u0007k\u0002l\u0007"+
+ "l\u0002m\u0007m\u0002n\u0007n\u0002o\u0007o\u0002p\u0007p\u0002q\u0007"+
+ "q\u0002r\u0007r\u0002s\u0007s\u0002t\u0007t\u0002u\u0007u\u0002v\u0007"+
+ "v\u0002w\u0007w\u0002x\u0007x\u0002y\u0007y\u0002z\u0007z\u0002{\u0007"+
+ "{\u0002|\u0007|\u0002}\u0007}\u0002~\u0007~\u0002\u007f\u0007\u007f\u0002"+
+ "\u0080\u0007\u0080\u0002\u0081\u0007\u0081\u0002\u0082\u0007\u0082\u0002"+
+ "\u0083\u0007\u0083\u0002\u0084\u0007\u0084\u0002\u0085\u0007\u0085\u0002"+
+ "\u0086\u0007\u0086\u0002\u0087\u0007\u0087\u0002\u0088\u0007\u0088\u0002"+
+ "\u0089\u0007\u0089\u0002\u008a\u0007\u008a\u0002\u008b\u0007\u008b\u0002"+
+ "\u008c\u0007\u008c\u0002\u008d\u0007\u008d\u0002\u008e\u0007\u008e\u0002"+
+ "\u008f\u0007\u008f\u0001\u0000\u0001\u0000\u0003\u0000\u0124\b\u0000\u0001"+
+ "\u0001\u0001\u0001\u0001\u0001\u0001\u0001\u0001\u0001\u0001\u0001\u0001"+
+ "\u0001\u0001\u0002\u0004\u0002\u012e\b\u0002\u000b\u0002\f\u0002\u012f"+
+ "\u0001\u0003\u0001\u0003\u0001\u0004\u0001\u0004\u0001\u0004\u0003\u0004"+
+ "\u0137\b\u0004\u0001\u0005\u0001\u0005\u0001\u0006\u0001\u0006\u0003\u0006"+
+ "\u013d\b\u0006\u0001\u0007\u0001\u0007\u0003\u0007\u0141\b\u0007\u0001"+
+ "\b\u0001\b\u0001\b\u0001\b\u0001\b\u0001\b\u0001\t\u0001\t\u0001\t\u0001"+
+ "\t\u0003\t\u014d\b\t\u0001\t\u0001\t\u0001\n\u0001\n\u0001\n\u0003\n\u0154"+
+ "\b\n\u0001\u000b\u0001\u000b\u0001\u000b\u0001\u000b\u0001\u000b\u0001"+
+ "\u000b\u0003\u000b\u015c\b\u000b\u0001\f\u0001\f\u0003\f\u0160\b\f\u0001"+
+ "\r\u0001\r\u0003\r\u0164\b\r\u0001\u000e\u0001\u000e\u0003\u000e\u0168"+
+ "\b\u000e\u0001\u000f\u0001\u000f\u0001\u000f\u0001\u000f\u0001\u000f\u0001"+
+ "\u000f\u0001\u000f\u0001\u000f\u0001\u000f\u0001\u0010\u0001\u0010\u0001"+
+ "\u0010\u0001\u0010\u0001\u0010\u0001\u0010\u0001\u0010\u0001\u0011\u0001"+
+ "\u0011\u0001\u0011\u0001\u0011\u0001\u0011\u0001\u0011\u0001\u0011\u0001"+
+ "\u0011\u0001\u0012\u0001\u0012\u0001\u0012\u0001\u0012\u0001\u0012\u0001"+
+ "\u0012\u0001\u0013\u0001\u0013\u0001\u0013\u0001\u0013\u0001\u0013\u0001"+
+ "\u0014\u0001\u0014\u0001\u0014\u0001\u0014\u0001\u0014\u0001\u0015\u0001"+
+ "\u0015\u0001\u0015\u0001\u0015\u0001\u0015\u0001\u0015\u0001\u0016\u0001"+
+ "\u0016\u0001\u0016\u0001\u0016\u0001\u0016\u0001\u0017\u0001\u0017\u0001"+
+ "\u0017\u0001\u0017\u0001\u0017\u0001\u0017\u0001\u0018\u0001\u0018\u0001"+
+ "\u0018\u0001\u0018\u0001\u0018\u0001\u0018\u0001\u0019\u0001\u0019\u0001"+
+ "\u0019\u0001\u0019\u0001\u0019\u0001\u0019\u0001\u0019\u0001\u0019\u0001"+
+ "\u0019\u0001\u001a\u0001\u001a\u0001\u001a\u0001\u001a\u0001\u001a\u0001"+
+ "\u001a\u0001\u001a\u0001\u001a\u0001\u001b\u0001\u001b\u0001\u001b\u0001"+
+ "\u001c\u0001\u001c\u0001\u001c\u0001\u001c\u0001\u001c\u0001\u001c\u0001"+
+ "\u001c\u0001\u001d\u0001\u001d\u0001\u001d\u0001\u001d\u0001\u001d\u0001"+
+ "\u001e\u0001\u001e\u0001\u001e\u0001\u001e\u0001\u001e\u0001\u001e\u0001"+
+ "\u001e\u0001\u001e\u0001\u001f\u0001\u001f\u0001\u001f\u0001\u001f\u0001"+
+ "\u001f\u0001\u001f\u0001 \u0001 \u0001 \u0001 \u0001 \u0001 \u0001 \u0001"+
+ " \u0001!\u0001!\u0001!\u0001!\u0001!\u0001!\u0001\"\u0001\"\u0001\"\u0001"+
+ "\"\u0001#\u0001#\u0001#\u0001#\u0001#\u0001$\u0001$\u0001$\u0001%\u0001"+
+ "%\u0001%\u0001%\u0001%\u0001%\u0001%\u0001%\u0001%\u0001%\u0001%\u0001"+
+ "&\u0001&\u0001&\u0001&\u0001&\u0001&\u0001&\u0001\'\u0001\'\u0001\'\u0001"+
+ "\'\u0001\'\u0001\'\u0001\'\u0001\'\u0001\'\u0001\'\u0001\'\u0001(\u0001"+
+ "(\u0001(\u0001(\u0001)\u0001)\u0001)\u0001)\u0001)\u0001)\u0001)\u0001"+
+ ")\u0001)\u0001)\u0001*\u0001*\u0001*\u0001*\u0001*\u0001+\u0001+\u0001"+
+ "+\u0001+\u0001+\u0001+\u0001+\u0001,\u0001,\u0001,\u0001,\u0001-\u0001"+
+ "-\u0001-\u0001-\u0001-\u0001-\u0001-\u0001-\u0001.\u0001.\u0001.\u0001"+
+ ".\u0001.\u0001.\u0001.\u0001.\u0001/\u0001/\u0001/\u0001/\u0001/\u0001"+
+ "/\u0001/\u0001/\u0001/\u0001/\u00010\u00010\u00010\u00010\u00010\u0001"+
+ "0\u00010\u00011\u00011\u00011\u00011\u00011\u00011\u00011\u00012\u0001"+
+ "2\u00012\u00012\u00012\u00012\u00013\u00013\u00013\u00013\u00013\u0001"+
+ "3\u00013\u00014\u00014\u00014\u00014\u00014\u00014\u00014\u00014\u0001"+
+ "4\u00015\u00015\u00015\u00015\u00015\u00015\u00016\u00016\u00016\u0001"+
+ "6\u00016\u00016\u00016\u00017\u00017\u00017\u00017\u00017\u00017\u0001"+
+ "7\u00017\u00017\u00017\u00017\u00017\u00017\u00018\u00018\u00018\u0001"+
+ "8\u00018\u00019\u00019\u00019\u00019\u00019\u00019\u0001:\u0001:\u0001"+
+ ":\u0001:\u0001:\u0001:\u0001:\u0001;\u0001;\u0001;\u0001;\u0001;\u0001"+
+ ";\u0001;\u0001;\u0001;\u0001;\u0001<\u0001<\u0001<\u0001<\u0001=\u0001"+
+ "=\u0001=\u0001=\u0001=\u0001>\u0001>\u0001>\u0001>\u0001>\u0001>\u0001"+
+ ">\u0001>\u0001>\u0001?\u0001?\u0001?\u0001?\u0001?\u0001?\u0001@\u0001"+
+ "@\u0001@\u0003@\u02bb\b@\u0001A\u0001A\u0003A\u02bf\bA\u0001B\u0001B\u0003"+
+ "B\u02c3\bB\u0001C\u0001C\u0003C\u02c7\bC\u0001D\u0001D\u0001E\u0001E\u0001"+
+ "E\u0003E\u02ce\bE\u0003E\u02d0\bE\u0001F\u0001F\u0001F\u0001F\u0001F\u0001"+
+ "F\u0003F\u02d8\bF\u0001G\u0001G\u0001G\u0001G\u0003G\u02de\bG\u0001H\u0001"+
+ "H\u0001I\u0001I\u0001I\u0003I\u02e5\bI\u0001I\u0003I\u02e8\bI\u0001I\u0003"+
+ "I\u02eb\bI\u0001I\u0001I\u0001I\u0003I\u02f0\bI\u0001I\u0003I\u02f3\b"+
+ "I\u0001I\u0001I\u0001I\u0003I\u02f8\bI\u0001I\u0001I\u0003I\u02fc\bI\u0001"+
+ "I\u0001I\u0003I\u0300\bI\u0001J\u0001J\u0001J\u0001K\u0001K\u0001L\u0003"+
+ "L\u0308\bL\u0001L\u0001L\u0001M\u0004M\u030d\bM\u000bM\fM\u030e\u0001"+
+ "N\u0001N\u0003N\u0313\bN\u0001O\u0001O\u0001P\u0001P\u0001Q\u0001Q\u0001"+
+ "R\u0001R\u0001R\u0001R\u0001R\u0001R\u0001R\u0001R\u0003R\u0323\bR\u0001"+
+ "S\u0001S\u0001T\u0001T\u0003T\u0329\bT\u0001T\u0001T\u0001U\u0004U\u032e"+
+ "\bU\u000bU\fU\u032f\u0001V\u0001V\u0003V\u0334\bV\u0001W\u0001W\u0001"+
+ "W\u0001W\u0001W\u0001W\u0001W\u0001W\u0001W\u0001W\u0001W\u0001W\u0001"+
+ "W\u0001W\u0001W\u0001W\u0001W\u0001W\u0001W\u0001W\u0001W\u0001W\u0001"+
+ "W\u0001W\u0001W\u0001W\u0001W\u0001W\u0001W\u0001W\u0001W\u0001W\u0001"+
+ "W\u0001W\u0001W\u0001W\u0001W\u0001W\u0001W\u0001W\u0001W\u0001W\u0003"+
+ "W\u0360\bW\u0001X\u0001X\u0001X\u0001X\u0001X\u0001X\u0001X\u0001X\u0001"+
+ "X\u0001X\u0001X\u0003X\u036d\bX\u0001Y\u0001Y\u0001Y\u0001Z\u0001Z\u0001"+
+ "[\u0001[\u0001\\\u0001\\\u0001]\u0001]\u0001]\u0001]\u0001]\u0001]\u0001"+
+ "]\u0001]\u0001]\u0003]\u0381\b]\u0001^\u0001^\u0001^\u0001^\u0001^\u0001"+
+ "_\u0001_\u0001`\u0001`\u0001a\u0001a\u0001b\u0001b\u0001c\u0001c\u0001"+
+ "d\u0001d\u0001e\u0001e\u0001f\u0001f\u0001g\u0001g\u0001h\u0001h\u0001"+
+ "i\u0001i\u0001j\u0001j\u0001k\u0001k\u0001l\u0001l\u0001m\u0001m\u0001"+
+ "n\u0001n\u0001o\u0001o\u0001o\u0001p\u0001p\u0001p\u0001q\u0001q\u0001"+
+ "q\u0001r\u0001r\u0001r\u0001s\u0001s\u0001s\u0001t\u0001t\u0001t\u0001"+
+ "u\u0001u\u0001u\u0001v\u0001v\u0001v\u0001w\u0001w\u0001x\u0001x\u0001"+
+ "y\u0001y\u0001z\u0001z\u0001{\u0001{\u0001|\u0001|\u0001}\u0001}\u0001"+
+ "~\u0001~\u0001\u007f\u0001\u007f\u0001\u007f\u0001\u0080\u0001\u0080\u0001"+
+ "\u0080\u0001\u0081\u0001\u0081\u0001\u0081\u0001\u0081\u0001\u0082\u0001"+
+ "\u0082\u0001\u0082\u0001\u0083\u0001\u0083\u0001\u0083\u0001\u0084\u0001"+
+ "\u0084\u0001\u0084\u0001\u0085\u0001\u0085\u0001\u0085\u0001\u0086\u0001"+
+ "\u0086\u0001\u0086\u0001\u0087\u0001\u0087\u0001\u0087\u0001\u0088\u0001"+
+ "\u0088\u0001\u0088\u0001\u0089\u0001\u0089\u0001\u0089\u0001\u008a\u0001"+
+ "\u008a\u0001\u008a\u0001\u008a\u0001\u008b\u0001\u008b\u0001\u008b\u0001"+
+ "\u008b\u0001\u008c\u0001\u008c\u0001\u008c\u0001\u008c\u0001\u008c\u0001"+
+ "\u008d\u0001\u008d\u0001\u008d\u0001\u008e\u0001\u008e\u0001\u008f\u0001"+
+ "\u008f\u0003\u008f\u0406\b\u008f\u0000\u0000\u0090\u0001\u0001\u0003\u0000"+
+ "\u0005\u0000\u0007\u0000\t\u0002\u000b\u0003\r\u0004\u000f\u0005\u0011"+
+ "\u0000\u0013\u0000\u0015\u0000\u0017\u0000\u0019\u0000\u001b\u0000\u001d"+
+ "\u0000\u001f\u0006!\u0007#\b%\t\'\n)\u000b+\f-\r/\u000e1\u000f3\u0010"+
+ "5\u00117\u00129\u0013;\u0014=\u0015?\u0016A\u0017C\u0018E\u0019G\u001a"+
+ "I\u001bK\u001cM\u001dO\u001eQ\u001fS U!W\"Y#[$]%_&a\'c(e)g*i+k,m-o.q/"+
+ "s0u1w2y3{4}5\u007f6\u00817\u0083\u0000\u0085\u0000\u0087\u0000\u0089\u0000"+
+ "\u008b\u0000\u008d\u0000\u008f\u0000\u0091\u0000\u00938\u0095\u0000\u0097"+
+ "\u0000\u0099\u0000\u009b\u0000\u009d\u0000\u009f\u0000\u00a1\u0000\u00a3"+
+ "\u0000\u00a59\u00a7\u0000\u00a9:\u00ab\u0000\u00ad\u0000\u00af\u0000\u00b1"+
+ "\u0000\u00b3\u0000\u00b5\u0000\u00b7\u0000\u00b9\u0000\u00bb;\u00bd<\u00bf"+
+ "=\u00c1>\u00c3?\u00c5@\u00c7A\u00c9B\u00cbC\u00cdD\u00cfE\u00d1F\u00d3"+
+ "G\u00d5H\u00d7I\u00d9J\u00dbK\u00ddL\u00dfM\u00e1N\u00e3O\u00e5P\u00e7"+
+ "Q\u00e9R\u00ebS\u00edT\u00efU\u00f1V\u00f3W\u00f5X\u00f7Y\u00f9Z\u00fb"+
+ "[\u00fd\\\u00ff]\u0101^\u0103_\u0105`\u0107a\u0109b\u010bc\u010dd\u010f"+
+ "e\u0111f\u0113g\u0115h\u0117i\u0119j\u011bk\u011d\u0000\u011f\u0000\u0001"+
+ "\u0000\u0010\u0002\u0000\n\n\r\r\u0003\u0000\n\n\r\r^^\u0003\u0000\t\t"+
+ "\f\f \u0002\u0000**^^\u0003\u0000**//^^\u0002\u0000LLll\u0003\u00000"+
+ "9AFaf\u0002\u0000EEee\u0001\u000019\u0002\u0000++--\u0004\u0000DDFFdd"+
+ "ff\u0003\u0000\'\'\\\\^^\u0001\u000007\u0001\u000003\u0004\u0000$$AZ_"+
+ "_az\u0001\u000009\u0413\u0000\u0001\u0001\u0000\u0000\u0000\u0000\t\u0001"+
+ "\u0000\u0000\u0000\u0000\u000b\u0001\u0000\u0000\u0000\u0000\r\u0001\u0000"+
+ "\u0000\u0000\u0000\u000f\u0001\u0000\u0000\u0000\u0000\u001f\u0001\u0000"+
+ "\u0000\u0000\u0000!\u0001\u0000\u0000\u0000\u0000#\u0001\u0000\u0000\u0000"+
+ "\u0000%\u0001\u0000\u0000\u0000\u0000\'\u0001\u0000\u0000\u0000\u0000"+
+ ")\u0001\u0000\u0000\u0000\u0000+\u0001\u0000\u0000\u0000\u0000-\u0001"+
+ "\u0000\u0000\u0000\u0000/\u0001\u0000\u0000\u0000\u00001\u0001\u0000\u0000"+
+ "\u0000\u00003\u0001\u0000\u0000\u0000\u00005\u0001\u0000\u0000\u0000\u0000"+
+ "7\u0001\u0000\u0000\u0000\u00009\u0001\u0000\u0000\u0000\u0000;\u0001"+
+ "\u0000\u0000\u0000\u0000=\u0001\u0000\u0000\u0000\u0000?\u0001\u0000\u0000"+
+ "\u0000\u0000A\u0001\u0000\u0000\u0000\u0000C\u0001\u0000\u0000\u0000\u0000"+
+ "E\u0001\u0000\u0000\u0000\u0000G\u0001\u0000\u0000\u0000\u0000I\u0001"+
+ "\u0000\u0000\u0000\u0000K\u0001\u0000\u0000\u0000\u0000M\u0001\u0000\u0000"+
+ "\u0000\u0000O\u0001\u0000\u0000\u0000\u0000Q\u0001\u0000\u0000\u0000\u0000"+
+ "S\u0001\u0000\u0000\u0000\u0000U\u0001\u0000\u0000\u0000\u0000W\u0001"+
+ "\u0000\u0000\u0000\u0000Y\u0001\u0000\u0000\u0000\u0000[\u0001\u0000\u0000"+
+ "\u0000\u0000]\u0001\u0000\u0000\u0000\u0000_\u0001\u0000\u0000\u0000\u0000"+
+ "a\u0001\u0000\u0000\u0000\u0000c\u0001\u0000\u0000\u0000\u0000e\u0001"+
+ "\u0000\u0000\u0000\u0000g\u0001\u0000\u0000\u0000\u0000i\u0001\u0000\u0000"+
+ "\u0000\u0000k\u0001\u0000\u0000\u0000\u0000m\u0001\u0000\u0000\u0000\u0000"+
+ "o\u0001\u0000\u0000\u0000\u0000q\u0001\u0000\u0000\u0000\u0000s\u0001"+
+ "\u0000\u0000\u0000\u0000u\u0001\u0000\u0000\u0000\u0000w\u0001\u0000\u0000"+
+ "\u0000\u0000y\u0001\u0000\u0000\u0000\u0000{\u0001\u0000\u0000\u0000\u0000"+
+ "}\u0001\u0000\u0000\u0000\u0000\u007f\u0001\u0000\u0000\u0000\u0000\u0081"+
+ "\u0001\u0000\u0000\u0000\u0000\u0093\u0001\u0000\u0000\u0000\u0000\u00a5"+
+ "\u0001\u0000\u0000\u0000\u0000\u00a9\u0001\u0000\u0000\u0000\u0000\u00bb"+
+ "\u0001\u0000\u0000\u0000\u0000\u00bd\u0001\u0000\u0000\u0000\u0000\u00bf"+
+ "\u0001\u0000\u0000\u0000\u0000\u00c1\u0001\u0000\u0000\u0000\u0000\u00c3"+
+ "\u0001\u0000\u0000\u0000\u0000\u00c5\u0001\u0000\u0000\u0000\u0000\u00c7"+
+ "\u0001\u0000\u0000\u0000\u0000\u00c9\u0001\u0000\u0000\u0000\u0000\u00cb"+
+ "\u0001\u0000\u0000\u0000\u0000\u00cd\u0001\u0000\u0000\u0000\u0000\u00cf"+
+ "\u0001\u0000\u0000\u0000\u0000\u00d1\u0001\u0000\u0000\u0000\u0000\u00d3"+
+ "\u0001\u0000\u0000\u0000\u0000\u00d5\u0001\u0000\u0000\u0000\u0000\u00d7"+
+ "\u0001\u0000\u0000\u0000\u0000\u00d9\u0001\u0000\u0000\u0000\u0000\u00db"+
+ "\u0001\u0000\u0000\u0000\u0000\u00dd\u0001\u0000\u0000\u0000\u0000\u00df"+
+ "\u0001\u0000\u0000\u0000\u0000\u00e1\u0001\u0000\u0000\u0000\u0000\u00e3"+
+ "\u0001\u0000\u0000\u0000\u0000\u00e5\u0001\u0000\u0000\u0000\u0000\u00e7"+
+ "\u0001\u0000\u0000\u0000\u0000\u00e9\u0001\u0000\u0000\u0000\u0000\u00eb"+
+ "\u0001\u0000\u0000\u0000\u0000\u00ed\u0001\u0000\u0000\u0000\u0000\u00ef"+
+ "\u0001\u0000\u0000\u0000\u0000\u00f1\u0001\u0000\u0000\u0000\u0000\u00f3"+
+ "\u0001\u0000\u0000\u0000\u0000\u00f5\u0001\u0000\u0000\u0000\u0000\u00f7"+
+ "\u0001\u0000\u0000\u0000\u0000\u00f9\u0001\u0000\u0000\u0000\u0000\u00fb"+
+ "\u0001\u0000\u0000\u0000\u0000\u00fd\u0001\u0000\u0000\u0000\u0000\u00ff"+
+ "\u0001\u0000\u0000\u0000\u0000\u0101\u0001\u0000\u0000\u0000\u0000\u0103"+
+ "\u0001\u0000\u0000\u0000\u0000\u0105\u0001\u0000\u0000\u0000\u0000\u0107"+
+ "\u0001\u0000\u0000\u0000\u0000\u0109\u0001\u0000\u0000\u0000\u0000\u010b"+
+ "\u0001\u0000\u0000\u0000\u0000\u010d\u0001\u0000\u0000\u0000\u0000\u010f"+
+ "\u0001\u0000\u0000\u0000\u0000\u0111\u0001\u0000\u0000\u0000\u0000\u0113"+
+ "\u0001\u0000\u0000\u0000\u0000\u0115\u0001\u0000\u0000\u0000\u0000\u0117"+
+ "\u0001\u0000\u0000\u0000\u0000\u0119\u0001\u0000\u0000\u0000\u0000\u011b"+
+ "\u0001\u0000\u0000\u0000\u0001\u0123\u0001\u0000\u0000\u0000\u0003\u0125"+
+ "\u0001\u0000\u0000\u0000\u0005\u012d\u0001\u0000\u0000\u0000\u0007\u0131"+
+ "\u0001\u0000\u0000\u0000\t\u0136\u0001\u0000\u0000\u0000\u000b\u0138\u0001"+
+ "\u0000\u0000\u0000\r\u013c\u0001\u0000\u0000\u0000\u000f\u0140\u0001\u0000"+
+ "\u0000\u0000\u0011\u0142\u0001\u0000\u0000\u0000\u0013\u0148\u0001\u0000"+
+ "\u0000\u0000\u0015\u0153\u0001\u0000\u0000\u0000\u0017\u015b\u0001\u0000"+
+ "\u0000\u0000\u0019\u015f\u0001\u0000\u0000\u0000\u001b\u0163\u0001\u0000"+
+ "\u0000\u0000\u001d\u0167\u0001\u0000\u0000\u0000\u001f\u0169\u0001\u0000"+
+ "\u0000\u0000!\u0172\u0001\u0000\u0000\u0000#\u0179\u0001\u0000\u0000\u0000"+
+ "%\u0181\u0001\u0000\u0000\u0000\'\u0187\u0001\u0000\u0000\u0000)\u018c"+
+ "\u0001\u0000\u0000\u0000+\u0191\u0001\u0000\u0000\u0000-\u0197\u0001\u0000"+
+ "\u0000\u0000/\u019c\u0001\u0000\u0000\u00001\u01a2\u0001\u0000\u0000\u0000"+
+ "3\u01a8\u0001\u0000\u0000\u00005\u01b1\u0001\u0000\u0000\u00007\u01b9"+
+ "\u0001\u0000\u0000\u00009\u01bc\u0001\u0000\u0000\u0000;\u01c3\u0001\u0000"+
+ "\u0000\u0000=\u01c8\u0001\u0000\u0000\u0000?\u01d0\u0001\u0000\u0000\u0000"+
+ "A\u01d6\u0001\u0000\u0000\u0000C\u01de\u0001\u0000\u0000\u0000E\u01e4"+
+ "\u0001\u0000\u0000\u0000G\u01e8\u0001\u0000\u0000\u0000I\u01ed\u0001\u0000"+
+ "\u0000\u0000K\u01f0\u0001\u0000\u0000\u0000M\u01fb\u0001\u0000\u0000\u0000"+
+ "O\u0202\u0001\u0000\u0000\u0000Q\u020d\u0001\u0000\u0000\u0000S\u0211"+
+ "\u0001\u0000\u0000\u0000U\u021b\u0001\u0000\u0000\u0000W\u0220\u0001\u0000"+
+ "\u0000\u0000Y\u0227\u0001\u0000\u0000\u0000[\u022b\u0001\u0000\u0000\u0000"+
+ "]\u0233\u0001\u0000\u0000\u0000_\u023b\u0001\u0000\u0000\u0000a\u0245"+
+ "\u0001\u0000\u0000\u0000c\u024c\u0001\u0000\u0000\u0000e\u0253\u0001\u0000"+
+ "\u0000\u0000g\u0259\u0001\u0000\u0000\u0000i\u0260\u0001\u0000\u0000\u0000"+
+ "k\u0269\u0001\u0000\u0000\u0000m\u026f\u0001\u0000\u0000\u0000o\u0276"+
+ "\u0001\u0000\u0000\u0000q\u0283\u0001\u0000\u0000\u0000s\u0288\u0001\u0000"+
+ "\u0000\u0000u\u028e\u0001\u0000\u0000\u0000w\u0295\u0001\u0000\u0000\u0000"+
+ "y\u029f\u0001\u0000\u0000\u0000{\u02a3\u0001\u0000\u0000\u0000}\u02a8"+
+ "\u0001\u0000\u0000\u0000\u007f\u02b1\u0001\u0000\u0000\u0000\u0081\u02ba"+
+ "\u0001\u0000\u0000\u0000\u0083\u02bc\u0001\u0000\u0000\u0000\u0085\u02c0"+
+ "\u0001\u0000\u0000\u0000\u0087\u02c4\u0001\u0000\u0000\u0000\u0089\u02c8"+
+ "\u0001\u0000\u0000\u0000\u008b\u02cf\u0001\u0000\u0000\u0000\u008d\u02d7"+
+ "\u0001\u0000\u0000\u0000\u008f\u02dd\u0001\u0000\u0000\u0000\u0091\u02df"+
+ "\u0001\u0000\u0000\u0000\u0093\u02ff\u0001\u0000\u0000\u0000\u0095\u0301"+
+ "\u0001\u0000\u0000\u0000\u0097\u0304\u0001\u0000\u0000\u0000\u0099\u0307"+
+ "\u0001\u0000\u0000\u0000\u009b\u030c\u0001\u0000\u0000\u0000\u009d\u0312"+
+ "\u0001\u0000\u0000\u0000\u009f\u0314\u0001\u0000\u0000\u0000\u00a1\u0316"+
+ "\u0001\u0000\u0000\u0000\u00a3\u0318\u0001\u0000\u0000\u0000\u00a5\u0322"+
+ "\u0001\u0000\u0000\u0000\u00a7\u0324\u0001\u0000\u0000\u0000\u00a9\u0326"+
+ "\u0001\u0000\u0000\u0000\u00ab\u032d\u0001\u0000\u0000\u0000\u00ad\u0333"+
+ "\u0001\u0000\u0000\u0000\u00af\u0335\u0001\u0000\u0000\u0000\u00b1\u036c"+
+ "\u0001\u0000\u0000\u0000\u00b3\u036e\u0001\u0000\u0000\u0000\u00b5\u0371"+
+ "\u0001\u0000\u0000\u0000\u00b7\u0373\u0001\u0000\u0000\u0000\u00b9\u0375"+
+ "\u0001\u0000\u0000\u0000\u00bb\u0380\u0001\u0000\u0000\u0000\u00bd\u0382"+
+ "\u0001\u0000\u0000\u0000\u00bf\u0387\u0001\u0000\u0000\u0000\u00c1\u0389"+
+ "\u0001\u0000\u0000\u0000\u00c3\u038b\u0001\u0000\u0000\u0000\u00c5\u038d"+
+ "\u0001\u0000\u0000\u0000\u00c7\u038f\u0001\u0000\u0000\u0000\u00c9\u0391"+
+ "\u0001\u0000\u0000\u0000\u00cb\u0393\u0001\u0000\u0000\u0000\u00cd\u0395"+
+ "\u0001\u0000\u0000\u0000\u00cf\u0397\u0001\u0000\u0000\u0000\u00d1\u0399"+
+ "\u0001\u0000\u0000\u0000\u00d3\u039b\u0001\u0000\u0000\u0000\u00d5\u039d"+
+ "\u0001\u0000\u0000\u0000\u00d7\u039f\u0001\u0000\u0000\u0000\u00d9\u03a1"+
+ "\u0001\u0000\u0000\u0000\u00db\u03a3\u0001\u0000\u0000\u0000\u00dd\u03a5"+
+ "\u0001\u0000\u0000\u0000\u00df\u03a7\u0001\u0000\u0000\u0000\u00e1\u03aa"+
+ "\u0001\u0000\u0000\u0000\u00e3\u03ad\u0001\u0000\u0000\u0000\u00e5\u03b0"+
+ "\u0001\u0000\u0000\u0000\u00e7\u03b3\u0001\u0000\u0000\u0000\u00e9\u03b6"+
+ "\u0001\u0000\u0000\u0000\u00eb\u03b9\u0001\u0000\u0000\u0000\u00ed\u03bc"+
+ "\u0001\u0000\u0000\u0000\u00ef\u03bf\u0001\u0000\u0000\u0000\u00f1\u03c1"+
+ "\u0001\u0000\u0000\u0000\u00f3\u03c3\u0001\u0000\u0000\u0000\u00f5\u03c5"+
+ "\u0001\u0000\u0000\u0000\u00f7\u03c7\u0001\u0000\u0000\u0000\u00f9\u03c9"+
+ "\u0001\u0000\u0000\u0000\u00fb\u03cb\u0001\u0000\u0000\u0000\u00fd\u03cd"+
+ "\u0001\u0000\u0000\u0000\u00ff\u03cf\u0001\u0000\u0000\u0000\u0101\u03d2"+
+ "\u0001\u0000\u0000\u0000\u0103\u03d5\u0001\u0000\u0000\u0000\u0105\u03d9"+
+ "\u0001\u0000\u0000\u0000\u0107\u03dc\u0001\u0000\u0000\u0000\u0109\u03df"+
+ "\u0001\u0000\u0000\u0000\u010b\u03e2\u0001\u0000\u0000\u0000\u010d\u03e5"+
+ "\u0001\u0000\u0000\u0000\u010f\u03e8\u0001\u0000\u0000\u0000\u0111\u03eb"+
+ "\u0001\u0000\u0000\u0000\u0113\u03ee\u0001\u0000\u0000\u0000\u0115\u03f1"+
+ "\u0001\u0000\u0000\u0000\u0117\u03f5\u0001\u0000\u0000\u0000\u0119\u03f9"+
+ "\u0001\u0000\u0000\u0000\u011b\u03fe\u0001\u0000\u0000\u0000\u011d\u0401"+
+ "\u0001\u0000\u0000\u0000\u011f\u0405\u0001\u0000\u0000\u0000\u0121\u0124"+
+ "\u0003\u0003\u0001\u0000\u0122\u0124\u0003\u0007\u0003\u0000\u0123\u0121"+
+ "\u0001\u0000\u0000\u0000\u0123\u0122\u0001\u0000\u0000\u0000\u0124\u0002"+
+ "\u0001\u0000\u0000\u0000\u0125\u0126\u0005\\\u0000\u0000\u0126\u0127\u0003"+
+ "\u0005\u0002\u0000\u0127\u0128\u0003\u0091H\u0000\u0128\u0129\u0003\u0091"+
+ "H\u0000\u0129\u012a\u0003\u0091H\u0000\u012a\u012b\u0003\u0091H\u0000"+
+ "\u012b\u0004\u0001\u0000\u0000\u0000\u012c\u012e\u0005u\u0000\u0000\u012d"+
+ "\u012c\u0001\u0000\u0000\u0000\u012e\u012f\u0001\u0000\u0000\u0000\u012f"+
+ "\u012d\u0001\u0000\u0000\u0000\u012f\u0130\u0001\u0000\u0000\u0000\u0130"+
+ "\u0006\u0001\u0000\u0000\u0000\u0131\u0132\u0001\u0000\u0000\u0000\u0132"+
+ "\b\u0001\u0000\u0000\u0000\u0133\u0137\u0007\u0000\u0000\u0000\u0134\u0135"+
+ "\u0005\r\u0000\u0000\u0135\u0137\u0005\n\u0000\u0000\u0136\u0133\u0001"+
+ "\u0000\u0000\u0000\u0136\u0134\u0001\u0000\u0000\u0000\u0137\n\u0001\u0000"+
+ "\u0000\u0000\u0138\u0139\u0007\u0001\u0000\u0000\u0139\f\u0001\u0000\u0000"+
+ "\u0000\u013a\u013d\u0007\u0002\u0000\u0000\u013b\u013d\u0003\t\u0004\u0000"+
+ "\u013c\u013a\u0001\u0000\u0000\u0000\u013c\u013b\u0001\u0000\u0000\u0000"+
+ "\u013d\u000e\u0001\u0000\u0000\u0000\u013e\u0141\u0003\u0011\b\u0000\u013f"+
+ "\u0141\u0003\u0013\t\u0000\u0140\u013e\u0001\u0000\u0000\u0000\u0140\u013f"+
+ "\u0001\u0000\u0000\u0000\u0141\u0010\u0001\u0000\u0000\u0000\u0142\u0143"+
+ "\u0005/\u0000\u0000\u0143\u0144\u0005*\u0000\u0000\u0144\u0145\u0001\u0000"+
+ "\u0000\u0000\u0145\u0146\u0003\u0019\f\u0000\u0146\u0147\u0003\u0015\n"+
+ "\u0000\u0147\u0012\u0001\u0000\u0000\u0000\u0148\u0149\u0005/\u0000\u0000"+
+ "\u0149\u014a\u0005/\u0000\u0000\u014a\u014c\u0001\u0000\u0000\u0000\u014b"+
+ "\u014d\u0003\u001d\u000e\u0000\u014c\u014b\u0001\u0000\u0000\u0000\u014c"+
+ "\u014d\u0001\u0000\u0000\u0000\u014d\u014e\u0001\u0000\u0000\u0000\u014e"+
+ "\u014f\u0003\t\u0004\u0000\u014f\u0014\u0001\u0000\u0000\u0000\u0150\u0151"+
+ "\u0005*\u0000\u0000\u0151\u0154\u0003\u0017\u000b\u0000\u0152\u0154\u0003"+
+ "\u0019\f\u0000\u0153\u0150\u0001\u0000\u0000\u0000\u0153\u0152\u0001\u0000"+
+ "\u0000\u0000\u0154\u0016\u0001\u0000\u0000\u0000\u0155\u015c\u0005/\u0000"+
+ "\u0000\u0156\u0157\u0005*\u0000\u0000\u0157\u015c\u0003\u0017\u000b\u0000"+
+ "\u0158\u0159\u0003\u001b\r\u0000\u0159\u015a\u0003\u0015\n\u0000\u015a"+
+ "\u015c\u0001\u0000\u0000\u0000\u015b\u0155\u0001\u0000\u0000\u0000\u015b"+
+ "\u0156\u0001\u0000\u0000\u0000\u015b\u0158\u0001\u0000\u0000\u0000\u015c"+
+ "\u0018\u0001\u0000\u0000\u0000\u015d\u0160\u0007\u0003\u0000\u0000\u015e"+
+ "\u0160\u0003\t\u0004\u0000\u015f\u015d\u0001\u0000\u0000\u0000\u015f\u015e"+
+ "\u0001\u0000\u0000\u0000\u0160\u001a\u0001\u0000\u0000\u0000\u0161\u0164"+
+ "\u0007\u0004\u0000\u0000\u0162\u0164\u0003\t\u0004\u0000\u0163\u0161\u0001"+
+ "\u0000\u0000\u0000\u0163\u0162\u0001\u0000\u0000\u0000\u0164\u001c\u0001"+
+ "\u0000\u0000\u0000\u0165\u0168\u0003\u000b\u0005\u0000\u0166\u0168\u0003"+
+ "\u000b\u0005\u0000\u0167\u0165\u0001\u0000\u0000\u0000\u0167\u0166\u0001"+
+ "\u0000\u0000\u0000\u0168\u001e\u0001\u0000\u0000\u0000\u0169\u016a\u0005"+
+ "a\u0000\u0000\u016a\u016b\u0005b\u0000\u0000\u016b\u016c\u0005s\u0000"+
+ "\u0000\u016c\u016d\u0005t\u0000\u0000\u016d\u016e\u0005r\u0000\u0000\u016e"+
+ "\u016f\u0005a\u0000\u0000\u016f\u0170\u0005c\u0000\u0000\u0170\u0171\u0005"+
+ "t\u0000\u0000\u0171 \u0001\u0000\u0000\u0000\u0172\u0173\u0005a\u0000"+
+ "\u0000\u0173\u0174\u0005s\u0000\u0000\u0174\u0175\u0005s\u0000\u0000\u0175"+
+ "\u0176\u0005e\u0000\u0000\u0176\u0177\u0005r\u0000\u0000\u0177\u0178\u0005"+
+ "t\u0000\u0000\u0178\"\u0001\u0000\u0000\u0000\u0179\u017a\u0005b\u0000"+
+ "\u0000\u017a\u017b\u0005o\u0000\u0000\u017b\u017c\u0005o\u0000\u0000\u017c"+
+ "\u017d\u0005l\u0000\u0000\u017d\u017e\u0005e\u0000\u0000\u017e\u017f\u0005"+
+ "a\u0000\u0000\u017f\u0180\u0005n\u0000\u0000\u0180$\u0001\u0000\u0000"+
+ "\u0000\u0181\u0182\u0005b\u0000\u0000\u0182\u0183\u0005r\u0000\u0000\u0183"+
+ "\u0184\u0005e\u0000\u0000\u0184\u0185\u0005a\u0000\u0000\u0185\u0186\u0005"+
+ "k\u0000\u0000\u0186&\u0001\u0000\u0000\u0000\u0187\u0188\u0005b\u0000"+
+ "\u0000\u0188\u0189\u0005y\u0000\u0000\u0189\u018a\u0005t\u0000\u0000\u018a"+
+ "\u018b\u0005e\u0000\u0000\u018b(\u0001\u0000\u0000\u0000\u018c\u018d\u0005"+
+ "c\u0000\u0000\u018d\u018e\u0005a\u0000\u0000\u018e\u018f\u0005s\u0000"+
+ "\u0000\u018f\u0190\u0005e\u0000\u0000\u0190*\u0001\u0000\u0000\u0000\u0191"+
+ "\u0192\u0005c\u0000\u0000\u0192\u0193\u0005a\u0000\u0000\u0193\u0194\u0005"+
+ "t\u0000\u0000\u0194\u0195\u0005c\u0000\u0000\u0195\u0196\u0005h\u0000"+
+ "\u0000\u0196,\u0001\u0000\u0000\u0000\u0197\u0198\u0005c\u0000\u0000\u0198"+
+ "\u0199\u0005h\u0000\u0000\u0199\u019a\u0005a\u0000\u0000\u019a\u019b\u0005"+
+ "r\u0000\u0000\u019b.\u0001\u0000\u0000\u0000\u019c\u019d\u0005c\u0000"+
+ "\u0000\u019d\u019e\u0005l\u0000\u0000\u019e\u019f\u0005a\u0000\u0000\u019f"+
+ "\u01a0\u0005s\u0000\u0000\u01a0\u01a1\u0005s\u0000\u0000\u01a10\u0001"+
+ "\u0000\u0000\u0000\u01a2\u01a3\u0005c\u0000\u0000\u01a3\u01a4\u0005o\u0000"+
+ "\u0000\u01a4\u01a5\u0005n\u0000\u0000\u01a5\u01a6\u0005s\u0000\u0000\u01a6"+
+ "\u01a7\u0005t\u0000\u0000\u01a72\u0001\u0000\u0000\u0000\u01a8\u01a9\u0005"+
+ "c\u0000\u0000\u01a9\u01aa\u0005o\u0000\u0000\u01aa\u01ab\u0005n\u0000"+
+ "\u0000\u01ab\u01ac\u0005t\u0000\u0000\u01ac\u01ad\u0005i\u0000\u0000\u01ad"+
+ "\u01ae\u0005n\u0000\u0000\u01ae\u01af\u0005u\u0000\u0000\u01af\u01b0\u0005"+
+ "e\u0000\u0000\u01b04\u0001\u0000\u0000\u0000\u01b1\u01b2\u0005d\u0000"+
+ "\u0000\u01b2\u01b3\u0005e\u0000\u0000\u01b3\u01b4\u0005f\u0000\u0000\u01b4"+
+ "\u01b5\u0005a\u0000\u0000\u01b5\u01b6\u0005u\u0000\u0000\u01b6\u01b7\u0005"+
+ "l\u0000\u0000\u01b7\u01b8\u0005t\u0000\u0000\u01b86\u0001\u0000\u0000"+
+ "\u0000\u01b9\u01ba\u0005d\u0000\u0000\u01ba\u01bb\u0005o\u0000\u0000\u01bb"+
+ "8\u0001\u0000\u0000\u0000\u01bc\u01bd\u0005d\u0000\u0000\u01bd\u01be\u0005"+
+ "o\u0000\u0000\u01be\u01bf\u0005u\u0000\u0000\u01bf\u01c0\u0005b\u0000"+
+ "\u0000\u01c0\u01c1\u0005l\u0000\u0000\u01c1\u01c2\u0005e\u0000\u0000\u01c2"+
+ ":\u0001\u0000\u0000\u0000\u01c3\u01c4\u0005e\u0000\u0000\u01c4\u01c5\u0005"+
+ "l\u0000\u0000\u01c5\u01c6\u0005s\u0000\u0000\u01c6\u01c7\u0005e\u0000"+
+ "\u0000\u01c7<\u0001\u0000\u0000\u0000\u01c8\u01c9\u0005e\u0000\u0000\u01c9"+
+ "\u01ca\u0005x\u0000\u0000\u01ca\u01cb\u0005t\u0000\u0000\u01cb\u01cc\u0005"+
+ "e\u0000\u0000\u01cc\u01cd\u0005n\u0000\u0000\u01cd\u01ce\u0005d\u0000"+
+ "\u0000\u01ce\u01cf\u0005s\u0000\u0000\u01cf>\u0001\u0000\u0000\u0000\u01d0"+
+ "\u01d1\u0005f\u0000\u0000\u01d1\u01d2\u0005i\u0000\u0000\u01d2\u01d3\u0005"+
+ "n\u0000\u0000\u01d3\u01d4\u0005a\u0000\u0000\u01d4\u01d5\u0005l\u0000"+
+ "\u0000\u01d5@\u0001\u0000\u0000\u0000\u01d6\u01d7\u0005f\u0000\u0000\u01d7"+
+ "\u01d8\u0005i\u0000\u0000\u01d8\u01d9\u0005n\u0000\u0000\u01d9\u01da\u0005"+
+ "a\u0000\u0000\u01da\u01db\u0005l\u0000\u0000\u01db\u01dc\u0005l\u0000"+
+ "\u0000\u01dc\u01dd\u0005y\u0000\u0000\u01ddB\u0001\u0000\u0000\u0000\u01de"+
+ "\u01df\u0005f\u0000\u0000\u01df\u01e0\u0005l\u0000\u0000\u01e0\u01e1\u0005"+
+ "o\u0000\u0000\u01e1\u01e2\u0005a\u0000\u0000\u01e2\u01e3\u0005t\u0000"+
+ "\u0000\u01e3D\u0001\u0000\u0000\u0000\u01e4\u01e5\u0005f\u0000\u0000\u01e5"+
+ "\u01e6\u0005o\u0000\u0000\u01e6\u01e7\u0005r\u0000\u0000\u01e7F\u0001"+
+ "\u0000\u0000\u0000\u01e8\u01e9\u0005g\u0000\u0000\u01e9\u01ea\u0005o\u0000"+
+ "\u0000\u01ea\u01eb\u0005t\u0000\u0000\u01eb\u01ec\u0005o\u0000\u0000\u01ec"+
+ "H\u0001\u0000\u0000\u0000\u01ed\u01ee\u0005i\u0000\u0000\u01ee\u01ef\u0005"+
+ "f\u0000\u0000\u01efJ\u0001\u0000\u0000\u0000\u01f0\u01f1\u0005i\u0000"+
+ "\u0000\u01f1\u01f2\u0005m\u0000\u0000\u01f2\u01f3\u0005p\u0000\u0000\u01f3"+
+ "\u01f4\u0005l\u0000\u0000\u01f4\u01f5\u0005e\u0000\u0000\u01f5\u01f6\u0005"+
+ "m\u0000\u0000\u01f6\u01f7\u0005e\u0000\u0000\u01f7\u01f8\u0005n\u0000"+
+ "\u0000\u01f8\u01f9\u0005t\u0000\u0000\u01f9\u01fa\u0005s\u0000\u0000\u01fa"+
+ "L\u0001\u0000\u0000\u0000\u01fb\u01fc\u0005i\u0000\u0000\u01fc\u01fd\u0005"+
+ "m\u0000\u0000\u01fd\u01fe\u0005p\u0000\u0000\u01fe\u01ff\u0005o\u0000"+
+ "\u0000\u01ff\u0200\u0005r\u0000\u0000\u0200\u0201\u0005t\u0000\u0000\u0201"+
+ "N\u0001\u0000\u0000\u0000\u0202\u0203\u0005i\u0000\u0000\u0203\u0204\u0005"+
+ "n\u0000\u0000\u0204\u0205\u0005s\u0000\u0000\u0205\u0206\u0005t\u0000"+
+ "\u0000\u0206\u0207\u0005a\u0000\u0000\u0207\u0208\u0005n\u0000\u0000\u0208"+
+ "\u0209\u0005c\u0000\u0000\u0209\u020a\u0005e\u0000\u0000\u020a\u020b\u0005"+
+ "o\u0000\u0000\u020b\u020c\u0005f\u0000\u0000\u020cP\u0001\u0000\u0000"+
+ "\u0000\u020d\u020e\u0005i\u0000\u0000\u020e\u020f\u0005n\u0000\u0000\u020f"+
+ "\u0210\u0005t\u0000\u0000\u0210R\u0001\u0000\u0000\u0000\u0211\u0212\u0005"+
+ "i\u0000\u0000\u0212\u0213\u0005n\u0000\u0000\u0213\u0214\u0005t\u0000"+
+ "\u0000\u0214\u0215\u0005e\u0000\u0000\u0215\u0216\u0005r\u0000\u0000\u0216"+
+ "\u0217\u0005f\u0000\u0000\u0217\u0218\u0005a\u0000\u0000\u0218\u0219\u0005"+
+ "c\u0000\u0000\u0219\u021a\u0005e\u0000\u0000\u021aT\u0001\u0000\u0000"+
+ "\u0000\u021b\u021c\u0005l\u0000\u0000\u021c\u021d\u0005o\u0000\u0000\u021d"+
+ "\u021e\u0005n\u0000\u0000\u021e\u021f\u0005g\u0000\u0000\u021fV\u0001"+
+ "\u0000\u0000\u0000\u0220\u0221\u0005n\u0000\u0000\u0221\u0222\u0005a\u0000"+
+ "\u0000\u0222\u0223\u0005t\u0000\u0000\u0223\u0224\u0005i\u0000\u0000\u0224"+
+ "\u0225\u0005v\u0000\u0000\u0225\u0226\u0005e\u0000\u0000\u0226X\u0001"+
+ "\u0000\u0000\u0000\u0227\u0228\u0005n\u0000\u0000\u0228\u0229\u0005e\u0000"+
+ "\u0000\u0229\u022a\u0005w\u0000\u0000\u022aZ\u0001\u0000\u0000\u0000\u022b"+
+ "\u022c\u0005p\u0000\u0000\u022c\u022d\u0005a\u0000\u0000\u022d\u022e\u0005"+
+ "c\u0000\u0000\u022e\u022f\u0005k\u0000\u0000\u022f\u0230\u0005a\u0000"+
+ "\u0000\u0230\u0231\u0005g\u0000\u0000\u0231\u0232\u0005e\u0000\u0000\u0232"+
+ "\\\u0001\u0000\u0000\u0000\u0233\u0234\u0005p\u0000\u0000\u0234\u0235"+
+ "\u0005r\u0000\u0000\u0235\u0236\u0005i\u0000\u0000\u0236\u0237\u0005v"+
+ "\u0000\u0000\u0237\u0238\u0005a\u0000\u0000\u0238\u0239\u0005t\u0000\u0000"+
+ "\u0239\u023a\u0005e\u0000\u0000\u023a^\u0001\u0000\u0000\u0000\u023b\u023c"+
+ "\u0005p\u0000\u0000\u023c\u023d\u0005r\u0000\u0000\u023d\u023e\u0005o"+
+ "\u0000\u0000\u023e\u023f\u0005t\u0000\u0000\u023f\u0240\u0005e\u0000\u0000"+
+ "\u0240\u0241\u0005c\u0000\u0000\u0241\u0242\u0005t\u0000\u0000\u0242\u0243"+
+ "\u0005e\u0000\u0000\u0243\u0244\u0005d\u0000\u0000\u0244`\u0001\u0000"+
+ "\u0000\u0000\u0245\u0246\u0005p\u0000\u0000\u0246\u0247\u0005u\u0000\u0000"+
+ "\u0247\u0248\u0005b\u0000\u0000\u0248\u0249\u0005l\u0000\u0000\u0249\u024a"+
+ "\u0005i\u0000\u0000\u024a\u024b\u0005c\u0000\u0000\u024bb\u0001\u0000"+
+ "\u0000\u0000\u024c\u024d\u0005r\u0000\u0000\u024d\u024e\u0005e\u0000\u0000"+
+ "\u024e\u024f\u0005t\u0000\u0000\u024f\u0250\u0005u\u0000\u0000\u0250\u0251"+
+ "\u0005r\u0000\u0000\u0251\u0252\u0005n\u0000\u0000\u0252d\u0001\u0000"+
+ "\u0000\u0000\u0253\u0254\u0005s\u0000\u0000\u0254\u0255\u0005h\u0000\u0000"+
+ "\u0255\u0256\u0005o\u0000\u0000\u0256\u0257\u0005r\u0000\u0000\u0257\u0258"+
+ "\u0005t\u0000\u0000\u0258f\u0001\u0000\u0000\u0000\u0259\u025a\u0005s"+
+ "\u0000\u0000\u025a\u025b\u0005t\u0000\u0000\u025b\u025c\u0005a\u0000\u0000"+
+ "\u025c\u025d\u0005t\u0000\u0000\u025d\u025e\u0005i\u0000\u0000\u025e\u025f"+
+ "\u0005c\u0000\u0000\u025fh\u0001\u0000\u0000\u0000\u0260\u0261\u0005s"+
+ "\u0000\u0000\u0261\u0262\u0005t\u0000\u0000\u0262\u0263\u0005r\u0000\u0000"+
+ "\u0263\u0264\u0005i\u0000\u0000\u0264\u0265\u0005c\u0000\u0000\u0265\u0266"+
+ "\u0005t\u0000\u0000\u0266\u0267\u0005f\u0000\u0000\u0267\u0268\u0005p"+
+ "\u0000\u0000\u0268j\u0001\u0000\u0000\u0000\u0269\u026a\u0005s\u0000\u0000"+
+ "\u026a\u026b\u0005u\u0000\u0000\u026b\u026c\u0005p\u0000\u0000\u026c\u026d"+
+ "\u0005e\u0000\u0000\u026d\u026e\u0005r\u0000\u0000\u026el\u0001\u0000"+
+ "\u0000\u0000\u026f\u0270\u0005s\u0000\u0000\u0270\u0271\u0005w\u0000\u0000"+
+ "\u0271\u0272\u0005i\u0000\u0000\u0272\u0273\u0005t\u0000\u0000\u0273\u0274"+
+ "\u0005c\u0000\u0000\u0274\u0275\u0005h\u0000\u0000\u0275n\u0001\u0000"+
+ "\u0000\u0000\u0276\u0277\u0005s\u0000\u0000\u0277\u0278\u0005y\u0000\u0000"+
+ "\u0278\u0279\u0005n\u0000\u0000\u0279\u027a\u0005c\u0000\u0000\u027a\u027b"+
+ "\u0005h\u0000\u0000\u027b\u027c\u0005r\u0000\u0000\u027c\u027d\u0005o"+
+ "\u0000\u0000\u027d\u027e\u0005n\u0000\u0000\u027e\u027f\u0005i\u0000\u0000"+
+ "\u027f\u0280\u0005z\u0000\u0000\u0280\u0281\u0005e\u0000\u0000\u0281\u0282"+
+ "\u0005d\u0000\u0000\u0282p\u0001\u0000\u0000\u0000\u0283\u0284\u0005t"+
+ "\u0000\u0000\u0284\u0285\u0005h\u0000\u0000\u0285\u0286\u0005i\u0000\u0000"+
+ "\u0286\u0287\u0005s\u0000\u0000\u0287r\u0001\u0000\u0000\u0000\u0288\u0289"+
+ "\u0005t\u0000\u0000\u0289\u028a\u0005h\u0000\u0000\u028a\u028b\u0005r"+
+ "\u0000\u0000\u028b\u028c\u0005o\u0000\u0000\u028c\u028d\u0005w\u0000\u0000"+
+ "\u028dt\u0001\u0000\u0000\u0000\u028e\u028f\u0005t\u0000\u0000\u028f\u0290"+
+ "\u0005h\u0000\u0000\u0290\u0291\u0005r\u0000\u0000\u0291\u0292\u0005o"+
+ "\u0000\u0000\u0292\u0293\u0005w\u0000\u0000\u0293\u0294\u0005s\u0000\u0000"+
+ "\u0294v\u0001\u0000\u0000\u0000\u0295\u0296\u0005t\u0000\u0000\u0296\u0297"+
+ "\u0005r\u0000\u0000\u0297\u0298\u0005a\u0000\u0000\u0298\u0299\u0005n"+
+ "\u0000\u0000\u0299\u029a\u0005s\u0000\u0000\u029a\u029b\u0005i\u0000\u0000"+
+ "\u029b\u029c\u0005e\u0000\u0000\u029c\u029d\u0005n\u0000\u0000\u029d\u029e"+
+ "\u0005t\u0000\u0000\u029ex\u0001\u0000\u0000\u0000\u029f\u02a0\u0005t"+
+ "\u0000\u0000\u02a0\u02a1\u0005r\u0000\u0000\u02a1\u02a2\u0005y\u0000\u0000"+
+ "\u02a2z\u0001\u0000\u0000\u0000\u02a3\u02a4\u0005v\u0000\u0000\u02a4\u02a5"+
+ "\u0005o\u0000\u0000\u02a5\u02a6\u0005i\u0000\u0000\u02a6\u02a7\u0005d"+
+ "\u0000\u0000\u02a7|\u0001\u0000\u0000\u0000\u02a8\u02a9\u0005v\u0000\u0000"+
+ "\u02a9\u02aa\u0005o\u0000\u0000\u02aa\u02ab\u0005l\u0000\u0000\u02ab\u02ac"+
+ "\u0005a\u0000\u0000\u02ac\u02ad\u0005t\u0000\u0000\u02ad\u02ae\u0005i"+
+ "\u0000\u0000\u02ae\u02af\u0005l\u0000\u0000\u02af\u02b0\u0005e\u0000\u0000"+
+ "\u02b0~\u0001\u0000\u0000\u0000\u02b1\u02b2\u0005w\u0000\u0000\u02b2\u02b3"+
+ "\u0005h\u0000\u0000\u02b3\u02b4\u0005i\u0000\u0000\u02b4\u02b5\u0005l"+
+ "\u0000\u0000\u02b5\u02b6\u0005e\u0000\u0000\u02b6\u0080\u0001\u0000\u0000"+
+ "\u0000\u02b7\u02bb\u0003\u0083A\u0000\u02b8\u02bb\u0003\u0085B\u0000\u02b9"+
+ "\u02bb\u0003\u0087C\u0000\u02ba\u02b7\u0001\u0000\u0000\u0000\u02ba\u02b8"+
+ "\u0001\u0000\u0000\u0000\u02ba\u02b9\u0001\u0000\u0000\u0000\u02bb\u0082"+
+ "\u0001\u0000\u0000\u0000\u02bc\u02be\u0003\u008bE\u0000\u02bd\u02bf\u0003"+
+ "\u0089D\u0000\u02be\u02bd\u0001\u0000\u0000\u0000\u02be\u02bf\u0001\u0000"+
+ "\u0000\u0000\u02bf\u0084\u0001\u0000\u0000\u0000\u02c0\u02c2\u0003\u008d"+
+ "F\u0000\u02c1\u02c3\u0003\u0089D\u0000\u02c2\u02c1\u0001\u0000\u0000\u0000"+
+ "\u02c2\u02c3\u0001\u0000\u0000\u0000\u02c3\u0086\u0001\u0000\u0000\u0000"+
+ "\u02c4\u02c6\u0003\u00b3Y\u0000\u02c5\u02c7\u0003\u0089D\u0000\u02c6\u02c5"+
+ "\u0001\u0000\u0000\u0000\u02c6\u02c7\u0001\u0000\u0000\u0000\u02c7\u0088"+
+ "\u0001\u0000\u0000\u0000\u02c8\u02c9\u0007\u0005\u0000\u0000\u02c9\u008a"+
+ "\u0001\u0000\u0000\u0000\u02ca\u02d0\u00050\u0000\u0000\u02cb\u02cd\u0003"+
+ "\u009fO\u0000\u02cc\u02ce\u0003\u009bM\u0000\u02cd\u02cc\u0001\u0000\u0000"+
+ "\u0000\u02cd\u02ce\u0001\u0000\u0000\u0000\u02ce\u02d0\u0001\u0000\u0000"+
+ "\u0000\u02cf\u02ca\u0001\u0000\u0000\u0000\u02cf\u02cb\u0001\u0000\u0000"+
+ "\u0000\u02d0\u008c\u0001\u0000\u0000\u0000\u02d1\u02d2\u00050\u0000\u0000"+
+ "\u02d2\u02d3\u0005x\u0000\u0000\u02d3\u02d8\u0003\u008fG\u0000\u02d4\u02d5"+
+ "\u00050\u0000\u0000\u02d5\u02d6\u0005X\u0000\u0000\u02d6\u02d8\u0003\u008f"+
+ "G\u0000\u02d7\u02d1\u0001\u0000\u0000\u0000\u02d7\u02d4\u0001\u0000\u0000"+
+ "\u0000\u02d8\u008e\u0001\u0000\u0000\u0000\u02d9\u02de\u0003\u0091H\u0000"+
+ "\u02da\u02db\u0003\u0091H\u0000\u02db\u02dc\u0003\u008fG\u0000\u02dc\u02de"+
+ "\u0001\u0000\u0000\u0000\u02dd\u02d9\u0001\u0000\u0000\u0000\u02dd\u02da"+
+ "\u0001\u0000\u0000\u0000\u02de\u0090\u0001\u0000\u0000\u0000\u02df\u02e0"+
+ "\u0007\u0006\u0000\u0000\u02e0\u0092\u0001\u0000\u0000\u0000\u02e1\u02e2"+
+ "\u0003\u009bM\u0000\u02e2\u02e4\u0005.\u0000\u0000\u02e3\u02e5\u0003\u009b"+
+ "M\u0000\u02e4\u02e3\u0001\u0000\u0000\u0000\u02e4\u02e5\u0001\u0000\u0000"+
+ "\u0000\u02e5\u02e7\u0001\u0000\u0000\u0000\u02e6\u02e8\u0003\u0095J\u0000"+
+ "\u02e7\u02e6\u0001\u0000\u0000\u0000\u02e7\u02e8\u0001\u0000\u0000\u0000"+
+ "\u02e8\u02ea\u0001\u0000\u0000\u0000\u02e9\u02eb\u0003\u00a3Q\u0000\u02ea"+
+ "\u02e9\u0001\u0000\u0000\u0000\u02ea\u02eb\u0001\u0000\u0000\u0000\u02eb"+
+ "\u0300\u0001\u0000\u0000\u0000\u02ec\u02ed\u0005.\u0000\u0000\u02ed\u02ef"+
+ "\u0003\u009bM\u0000\u02ee\u02f0\u0003\u0095J\u0000\u02ef\u02ee\u0001\u0000"+
+ "\u0000\u0000\u02ef\u02f0\u0001\u0000\u0000\u0000\u02f0\u02f2\u0001\u0000"+
+ "\u0000\u0000\u02f1\u02f3\u0003\u00a3Q\u0000\u02f2\u02f1\u0001\u0000\u0000"+
+ "\u0000\u02f2\u02f3\u0001\u0000\u0000\u0000\u02f3\u0300\u0001\u0000\u0000"+
+ "\u0000\u02f4\u02f5\u0003\u009bM\u0000\u02f5\u02f7\u0003\u0095J\u0000\u02f6"+
+ "\u02f8\u0003\u00a3Q\u0000\u02f7\u02f6\u0001\u0000\u0000\u0000\u02f7\u02f8"+
+ "\u0001\u0000\u0000\u0000\u02f8\u0300\u0001\u0000\u0000\u0000\u02f9\u02fb"+
+ "\u0003\u009bM\u0000\u02fa\u02fc\u0003\u0095J\u0000\u02fb\u02fa\u0001\u0000"+
+ "\u0000\u0000\u02fb\u02fc\u0001\u0000\u0000\u0000\u02fc\u02fd\u0001\u0000"+
+ "\u0000\u0000\u02fd\u02fe\u0003\u00a3Q\u0000\u02fe\u0300\u0001\u0000\u0000"+
+ "\u0000\u02ff\u02e1\u0001\u0000\u0000\u0000\u02ff\u02ec\u0001\u0000\u0000"+
+ "\u0000\u02ff\u02f4\u0001\u0000\u0000\u0000\u02ff\u02f9\u0001\u0000\u0000"+
+ "\u0000\u0300\u0094\u0001\u0000\u0000\u0000\u0301\u0302\u0003\u0097K\u0000"+
+ "\u0302\u0303\u0003\u0099L\u0000\u0303\u0096\u0001\u0000\u0000\u0000\u0304"+
+ "\u0305\u0007\u0007\u0000\u0000\u0305\u0098\u0001\u0000\u0000\u0000\u0306"+
+ "\u0308\u0003\u00a1P\u0000\u0307\u0306\u0001\u0000\u0000\u0000\u0307\u0308"+
+ "\u0001\u0000\u0000\u0000\u0308\u0309\u0001\u0000\u0000\u0000\u0309\u030a"+
+ "\u0003\u009bM\u0000\u030a\u009a\u0001\u0000\u0000\u0000\u030b\u030d\u0003"+
+ "\u009dN\u0000\u030c\u030b\u0001\u0000\u0000\u0000\u030d\u030e\u0001\u0000"+
+ "\u0000\u0000\u030e\u030c\u0001\u0000\u0000\u0000\u030e\u030f\u0001\u0000"+
+ "\u0000\u0000\u030f\u009c\u0001\u0000\u0000\u0000\u0310\u0313\u00050\u0000"+
+ "\u0000\u0311\u0313\u0003\u009fO\u0000\u0312\u0310\u0001\u0000\u0000\u0000"+
+ "\u0312\u0311\u0001\u0000\u0000\u0000\u0313\u009e\u0001\u0000\u0000\u0000"+
+ "\u0314\u0315\u0007\b\u0000\u0000\u0315\u00a0\u0001\u0000\u0000\u0000\u0316"+
+ "\u0317\u0007\t\u0000\u0000\u0317\u00a2\u0001\u0000\u0000\u0000\u0318\u0319"+
+ "\u0007\n\u0000\u0000\u0319\u00a4\u0001\u0000\u0000\u0000\u031a\u031b\u0005"+
+ "\'\u0000\u0000\u031b\u031c\u0003\u00a7S\u0000\u031c\u031d\u0005\'\u0000"+
+ "\u0000\u031d\u0323\u0001\u0000\u0000\u0000\u031e\u031f\u0005\'\u0000\u0000"+
+ "\u031f\u0320\u0003\u00afW\u0000\u0320\u0321\u0005\'\u0000\u0000\u0321"+
+ "\u0323\u0001\u0000\u0000\u0000\u0322\u031a\u0001\u0000\u0000\u0000\u0322"+
+ "\u031e\u0001\u0000\u0000\u0000\u0323\u00a6\u0001\u0000\u0000\u0000\u0324"+
+ "\u0325\u0007\u000b\u0000\u0000\u0325\u00a8\u0001\u0000\u0000\u0000\u0326"+
+ "\u0328\u0005\"\u0000\u0000\u0327\u0329\u0003\u00abU\u0000\u0328\u0327"+
+ "\u0001\u0000\u0000\u0000\u0328\u0329\u0001\u0000\u0000\u0000\u0329\u032a"+
+ "\u0001\u0000\u0000\u0000\u032a\u032b\u0005\"\u0000\u0000\u032b\u00aa\u0001"+
+ "\u0000\u0000\u0000\u032c\u032e\u0003\u00adV\u0000\u032d\u032c\u0001\u0000"+
+ "\u0000\u0000\u032e\u032f\u0001\u0000\u0000\u0000\u032f\u032d\u0001\u0000"+
+ "\u0000\u0000\u032f\u0330\u0001\u0000\u0000\u0000\u0330\u00ac\u0001\u0000"+
+ "\u0000\u0000\u0331\u0334\u0003\u00a7S\u0000\u0332\u0334\u0003\u00afW\u0000"+
+ "\u0333\u0331\u0001\u0000\u0000\u0000\u0333\u0332\u0001\u0000\u0000\u0000"+
+ "\u0334\u00ae\u0001\u0000\u0000\u0000\u0335\u035f\u0005\\\u0000\u0000\u0336"+
+ "\u0337\u0005u\u0000\u0000\u0337\u0338\u00050\u0000\u0000\u0338\u0339\u0005"+
+ "0\u0000\u0000\u0339\u033a\u00050\u0000\u0000\u033a\u0360\u00058\u0000"+
+ "\u0000\u033b\u033c\u0005u\u0000\u0000\u033c\u033d\u00050\u0000\u0000\u033d"+
+ "\u033e\u00050\u0000\u0000\u033e\u033f\u00050\u0000\u0000\u033f\u0360\u0005"+
+ "9\u0000\u0000\u0340\u0341\u0005u\u0000\u0000\u0341\u0342\u00050\u0000"+
+ "\u0000\u0342\u0343\u00050\u0000\u0000\u0343\u0344\u00050\u0000\u0000\u0344"+
+ "\u0360\u0005a\u0000\u0000\u0345\u0346\u0005u\u0000\u0000\u0346\u0347\u0005"+
+ "0\u0000\u0000\u0347\u0348\u00050\u0000\u0000\u0348\u0349\u00050\u0000"+
+ "\u0000\u0349\u0360\u0005c\u0000\u0000\u034a\u034b\u0005u\u0000\u0000\u034b"+
+ "\u034c\u00050\u0000\u0000\u034c\u034d\u00050\u0000\u0000\u034d\u034e\u0005"+
+ "0\u0000\u0000\u034e\u0360\u0005d\u0000\u0000\u034f\u0350\u0005u\u0000"+
+ "\u0000\u0350\u0351\u00050\u0000\u0000\u0351\u0352\u00050\u0000\u0000\u0352"+
+ "\u0353\u00052\u0000\u0000\u0353\u0360\u00052\u0000\u0000\u0354\u0355\u0005"+
+ "u\u0000\u0000\u0355\u0356\u00050\u0000\u0000\u0356\u0357\u00050\u0000"+
+ "\u0000\u0357\u0358\u00052\u0000\u0000\u0358\u0360\u00057\u0000\u0000\u0359"+
+ "\u035a\u0005u\u0000\u0000\u035a\u035b\u00050\u0000\u0000\u035b\u035c\u0005"+
+ "0\u0000\u0000\u035c\u035d\u00055\u0000\u0000\u035d\u0360\u0005c\u0000"+
+ "\u0000\u035e\u0360\u0003\u00b1X\u0000\u035f\u0336\u0001\u0000\u0000\u0000"+
+ "\u035f\u033b\u0001\u0000\u0000\u0000\u035f\u0340\u0001\u0000\u0000\u0000"+
+ "\u035f\u0345\u0001\u0000\u0000\u0000\u035f\u034a\u0001\u0000\u0000\u0000"+
+ "\u035f\u034f\u0001\u0000\u0000\u0000\u035f\u0354\u0001\u0000\u0000\u0000"+
+ "\u035f\u0359\u0001\u0000\u0000\u0000\u035f\u035e\u0001\u0000\u0000\u0000"+
+ "\u0360\u00b0\u0001\u0000\u0000\u0000\u0361\u0362\u0005\\\u0000\u0000\u0362"+
+ "\u036d\u0003\u00b7[\u0000\u0363\u0364\u0005\\\u0000\u0000\u0364\u0365"+
+ "\u0003\u00b7[\u0000\u0365\u0366\u0003\u00b7[\u0000\u0366\u036d\u0001\u0000"+
+ "\u0000\u0000\u0367\u0368\u0005\\\u0000\u0000\u0368\u0369\u0003\u00b9\\"+
+ "\u0000\u0369\u036a\u0003\u00b7[\u0000\u036a\u036b\u0003\u00b7[\u0000\u036b"+
+ "\u036d\u0001\u0000\u0000\u0000\u036c\u0361\u0001\u0000\u0000\u0000\u036c"+
+ "\u0363\u0001\u0000\u0000\u0000\u036c\u0367\u0001\u0000\u0000\u0000\u036d"+
+ "\u00b2\u0001\u0000\u0000\u0000\u036e\u036f\u00050\u0000\u0000\u036f\u0370"+
+ "\u0003\u00b5Z\u0000\u0370\u00b4\u0001\u0000\u0000\u0000\u0371\u0372\u0003"+
+ "\u00b7[\u0000\u0372\u00b6\u0001\u0000\u0000\u0000\u0373\u0374\u0007\f"+
+ "\u0000\u0000\u0374\u00b8\u0001\u0000\u0000\u0000\u0375\u0376\u0007\r\u0000"+
+ "\u0000\u0376\u00ba\u0001\u0000\u0000\u0000\u0377\u0378\u0005t\u0000\u0000"+
+ "\u0378\u0379\u0005r\u0000\u0000\u0379\u037a\u0005u\u0000\u0000\u037a\u0381"+
+ "\u0005e\u0000\u0000\u037b\u037c\u0005f\u0000\u0000\u037c\u037d\u0005a"+
+ "\u0000\u0000\u037d\u037e\u0005l\u0000\u0000\u037e\u037f\u0005s\u0000\u0000"+
+ "\u037f\u0381\u0005e\u0000\u0000\u0380\u0377\u0001\u0000\u0000\u0000\u0380"+
+ "\u037b\u0001\u0000\u0000\u0000\u0381\u00bc\u0001\u0000\u0000\u0000\u0382"+
+ "\u0383\u0005n\u0000\u0000\u0383\u0384\u0005u\u0000\u0000\u0384\u0385\u0005"+
+ "l\u0000\u0000\u0385\u0386\u0005l\u0000\u0000\u0386\u00be\u0001\u0000\u0000"+
+ "\u0000\u0387\u0388\u0005(\u0000\u0000\u0388\u00c0\u0001\u0000\u0000\u0000"+
+ "\u0389\u038a\u0005)\u0000\u0000\u038a\u00c2\u0001\u0000\u0000\u0000\u038b"+
+ "\u038c\u0005{\u0000\u0000\u038c\u00c4\u0001\u0000\u0000\u0000\u038d\u038e"+
+ "\u0005}\u0000\u0000\u038e\u00c6\u0001\u0000\u0000\u0000\u038f\u0390\u0005"+
+ "[\u0000\u0000\u0390\u00c8\u0001\u0000\u0000\u0000\u0391\u0392\u0005]\u0000"+
+ "\u0000\u0392\u00ca\u0001\u0000\u0000\u0000\u0393\u0394\u0005;\u0000\u0000"+
+ "\u0394\u00cc\u0001\u0000\u0000\u0000\u0395\u0396\u0005,\u0000\u0000\u0396"+
+ "\u00ce\u0001\u0000\u0000\u0000\u0397\u0398\u0005.\u0000\u0000\u0398\u00d0"+
+ "\u0001\u0000\u0000\u0000\u0399\u039a\u0005=\u0000\u0000\u039a\u00d2\u0001"+
+ "\u0000\u0000\u0000\u039b\u039c\u0005>\u0000\u0000\u039c\u00d4\u0001\u0000"+
+ "\u0000\u0000\u039d\u039e\u0005<\u0000\u0000\u039e\u00d6\u0001\u0000\u0000"+
+ "\u0000\u039f\u03a0\u0005!\u0000\u0000\u03a0\u00d8\u0001\u0000\u0000\u0000"+
+ "\u03a1\u03a2\u0005~\u0000\u0000\u03a2\u00da\u0001\u0000\u0000\u0000\u03a3"+
+ "\u03a4\u0005?\u0000\u0000\u03a4\u00dc\u0001\u0000\u0000\u0000\u03a5\u03a6"+
+ "\u0005:\u0000\u0000\u03a6\u00de\u0001\u0000\u0000\u0000\u03a7\u03a8\u0005"+
+ "=\u0000\u0000\u03a8\u03a9\u0005=\u0000\u0000\u03a9\u00e0\u0001\u0000\u0000"+
+ "\u0000\u03aa\u03ab\u0005<\u0000\u0000\u03ab\u03ac\u0005=\u0000\u0000\u03ac"+
+ "\u00e2\u0001\u0000\u0000\u0000\u03ad\u03ae\u0005>\u0000\u0000\u03ae\u03af"+
+ "\u0005=\u0000\u0000\u03af\u00e4\u0001\u0000\u0000\u0000\u03b0\u03b1\u0005"+
+ "!\u0000\u0000\u03b1\u03b2\u0005=\u0000\u0000\u03b2\u00e6\u0001\u0000\u0000"+
+ "\u0000\u03b3\u03b4\u0005&\u0000\u0000\u03b4\u03b5\u0005&\u0000\u0000\u03b5"+
+ "\u00e8\u0001\u0000\u0000\u0000\u03b6\u03b7\u0005|\u0000\u0000\u03b7\u03b8"+
+ "\u0005|\u0000\u0000\u03b8\u00ea\u0001\u0000\u0000\u0000\u03b9\u03ba\u0005"+
+ "+\u0000\u0000\u03ba\u03bb\u0005+\u0000\u0000\u03bb\u00ec\u0001\u0000\u0000"+
+ "\u0000\u03bc\u03bd\u0005-\u0000\u0000\u03bd\u03be\u0005-\u0000\u0000\u03be"+
+ "\u00ee\u0001\u0000\u0000\u0000\u03bf\u03c0\u0005+\u0000\u0000\u03c0\u00f0"+
+ "\u0001\u0000\u0000\u0000\u03c1\u03c2\u0005-\u0000\u0000\u03c2\u00f2\u0001"+
+ "\u0000\u0000\u0000\u03c3\u03c4\u0005*\u0000\u0000\u03c4\u00f4\u0001\u0000"+
+ "\u0000\u0000\u03c5\u03c6\u0005/\u0000\u0000\u03c6\u00f6\u0001\u0000\u0000"+
+ "\u0000\u03c7\u03c8\u0005&\u0000\u0000\u03c8\u00f8\u0001\u0000\u0000\u0000"+
+ "\u03c9\u03ca\u0005|\u0000\u0000\u03ca\u00fa\u0001\u0000\u0000\u0000\u03cb"+
+ "\u03cc\u0005^\u0000\u0000\u03cc\u00fc\u0001\u0000\u0000\u0000\u03cd\u03ce"+
+ "\u0005%\u0000\u0000\u03ce\u00fe\u0001\u0000\u0000\u0000\u03cf\u03d0\u0005"+
+ "<\u0000\u0000\u03d0\u03d1\u0005<\u0000\u0000\u03d1\u0100\u0001\u0000\u0000"+
+ "\u0000\u03d2\u03d3\u0005>\u0000\u0000\u03d3\u03d4\u0005>\u0000\u0000\u03d4"+
+ "\u0102\u0001\u0000\u0000\u0000\u03d5\u03d6\u0005>\u0000\u0000\u03d6\u03d7"+
+ "\u0005>\u0000\u0000\u03d7\u03d8\u0005>\u0000\u0000\u03d8\u0104\u0001\u0000"+
+ "\u0000\u0000\u03d9\u03da\u0005+\u0000\u0000\u03da\u03db\u0005=\u0000\u0000"+
+ "\u03db\u0106\u0001\u0000\u0000\u0000\u03dc\u03dd\u0005-\u0000\u0000\u03dd"+
+ "\u03de\u0005=\u0000\u0000\u03de\u0108\u0001\u0000\u0000\u0000\u03df\u03e0"+
+ "\u0005*\u0000\u0000\u03e0\u03e1\u0005=\u0000\u0000\u03e1\u010a\u0001\u0000"+
+ "\u0000\u0000\u03e2\u03e3\u0005/\u0000\u0000\u03e3\u03e4\u0005=\u0000\u0000"+
+ "\u03e4\u010c\u0001\u0000\u0000\u0000\u03e5\u03e6\u0005&\u0000\u0000\u03e6"+
+ "\u03e7\u0005=\u0000\u0000\u03e7\u010e\u0001\u0000\u0000\u0000\u03e8\u03e9"+
+ "\u0005|\u0000\u0000\u03e9\u03ea\u0005=\u0000\u0000\u03ea\u0110\u0001\u0000"+
+ "\u0000\u0000\u03eb\u03ec\u0005^\u0000\u0000\u03ec\u03ed\u0005=\u0000\u0000"+
+ "\u03ed\u0112\u0001\u0000\u0000\u0000\u03ee\u03ef\u0005%\u0000\u0000\u03ef"+
+ "\u03f0\u0005=\u0000\u0000\u03f0\u0114\u0001\u0000\u0000\u0000\u03f1\u03f2"+
+ "\u0005<\u0000\u0000\u03f2\u03f3\u0005<\u0000\u0000\u03f3\u03f4\u0005="+
+ "\u0000\u0000\u03f4\u0116\u0001\u0000\u0000\u0000\u03f5\u03f6\u0005>\u0000"+
+ "\u0000\u03f6\u03f7\u0005>\u0000\u0000\u03f7\u03f8\u0005=\u0000\u0000\u03f8"+
+ "\u0118\u0001\u0000\u0000\u0000\u03f9\u03fa\u0005>\u0000\u0000\u03fa\u03fb"+
+ "\u0005>\u0000\u0000\u03fb\u03fc\u0005>\u0000\u0000\u03fc\u03fd\u0005="+
+ "\u0000\u0000\u03fd\u011a\u0001\u0000\u0000\u0000\u03fe\u03ff\u0003\u011d"+
+ "\u008e\u0000\u03ff\u0400\u0003\u011f\u008f\u0000\u0400\u011c\u0001\u0000"+
+ "\u0000\u0000\u0401\u0402\u0007\u000e\u0000\u0000\u0402\u011e\u0001\u0000"+
+ "\u0000\u0000\u0403\u0406\u0003\u011d\u008e\u0000\u0404\u0406\u0007\u000f"+
+ "\u0000\u0000\u0405\u0403\u0001\u0000\u0000\u0000\u0405\u0404\u0001\u0000"+
+ "\u0000\u0000\u0406\u0120\u0001\u0000\u0000\u0000\'\u0000\u0123\u012f\u0136"+
+ "\u013c\u0140\u014c\u0153\u015b\u015f\u0163\u0167\u02ba\u02be\u02c2\u02c6"+
+ "\u02cd\u02cf\u02d7\u02dd\u02e4\u02e7\u02ea\u02ef\u02f2\u02f7\u02fb\u02ff"+
+ "\u0307\u030e\u0312\u0322\u0328\u032f\u0333\u035f\u036c\u0380\u0405\u0000";
+ public static final ATN _ATN =
+ new ATNDeserializer().deserialize(_serializedATN.toCharArray());
+ static {
+ _decisionToDFA = new DFA[_ATN.getNumberOfDecisions()];
+ for (int i = 0; i < _ATN.getNumberOfDecisions(); i++) {
+ _decisionToDFA[i] = new DFA(_ATN.getDecisionState(i), i);
+ }
+ }
+}
\ No newline at end of file
diff --git a/gen/ExprLexer.tokens b/gen/ExprLexer.tokens
new file mode 100644
index 0000000..33386ed
--- /dev/null
+++ b/gen/ExprLexer.tokens
@@ -0,0 +1,203 @@
+UnicodeInputCharacter=1
+LineTerminator=2
+InputCharacter=3
+WhiteSpace=4
+Comment=5
+Abstract=6
+Assert=7
+Boolean=8
+Break=9
+Byte=10
+Case=11
+Catch=12
+Char=13
+Class=14
+Const=15
+Continue=16
+Default=17
+Do=18
+Double=19
+Else=20
+Extends=21
+Final=22
+Finally=23
+Float=24
+For=25
+Goto=26
+If=27
+Implements=28
+Import=29
+InstanceOf=30
+Int=31
+Interface=32
+Long=33
+Native=34
+New=35
+Package=36
+Private=37
+Protected=38
+Public=39
+Return=40
+Short=41
+Static=42
+Strictfp=43
+Super=44
+Switch=45
+Synchronized=46
+This=47
+Throw=48
+Throws=49
+Transient=50
+Try=51
+Void=52
+Volatile=53
+While=54
+IntigerLiteral=55
+FloatingPointLiteral=56
+CharacterLiteral=57
+StringLiteral=58
+BooleanLiteral=59
+NullLiteral=60
+ParanthesesLeft=61
+ParanthesesRight=62
+CurlyBracketLeft=63
+CurlyBracketRight=64
+SquareBracketLeft=65
+SquareBracketRight=66
+Semicolon=67
+Comma=68
+Dot=69
+Assignment=70
+GreterThan=71
+LessThan=72
+LogicalComplement=73
+BitwiseComplement=74
+Question=75
+Colon=76
+EqualTo=77
+LessThanEqualTo=78
+GreaterThanEqualTo=79
+NotEqualTO=80
+ConditionalAND=81
+ConditionalOR=82
+Increment=83
+Decrement=84
+Addition=85
+Subtaction=86
+Multiplication=87
+Division=88
+BitwiseAND=89
+BitwiseOR=90
+BitwiseXOR=91
+Remainder=92
+LeftShift=93
+SignedRightShift=94
+UnsignedRightShift=95
+AddAssign=96
+SubtractAssign=97
+MultiplyAssign=98
+DivideAssign=99
+BitwiseANDAssign=100
+BitwiseORAssign=101
+BitwiseXORAssign=102
+RemainderAssign=103
+LeftShiftAssign=104
+SighnedRightShiftAssign=105
+UnsighnedRightShiftAssign=106
+Identifier=107
+'abstract'=6
+'assert'=7
+'boolean'=8
+'break'=9
+'byte'=10
+'case'=11
+'catch'=12
+'char'=13
+'class'=14
+'const'=15
+'continue'=16
+'default'=17
+'do'=18
+'double'=19
+'else'=20
+'extends'=21
+'final'=22
+'finally'=23
+'float'=24
+'for'=25
+'goto'=26
+'if'=27
+'implements'=28
+'import'=29
+'instanceof'=30
+'int'=31
+'interface'=32
+'long'=33
+'native'=34
+'new'=35
+'package'=36
+'private'=37
+'protected'=38
+'public'=39
+'return'=40
+'short'=41
+'static'=42
+'strictfp'=43
+'super'=44
+'switch'=45
+'synchronized'=46
+'this'=47
+'throw'=48
+'throws'=49
+'transient'=50
+'try'=51
+'void'=52
+'volatile'=53
+'while'=54
+'null'=60
+'('=61
+')'=62
+'{'=63
+'}'=64
+'['=65
+']'=66
+';'=67
+','=68
+'.'=69
+'='=70
+'>'=71
+'<'=72
+'!'=73
+'~'=74
+'?'=75
+':'=76
+'=='=77
+'<='=78
+'>='=79
+'!='=80
+'&&'=81
+'||'=82
+'++'=83
+'--'=84
+'+'=85
+'-'=86
+'*'=87
+'/'=88
+'&'=89
+'|'=90
+'^'=91
+'%'=92
+'<<'=93
+'>>'=94
+'>>>'=95
+'+='=96
+'-='=97
+'*='=98
+'/='=99
+'&='=100
+'|='=101
+'^='=102
+'%='=103
+'<<='=104
+'>>='=105
+'>>>='=106
diff --git a/main.java b/main.java
new file mode 100644
index 0000000..3855192
--- /dev/null
+++ b/main.java
@@ -0,0 +1,461 @@
+// Comprehensive Java Grammar Reference File
+// This file demonstrates most Java language constructs and grammar features
+
+// 1. Package declaration
+package com.example.grammar;
+
+// 2. Import statements
+import java.util.*;
+import java.util.concurrent.*;
+import java.util.function.*;
+import java.io.*;
+import java.nio.file.*;
+import static java.lang.Math.*;
+import static java.util.Collections.sort;
+
+/**
+ * 3. Class-level documentation comment
+ * Comprehensive Java grammar demonstration class
+ */
+public class JavaGrammarReference {
+
+ // 4. Class-level fields with various modifiers
+ public static final String CONSTANT = "CONSTANT_VALUE";
+ private static int staticCounter = 0;
+ protected volatile boolean flag = false;
+ transient String transientField;
+ final List finalList = new ArrayList<>();
+
+ // 5. Instance initializer block
+ {
+ finalList.add("initialized");
+ System.out.println("Instance initializer executed");
+ }
+
+ // 6. Static initializer block
+ static {
+ staticCounter = 10;
+ System.out.println("Static initializer executed");
+ }
+
+ // 7. Constructors
+ public JavaGrammarReference() {
+ this("default");
+ }
+
+ public JavaGrammarReference(String value) {
+ super(); // Call to superclass constructor
+ this.transientField = value;
+ }
+
+ // 8. Method declarations with various signatures
+ public void basicMethod() {
+ System.out.println("Basic method");
+ }
+
+ private static synchronized T genericMethod(T parameter) {
+ return parameter;
+ }
+
+ protected final void finalMethod() throws IOException, InterruptedException {
+ // Method that throws exceptions
+ }
+
+ public abstract void abstractMethod(); // Would be in abstract class
+
+ public native void nativeMethod(); // Native method declaration
+
+ // 9. Method with varargs
+ public void varargsMethod(String... args) {
+ for (String arg : args) {
+ System.out.println(arg);
+ }
+ }
+
+ // 10. Main method demonstrating various language constructs
+ public static void main(String[] args) {
+
+ // 11. Variable declarations and initializations
+ byte b = 127;
+ short s = 32767;
+ int i = 2147483647;
+ long l = 9223372036854775807L;
+ float f = 3.14f;
+ double d = 3.141592653589793;
+ char c = 'A';
+ boolean bool = true;
+ String str = "Hello World";
+
+ // 12. Array declarations
+ int[] intArray = new int[10];
+ int[][] twoDArray = {{1, 2}, {3, 4}};
+ String[] stringArray = {"one", "two", "three"};
+
+ // 13. Object creation
+ JavaGrammarReference obj = new JavaGrammarReference("example");
+ List list = new ArrayList<>();
+ Map map = new HashMap<>();
+
+ // 14. Anonymous class
+ Runnable anonymousClass = new Runnable() {
+ @Override
+ public void run() {
+ System.out.println("Anonymous class method");
+ }
+ };
+
+ // 15. Lambda expressions
+ Runnable lambda = () -> System.out.println("Lambda expression");
+ Function stringToInt = Integer::parseInt;
+ Consumer printer = System.out::println;
+
+ // 16. Method references
+ list.forEach(System.out::println);
+
+ // 17. Conditional statements
+ if (bool) {
+ System.out.println("If statement");
+ } else if (i > 0) {
+ System.out.println("Else if statement");
+ } else {
+ System.out.println("Else statement");
+ }
+
+ // 18. Ternary operator
+ String result = (i > 0) ? "positive" : "non-positive";
+
+ // 19. Switch statement (traditional)
+ switch (c) {
+ case 'A':
+ System.out.println("Case A");
+ break;
+ case 'B':
+ case 'C':
+ System.out.println("Case B or C");
+ break;
+ default:
+ System.out.println("Default case");
+ }
+
+ // 20. Switch expression (Java 14+)
+ String dayType = switch (i % 7) {
+ case 1, 2, 3, 4, 5 -> "Weekday";
+ case 6, 7 -> "Weekend";
+ default -> "Unknown";
+ };
+
+ // 21. Loops
+ // For loop
+ for (int j = 0; j < 10; j++) {
+ System.out.println("For loop: " + j);
+ }
+
+ // Enhanced for loop (for-each)
+ for (String element : stringArray) {
+ System.out.println("Enhanced for: " + element);
+ }
+
+ // While loop
+ int counter = 0;
+ while (counter < 5) {
+ System.out.println("While loop: " + counter);
+ counter++;
+ }
+
+ // Do-while loop
+ do {
+ System.out.println("Do-while loop: " + counter);
+ counter--;
+ } while (counter > 0);
+
+ // 22. Exception handling
+ try {
+ int division = 10 / 0;
+ } catch (ArithmeticException e) {
+ System.out.println("Arithmetic exception caught");
+ } catch (Exception e) {
+ System.out.println("General exception caught");
+ } finally {
+ System.out.println("Finally block executed");
+ }
+
+ // 23. Try-with-resources
+ try (FileInputStream fis = new FileInputStream("test.txt");
+ BufferedReader br = new BufferedReader(new InputStreamReader(fis))) {
+ String line = br.readLine();
+ } catch (IOException e) {
+ System.out.println("IO Exception in try-with-resources");
+ }
+
+ // 24. Assertions
+ assert i > 0 : "i should be positive";
+
+ // 25. Synchronized block
+ synchronized (obj) {
+ System.out.println("Synchronized block");
+ }
+
+ // 26. Operators
+ // Arithmetic operators
+ int sum = i + b;
+ int difference = i - b;
+ int product = i * b;
+ int quotient = i / b;
+ int remainder = i % b;
+
+ // Assignment operators
+ i += 5;
+ i -= 3;
+ i *= 2;
+ i /= 2;
+ i %= 3;
+
+ // Increment/Decrement operators
+ i++;
+ ++i;
+ i--;
+ --i;
+
+ // Comparison operators
+ boolean equal = (i == b);
+ boolean notEqual = (i != b);
+ boolean greater = (i > b);
+ boolean less = (i < b);
+ boolean greaterEqual = (i >= b);
+ boolean lessEqual = (i <= b);
+
+ // Logical operators
+ boolean and = (bool && equal);
+ boolean or = (bool || equal);
+ boolean not = !bool;
+
+ // Bitwise operators
+ int bitwiseAnd = i & b;
+ int bitwiseOr = i | b;
+ int bitwiseXor = i ^ b;
+ int bitwiseNot = ~i;
+ int leftShift = i << 2;
+ int rightShift = i >> 2;
+ int unsignedRightShift = i >>> 2;
+
+ // 27. instanceof operator
+ if (obj instanceof JavaGrammarReference) {
+ System.out.println("obj is instance of JavaGrammarReference");
+ }
+
+ // 28. Type casting
+ double castToDouble = (double) i;
+ int castToInt = (int) d;
+
+ // 29. Generics
+ List integerList = new ArrayList();
+ Map> complexGeneric = new HashMap<>();
+
+ // 30. Wildcards
+ List extends Number> wildcardList = new ArrayList();
+ List super Integer> superWildcard = new ArrayList();
+
+ // 31. Annotations usage
+ @SuppressWarnings("unchecked")
+ List rawList = new ArrayList();
+
+ // 32. Method calls and chaining
+ obj.basicMethod();
+ str.toUpperCase().toLowerCase().trim();
+
+ // 33. Access to nested classes
+ OuterClass.NestedClass nested = new OuterClass.NestedClass();
+ OuterClass outer = new OuterClass();
+ OuterClass.InnerClass inner = outer.new InnerClass();
+
+ // 34. Local class
+ class LocalClass {
+ void localMethod() {
+ System.out.println("Local class method");
+ }
+ }
+ LocalClass localObj = new LocalClass();
+ localObj.localMethod();
+ }
+
+ // 35. Nested classes
+ static class NestedClass {
+ private String nestedField = "nested";
+
+ public void nestedMethod() {
+ System.out.println("Nested class method");
+ }
+ }
+
+ class InnerClass {
+ void innerMethod() {
+ // Can access outer class members
+ System.out.println("Inner class accessing: " + transientField);
+ }
+ }
+
+ // 36. Enum declaration
+ public enum Status {
+ ACTIVE("Active Status"),
+ INACTIVE("Inactive Status"),
+ PENDING("Pending Status");
+
+ private final String description;
+
+ Status(String description) {
+ this.description = description;
+ }
+
+ public String getDescription() {
+ return description;
+ }
+
+ // Enum with methods
+ public static Status fromString(String text) {
+ for (Status status : Status.values()) {
+ if (status.description.equalsIgnoreCase(text)) {
+ return status;
+ }
+ }
+ return null;
+ }
+ }
+
+ // 37. Interface declaration
+ public interface SampleInterface {
+ // Interface fields (implicitly public static final)
+ String INTERFACE_CONSTANT = "interface constant";
+
+ // Abstract method (implicitly public abstract)
+ void abstractInterfaceMethod();
+
+ // Default method (Java 8+)
+ default void defaultMethod() {
+ System.out.println("Default interface method");
+ }
+
+ // Static method in interface (Java 8+)
+ static void staticInterfaceMethod() {
+ System.out.println("Static interface method");
+ }
+
+ // Private method in interface (Java 9+)
+ private void privateHelperMethod() {
+ System.out.println("Private interface method");
+ }
+ }
+
+ // 38. Functional interface
+ @FunctionalInterface
+ public interface CustomFunctionalInterface {
+ T process(T input);
+
+ default void defaultProcessing() {
+ System.out.println("Default processing");
+ }
+ }
+
+ // 39. Record declaration (Java 14+)
+ public record Person(String name, int age, String email) {
+ // Compact constructor
+ public Person {
+ if (age < 0) {
+ throw new IllegalArgumentException("Age cannot be negative");
+ }
+ }
+
+ // Additional constructor
+ public Person(String name, int age) {
+ this(name, age, "unknown@example.com");
+ }
+
+ // Instance method in record
+ public boolean isAdult() {
+ return age >= 18;
+ }
+
+ // Static method in record
+ public static Person createDefault() {
+ return new Person("Unknown", 0);
+ }
+ }
+
+ // 40. Text blocks (Java 15+)
+ public static final String TEXT_BLOCK = """
+ This is a text block
+ that can span multiple lines
+ and preserves formatting
+ """;
+
+ // 41. Pattern matching for instanceof (Java 16+)
+ public static void patternMatchingExample(Object obj) {
+ if (obj instanceof String s) {
+ System.out.println("String length: " + s.length());
+ } else if (obj instanceof Integer i) {
+ System.out.println("Integer value: " + i);
+ }
+ }
+
+ // 42. Sealed class declaration (Java 17+)
+ public abstract sealed class Shape
+ permits Circle, Rectangle, Triangle {
+ abstract double area();
+ }
+
+ public final class Circle extends Shape {
+ private final double radius;
+
+ public Circle(double radius) {
+ this.radius = radius;
+ }
+
+ @Override
+ double area() {
+ return PI * radius * radius;
+ }
+ }
+
+ public final class Rectangle extends Shape {
+ private final double width, height;
+
+ public Rectangle(double width, double height) {
+ this.width = width;
+ this.height = height;
+ }
+
+ @Override
+ double area() {
+ return width * height;
+ }
+ }
+
+ public non-sealed class Triangle extends Shape {
+ private final double base, height;
+
+ public Triangle(double base, double height) {
+ this.base = base;
+ this.height = height;
+ }
+
+ @Override
+ double area() {
+ return 0.5 * base * height;
+ }
+ }
+
+ // 43. Method with complex generic bounds
+ public static & Serializable> void complexGenericMethod(T item) {
+ System.out.println("Complex generic method: " + item);
+ }
+
+ // 44. Method demonstrating all access modifiers
+ public void publicMethod() { }
+ protected void protectedMethod() { }
+ void packagePrivateMethod() { }
+ private void privateMethod() { }
+
+ // 45. Method with all possible modifiers
+ public static final synchronized strictfp void methodWithAllModifiers() {
+ System.out.println("Method with multiple modifiers");
+ }
+}
\ No newline at end of file
diff --git a/syntatic.g4 b/syntatic.g4
deleted file mode 100644
index e69de29..0000000