EQL - parsing fetch clause with lazy/query option

This commit is contained in:
Robin Bygrave
2016-07-13 13:04:38 +12:00
parent be6754bd06
commit 45d7e3cafd
11 changed files with 1209 additions and 500 deletions
@@ -2,6 +2,7 @@ package com.avaje.ebeaninternal.server.grammer;
import com.avaje.ebean.Expression;
import com.avaje.ebean.ExpressionList;
import com.avaje.ebean.FetchConfig;
import com.avaje.ebean.LikeType;
import com.avaje.ebeaninternal.api.SpiQuery;
import com.avaje.ebeaninternal.server.grammer.antlr.EQLBaseListener;
@@ -90,15 +91,24 @@ class EqlAdapter<T> extends EQLBaseListener {
@Override
public void enterFetch_path(EQLParser.Fetch_pathContext ctx) {
int childCount = ctx.getChildCount();
checkChildren(ctx, 2);
String path = child(ctx, 1);
if (childCount == 2) {
query.fetch(path);
int noPropertiesLength = 2;
FetchConfig fetchConfig = ParseFetchConfig.parse(path);
if (fetchConfig != null) {
noPropertiesLength = 3;
path = child(ctx, 2);
}
if (childCount == noPropertiesLength) {
query.fetch(path, fetchConfig);
} else {
String fetchProperties = trimParenthesis(ctx.getChild(2).getText());
query.fetch(path, fetchProperties);
String fetchProperties = trimParenthesis(ctx.getChild(noPropertiesLength).getText());
query.fetch(path, fetchProperties, fetchConfig);
}
}
@@ -0,0 +1,49 @@
package com.avaje.ebeaninternal.server.grammer;
import com.avaje.ebean.FetchConfig;
/**
* Parse the path that potentially is a FetchConfig definition.
*/
class ParseFetchConfig {
/**
* Parse the path that potentially is a FetchConfig definition.
* <p>
* Return the FetchConfig if it is and otherwise null.
* </p>
*/
static FetchConfig parse(String path) {
if (path.startsWith("lazy")) {
if (path.length() == 4) {
return new FetchConfig().lazy();
} else if (path.charAt(4) == '(') {
path = path.substring(5);
int batchSize = parseBatchSize(path);
return new FetchConfig().lazy(batchSize);
} else {
return null;
}
}
if (path.startsWith("query")) {
if (path.length() == 5) {
return new FetchConfig().query();
} else if (path.charAt(5) == '(') {
path = path.substring(6);
int batchSize = parseBatchSize(path);
return new FetchConfig().query(batchSize);
} else {
return null;
}
}
return null;
}
private static int parseBatchSize(String path) {
path = path.substring(0, path.length()-1);
return Integer.parseInt(path);
}
}
@@ -42,53 +42,63 @@ T__40=41
T__41=42
T__42=43
T__43=44
INPUT_VARIABLE=45
PATH_VARIABLE=46
BOOLEAN_LITERAL=47
NUMBER_LITERAL=48
STRING_LITERAL=49
WS=50
T__44=45
T__45=46
T__46=47
INPUT_VARIABLE=48
PATH_VARIABLE=49
BOOLEAN_LITERAL=50
NUMBER_LITERAL=51
DOUBLE=52
INT=53
ZERO=54
STRING_LITERAL=55
WS=56
'select'=1
'('=2
')'=3
'where'=4
'fetch'=5
','=6
'or'=7
'and'=8
'not'=9
'in'=10
'between'=11
'is'=12
'null'=13
'isNull'=14
'isNotNull'=15
'notNull'=16
'empty'=17
'isEmpty'=18
'isNotEmpty'=19
'notEmpty'=20
'like'=21
'ilike'=22
'contains'=23
'icontains'=24
'startsWith'=25
'istartsWith'=26
'endsWith'=27
'iendsWith'=28
'='=29
'eq'=30
'>'=31
'gt'=32
'>='=33
'ge'=34
'gte'=35
'<'=36
'lt'=37
'<='=38
'le'=39
'lte'=40
'<>'=41
'!='=42
'ne'=43
'ieq'=44
'+'=7
'query'=8
'lazy'=9
'or'=10
'and'=11
'not'=12
'in'=13
'between'=14
'is'=15
'null'=16
'isNull'=17
'isNotNull'=18
'notNull'=19
'empty'=20
'isEmpty'=21
'isNotEmpty'=22
'notEmpty'=23
'like'=24
'ilike'=25
'contains'=26
'icontains'=27
'startsWith'=28
'istartsWith'=29
'endsWith'=30
'iendsWith'=31
'='=32
'eq'=33
'>'=34
'gt'=35
'>='=36
'ge'=37
'gte'=38
'<'=39
'lt'=40
'<='=41
'le'=42
'lte'=43
'<>'=44
'!='=45
'ne'=46
'ieq'=47
'0'=54
@@ -107,6 +107,78 @@ public class EQLBaseListener implements EQLListener {
* <p>The default implementation does nothing.</p>
*/
@Override public void exitFetch_property(EQLParser.Fetch_propertyContext ctx) { }
/**
* {@inheritDoc}
*
* <p>The default implementation does nothing.</p>
*/
@Override public void enterFetch_query_hint(EQLParser.Fetch_query_hintContext ctx) { }
/**
* {@inheritDoc}
*
* <p>The default implementation does nothing.</p>
*/
@Override public void exitFetch_query_hint(EQLParser.Fetch_query_hintContext ctx) { }
/**
* {@inheritDoc}
*
* <p>The default implementation does nothing.</p>
*/
@Override public void enterFetch_lazy_hint(EQLParser.Fetch_lazy_hintContext ctx) { }
/**
* {@inheritDoc}
*
* <p>The default implementation does nothing.</p>
*/
@Override public void exitFetch_lazy_hint(EQLParser.Fetch_lazy_hintContext ctx) { }
/**
* {@inheritDoc}
*
* <p>The default implementation does nothing.</p>
*/
@Override public void enterFetch_option(EQLParser.Fetch_optionContext ctx) { }
/**
* {@inheritDoc}
*
* <p>The default implementation does nothing.</p>
*/
@Override public void exitFetch_option(EQLParser.Fetch_optionContext ctx) { }
/**
* {@inheritDoc}
*
* <p>The default implementation does nothing.</p>
*/
@Override public void enterFetch_query_option(EQLParser.Fetch_query_optionContext ctx) { }
/**
* {@inheritDoc}
*
* <p>The default implementation does nothing.</p>
*/
@Override public void exitFetch_query_option(EQLParser.Fetch_query_optionContext ctx) { }
/**
* {@inheritDoc}
*
* <p>The default implementation does nothing.</p>
*/
@Override public void enterFetch_lazy_option(EQLParser.Fetch_lazy_optionContext ctx) { }
/**
* {@inheritDoc}
*
* <p>The default implementation does nothing.</p>
*/
@Override public void exitFetch_lazy_option(EQLParser.Fetch_lazy_optionContext ctx) { }
/**
* {@inheritDoc}
*
* <p>The default implementation does nothing.</p>
*/
@Override public void enterFetch_batch_size(EQLParser.Fetch_batch_sizeContext ctx) { }
/**
* {@inheritDoc}
*
* <p>The default implementation does nothing.</p>
*/
@Override public void exitFetch_batch_size(EQLParser.Fetch_batch_sizeContext ctx) { }
/**
* {@inheritDoc}
*
@@ -22,9 +22,9 @@ public class EQLLexer extends Lexer {
T__17=18, T__18=19, T__19=20, T__20=21, T__21=22, T__22=23, T__23=24,
T__24=25, T__25=26, T__26=27, T__27=28, T__28=29, T__29=30, T__30=31,
T__31=32, T__32=33, T__33=34, T__34=35, T__35=36, T__36=37, T__37=38,
T__38=39, T__39=40, T__40=41, T__41=42, T__42=43, T__43=44, INPUT_VARIABLE=45,
PATH_VARIABLE=46, BOOLEAN_LITERAL=47, NUMBER_LITERAL=48, STRING_LITERAL=49,
WS=50;
T__38=39, T__39=40, T__40=41, T__41=42, T__42=43, T__43=44, T__44=45,
T__45=46, T__46=47, INPUT_VARIABLE=48, PATH_VARIABLE=49, BOOLEAN_LITERAL=50,
NUMBER_LITERAL=51, DOUBLE=52, INT=53, ZERO=54, STRING_LITERAL=55, WS=56;
public static String[] modeNames = {
"DEFAULT_MODE"
};
@@ -35,26 +35,27 @@ public class EQLLexer extends Lexer {
"T__17", "T__18", "T__19", "T__20", "T__21", "T__22", "T__23", "T__24",
"T__25", "T__26", "T__27", "T__28", "T__29", "T__30", "T__31", "T__32",
"T__33", "T__34", "T__35", "T__36", "T__37", "T__38", "T__39", "T__40",
"T__41", "T__42", "T__43", "INPUT_VARIABLE", "PATH_VARIABLE", "BOOLEAN_LITERAL",
"NUMBER_LITERAL", "STRING_LITERAL", "WS"
"T__41", "T__42", "T__43", "T__44", "T__45", "T__46", "INPUT_VARIABLE",
"PATH_VARIABLE", "BOOLEAN_LITERAL", "NUMBER_LITERAL", "DOUBLE", "INT",
"ZERO", "STRING_LITERAL", "WS"
};
private static final String[] _LITERAL_NAMES = {
null, "'select'", "'('", "')'", "'where'", "'fetch'", "','", "'or'", "'and'",
"'not'", "'in'", "'between'", "'is'", "'null'", "'isNull'", "'isNotNull'",
"'notNull'", "'empty'", "'isEmpty'", "'isNotEmpty'", "'notEmpty'", "'like'",
"'ilike'", "'contains'", "'icontains'", "'startsWith'", "'istartsWith'",
"'endsWith'", "'iendsWith'", "'='", "'eq'", "'>'", "'gt'", "'>='", "'ge'",
"'gte'", "'<'", "'lt'", "'<='", "'le'", "'lte'", "'<>'", "'!='", "'ne'",
"'ieq'"
null, "'select'", "'('", "')'", "'where'", "'fetch'", "','", "'+'", "'query'",
"'lazy'", "'or'", "'and'", "'not'", "'in'", "'between'", "'is'", "'null'",
"'isNull'", "'isNotNull'", "'notNull'", "'empty'", "'isEmpty'", "'isNotEmpty'",
"'notEmpty'", "'like'", "'ilike'", "'contains'", "'icontains'", "'startsWith'",
"'istartsWith'", "'endsWith'", "'iendsWith'", "'='", "'eq'", "'>'", "'gt'",
"'>='", "'ge'", "'gte'", "'<'", "'lt'", "'<='", "'le'", "'lte'", "'<>'",
"'!='", "'ne'", "'ieq'", null, null, null, null, null, null, "'0'"
};
private static final String[] _SYMBOLIC_NAMES = {
null, null, null, null, null, null, null, null, null, null, null, null,
null, null, null, null, null, null, null, null, null, null, null, null,
null, null, null, null, null, null, null, null, null, null, null, null,
null, null, null, null, null, null, null, null, null, "INPUT_VARIABLE",
"PATH_VARIABLE", "BOOLEAN_LITERAL", "NUMBER_LITERAL", "STRING_LITERAL",
"WS"
null, null, null, null, null, null, null, null, null, null, null, null,
"INPUT_VARIABLE", "PATH_VARIABLE", "BOOLEAN_LITERAL", "NUMBER_LITERAL",
"DOUBLE", "INT", "ZERO", "STRING_LITERAL", "WS"
};
public static final Vocabulary VOCABULARY = new VocabularyImpl(_LITERAL_NAMES, _SYMBOLIC_NAMES);
@@ -111,132 +112,149 @@ public class EQLLexer extends Lexer {
public ATN getATN() { return _ATN; }
public static final String _serializedATN =
"\3\u0430\ud6d1\u8206\uad2d\u4417\uaef1\u8d80\uaadd\2\64\u0188\b\1\4\2"+
"\t\2\4\3\t\3\4\4\t\4\4\5\t\5\4\6\t\6\4\7\t\7\4\b\t\b\4\t\t\t\4\n\t\n\4"+
"\13\t\13\4\f\t\f\4\r\t\r\4\16\t\16\4\17\t\17\4\20\t\20\4\21\t\21\4\22"+
"\t\22\4\23\t\23\4\24\t\24\4\25\t\25\4\26\t\26\4\27\t\27\4\30\t\30\4\31"+
"\t\31\4\32\t\32\4\33\t\33\4\34\t\34\4\35\t\35\4\36\t\36\4\37\t\37\4 \t"+
" \4!\t!\4\"\t\"\4#\t#\4$\t$\4%\t%\4&\t&\4\'\t\'\4(\t(\4)\t)\4*\t*\4+\t"+
"+\4,\t,\4-\t-\4.\t.\4/\t/\4\60\t\60\4\61\t\61\4\62\t\62\4\63\t\63\3\2"+
"\3\2\3\2\3\2\3\2\3\2\3\2\3\3\3\3\3\4\3\4\3\5\3\5\3\5\3\5\3\5\3\5\3\6\3"+
"\6\3\6\3\6\3\6\3\6\3\7\3\7\3\b\3\b\3\b\3\t\3\t\3\t\3\t\3\n\3\n\3\n\3\n"+
"\3\13\3\13\3\13\3\f\3\f\3\f\3\f\3\f\3\f\3\f\3\f\3\r\3\r\3\r\3\16\3\16"+
"\3\16\3\16\3\16\3\17\3\17\3\17\3\17\3\17\3\17\3\17\3\20\3\20\3\20\3\20"+
"\3\20\3\20\3\20\3\20\3\20\3\20\3\21\3\21\3\21\3\21\3\21\3\21\3\21\3\21"+
"\3\22\3\22\3\22\3\22\3\22\3\22\3\23\3\23\3\23\3\23\3\23\3\23\3\23\3\23"+
"\3\24\3\24\3\24\3\24\3\24\3\24\3\24\3\24\3\24\3\24\3\24\3\25\3\25\3\25"+
"\3\25\3\25\3\25\3\25\3\25\3\25\3\26\3\26\3\26\3\26\3\26\3\27\3\27\3\27"+
"\3\27\3\27\3\27\3\30\3\30\3\30\3\30\3\30\3\30\3\30\3\30\3\30\3\31\3\31"+
"\3\31\3\31\3\31\3\31\3\31\3\31\3\31\3\31\3\32\3\32\3\32\3\32\3\32\3\32"+
"\3\32\3\32\3\32\3\32\3\32\3\33\3\33\3\33\3\33\3\33\3\33\3\33\3\33\3\33"+
"\3\33\3\33\3\33\3\34\3\34\3\34\3\34\3\34\3\34\3\34\3\34\3\34\3\35\3\35"+
"\3\35\3\35\3\35\3\35\3\35\3\35\3\35\3\35\3\36\3\36\3\37\3\37\3\37\3 \3"+
" \3!\3!\3!\3\"\3\"\3\"\3#\3#\3#\3$\3$\3$\3$\3%\3%\3&\3&\3&\3\'\3\'\3\'"+
"\3(\3(\3(\3)\3)\3)\3)\3*\3*\3*\3+\3+\3+\3,\3,\3,\3-\3-\3-\3-\3.\3.\3."+
"\7.\u0155\n.\f.\16.\u0158\13.\3/\3/\7/\u015c\n/\f/\16/\u015f\13/\3\60"+
"\3\60\3\60\3\60\3\60\3\60\3\60\3\60\3\60\5\60\u016a\n\60\3\61\6\61\u016d"+
"\n\61\r\61\16\61\u016e\3\61\5\61\u0172\n\61\3\61\7\61\u0175\n\61\f\61"+
"\16\61\u0178\13\61\3\62\3\62\3\62\3\62\7\62\u017e\n\62\f\62\16\62\u0181"+
"\13\62\3\62\3\62\3\63\3\63\3\63\3\63\2\2\64\3\3\5\4\7\5\t\6\13\7\r\b\17"+
"\3\u0430\ud6d1\u8206\uad2d\u4417\uaef1\u8d80\uaadd\2:\u01b3\b\1\4\2\t"+
"\2\4\3\t\3\4\4\t\4\4\5\t\5\4\6\t\6\4\7\t\7\4\b\t\b\4\t\t\t\4\n\t\n\4\13"+
"\t\13\4\f\t\f\4\r\t\r\4\16\t\16\4\17\t\17\4\20\t\20\4\21\t\21\4\22\t\22"+
"\4\23\t\23\4\24\t\24\4\25\t\25\4\26\t\26\4\27\t\27\4\30\t\30\4\31\t\31"+
"\4\32\t\32\4\33\t\33\4\34\t\34\4\35\t\35\4\36\t\36\4\37\t\37\4 \t \4!"+
"\t!\4\"\t\"\4#\t#\4$\t$\4%\t%\4&\t&\4\'\t\'\4(\t(\4)\t)\4*\t*\4+\t+\4"+
",\t,\4-\t-\4.\t.\4/\t/\4\60\t\60\4\61\t\61\4\62\t\62\4\63\t\63\4\64\t"+
"\64\4\65\t\65\4\66\t\66\4\67\t\67\48\t8\49\t9\3\2\3\2\3\2\3\2\3\2\3\2"+
"\3\2\3\3\3\3\3\4\3\4\3\5\3\5\3\5\3\5\3\5\3\5\3\6\3\6\3\6\3\6\3\6\3\6\3"+
"\7\3\7\3\b\3\b\3\t\3\t\3\t\3\t\3\t\3\t\3\n\3\n\3\n\3\n\3\n\3\13\3\13\3"+
"\13\3\f\3\f\3\f\3\f\3\r\3\r\3\r\3\r\3\16\3\16\3\16\3\17\3\17\3\17\3\17"+
"\3\17\3\17\3\17\3\17\3\20\3\20\3\20\3\21\3\21\3\21\3\21\3\21\3\22\3\22"+
"\3\22\3\22\3\22\3\22\3\22\3\23\3\23\3\23\3\23\3\23\3\23\3\23\3\23\3\23"+
"\3\23\3\24\3\24\3\24\3\24\3\24\3\24\3\24\3\24\3\25\3\25\3\25\3\25\3\25"+
"\3\25\3\26\3\26\3\26\3\26\3\26\3\26\3\26\3\26\3\27\3\27\3\27\3\27\3\27"+
"\3\27\3\27\3\27\3\27\3\27\3\27\3\30\3\30\3\30\3\30\3\30\3\30\3\30\3\30"+
"\3\30\3\31\3\31\3\31\3\31\3\31\3\32\3\32\3\32\3\32\3\32\3\32\3\33\3\33"+
"\3\33\3\33\3\33\3\33\3\33\3\33\3\33\3\34\3\34\3\34\3\34\3\34\3\34\3\34"+
"\3\34\3\34\3\34\3\35\3\35\3\35\3\35\3\35\3\35\3\35\3\35\3\35\3\35\3\35"+
"\3\36\3\36\3\36\3\36\3\36\3\36\3\36\3\36\3\36\3\36\3\36\3\36\3\37\3\37"+
"\3\37\3\37\3\37\3\37\3\37\3\37\3\37\3 \3 \3 \3 \3 \3 \3 \3 \3 \3 \3!\3"+
"!\3\"\3\"\3\"\3#\3#\3$\3$\3$\3%\3%\3%\3&\3&\3&\3\'\3\'\3\'\3\'\3(\3(\3"+
")\3)\3)\3*\3*\3*\3+\3+\3+\3,\3,\3,\3,\3-\3-\3-\3.\3.\3.\3/\3/\3/\3\60"+
"\3\60\3\60\3\60\3\61\3\61\3\61\7\61\u016e\n\61\f\61\16\61\u0171\13\61"+
"\3\62\3\62\7\62\u0175\n\62\f\62\16\62\u0178\13\62\3\63\3\63\3\63\3\63"+
"\3\63\3\63\3\63\3\63\3\63\5\63\u0183\n\63\3\64\5\64\u0186\n\64\3\64\3"+
"\64\5\64\u018a\n\64\3\64\3\64\5\64\u018e\n\64\3\65\6\65\u0191\n\65\r\65"+
"\16\65\u0192\3\65\3\65\7\65\u0197\n\65\f\65\16\65\u019a\13\65\3\66\3\66"+
"\7\66\u019e\n\66\f\66\16\66\u01a1\13\66\3\67\3\67\38\38\38\38\78\u01a9"+
"\n8\f8\168\u01ac\138\38\38\39\39\39\39\2\2:\3\3\5\4\7\5\t\6\13\7\r\b\17"+
"\t\21\n\23\13\25\f\27\r\31\16\33\17\35\20\37\21!\22#\23%\24\'\25)\26+"+
"\27-\30/\31\61\32\63\33\65\34\67\359\36;\37= ?!A\"C#E$G%I&K\'M(O)Q*S+"+
"U,W-Y.[/]\60_\61a\62c\63e\64\3\2\b\5\2C\\aac|\6\2\62;C\\aac|\7\2\60\60"+
"\62;C\\aac|\3\2\62;\3\2))\5\2\13\f\17\17\"\"\u018f\2\3\3\2\2\2\2\5\3\2"+
"\2\2\2\7\3\2\2\2\2\t\3\2\2\2\2\13\3\2\2\2\2\r\3\2\2\2\2\17\3\2\2\2\2\21"+
"\3\2\2\2\2\23\3\2\2\2\2\25\3\2\2\2\2\27\3\2\2\2\2\31\3\2\2\2\2\33\3\2"+
"\2\2\2\35\3\2\2\2\2\37\3\2\2\2\2!\3\2\2\2\2#\3\2\2\2\2%\3\2\2\2\2\'\3"+
"\2\2\2\2)\3\2\2\2\2+\3\2\2\2\2-\3\2\2\2\2/\3\2\2\2\2\61\3\2\2\2\2\63\3"+
"\2\2\2\2\65\3\2\2\2\2\67\3\2\2\2\29\3\2\2\2\2;\3\2\2\2\2=\3\2\2\2\2?\3"+
"\2\2\2\2A\3\2\2\2\2C\3\2\2\2\2E\3\2\2\2\2G\3\2\2\2\2I\3\2\2\2\2K\3\2\2"+
"\2\2M\3\2\2\2\2O\3\2\2\2\2Q\3\2\2\2\2S\3\2\2\2\2U\3\2\2\2\2W\3\2\2\2\2"+
"Y\3\2\2\2\2[\3\2\2\2\2]\3\2\2\2\2_\3\2\2\2\2a\3\2\2\2\2c\3\2\2\2\2e\3"+
"\2\2\2\3g\3\2\2\2\5n\3\2\2\2\7p\3\2\2\2\tr\3\2\2\2\13x\3\2\2\2\r~\3\2"+
"\2\2\17\u0080\3\2\2\2\21\u0083\3\2\2\2\23\u0087\3\2\2\2\25\u008b\3\2\2"+
"\2\27\u008e\3\2\2\2\31\u0096\3\2\2\2\33\u0099\3\2\2\2\35\u009e\3\2\2\2"+
"\37\u00a5\3\2\2\2!\u00af\3\2\2\2#\u00b7\3\2\2\2%\u00bd\3\2\2\2\'\u00c5"+
"\3\2\2\2)\u00d0\3\2\2\2+\u00d9\3\2\2\2-\u00de\3\2\2\2/\u00e4\3\2\2\2\61"+
"\u00ed\3\2\2\2\63\u00f7\3\2\2\2\65\u0102\3\2\2\2\67\u010e\3\2\2\29\u0117"+
"\3\2\2\2;\u0121\3\2\2\2=\u0123\3\2\2\2?\u0126\3\2\2\2A\u0128\3\2\2\2C"+
"\u012b\3\2\2\2E\u012e\3\2\2\2G\u0131\3\2\2\2I\u0135\3\2\2\2K\u0137\3\2"+
"\2\2M\u013a\3\2\2\2O\u013d\3\2\2\2Q\u0140\3\2\2\2S\u0144\3\2\2\2U\u0147"+
"\3\2\2\2W\u014a\3\2\2\2Y\u014d\3\2\2\2[\u0151\3\2\2\2]\u0159\3\2\2\2_"+
"\u0169\3\2\2\2a\u016c\3\2\2\2c\u0179\3\2\2\2e\u0184\3\2\2\2gh\7u\2\2h"+
"i\7g\2\2ij\7n\2\2jk\7g\2\2kl\7e\2\2lm\7v\2\2m\4\3\2\2\2no\7*\2\2o\6\3"+
"\2\2\2pq\7+\2\2q\b\3\2\2\2rs\7y\2\2st\7j\2\2tu\7g\2\2uv\7t\2\2vw\7g\2"+
"\2w\n\3\2\2\2xy\7h\2\2yz\7g\2\2z{\7v\2\2{|\7e\2\2|}\7j\2\2}\f\3\2\2\2"+
"~\177\7.\2\2\177\16\3\2\2\2\u0080\u0081\7q\2\2\u0081\u0082\7t\2\2\u0082"+
"\20\3\2\2\2\u0083\u0084\7c\2\2\u0084\u0085\7p\2\2\u0085\u0086\7f\2\2\u0086"+
"\22\3\2\2\2\u0087\u0088\7p\2\2\u0088\u0089\7q\2\2\u0089\u008a\7v\2\2\u008a"+
"\24\3\2\2\2\u008b\u008c\7k\2\2\u008c\u008d\7p\2\2\u008d\26\3\2\2\2\u008e"+
"\u008f\7d\2\2\u008f\u0090\7g\2\2\u0090\u0091\7v\2\2\u0091\u0092\7y\2\2"+
"\u0092\u0093\7g\2\2\u0093\u0094\7g\2\2\u0094\u0095\7p\2\2\u0095\30\3\2"+
"\2\2\u0096\u0097\7k\2\2\u0097\u0098\7u\2\2\u0098\32\3\2\2\2\u0099\u009a"+
"\7p\2\2\u009a\u009b\7w\2\2\u009b\u009c\7n\2\2\u009c\u009d\7n\2\2\u009d"+
"\34\3\2\2\2\u009e\u009f\7k\2\2\u009f\u00a0\7u\2\2\u00a0\u00a1\7P\2\2\u00a1"+
"\u00a2\7w\2\2\u00a2\u00a3\7n\2\2\u00a3\u00a4\7n\2\2\u00a4\36\3\2\2\2\u00a5"+
"\u00a6\7k\2\2\u00a6\u00a7\7u\2\2\u00a7\u00a8\7P\2\2\u00a8\u00a9\7q\2\2"+
"\u00a9\u00aa\7v\2\2\u00aa\u00ab\7P\2\2\u00ab\u00ac\7w\2\2\u00ac\u00ad"+
"\7n\2\2\u00ad\u00ae\7n\2\2\u00ae \3\2\2\2\u00af\u00b0\7p\2\2\u00b0\u00b1"+
"\7q\2\2\u00b1\u00b2\7v\2\2\u00b2\u00b3\7P\2\2\u00b3\u00b4\7w\2\2\u00b4"+
"\u00b5\7n\2\2\u00b5\u00b6\7n\2\2\u00b6\"\3\2\2\2\u00b7\u00b8\7g\2\2\u00b8"+
"\u00b9\7o\2\2\u00b9\u00ba\7r\2\2\u00ba\u00bb\7v\2\2\u00bb\u00bc\7{\2\2"+
"\u00bc$\3\2\2\2\u00bd\u00be\7k\2\2\u00be\u00bf\7u\2\2\u00bf\u00c0\7G\2"+
"\2\u00c0\u00c1\7o\2\2\u00c1\u00c2\7r\2\2\u00c2\u00c3\7v\2\2\u00c3\u00c4"+
"\7{\2\2\u00c4&\3\2\2\2\u00c5\u00c6\7k\2\2\u00c6\u00c7\7u\2\2\u00c7\u00c8"+
"\7P\2\2\u00c8\u00c9\7q\2\2\u00c9\u00ca\7v\2\2\u00ca\u00cb\7G\2\2\u00cb"+
"\u00cc\7o\2\2\u00cc\u00cd\7r\2\2\u00cd\u00ce\7v\2\2\u00ce\u00cf\7{\2\2"+
"\u00cf(\3\2\2\2\u00d0\u00d1\7p\2\2\u00d1\u00d2\7q\2\2\u00d2\u00d3\7v\2"+
"\2\u00d3\u00d4\7G\2\2\u00d4\u00d5\7o\2\2\u00d5\u00d6\7r\2\2\u00d6\u00d7"+
"\7v\2\2\u00d7\u00d8\7{\2\2\u00d8*\3\2\2\2\u00d9\u00da\7n\2\2\u00da\u00db"+
"\7k\2\2\u00db\u00dc\7m\2\2\u00dc\u00dd\7g\2\2\u00dd,\3\2\2\2\u00de\u00df"+
"\7k\2\2\u00df\u00e0\7n\2\2\u00e0\u00e1\7k\2\2\u00e1\u00e2\7m\2\2\u00e2"+
"\u00e3\7g\2\2\u00e3.\3\2\2\2\u00e4\u00e5\7e\2\2\u00e5\u00e6\7q\2\2\u00e6"+
"\u00e7\7p\2\2\u00e7\u00e8\7v\2\2\u00e8\u00e9\7c\2\2\u00e9\u00ea\7k\2\2"+
"\u00ea\u00eb\7p\2\2\u00eb\u00ec\7u\2\2\u00ec\60\3\2\2\2\u00ed\u00ee\7"+
"k\2\2\u00ee\u00ef\7e\2\2\u00ef\u00f0\7q\2\2\u00f0\u00f1\7p\2\2\u00f1\u00f2"+
"\7v\2\2\u00f2\u00f3\7c\2\2\u00f3\u00f4\7k\2\2\u00f4\u00f5\7p\2\2\u00f5"+
"\u00f6\7u\2\2\u00f6\62\3\2\2\2\u00f7\u00f8\7u\2\2\u00f8\u00f9\7v\2\2\u00f9"+
"\u00fa\7c\2\2\u00fa\u00fb\7t\2\2\u00fb\u00fc\7v\2\2\u00fc\u00fd\7u\2\2"+
"\u00fd\u00fe\7Y\2\2\u00fe\u00ff\7k\2\2\u00ff\u0100\7v\2\2\u0100\u0101"+
"\7j\2\2\u0101\64\3\2\2\2\u0102\u0103\7k\2\2\u0103\u0104\7u\2\2\u0104\u0105"+
"\7v\2\2\u0105\u0106\7c\2\2\u0106\u0107\7t\2\2\u0107\u0108\7v\2\2\u0108"+
"\u0109\7u\2\2\u0109\u010a\7Y\2\2\u010a\u010b\7k\2\2\u010b\u010c\7v\2\2"+
"\u010c\u010d\7j\2\2\u010d\66\3\2\2\2\u010e\u010f\7g\2\2\u010f\u0110\7"+
"p\2\2\u0110\u0111\7f\2\2\u0111\u0112\7u\2\2\u0112\u0113\7Y\2\2\u0113\u0114"+
"\7k\2\2\u0114\u0115\7v\2\2\u0115\u0116\7j\2\2\u01168\3\2\2\2\u0117\u0118"+
"\7k\2\2\u0118\u0119\7g\2\2\u0119\u011a\7p\2\2\u011a\u011b\7f\2\2\u011b"+
"\u011c\7u\2\2\u011c\u011d\7Y\2\2\u011d\u011e\7k\2\2\u011e\u011f\7v\2\2"+
"\u011f\u0120\7j\2\2\u0120:\3\2\2\2\u0121\u0122\7?\2\2\u0122<\3\2\2\2\u0123"+
"\u0124\7g\2\2\u0124\u0125\7s\2\2\u0125>\3\2\2\2\u0126\u0127\7@\2\2\u0127"+
"@\3\2\2\2\u0128\u0129\7i\2\2\u0129\u012a\7v\2\2\u012aB\3\2\2\2\u012b\u012c"+
"\7@\2\2\u012c\u012d\7?\2\2\u012dD\3\2\2\2\u012e\u012f\7i\2\2\u012f\u0130"+
"\7g\2\2\u0130F\3\2\2\2\u0131\u0132\7i\2\2\u0132\u0133\7v\2\2\u0133\u0134"+
"\7g\2\2\u0134H\3\2\2\2\u0135\u0136\7>\2\2\u0136J\3\2\2\2\u0137\u0138\7"+
"n\2\2\u0138\u0139\7v\2\2\u0139L\3\2\2\2\u013a\u013b\7>\2\2\u013b\u013c"+
"\7?\2\2\u013cN\3\2\2\2\u013d\u013e\7n\2\2\u013e\u013f\7g\2\2\u013fP\3"+
"\2\2\2\u0140\u0141\7n\2\2\u0141\u0142\7v\2\2\u0142\u0143\7g\2\2\u0143"+
"R\3\2\2\2\u0144\u0145\7>\2\2\u0145\u0146\7@\2\2\u0146T\3\2\2\2\u0147\u0148"+
"\7#\2\2\u0148\u0149\7?\2\2\u0149V\3\2\2\2\u014a\u014b\7p\2\2\u014b\u014c"+
"\7g\2\2\u014cX\3\2\2\2\u014d\u014e\7k\2\2\u014e\u014f\7g\2\2\u014f\u0150"+
"\7s\2\2\u0150Z\3\2\2\2\u0151\u0152\7<\2\2\u0152\u0156\t\2\2\2\u0153\u0155"+
"\t\3\2\2\u0154\u0153\3\2\2\2\u0155\u0158\3\2\2\2\u0156\u0154\3\2\2\2\u0156"+
"\u0157\3\2\2\2\u0157\\\3\2\2\2\u0158\u0156\3\2\2\2\u0159\u015d\t\2\2\2"+
"\u015a\u015c\t\4\2\2\u015b\u015a\3\2\2\2\u015c\u015f\3\2\2\2\u015d\u015b"+
"\3\2\2\2\u015d\u015e\3\2\2\2\u015e^\3\2\2\2\u015f\u015d\3\2\2\2\u0160"+
"\u0161\7v\2\2\u0161\u0162\7t\2\2\u0162\u0163\7w\2\2\u0163\u016a\7g\2\2"+
"\u0164\u0165\7h\2\2\u0165\u0166\7c\2\2\u0166\u0167\7n\2\2\u0167\u0168"+
"\7u\2\2\u0168\u016a\7g\2\2\u0169\u0160\3\2\2\2\u0169\u0164\3\2\2\2\u016a"+
"`\3\2\2\2\u016b\u016d\t\5\2\2\u016c\u016b\3\2\2\2\u016d\u016e\3\2\2\2"+
"\u016e\u016c\3\2\2\2\u016e\u016f\3\2\2\2\u016f\u0171\3\2\2\2\u0170\u0172"+
"\7\60\2\2\u0171\u0170\3\2\2\2\u0171\u0172\3\2\2\2\u0172\u0176\3\2\2\2"+
"\u0173\u0175\t\5\2\2\u0174\u0173\3\2\2\2\u0175\u0178\3\2\2\2\u0176\u0174"+
"\3\2\2\2\u0176\u0177\3\2\2\2\u0177b\3\2\2\2\u0178\u0176\3\2\2\2\u0179"+
"\u017f\7)\2\2\u017a\u017e\n\6\2\2\u017b\u017c\7)\2\2\u017c\u017e\7)\2"+
"\2\u017d\u017a\3\2\2\2\u017d\u017b\3\2\2\2\u017e\u0181\3\2\2\2\u017f\u017d"+
"\3\2\2\2\u017f\u0180\3\2\2\2\u0180\u0182\3\2\2\2\u0181\u017f\3\2\2\2\u0182"+
"\u0183\7)\2\2\u0183d\3\2\2\2\u0184\u0185\t\7\2\2\u0185\u0186\3\2\2\2\u0186"+
"\u0187\b\63\2\2\u0187f\3\2\2\2\13\2\u0156\u015d\u0169\u016e\u0171\u0176"+
"\u017d\u017f\3\b\2\2";
"U,W-Y.[/]\60_\61a\62c\63e\64g\65i\66k\67m8o9q:\3\2\t\5\2C\\aac|\6\2\62"+
";C\\aac|\7\2\60\60\62;C\\aac|\3\2\62;\3\2\63;\3\2))\5\2\13\f\17\17\"\""+
"\u01be\2\3\3\2\2\2\2\5\3\2\2\2\2\7\3\2\2\2\2\t\3\2\2\2\2\13\3\2\2\2\2"+
"\r\3\2\2\2\2\17\3\2\2\2\2\21\3\2\2\2\2\23\3\2\2\2\2\25\3\2\2\2\2\27\3"+
"\2\2\2\2\31\3\2\2\2\2\33\3\2\2\2\2\35\3\2\2\2\2\37\3\2\2\2\2!\3\2\2\2"+
"\2#\3\2\2\2\2%\3\2\2\2\2\'\3\2\2\2\2)\3\2\2\2\2+\3\2\2\2\2-\3\2\2\2\2"+
"/\3\2\2\2\2\61\3\2\2\2\2\63\3\2\2\2\2\65\3\2\2\2\2\67\3\2\2\2\29\3\2\2"+
"\2\2;\3\2\2\2\2=\3\2\2\2\2?\3\2\2\2\2A\3\2\2\2\2C\3\2\2\2\2E\3\2\2\2\2"+
"G\3\2\2\2\2I\3\2\2\2\2K\3\2\2\2\2M\3\2\2\2\2O\3\2\2\2\2Q\3\2\2\2\2S\3"+
"\2\2\2\2U\3\2\2\2\2W\3\2\2\2\2Y\3\2\2\2\2[\3\2\2\2\2]\3\2\2\2\2_\3\2\2"+
"\2\2a\3\2\2\2\2c\3\2\2\2\2e\3\2\2\2\2g\3\2\2\2\2i\3\2\2\2\2k\3\2\2\2\2"+
"m\3\2\2\2\2o\3\2\2\2\2q\3\2\2\2\3s\3\2\2\2\5z\3\2\2\2\7|\3\2\2\2\t~\3"+
"\2\2\2\13\u0084\3\2\2\2\r\u008a\3\2\2\2\17\u008c\3\2\2\2\21\u008e\3\2"+
"\2\2\23\u0094\3\2\2\2\25\u0099\3\2\2\2\27\u009c\3\2\2\2\31\u00a0\3\2\2"+
"\2\33\u00a4\3\2\2\2\35\u00a7\3\2\2\2\37\u00af\3\2\2\2!\u00b2\3\2\2\2#"+
"\u00b7\3\2\2\2%\u00be\3\2\2\2\'\u00c8\3\2\2\2)\u00d0\3\2\2\2+\u00d6\3"+
"\2\2\2-\u00de\3\2\2\2/\u00e9\3\2\2\2\61\u00f2\3\2\2\2\63\u00f7\3\2\2\2"+
"\65\u00fd\3\2\2\2\67\u0106\3\2\2\29\u0110\3\2\2\2;\u011b\3\2\2\2=\u0127"+
"\3\2\2\2?\u0130\3\2\2\2A\u013a\3\2\2\2C\u013c\3\2\2\2E\u013f\3\2\2\2G"+
"\u0141\3\2\2\2I\u0144\3\2\2\2K\u0147\3\2\2\2M\u014a\3\2\2\2O\u014e\3\2"+
"\2\2Q\u0150\3\2\2\2S\u0153\3\2\2\2U\u0156\3\2\2\2W\u0159\3\2\2\2Y\u015d"+
"\3\2\2\2[\u0160\3\2\2\2]\u0163\3\2\2\2_\u0166\3\2\2\2a\u016a\3\2\2\2c"+
"\u0172\3\2\2\2e\u0182\3\2\2\2g\u018d\3\2\2\2i\u0190\3\2\2\2k\u019b\3\2"+
"\2\2m\u01a2\3\2\2\2o\u01a4\3\2\2\2q\u01af\3\2\2\2st\7u\2\2tu\7g\2\2uv"+
"\7n\2\2vw\7g\2\2wx\7e\2\2xy\7v\2\2y\4\3\2\2\2z{\7*\2\2{\6\3\2\2\2|}\7"+
"+\2\2}\b\3\2\2\2~\177\7y\2\2\177\u0080\7j\2\2\u0080\u0081\7g\2\2\u0081"+
"\u0082\7t\2\2\u0082\u0083\7g\2\2\u0083\n\3\2\2\2\u0084\u0085\7h\2\2\u0085"+
"\u0086\7g\2\2\u0086\u0087\7v\2\2\u0087\u0088\7e\2\2\u0088\u0089\7j\2\2"+
"\u0089\f\3\2\2\2\u008a\u008b\7.\2\2\u008b\16\3\2\2\2\u008c\u008d\7-\2"+
"\2\u008d\20\3\2\2\2\u008e\u008f\7s\2\2\u008f\u0090\7w\2\2\u0090\u0091"+
"\7g\2\2\u0091\u0092\7t\2\2\u0092\u0093\7{\2\2\u0093\22\3\2\2\2\u0094\u0095"+
"\7n\2\2\u0095\u0096\7c\2\2\u0096\u0097\7|\2\2\u0097\u0098\7{\2\2\u0098"+
"\24\3\2\2\2\u0099\u009a\7q\2\2\u009a\u009b\7t\2\2\u009b\26\3\2\2\2\u009c"+
"\u009d\7c\2\2\u009d\u009e\7p\2\2\u009e\u009f\7f\2\2\u009f\30\3\2\2\2\u00a0"+
"\u00a1\7p\2\2\u00a1\u00a2\7q\2\2\u00a2\u00a3\7v\2\2\u00a3\32\3\2\2\2\u00a4"+
"\u00a5\7k\2\2\u00a5\u00a6\7p\2\2\u00a6\34\3\2\2\2\u00a7\u00a8\7d\2\2\u00a8"+
"\u00a9\7g\2\2\u00a9\u00aa\7v\2\2\u00aa\u00ab\7y\2\2\u00ab\u00ac\7g\2\2"+
"\u00ac\u00ad\7g\2\2\u00ad\u00ae\7p\2\2\u00ae\36\3\2\2\2\u00af\u00b0\7"+
"k\2\2\u00b0\u00b1\7u\2\2\u00b1 \3\2\2\2\u00b2\u00b3\7p\2\2\u00b3\u00b4"+
"\7w\2\2\u00b4\u00b5\7n\2\2\u00b5\u00b6\7n\2\2\u00b6\"\3\2\2\2\u00b7\u00b8"+
"\7k\2\2\u00b8\u00b9\7u\2\2\u00b9\u00ba\7P\2\2\u00ba\u00bb\7w\2\2\u00bb"+
"\u00bc\7n\2\2\u00bc\u00bd\7n\2\2\u00bd$\3\2\2\2\u00be\u00bf\7k\2\2\u00bf"+
"\u00c0\7u\2\2\u00c0\u00c1\7P\2\2\u00c1\u00c2\7q\2\2\u00c2\u00c3\7v\2\2"+
"\u00c3\u00c4\7P\2\2\u00c4\u00c5\7w\2\2\u00c5\u00c6\7n\2\2\u00c6\u00c7"+
"\7n\2\2\u00c7&\3\2\2\2\u00c8\u00c9\7p\2\2\u00c9\u00ca\7q\2\2\u00ca\u00cb"+
"\7v\2\2\u00cb\u00cc\7P\2\2\u00cc\u00cd\7w\2\2\u00cd\u00ce\7n\2\2\u00ce"+
"\u00cf\7n\2\2\u00cf(\3\2\2\2\u00d0\u00d1\7g\2\2\u00d1\u00d2\7o\2\2\u00d2"+
"\u00d3\7r\2\2\u00d3\u00d4\7v\2\2\u00d4\u00d5\7{\2\2\u00d5*\3\2\2\2\u00d6"+
"\u00d7\7k\2\2\u00d7\u00d8\7u\2\2\u00d8\u00d9\7G\2\2\u00d9\u00da\7o\2\2"+
"\u00da\u00db\7r\2\2\u00db\u00dc\7v\2\2\u00dc\u00dd\7{\2\2\u00dd,\3\2\2"+
"\2\u00de\u00df\7k\2\2\u00df\u00e0\7u\2\2\u00e0\u00e1\7P\2\2\u00e1\u00e2"+
"\7q\2\2\u00e2\u00e3\7v\2\2\u00e3\u00e4\7G\2\2\u00e4\u00e5\7o\2\2\u00e5"+
"\u00e6\7r\2\2\u00e6\u00e7\7v\2\2\u00e7\u00e8\7{\2\2\u00e8.\3\2\2\2\u00e9"+
"\u00ea\7p\2\2\u00ea\u00eb\7q\2\2\u00eb\u00ec\7v\2\2\u00ec\u00ed\7G\2\2"+
"\u00ed\u00ee\7o\2\2\u00ee\u00ef\7r\2\2\u00ef\u00f0\7v\2\2\u00f0\u00f1"+
"\7{\2\2\u00f1\60\3\2\2\2\u00f2\u00f3\7n\2\2\u00f3\u00f4\7k\2\2\u00f4\u00f5"+
"\7m\2\2\u00f5\u00f6\7g\2\2\u00f6\62\3\2\2\2\u00f7\u00f8\7k\2\2\u00f8\u00f9"+
"\7n\2\2\u00f9\u00fa\7k\2\2\u00fa\u00fb\7m\2\2\u00fb\u00fc\7g\2\2\u00fc"+
"\64\3\2\2\2\u00fd\u00fe\7e\2\2\u00fe\u00ff\7q\2\2\u00ff\u0100\7p\2\2\u0100"+
"\u0101\7v\2\2\u0101\u0102\7c\2\2\u0102\u0103\7k\2\2\u0103\u0104\7p\2\2"+
"\u0104\u0105\7u\2\2\u0105\66\3\2\2\2\u0106\u0107\7k\2\2\u0107\u0108\7"+
"e\2\2\u0108\u0109\7q\2\2\u0109\u010a\7p\2\2\u010a\u010b\7v\2\2\u010b\u010c"+
"\7c\2\2\u010c\u010d\7k\2\2\u010d\u010e\7p\2\2\u010e\u010f\7u\2\2\u010f"+
"8\3\2\2\2\u0110\u0111\7u\2\2\u0111\u0112\7v\2\2\u0112\u0113\7c\2\2\u0113"+
"\u0114\7t\2\2\u0114\u0115\7v\2\2\u0115\u0116\7u\2\2\u0116\u0117\7Y\2\2"+
"\u0117\u0118\7k\2\2\u0118\u0119\7v\2\2\u0119\u011a\7j\2\2\u011a:\3\2\2"+
"\2\u011b\u011c\7k\2\2\u011c\u011d\7u\2\2\u011d\u011e\7v\2\2\u011e\u011f"+
"\7c\2\2\u011f\u0120\7t\2\2\u0120\u0121\7v\2\2\u0121\u0122\7u\2\2\u0122"+
"\u0123\7Y\2\2\u0123\u0124\7k\2\2\u0124\u0125\7v\2\2\u0125\u0126\7j\2\2"+
"\u0126<\3\2\2\2\u0127\u0128\7g\2\2\u0128\u0129\7p\2\2\u0129\u012a\7f\2"+
"\2\u012a\u012b\7u\2\2\u012b\u012c\7Y\2\2\u012c\u012d\7k\2\2\u012d\u012e"+
"\7v\2\2\u012e\u012f\7j\2\2\u012f>\3\2\2\2\u0130\u0131\7k\2\2\u0131\u0132"+
"\7g\2\2\u0132\u0133\7p\2\2\u0133\u0134\7f\2\2\u0134\u0135\7u\2\2\u0135"+
"\u0136\7Y\2\2\u0136\u0137\7k\2\2\u0137\u0138\7v\2\2\u0138\u0139\7j\2\2"+
"\u0139@\3\2\2\2\u013a\u013b\7?\2\2\u013bB\3\2\2\2\u013c\u013d\7g\2\2\u013d"+
"\u013e\7s\2\2\u013eD\3\2\2\2\u013f\u0140\7@\2\2\u0140F\3\2\2\2\u0141\u0142"+
"\7i\2\2\u0142\u0143\7v\2\2\u0143H\3\2\2\2\u0144\u0145\7@\2\2\u0145\u0146"+
"\7?\2\2\u0146J\3\2\2\2\u0147\u0148\7i\2\2\u0148\u0149\7g\2\2\u0149L\3"+
"\2\2\2\u014a\u014b\7i\2\2\u014b\u014c\7v\2\2\u014c\u014d\7g\2\2\u014d"+
"N\3\2\2\2\u014e\u014f\7>\2\2\u014fP\3\2\2\2\u0150\u0151\7n\2\2\u0151\u0152"+
"\7v\2\2\u0152R\3\2\2\2\u0153\u0154\7>\2\2\u0154\u0155\7?\2\2\u0155T\3"+
"\2\2\2\u0156\u0157\7n\2\2\u0157\u0158\7g\2\2\u0158V\3\2\2\2\u0159\u015a"+
"\7n\2\2\u015a\u015b\7v\2\2\u015b\u015c\7g\2\2\u015cX\3\2\2\2\u015d\u015e"+
"\7>\2\2\u015e\u015f\7@\2\2\u015fZ\3\2\2\2\u0160\u0161\7#\2\2\u0161\u0162"+
"\7?\2\2\u0162\\\3\2\2\2\u0163\u0164\7p\2\2\u0164\u0165\7g\2\2\u0165^\3"+
"\2\2\2\u0166\u0167\7k\2\2\u0167\u0168\7g\2\2\u0168\u0169\7s\2\2\u0169"+
"`\3\2\2\2\u016a\u016b\7<\2\2\u016b\u016f\t\2\2\2\u016c\u016e\t\3\2\2\u016d"+
"\u016c\3\2\2\2\u016e\u0171\3\2\2\2\u016f\u016d\3\2\2\2\u016f\u0170\3\2"+
"\2\2\u0170b\3\2\2\2\u0171\u016f\3\2\2\2\u0172\u0176\t\2\2\2\u0173\u0175"+
"\t\4\2\2\u0174\u0173\3\2\2\2\u0175\u0178\3\2\2\2\u0176\u0174\3\2\2\2\u0176"+
"\u0177\3\2\2\2\u0177d\3\2\2\2\u0178\u0176\3\2\2\2\u0179\u017a\7v\2\2\u017a"+
"\u017b\7t\2\2\u017b\u017c\7w\2\2\u017c\u0183\7g\2\2\u017d\u017e\7h\2\2"+
"\u017e\u017f\7c\2\2\u017f\u0180\7n\2\2\u0180\u0181\7u\2\2\u0181\u0183"+
"\7g\2\2\u0182\u0179\3\2\2\2\u0182\u017d\3\2\2\2\u0183f\3\2\2\2\u0184\u0186"+
"\7/\2\2\u0185\u0184\3\2\2\2\u0185\u0186\3\2\2\2\u0186\u0187\3\2\2\2\u0187"+
"\u018e\5i\65\2\u0188\u018a\7/\2\2\u0189\u0188\3\2\2\2\u0189\u018a\3\2"+
"\2\2\u018a\u018b\3\2\2\2\u018b\u018e\5k\66\2\u018c\u018e\5m\67\2\u018d"+
"\u0185\3\2\2\2\u018d\u0189\3\2\2\2\u018d\u018c\3\2\2\2\u018eh\3\2\2\2"+
"\u018f\u0191\t\5\2\2\u0190\u018f\3\2\2\2\u0191\u0192\3\2\2\2\u0192\u0190"+
"\3\2\2\2\u0192\u0193\3\2\2\2\u0193\u0194\3\2\2\2\u0194\u0198\7\60\2\2"+
"\u0195\u0197\t\5\2\2\u0196\u0195\3\2\2\2\u0197\u019a\3\2\2\2\u0198\u0196"+
"\3\2\2\2\u0198\u0199\3\2\2\2\u0199j\3\2\2\2\u019a\u0198\3\2\2\2\u019b"+
"\u019f\t\6\2\2\u019c\u019e\t\5\2\2\u019d\u019c\3\2\2\2\u019e\u01a1\3\2"+
"\2\2\u019f\u019d\3\2\2\2\u019f\u01a0\3\2\2\2\u01a0l\3\2\2\2\u01a1\u019f"+
"\3\2\2\2\u01a2\u01a3\7\62\2\2\u01a3n\3\2\2\2\u01a4\u01aa\7)\2\2\u01a5"+
"\u01a9\n\7\2\2\u01a6\u01a7\7)\2\2\u01a7\u01a9\7)\2\2\u01a8\u01a5\3\2\2"+
"\2\u01a8\u01a6\3\2\2\2\u01a9\u01ac\3\2\2\2\u01aa\u01a8\3\2\2\2\u01aa\u01ab"+
"\3\2\2\2\u01ab\u01ad\3\2\2\2\u01ac\u01aa\3\2\2\2\u01ad\u01ae\7)\2\2\u01ae"+
"p\3\2\2\2\u01af\u01b0\t\b\2\2\u01b0\u01b1\3\2\2\2\u01b1\u01b2\b9\2\2\u01b2"+
"r\3\2\2\2\16\2\u016f\u0176\u0182\u0185\u0189\u018d\u0192\u0198\u019f\u01a8"+
"\u01aa\3\b\2\2";
public static final ATN _ATN =
new ATNDeserializer().deserialize(_serializedATN.toCharArray());
static {
@@ -42,53 +42,63 @@ T__40=41
T__41=42
T__42=43
T__43=44
INPUT_VARIABLE=45
PATH_VARIABLE=46
BOOLEAN_LITERAL=47
NUMBER_LITERAL=48
STRING_LITERAL=49
WS=50
T__44=45
T__45=46
T__46=47
INPUT_VARIABLE=48
PATH_VARIABLE=49
BOOLEAN_LITERAL=50
NUMBER_LITERAL=51
DOUBLE=52
INT=53
ZERO=54
STRING_LITERAL=55
WS=56
'select'=1
'('=2
')'=3
'where'=4
'fetch'=5
','=6
'or'=7
'and'=8
'not'=9
'in'=10
'between'=11
'is'=12
'null'=13
'isNull'=14
'isNotNull'=15
'notNull'=16
'empty'=17
'isEmpty'=18
'isNotEmpty'=19
'notEmpty'=20
'like'=21
'ilike'=22
'contains'=23
'icontains'=24
'startsWith'=25
'istartsWith'=26
'endsWith'=27
'iendsWith'=28
'='=29
'eq'=30
'>'=31
'gt'=32
'>='=33
'ge'=34
'gte'=35
'<'=36
'lt'=37
'<='=38
'le'=39
'lte'=40
'<>'=41
'!='=42
'ne'=43
'ieq'=44
'+'=7
'query'=8
'lazy'=9
'or'=10
'and'=11
'not'=12
'in'=13
'between'=14
'is'=15
'null'=16
'isNull'=17
'isNotNull'=18
'notNull'=19
'empty'=20
'isEmpty'=21
'isNotEmpty'=22
'notEmpty'=23
'like'=24
'ilike'=25
'contains'=26
'icontains'=27
'startsWith'=28
'istartsWith'=29
'endsWith'=30
'iendsWith'=31
'='=32
'eq'=33
'>'=34
'gt'=35
'>='=36
'ge'=37
'gte'=38
'<'=39
'lt'=40
'<='=41
'le'=42
'lte'=43
'<>'=44
'!='=45
'ne'=46
'ieq'=47
'0'=54
@@ -87,6 +87,66 @@ public interface EQLListener extends ParseTreeListener {
* @param ctx the parse tree
*/
void exitFetch_property(EQLParser.Fetch_propertyContext ctx);
/**
* Enter a parse tree produced by {@link EQLParser#fetch_query_hint}.
* @param ctx the parse tree
*/
void enterFetch_query_hint(EQLParser.Fetch_query_hintContext ctx);
/**
* Exit a parse tree produced by {@link EQLParser#fetch_query_hint}.
* @param ctx the parse tree
*/
void exitFetch_query_hint(EQLParser.Fetch_query_hintContext ctx);
/**
* Enter a parse tree produced by {@link EQLParser#fetch_lazy_hint}.
* @param ctx the parse tree
*/
void enterFetch_lazy_hint(EQLParser.Fetch_lazy_hintContext ctx);
/**
* Exit a parse tree produced by {@link EQLParser#fetch_lazy_hint}.
* @param ctx the parse tree
*/
void exitFetch_lazy_hint(EQLParser.Fetch_lazy_hintContext ctx);
/**
* Enter a parse tree produced by {@link EQLParser#fetch_option}.
* @param ctx the parse tree
*/
void enterFetch_option(EQLParser.Fetch_optionContext ctx);
/**
* Exit a parse tree produced by {@link EQLParser#fetch_option}.
* @param ctx the parse tree
*/
void exitFetch_option(EQLParser.Fetch_optionContext ctx);
/**
* Enter a parse tree produced by {@link EQLParser#fetch_query_option}.
* @param ctx the parse tree
*/
void enterFetch_query_option(EQLParser.Fetch_query_optionContext ctx);
/**
* Exit a parse tree produced by {@link EQLParser#fetch_query_option}.
* @param ctx the parse tree
*/
void exitFetch_query_option(EQLParser.Fetch_query_optionContext ctx);
/**
* Enter a parse tree produced by {@link EQLParser#fetch_lazy_option}.
* @param ctx the parse tree
*/
void enterFetch_lazy_option(EQLParser.Fetch_lazy_optionContext ctx);
/**
* Exit a parse tree produced by {@link EQLParser#fetch_lazy_option}.
* @param ctx the parse tree
*/
void exitFetch_lazy_option(EQLParser.Fetch_lazy_optionContext ctx);
/**
* Enter a parse tree produced by {@link EQLParser#fetch_batch_size}.
* @param ctx the parse tree
*/
void enterFetch_batch_size(EQLParser.Fetch_batch_sizeContext ctx);
/**
* Exit a parse tree produced by {@link EQLParser#fetch_batch_size}.
* @param ctx the parse tree
*/
void exitFetch_batch_size(EQLParser.Fetch_batch_sizeContext ctx);
/**
* Enter a parse tree produced by {@link EQLParser#conditional_expression}.
* @param ctx the parse tree
File diff suppressed because it is too large Load Diff