From 347b3ce63ca4e09d424784db3fa7b083e409d129 Mon Sep 17 00:00:00 2001 From: carlosdelest Date: Tue, 3 Dec 2024 16:18:33 +0100 Subject: [PATCH] Adding support for casting on the field type and allowing multi-index queries with different types --- .../xpack/esql/CsvTestsDataLoader.java | 6 + .../main/resources/employees_incompatible.csv | 101 + .../mapping-default-incompatible.json | 80 + .../main/resources/match-function.csv-spec | 16 + .../main/resources/match-operator.csv-spec | 17 + .../esql/src/main/antlr/EsqlBaseParser.g4 | 2 +- .../xpack/esql/parser/EsqlBaseParser.interp | 2 +- .../xpack/esql/parser/EsqlBaseParser.java | 1694 +++++++++-------- .../xpack/esql/parser/ExpressionBuilder.java | 13 +- .../planner/EsqlExpressionTranslators.java | 13 +- .../esql/parser/StatementParserTests.java | 25 +- 11 files changed, 1120 insertions(+), 849 deletions(-) create mode 100644 x-pack/plugin/esql/qa/testFixtures/src/main/resources/employees_incompatible.csv create mode 100644 x-pack/plugin/esql/qa/testFixtures/src/main/resources/mapping-default-incompatible.json diff --git a/x-pack/plugin/esql/qa/testFixtures/src/main/java/org/elasticsearch/xpack/esql/CsvTestsDataLoader.java b/x-pack/plugin/esql/qa/testFixtures/src/main/java/org/elasticsearch/xpack/esql/CsvTestsDataLoader.java index 9c987a02aca2d..8b6301403d955 100644 --- a/x-pack/plugin/esql/qa/testFixtures/src/main/java/org/elasticsearch/xpack/esql/CsvTestsDataLoader.java +++ b/x-pack/plugin/esql/qa/testFixtures/src/main/java/org/elasticsearch/xpack/esql/CsvTestsDataLoader.java @@ -52,6 +52,11 @@ public class CsvTestsDataLoader { private static final int BULK_DATA_SIZE = 100_000; private static final TestsDataset EMPLOYEES = new TestsDataset("employees", "mapping-default.json", "employees.csv").noSubfields(); + private static final TestsDataset EMPLOYEES_INCOMPATIBLE = new TestsDataset( + "employees_incompatible", + "mapping-default-incompatible.json", + "employees_incompatible.csv" + ).noSubfields(); private static final TestsDataset HOSTS = new TestsDataset("hosts"); private static final TestsDataset APPS = new TestsDataset("apps"); private static final TestsDataset APPS_SHORT = APPS.withIndex("apps_short").withTypeMapping(Map.of("id", "short")); @@ -98,6 +103,7 @@ public class CsvTestsDataLoader { public static final Map CSV_DATASET_MAP = Map.ofEntries( Map.entry(EMPLOYEES.indexName, EMPLOYEES), + Map.entry(EMPLOYEES_INCOMPATIBLE.indexName, EMPLOYEES_INCOMPATIBLE), Map.entry(HOSTS.indexName, HOSTS), Map.entry(APPS.indexName, APPS), Map.entry(APPS_SHORT.indexName, APPS_SHORT), diff --git a/x-pack/plugin/esql/qa/testFixtures/src/main/resources/employees_incompatible.csv b/x-pack/plugin/esql/qa/testFixtures/src/main/resources/employees_incompatible.csv new file mode 100644 index 0000000000000..d3b4b5b70365a --- /dev/null +++ b/x-pack/plugin/esql/qa/testFixtures/src/main/resources/employees_incompatible.csv @@ -0,0 +1,101 @@ +birth_date:date ,emp_no:long,first_name:text,gender:text,hire_date:date,languages:byte,languages.long:long,languages.short:short,languages.byte:byte,last_name:text,salary:long,height:float,height.float:float,height.scaled_float:scaled_float,height.half_float:half_float,still_hired:keyword,avg_worked_seconds:unsigned_long,job_positions:text,is_rehired:keyword,salary_change:float,salary_change.int:integer,salary_change.long:long,salary_change.keyword:keyword +1953-09-02T00:00:00Z,10001,Georgi ,M,1986-06-26T00:00:00Z,2,2,2,2,Facello ,57305,2.03,2.03,2.03,2.03,true ,268728049,[Senior Python Developer,Accountant],[false,true],[1.19],[1],[1],[1.19] +1964-06-02T00:00:00Z,10002,Bezalel ,F,1985-11-21T00:00:00Z,5,5,5,5,Simmel ,56371,2.08,2.08,2.08,2.08,true ,328922887,[Senior Team Lead],[false,false],[-7.23,11.17],[-7,11],[-7,11],[-7.23,11.17] +1959-12-03T00:00:00Z,10003,Parto ,M,1986-08-28T00:00:00Z,4,4,4,4,Bamford ,61805,1.83,1.83,1.83,1.83,false,200296405,[],[],[14.68,12.82],[14,12],[14,12],[14.68,12.82] +1954-05-01T00:00:00Z,10004,Chirstian ,M,1986-12-01T00:00:00Z,5,5,5,5,Koblick ,36174,1.78,1.78,1.78,1.78,true ,311267831,[Reporting Analyst,Tech Lead,Head Human Resources,Support Engineer],[true],[3.65,-0.35,1.13,13.48],[3,0,1,13],[3,0,1,13],[3.65,-0.35,1.13,13.48] +1955-01-21T00:00:00Z,10005,Kyoichi ,M,1989-09-12T00:00:00Z,1,1,1,1,Maliniak ,63528,2.05,2.05,2.05,2.05,true ,244294991,[],[false,false,false,true],[-2.14,13.07],[-2,13],[-2,13],[-2.14,13.07] +1953-04-20T00:00:00Z,10006,Anneke ,F,1989-06-02T00:00:00Z,3,3,3,3,Preusig ,60335,1.56,1.56,1.56,1.56,false,372957040,[Tech Lead,Principal Support Engineer,Senior Team Lead],[],[-3.90],[-3],[-3],[-3.90] +1957-05-23T00:00:00Z,10007,Tzvetan ,F,1989-02-10T00:00:00Z,4,4,4,4,Zielinski ,74572,1.70,1.70,1.70,1.70,true ,393084805,[],[true,false,true,false],[-7.06,1.99,0.57],[-7,1,0],[-7,1,0],[-7.06,1.99,0.57] +1958-02-19T00:00:00Z,10008,Saniya ,M,1994-09-15T00:00:00Z,2,2,2,2,Kalloufi ,43906,2.10,2.10,2.10,2.10,true ,283074758,[Senior Python Developer,Junior Developer,Purchase Manager,Internship],[true,false],[12.68,3.54,0.75,-2.92],[12,3,0,-2],[12,3,0,-2],[12.68,3.54,0.75,-2.92] +1952-04-19T00:00:00Z,10009,Sumant ,F,1985-02-18T00:00:00Z,1,1,1,1,Peac ,66174,1.85,1.85,1.85,1.85,false,236805489,[Senior Python Developer,Internship],[],[],[],[],[] +1963-06-01T00:00:00Z,10010,Duangkaew , ,1989-08-24T00:00:00Z,4,4,4,4,Piveteau ,45797,1.70,1.70,1.70,1.70,false,315236372,[Architect,Reporting Analyst,Tech Lead,Purchase Manager],[true,true,false,false],[5.05,-6.77,4.69,12.15],[5,-6,4,12],[5,-6,4,12],[5.05,-6.77,4.69,12.15] +1953-11-07T00:00:00Z,10011,Mary , ,1990-01-22T00:00:00Z,5,5,5,5,Sluis ,31120,1.50,1.50,1.50,1.50,true ,239615525,[Architect,Reporting Analyst,Tech Lead,Senior Team Lead],[true,true],[10.35,-7.82,8.73,3.48],[10,-7,8,3],[10,-7,8,3],[10.35,-7.82,8.73,3.48] +1960-10-04T00:00:00Z,10012,Patricio , ,1992-12-18T00:00:00Z,5,5,5,5,Bridgland ,48942,1.97,1.97,1.97,1.97,false,365510850,[Head Human Resources,Accountant],[false,true,true,false],[0.04],[0],[0],[0.04] +1963-06-07T00:00:00Z,10013,Eberhardt , ,1985-10-20T00:00:00Z,1,1,1,1,Terkki ,48735,1.94,1.94,1.94,1.94,true ,253864340,[Reporting Analyst],[true,true],[],[],[],[] +1956-02-12T00:00:00Z,10014,Berni , ,1987-03-11T00:00:00Z,5,5,5,5,Genin ,37137,1.99,1.99,1.99,1.99,false,225049139,[Reporting Analyst,Data Scientist,Head Human Resources],[],[-1.89,9.07],[-1,9],[-1,9],[-1.89,9.07] +1959-08-19T00:00:00Z,10015,Guoxiang , ,1987-07-02T00:00:00Z,5,5,5,5,Nooteboom ,25324,1.66,1.66,1.66,1.66,true ,390266432,[Principal Support Engineer,Junior Developer,Head Human Resources,Support Engineer],[true,false,false,false],[14.25,12.40],[14,12],[14,12],[14.25,12.40] +1961-05-02T00:00:00Z,10016,Kazuhito , ,1995-01-27T00:00:00Z,2,2,2,2,Cappelletti ,61358,1.54,1.54,1.54,1.54,false,253029411,[Reporting Analyst,Python Developer,Accountant,Purchase Manager],[false,false],[-5.18,7.69],[-5,7],[-5,7],[-5.18,7.69] +1958-07-06T00:00:00Z,10017,Cristinel , ,1993-08-03T00:00:00Z,2,2,2,2,Bouloucos ,58715,1.74,1.74,1.74,1.74,false,236703986,[Data Scientist,Head Human Resources,Purchase Manager],[true,false,true,true],[-6.33],[-6],[-6],[-6.33] +1954-06-19T00:00:00Z,10018,Kazuhide , ,1987-04-03T00:00:00Z,2,2,2,2,Peha ,56760,1.97,1.97,1.97,1.97,false,309604079,[Junior Developer],[false,false,true,true],[-1.64,11.51,-5.32],[-1,11,-5],[-1,11,-5],[-1.64,11.51,-5.32] +1953-01-23T00:00:00Z,10019,Lillian , ,1999-04-30T00:00:00Z,1,1,1,1,Haddadi ,73717,2.06,2.06,2.06,2.06,false,342855721,[Purchase Manager],[false,false],[-6.84,8.42,-7.26],[-6,8,-7],[-6,8,-7],[-6.84,8.42,-7.26] +1952-12-24T00:00:00Z,10020,Mayuko ,M,1991-01-26T00:00:00Z, , , , ,Warwick ,40031,1.41,1.41,1.41,1.41,false,373309605,[Tech Lead],[true,true,false],[-5.81],[-5],[-5],[-5.81] +1960-02-20T00:00:00Z,10021,Ramzi ,M,1988-02-10T00:00:00Z, , , , ,Erde ,60408,1.47,1.47,1.47,1.47,false,287654610,[Support Engineer],[true],[],[],[],[] +1952-07-08T00:00:00Z,10022,Shahaf ,M,1995-08-22T00:00:00Z, , , , ,Famili ,48233,1.82,1.82,1.82,1.82,false,233521306,[Reporting Analyst,Data Scientist,Python Developer,Internship],[true,false],[12.09,2.85],[12,2],[12,2],[12.09,2.85] +1953-09-29T00:00:00Z,10023,Bojan ,F,1989-12-17T00:00:00Z, , , , ,Montemayor ,47896,1.75,1.75,1.75,1.75,true ,330870342,[Accountant,Support Engineer,Purchase Manager],[true,true,false],[14.63,0.80],[14,0],[14,0],[14.63,0.80] +1958-09-05T00:00:00Z,10024,Suzette ,F,1997-05-19T00:00:00Z, , , , ,Pettey ,64675,2.08,2.08,2.08,2.08,true ,367717671,[Junior Developer],[true,true,true,true],[],[],[],[] +1958-10-31T00:00:00Z,10025,Prasadram ,M,1987-08-17T00:00:00Z, , , , ,Heyers ,47411,1.87,1.87,1.87,1.87,false,371270797,[Accountant],[true,false],[-4.33,-2.90,12.06,-3.46],[-4,-2,12,-3],[-4,-2,12,-3],[-4.33,-2.90,12.06,-3.46] +1953-04-03T00:00:00Z,10026,Yongqiao ,M,1995-03-20T00:00:00Z, , , , ,Berztiss ,28336,2.10,2.10,2.10,2.10,true ,359208133,[Reporting Analyst],[false,true],[-7.37,10.62,11.20],[-7,10,11],[-7,10,11],[-7.37,10.62,11.20] +1962-07-10T00:00:00Z,10027,Divier ,F,1989-07-07T00:00:00Z, , , , ,Reistad ,73851,1.53,1.53,1.53,1.53,false,374037782,[Senior Python Developer],[false],[],[],[],[] +1963-11-26T00:00:00Z,10028,Domenick ,M,1991-10-22T00:00:00Z, , , , ,Tempesti ,39356,2.07,2.07,2.07,2.07,true ,226435054,[Tech Lead,Python Developer,Accountant,Internship],[true,false,false,true],[],[],[],[] +1956-12-13T00:00:00Z,10029,Otmar ,M,1985-11-20T00:00:00Z, , , , ,Herbst ,74999,1.99,1.99,1.99,1.99,false,257694181,[Senior Python Developer,Data Scientist,Principal Support Engineer],[true],[-0.32,-1.90,-8.19],[0,-1,-8],[0,-1,-8],[-0.32,-1.90,-8.19] +1958-07-14T00:00:00Z,10030, ,M,1994-02-17T00:00:00Z,3,3,3,3,Demeyer ,67492,1.92,1.92,1.92,1.92,false,394597613,[Tech Lead,Data Scientist,Senior Team Lead],[true,false,false],[-0.40],[0],[0],[-0.40] +1959-01-27T00:00:00Z,10031, ,M,1991-09-01T00:00:00Z,4,4,4,4,Joslin ,37716,1.68,1.68,1.68,1.68,false,348545109,[Architect,Senior Python Developer,Purchase Manager,Senior Team Lead],[false],[],[],[],[] +1960-08-09T00:00:00Z,10032, ,F,1990-06-20T00:00:00Z,3,3,3,3,Reistad ,62233,2.10,2.10,2.10,2.10,false,277622619,[Architect,Senior Python Developer,Junior Developer,Purchase Manager],[false,false],[9.32,-4.92],[9,-4],[9,-4],[9.32,-4.92] +1956-11-14T00:00:00Z,10033, ,M,1987-03-18T00:00:00Z,1,1,1,1,Merlo ,70011,1.63,1.63,1.63,1.63,false,208374744,[],[true],[],[],[],[] +1962-12-29T00:00:00Z,10034, ,M,1988-09-21T00:00:00Z,1,1,1,1,Swan ,39878,1.46,1.46,1.46,1.46,false,214393176,[Business Analyst,Data Scientist,Python Developer,Accountant],[false],[-8.46],[-8],[-8],[-8.46] +1953-02-08T00:00:00Z,10035, ,M,1988-09-05T00:00:00Z,5,5,5,5,Chappelet ,25945,1.81,1.81,1.81,1.81,false,203838153,[Senior Python Developer,Data Scientist],[false],[-2.54,-6.58],[-2,-6],[-2,-6],[-2.54,-6.58] +1959-08-10T00:00:00Z,10036, ,M,1992-01-03T00:00:00Z,4,4,4,4,Portugali ,60781,1.61,1.61,1.61,1.61,false,305493131,[Senior Python Developer],[true,false,false],[],[],[],[] +1963-07-22T00:00:00Z,10037, ,M,1990-12-05T00:00:00Z,2,2,2,2,Makrucki ,37691,2.00,2.00,2.00,2.00,true ,359217000,[Senior Python Developer,Tech Lead,Accountant],[false],[-7.08],[-7],[-7],[-7.08] +1960-07-20T00:00:00Z,10038, ,M,1989-09-20T00:00:00Z,4,4,4,4,Lortz ,35222,1.53,1.53,1.53,1.53,true ,314036411,[Senior Python Developer,Python Developer,Support Engineer],[],[],[],[],[] +1959-10-01T00:00:00Z,10039, ,M,1988-01-19T00:00:00Z,2,2,2,2,Brender ,36051,1.55,1.55,1.55,1.55,false,243221262,[Business Analyst,Python Developer,Principal Support Engineer],[true,true],[-6.90],[-6],[-6],[-6.90] + ,10040,Weiyi ,F,1993-02-14T00:00:00Z,4,4,4,4,Meriste ,37112,1.90,1.90,1.90,1.90,false,244478622,[Principal Support Engineer],[true,false,true,true],[6.97,14.74,-8.94,1.92],[6,14,-8,1],[6,14,-8,1],[6.97,14.74,-8.94,1.92] + ,10041,Uri ,F,1989-11-12T00:00:00Z,1,1,1,1,Lenart ,56415,1.75,1.75,1.75,1.75,false,287789442,[Data Scientist,Head Human Resources,Internship,Senior Team Lead],[],[9.21,0.05,7.29,-2.94],[9,0,7,-2],[9,0,7,-2],[9.21,0.05,7.29,-2.94] + ,10042,Magy ,F,1993-03-21T00:00:00Z,3,3,3,3,Stamatiou ,30404,1.44,1.44,1.44,1.44,true ,246355863,[Architect,Business Analyst,Junior Developer,Internship],[],[-9.28,9.42],[-9,9],[-9,9],[-9.28,9.42] + ,10043,Yishay ,M,1990-10-20T00:00:00Z,1,1,1,1,Tzvieli ,34341,1.52,1.52,1.52,1.52,true ,287222180,[Data Scientist,Python Developer,Support Engineer],[false,true,true],[-5.17,4.62,7.42],[-5,4,7],[-5,4,7],[-5.17,4.62,7.42] + ,10044,Mingsen ,F,1994-05-21T00:00:00Z,1,1,1,1,Casley ,39728,2.06,2.06,2.06,2.06,false,387408356,[Tech Lead,Principal Support Engineer,Accountant,Support Engineer],[true,true],[8.09],[8],[8],[8.09] + ,10045,Moss ,M,1989-09-02T00:00:00Z,3,3,3,3,Shanbhogue ,74970,1.70,1.70,1.70,1.70,false,371418933,[Principal Support Engineer,Junior Developer,Accountant,Purchase Manager],[true,false],[],[],[],[] + ,10046,Lucien ,M,1992-06-20T00:00:00Z,4,4,4,4,Rosenbaum ,50064,1.52,1.52,1.52,1.52,true ,302353405,[Principal Support Engineer,Junior Developer,Head Human Resources,Internship],[true,true,false,true],[2.39],[2],[2],[2.39] + ,10047,Zvonko ,M,1989-03-31T00:00:00Z,4,4,4,4,Nyanchama ,42716,1.52,1.52,1.52,1.52,true ,306369346,[Architect,Data Scientist,Principal Support Engineer,Senior Team Lead],[true],[-6.36,12.12],[-6,12],[-6,12],[-6.36,12.12] + ,10048,Florian ,M,1985-02-24T00:00:00Z,3,3,3,3,Syrotiuk ,26436,2.00,2.00,2.00,2.00,false,248451647,[Internship],[true,true],[],[],[],[] + ,10049,Basil ,F,1992-05-04T00:00:00Z,5,5,5,5,Tramer ,37853,1.52,1.52,1.52,1.52,true ,320725709,[Senior Python Developer,Business Analyst],[],[-1.05],[-1],[-1],[-1.05] +1958-05-21T00:00:00Z,10050,Yinghua ,M,1990-12-25T00:00:00Z,2,2,2,2,Dredge ,43026,1.96,1.96,1.96,1.96,true ,242731798,[Reporting Analyst,Junior Developer,Accountant,Support Engineer],[true],[8.70,10.94],[8,10],[8,10],[8.70,10.94] +1953-07-28T00:00:00Z,10051,Hidefumi ,M,1992-10-15T00:00:00Z,3,3,3,3,Caine ,58121,1.89,1.89,1.89,1.89,true ,374753122,[Business Analyst,Accountant,Purchase Manager],[],[],[],[],[] +1961-02-26T00:00:00Z,10052,Heping ,M,1988-05-21T00:00:00Z,1,1,1,1,Nitsch ,55360,1.79,1.79,1.79,1.79,true ,299654717,[],[true,true,false],[-0.55,-1.89,-4.22,-6.03],[0,-1,-4,-6],[0,-1,-4,-6],[-0.55,-1.89,-4.22,-6.03] +1954-09-13T00:00:00Z,10053,Sanjiv ,F,1986-02-04T00:00:00Z,3,3,3,3,Zschoche ,54462,1.58,1.58,1.58,1.58,false,368103911,[Support Engineer],[true,false,true,false],[-7.67,-3.25],[-7,-3],[-7,-3],[-7.67,-3.25] +1957-04-04T00:00:00Z,10054,Mayumi ,M,1995-03-13T00:00:00Z,4,4,4,4,Schueller ,65367,1.82,1.82,1.82,1.82,false,297441693,[Principal Support Engineer],[false,false],[],[],[],[] +1956-06-06T00:00:00Z,10055,Georgy ,M,1992-04-27T00:00:00Z,5,5,5,5,Dredge ,49281,2.04,2.04,2.04,2.04,false,283157844,[Senior Python Developer,Head Human Resources,Internship,Support Engineer],[false,false,true],[7.34,12.99,3.17],[7,12,3],[7,12,3],[7.34,12.99,3.17] +1961-09-01T00:00:00Z,10056,Brendon ,F,1990-02-01T00:00:00Z,2,2,2,2,Bernini ,33370,1.57,1.57,1.57,1.57,true ,349086555,[Senior Team Lead],[true,false,false],[10.99,-5.17],[10,-5],[10,-5],[10.99,-5.17] +1954-05-30T00:00:00Z,10057,Ebbe ,F,1992-01-15T00:00:00Z,4,4,4,4,Callaway ,27215,1.59,1.59,1.59,1.59,true ,324356269,[Python Developer,Head Human Resources],[],[-6.73,-2.43,-5.27,1.03],[-6,-2,-5,1],[-6,-2,-5,1],[-6.73,-2.43,-5.27,1.03] +1954-10-01T00:00:00Z,10058,Berhard ,M,1987-04-13T00:00:00Z,3,3,3,3,McFarlin ,38376,1.83,1.83,1.83,1.83,false,268378108,[Principal Support Engineer],[],[-4.89],[-4],[-4],[-4.89] +1953-09-19T00:00:00Z,10059,Alejandro ,F,1991-06-26T00:00:00Z,2,2,2,2,McAlpine ,44307,1.48,1.48,1.48,1.48,false,237368465,[Architect,Principal Support Engineer,Purchase Manager,Senior Team Lead],[false],[5.53,13.38,-4.69,6.27],[5,13,-4,6],[5,13,-4,6],[5.53,13.38,-4.69,6.27] +1961-10-15T00:00:00Z,10060,Breannda ,M,1987-11-02T00:00:00Z,2,2,2,2,Billingsley ,29175,1.42,1.42,1.42,1.42,true ,341158890,[Business Analyst,Data Scientist,Senior Team Lead],[false,false,true,false],[-1.76,-0.85],[-1,0],[-1,0],[-1.76,-0.85] +1962-10-19T00:00:00Z,10061,Tse ,M,1985-09-17T00:00:00Z,1,1,1,1,Herber ,49095,1.45,1.45,1.45,1.45,false,327550310,[Purchase Manager,Senior Team Lead],[false,true],[14.39,-2.58,-0.95],[14,-2,0],[14,-2,0],[14.39,-2.58,-0.95] +1961-11-02T00:00:00Z,10062,Anoosh ,M,1991-08-30T00:00:00Z,3,3,3,3,Peyn ,65030,1.70,1.70,1.70,1.70,false,203989706,[Python Developer,Senior Team Lead],[false,true,true],[-1.17],[-1],[-1],[-1.171] +1952-08-06T00:00:00Z,10063,Gino ,F,1989-04-08T00:00:00Z,3,3,3,3,Leonhardt ,52121,1.78,1.78,1.78,1.78,true ,214068302,[],[true],[],[],[],[] +1959-04-07T00:00:00Z,10064,Udi ,M,1985-11-20T00:00:00Z,5,5,5,5,Jansch ,33956,1.93,1.93,1.93,1.93,false,307364077,[Purchase Manager],[false,false,true,false],[-8.66,-2.52],[-8,-2],[-8,-2],[-8.66,-2.52] +1963-04-14T00:00:00Z,10065,Satosi ,M,1988-05-18T00:00:00Z,2,2,2,2,Awdeh ,50249,1.59,1.59,1.59,1.59,false,372660279,[Business Analyst,Data Scientist,Principal Support Engineer],[false,true],[-1.47,14.44,-9.81],[-1,14,-9],[-1,14,-9],[-1.47,14.44,-9.81] +1952-11-13T00:00:00Z,10066,Kwee ,M,1986-02-26T00:00:00Z,5,5,5,5,Schusler ,31897,2.10,2.10,2.10,2.10,true ,360906451,[Senior Python Developer,Data Scientist,Accountant,Internship],[true,true,true],[5.94],[5],[5],[5.94] +1953-01-07T00:00:00Z,10067,Claudi ,M,1987-03-04T00:00:00Z,2,2,2,2,Stavenow ,52044,1.77,1.77,1.77,1.77,true ,347664141,[Tech Lead,Principal Support Engineer],[false,false],[8.72,4.44],[8,4],[8,4],[8.72,4.44] +1962-11-26T00:00:00Z,10068,Charlene ,M,1987-08-07T00:00:00Z,3,3,3,3,Brattka ,28941,1.58,1.58,1.58,1.58,true ,233999584,[Architect],[true],[3.43,-5.61,-5.29],[3,-5,-5],[3,-5,-5],[3.43,-5.61,-5.29] +1960-09-06T00:00:00Z,10069,Margareta ,F,1989-11-05T00:00:00Z,5,5,5,5,Bierman ,41933,1.77,1.77,1.77,1.77,true ,366512352,[Business Analyst,Junior Developer,Purchase Manager,Support Engineer],[false],[-3.34,-6.33,6.23,-0.31],[-3,-6,6,0],[-3,-6,6,0],[-3.34,-6.33,6.23,-0.31] +1955-08-20T00:00:00Z,10070,Reuven ,M,1985-10-14T00:00:00Z,3,3,3,3,Garigliano ,54329,1.77,1.77,1.77,1.77,true ,347188604,[],[true,true,true],[-5.90],[-5],[-5],[-5.90] +1958-01-21T00:00:00Z,10071,Hisao ,M,1987-10-01T00:00:00Z,2,2,2,2,Lipner ,40612,2.07,2.07,2.07,2.07,false,306671693,[Business Analyst,Reporting Analyst,Senior Team Lead],[false,false,false],[-2.69],[-2],[-2],[-2.69] +1952-05-15T00:00:00Z,10072,Hironoby ,F,1988-07-21T00:00:00Z,5,5,5,5,Sidou ,54518,1.82,1.82,1.82,1.82,true ,209506065,[Architect,Tech Lead,Python Developer,Senior Team Lead],[false,false,true,false],[11.21,-2.30,2.22,-5.44],[11,-2,2,-5],[11,-2,2,-5],[11.21,-2.30,2.22,-5.44] +1954-02-23T00:00:00Z,10073,Shir ,M,1991-12-01T00:00:00Z,4,4,4,4,McClurg ,32568,1.66,1.66,1.66,1.66,false,314930367,[Principal Support Engineer,Python Developer,Junior Developer,Purchase Manager],[true,false],[-5.67],[-5],[-5],[-5.67] +1955-08-28T00:00:00Z,10074,Mokhtar ,F,1990-08-13T00:00:00Z,5,5,5,5,Bernatsky ,38992,1.64,1.64,1.64,1.64,true ,382397583,[Senior Python Developer,Python Developer],[true,false,false,true],[6.70,1.98,-5.64,2.96],[6,1,-5,2],[6,1,-5,2],[6.70,1.98,-5.64,2.96] +1960-03-09T00:00:00Z,10075,Gao ,F,1987-03-19T00:00:00Z,5,5,5,5,Dolinsky ,51956,1.94,1.94,1.94,1.94,false,370238919,[Purchase Manager],[true],[9.63,-3.29,8.42],[9,-3,8],[9,-3,8],[9.63,-3.29,8.42] +1952-06-13T00:00:00Z,10076,Erez ,F,1985-07-09T00:00:00Z,3,3,3,3,Ritzmann ,62405,1.83,1.83,1.83,1.83,false,376240317,[Architect,Senior Python Developer],[false],[-6.90,-1.30,8.75],[-6,-1,8],[-6,-1,8],[-6.90,-1.30,8.75] +1964-04-18T00:00:00Z,10077,Mona ,M,1990-03-02T00:00:00Z,5,5,5,5,Azuma ,46595,1.68,1.68,1.68,1.68,false,351960222,[Internship],[],[-0.01],[0],[0],[-0.01] +1959-12-25T00:00:00Z,10078,Danel ,F,1987-05-26T00:00:00Z,2,2,2,2,Mondadori ,69904,1.81,1.81,1.81,1.81,true ,377116038,[Architect,Principal Support Engineer,Internship],[true],[-7.88,9.98,12.52],[-7,9,12],[-7,9,12],[-7.88,9.98,12.52] +1961-10-05T00:00:00Z,10079,Kshitij ,F,1986-03-27T00:00:00Z,2,2,2,2,Gils ,32263,1.59,1.59,1.59,1.59,false,320953330,[],[false],[7.58],[7],[7],[7.58] +1957-12-03T00:00:00Z,10080,Premal ,M,1985-11-19T00:00:00Z,5,5,5,5,Baek ,52833,1.80,1.80,1.80,1.80,false,239266137,[Senior Python Developer],[],[-4.35,7.36,5.56],[-4,7,5],[-4,7,5],[-4.35,7.36,5.56] +1960-12-17T00:00:00Z,10081,Zhongwei ,M,1986-10-30T00:00:00Z,2,2,2,2,Rosen ,50128,1.44,1.44,1.44,1.44,true ,321375511,[Accountant,Internship],[false,false,false],[],[],[],[] +1963-09-09T00:00:00Z,10082,Parviz ,M,1990-01-03T00:00:00Z,4,4,4,4,Lortz ,49818,1.61,1.61,1.61,1.61,false,232522994,[Principal Support Engineer],[false],[1.19,-3.39],[1,-3],[1,-3],[1.19,-3.39] +1959-07-23T00:00:00Z,10083,Vishv ,M,1987-03-31T00:00:00Z,1,1,1,1,Zockler ,39110,1.42,1.42,1.42,1.42,false,331236443,[Head Human Resources],[],[],[],[],[] +1960-05-25T00:00:00Z,10084,Tuval ,M,1995-12-15T00:00:00Z,1,1,1,1,Kalloufi ,28035,1.51,1.51,1.51,1.51,true ,359067056,[Principal Support Engineer],[false],[],[],[],[] +1962-11-07T00:00:00Z,10085,Kenroku ,M,1994-04-09T00:00:00Z,5,5,5,5,Malabarba ,35742,2.01,2.01,2.01,2.01,true ,353404008,[Senior Python Developer,Business Analyst,Tech Lead,Accountant],[],[11.67,6.75,8.40],[11,6,8],[11,6,8],[11.67,6.75,8.40] +1962-11-19T00:00:00Z,10086,Somnath ,M,1990-02-16T00:00:00Z,1,1,1,1,Foote ,68547,1.74,1.74,1.74,1.74,true ,328580163,[Senior Python Developer],[false,true],[13.61],[13],[13],[13.61] +1959-07-23T00:00:00Z,10087,Xinglin ,F,1986-09-08T00:00:00Z,5,5,5,5,Eugenio ,32272,1.74,1.74,1.74,1.74,true ,305782871,[Junior Developer,Internship],[false,false],[-2.05],[-2],[-2],[-2.05] +1954-02-25T00:00:00Z,10088,Jungsoon ,F,1988-09-02T00:00:00Z,5,5,5,5,Syrzycki ,39638,1.91,1.91,1.91,1.91,false,330714423,[Reporting Analyst,Business Analyst,Tech Lead],[true],[],[],[],[] +1963-03-21T00:00:00Z,10089,Sudharsan ,F,1986-08-12T00:00:00Z,4,4,4,4,Flasterstein,43602,1.57,1.57,1.57,1.57,true ,232951673,[Junior Developer,Accountant],[true,false,false,false],[],[],[],[] +1961-05-30T00:00:00Z,10090,Kendra ,M,1986-03-14T00:00:00Z,2,2,2,2,Hofting ,44956,2.03,2.03,2.03,2.03,true ,212460105,[],[false,false,false,true],[7.15,-1.85,3.60],[7,-1,3],[7,-1,3],[7.15,-1.85,3.60] +1955-10-04T00:00:00Z,10091,Amabile ,M,1992-11-18T00:00:00Z,3,3,3,3,Gomatam ,38645,2.09,2.09,2.09,2.09,true ,242582807,[Reporting Analyst,Python Developer],[true,true,false,false],[-9.23,7.50,5.85,5.19],[-9,7,5,5],[-9,7,5,5],[-9.23,7.50,5.85,5.19] +1964-10-18T00:00:00Z,10092,Valdiodio ,F,1989-09-22T00:00:00Z,1,1,1,1,Niizuma ,25976,1.75,1.75,1.75,1.75,false,313407352,[Junior Developer,Accountant],[false,false,true,true],[8.78,0.39,-6.77,8.30],[8,0,-6,8],[8,0,-6,8],[8.78,0.39,-6.77,8.30] +1964-06-11T00:00:00Z,10093,Sailaja ,M,1996-11-05T00:00:00Z,3,3,3,3,Desikan ,45656,1.69,1.69,1.69,1.69,false,315904921,[Reporting Analyst,Tech Lead,Principal Support Engineer,Purchase Manager],[],[-0.88],[0],[0],[-0.88] +1957-05-25T00:00:00Z,10094,Arumugam ,F,1987-04-18T00:00:00Z,5,5,5,5,Ossenbruggen,66817,2.10,2.10,2.10,2.10,false,332920135,[Senior Python Developer,Principal Support Engineer,Accountant],[true,false,true],[2.22,7.92],[2,7],[2,7],[2.22,7.92] +1965-01-03T00:00:00Z,10095,Hilari ,M,1986-07-15T00:00:00Z,4,4,4,4,Morton ,37702,1.55,1.55,1.55,1.55,false,321850475,[],[true,true,false,false],[-3.93,-6.66],[-3,-6],[-3,-6],[-3.93,-6.66] +1954-09-16T00:00:00Z,10096,Jayson ,M,1990-01-14T00:00:00Z,4,4,4,4,Mandell ,43889,1.94,1.94,1.94,1.94,false,204381503,[Architect,Reporting Analyst],[false,false,false],[],[],[],[] +1952-02-27T00:00:00Z,10097,Remzi ,M,1990-09-15T00:00:00Z,3,3,3,3,Waschkowski ,71165,1.53,1.53,1.53,1.53,false,206258084,[Reporting Analyst,Tech Lead],[true,false],[-1.12],[-1],[-1],[-1.12] +1961-09-23T00:00:00Z,10098,Sreekrishna,F,1985-05-13T00:00:00Z,4,4,4,4,Servieres ,44817,2.00,2.00,2.00,2.00,false,272392146,[Architect,Internship,Senior Team Lead],[false],[-2.83,8.31,4.38],[-2,8,4],[-2,8,4],[-2.83,8.31,4.38] +1956-05-25T00:00:00Z,10099,Valter ,F,1988-10-18T00:00:00Z,2,2,2,2,Sullins ,73578,1.81,1.81,1.81,1.81,true ,377713748,[],[true,true],[10.71,14.26,-8.78,-3.98],[10,14,-8,-3],[10,14,-8,-3],[10.71,14.26,-8.78,-3.98] +1953-04-21T00:00:00Z,10100,Hironobu ,F,1987-09-21T00:00:00Z,4,4,4,4,Haraldson ,68431,1.77,1.77,1.77,1.77,true ,223910853,[Purchase Manager],[false,true,true,false],[13.97,-7.49],[13,-7],[13,-7],[13.97,-7.49] diff --git a/x-pack/plugin/esql/qa/testFixtures/src/main/resources/mapping-default-incompatible.json b/x-pack/plugin/esql/qa/testFixtures/src/main/resources/mapping-default-incompatible.json new file mode 100644 index 0000000000000..f22db47734eb8 --- /dev/null +++ b/x-pack/plugin/esql/qa/testFixtures/src/main/resources/mapping-default-incompatible.json @@ -0,0 +1,80 @@ +{ + "properties" : { + "emp_no" : { + "type" : "long" + }, + "first_name" : { + "type" : "text" + }, + "last_name" : { + "type" : "text" + }, + "gender" : { + "type" : "text" + }, + "birth_date": { + "type" : "date" + }, + "hire_date": { + "type" : "date" + }, + "salary" : { + "type" : "long" + }, + "languages" : { + "type" : "byte", + "fields": { + "long": { + "type": "long" + }, + "short": { + "type": "short" + }, + "int": { + "type": "integer" + } + } + }, + "height": { + "type" : "float", + "fields" : { + "double" : { + "type" : "double" + }, + "scaled_float": { + "type": "scaled_float", + "scaling_factor": 100 + }, + "half_float": { + "type": "half_float" + } + } + }, + "still_hired": { + "type" : "keyword" + }, + "avg_worked_seconds" : { + "type" : "unsigned_long" + }, + "job_positions" : { + "type" : "text" + }, + "is_rehired" : { + "type" : "text" + }, + "salary_change": { + "type": "float", + "fields": { + "int": { + "type": "integer" + }, + "long": { + "type": "long" + }, + "keyword": { + "type" : "keyword" + } + } + } + } +} diff --git a/x-pack/plugin/esql/qa/testFixtures/src/main/resources/match-function.csv-spec b/x-pack/plugin/esql/qa/testFixtures/src/main/resources/match-function.csv-spec index d5bec65e5da3a..f35a4f1041ea2 100644 --- a/x-pack/plugin/esql/qa/testFixtures/src/main/resources/match-function.csv-spec +++ b/x-pack/plugin/esql/qa/testFixtures/src/main/resources/match-function.csv-spec @@ -449,3 +449,19 @@ emp_no:integer | height:double 10048 | 2.0 10098 | 2.0 ; + +testMatchMultipleFieldTypes +required_capability: match_function +required_capability: match_additional_types + +from employees,employees_incompatible +| where match(emp_no::int, 10005) +| eval emp_as_int = emp_no::int +| eval name_as_kw = first_name::keyword +| keep emp_as_int, name_as_kw +; + +emp_as_int:integer | name_as_kw:keyword +10005 | Kyoichi +10005 | Kyoichi +; diff --git a/x-pack/plugin/esql/qa/testFixtures/src/main/resources/match-operator.csv-spec b/x-pack/plugin/esql/qa/testFixtures/src/main/resources/match-operator.csv-spec index 8f4a09247948c..ea9245c00b768 100644 --- a/x-pack/plugin/esql/qa/testFixtures/src/main/resources/match-operator.csv-spec +++ b/x-pack/plugin/esql/qa/testFixtures/src/main/resources/match-operator.csv-spec @@ -469,3 +469,20 @@ emp_no:integer | height:double 10048 | 2.0 10098 | 2.0 ; + + +testMatchMultipleFieldTypes +required_capability: match_function +required_capability: match_additional_types + +from employees,employees_incompatible +| where emp_no::int : 10005 +| eval emp_as_int = emp_no::int +| eval name_as_kw = first_name::keyword +| keep emp_as_int, name_as_kw +; + +emp_as_int:integer | name_as_kw:keyword +10005 | Kyoichi +10005 | Kyoichi +; diff --git a/x-pack/plugin/esql/src/main/antlr/EsqlBaseParser.g4 b/x-pack/plugin/esql/src/main/antlr/EsqlBaseParser.g4 index 299df50f14b7f..03fc2f7850203 100644 --- a/x-pack/plugin/esql/src/main/antlr/EsqlBaseParser.g4 +++ b/x-pack/plugin/esql/src/main/antlr/EsqlBaseParser.g4 @@ -78,7 +78,7 @@ regexBooleanExpression ; matchBooleanExpression - : fieldExp=qualifiedName COLON matchQuery=constant (CAST_OP dataType)? + : fieldExp=qualifiedName (CAST_OP fieldType=dataType)? COLON matchQuery=constant (CAST_OP queryType=dataType)? ; valueExpression diff --git a/x-pack/plugin/esql/src/main/java/org/elasticsearch/xpack/esql/parser/EsqlBaseParser.interp b/x-pack/plugin/esql/src/main/java/org/elasticsearch/xpack/esql/parser/EsqlBaseParser.interp index 26cb677590e8c..15e22edb830be 100644 --- a/x-pack/plugin/esql/src/main/java/org/elasticsearch/xpack/esql/parser/EsqlBaseParser.interp +++ b/x-pack/plugin/esql/src/main/java/org/elasticsearch/xpack/esql/parser/EsqlBaseParser.interp @@ -330,4 +330,4 @@ joinPredicate atn: -[4, 1, 128, 638, 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, 1, 0, 1, 0, 1, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 5, 1, 142, 8, 1, 10, 1, 12, 1, 145, 9, 1, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 3, 2, 153, 8, 2, 1, 3, 1, 3, 1, 3, 1, 3, 1, 3, 1, 3, 1, 3, 1, 3, 1, 3, 1, 3, 1, 3, 1, 3, 1, 3, 1, 3, 1, 3, 1, 3, 1, 3, 1, 3, 3, 3, 173, 8, 3, 1, 4, 1, 4, 1, 4, 1, 5, 1, 5, 1, 5, 1, 5, 1, 5, 1, 5, 1, 5, 3, 5, 185, 8, 5, 1, 5, 1, 5, 1, 5, 1, 5, 1, 5, 5, 5, 192, 8, 5, 10, 5, 12, 5, 195, 9, 5, 1, 5, 1, 5, 1, 5, 1, 5, 1, 5, 3, 5, 202, 8, 5, 1, 5, 1, 5, 1, 5, 3, 5, 207, 8, 5, 1, 5, 1, 5, 1, 5, 1, 5, 1, 5, 1, 5, 5, 5, 215, 8, 5, 10, 5, 12, 5, 218, 9, 5, 1, 6, 1, 6, 3, 6, 222, 8, 6, 1, 6, 1, 6, 1, 6, 1, 6, 1, 6, 3, 6, 229, 8, 6, 1, 6, 1, 6, 1, 6, 3, 6, 234, 8, 6, 1, 7, 1, 7, 1, 7, 1, 7, 1, 7, 3, 7, 241, 8, 7, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 3, 8, 248, 8, 8, 1, 9, 1, 9, 1, 9, 1, 9, 3, 9, 254, 8, 9, 1, 9, 1, 9, 1, 9, 1, 9, 1, 9, 1, 9, 5, 9, 262, 8, 9, 10, 9, 12, 9, 265, 9, 9, 1, 10, 1, 10, 1, 10, 1, 10, 1, 10, 1, 10, 1, 10, 1, 10, 3, 10, 275, 8, 10, 1, 10, 1, 10, 1, 10, 5, 10, 280, 8, 10, 10, 10, 12, 10, 283, 9, 10, 1, 11, 1, 11, 1, 11, 1, 11, 1, 11, 1, 11, 5, 11, 291, 8, 11, 10, 11, 12, 11, 294, 9, 11, 3, 11, 296, 8, 11, 1, 11, 1, 11, 1, 12, 1, 12, 1, 13, 1, 13, 1, 14, 1, 14, 1, 14, 1, 15, 1, 15, 1, 15, 5, 15, 310, 8, 15, 10, 15, 12, 15, 313, 9, 15, 1, 16, 1, 16, 1, 16, 3, 16, 318, 8, 16, 1, 16, 1, 16, 1, 17, 1, 17, 1, 17, 1, 17, 5, 17, 326, 8, 17, 10, 17, 12, 17, 329, 9, 17, 1, 17, 3, 17, 332, 8, 17, 1, 18, 1, 18, 1, 18, 3, 18, 337, 8, 18, 1, 18, 1, 18, 1, 19, 1, 19, 1, 20, 1, 20, 1, 21, 1, 21, 3, 21, 347, 8, 21, 1, 22, 1, 22, 1, 22, 1, 22, 5, 22, 353, 8, 22, 10, 22, 12, 22, 356, 9, 22, 1, 23, 1, 23, 1, 23, 1, 23, 1, 24, 1, 24, 1, 24, 1, 24, 5, 24, 366, 8, 24, 10, 24, 12, 24, 369, 9, 24, 1, 24, 3, 24, 372, 8, 24, 1, 24, 1, 24, 3, 24, 376, 8, 24, 1, 25, 1, 25, 1, 25, 1, 26, 1, 26, 3, 26, 383, 8, 26, 1, 26, 1, 26, 3, 26, 387, 8, 26, 1, 27, 1, 27, 1, 27, 5, 27, 392, 8, 27, 10, 27, 12, 27, 395, 9, 27, 1, 28, 1, 28, 1, 28, 3, 28, 400, 8, 28, 1, 29, 1, 29, 1, 29, 5, 29, 405, 8, 29, 10, 29, 12, 29, 408, 9, 29, 1, 30, 1, 30, 1, 30, 5, 30, 413, 8, 30, 10, 30, 12, 30, 416, 9, 30, 1, 31, 1, 31, 1, 31, 5, 31, 421, 8, 31, 10, 31, 12, 31, 424, 9, 31, 1, 32, 1, 32, 1, 33, 1, 33, 1, 33, 3, 33, 431, 8, 33, 1, 34, 1, 34, 1, 34, 1, 34, 1, 34, 1, 34, 1, 34, 1, 34, 1, 34, 1, 34, 1, 34, 1, 34, 1, 34, 5, 34, 446, 8, 34, 10, 34, 12, 34, 449, 9, 34, 1, 34, 1, 34, 1, 34, 1, 34, 1, 34, 1, 34, 5, 34, 457, 8, 34, 10, 34, 12, 34, 460, 9, 34, 1, 34, 1, 34, 1, 34, 1, 34, 1, 34, 1, 34, 5, 34, 468, 8, 34, 10, 34, 12, 34, 471, 9, 34, 1, 34, 1, 34, 3, 34, 475, 8, 34, 1, 35, 1, 35, 3, 35, 479, 8, 35, 1, 36, 1, 36, 1, 36, 3, 36, 484, 8, 36, 1, 37, 1, 37, 1, 37, 1, 38, 1, 38, 1, 38, 1, 38, 5, 38, 493, 8, 38, 10, 38, 12, 38, 496, 9, 38, 1, 39, 1, 39, 3, 39, 500, 8, 39, 1, 39, 1, 39, 3, 39, 504, 8, 39, 1, 40, 1, 40, 1, 40, 1, 41, 1, 41, 1, 41, 1, 42, 1, 42, 1, 42, 1, 42, 5, 42, 516, 8, 42, 10, 42, 12, 42, 519, 9, 42, 1, 43, 1, 43, 1, 43, 1, 43, 1, 44, 1, 44, 1, 44, 1, 44, 3, 44, 529, 8, 44, 1, 45, 1, 45, 1, 45, 1, 45, 1, 46, 1, 46, 1, 46, 1, 47, 1, 47, 1, 47, 5, 47, 541, 8, 47, 10, 47, 12, 47, 544, 9, 47, 1, 48, 1, 48, 1, 48, 1, 48, 1, 49, 1, 49, 1, 50, 1, 50, 3, 50, 554, 8, 50, 1, 51, 3, 51, 557, 8, 51, 1, 51, 1, 51, 1, 52, 3, 52, 562, 8, 52, 1, 52, 1, 52, 1, 53, 1, 53, 1, 54, 1, 54, 1, 55, 1, 55, 1, 55, 1, 56, 1, 56, 1, 56, 1, 56, 1, 57, 1, 57, 1, 57, 1, 58, 1, 58, 1, 58, 1, 58, 3, 58, 584, 8, 58, 1, 58, 1, 58, 1, 58, 1, 58, 5, 58, 590, 8, 58, 10, 58, 12, 58, 593, 9, 58, 3, 58, 595, 8, 58, 1, 59, 1, 59, 1, 59, 3, 59, 600, 8, 59, 1, 59, 1, 59, 1, 60, 1, 60, 1, 60, 1, 60, 1, 60, 1, 61, 1, 61, 1, 61, 1, 61, 3, 61, 613, 8, 61, 1, 62, 3, 62, 616, 8, 62, 1, 62, 1, 62, 1, 62, 1, 62, 1, 63, 1, 63, 1, 63, 3, 63, 625, 8, 63, 1, 64, 1, 64, 1, 64, 1, 64, 5, 64, 631, 8, 64, 10, 64, 12, 64, 634, 9, 64, 1, 65, 1, 65, 1, 65, 0, 4, 2, 10, 18, 20, 66, 0, 2, 4, 6, 8, 10, 12, 14, 16, 18, 20, 22, 24, 26, 28, 30, 32, 34, 36, 38, 40, 42, 44, 46, 48, 50, 52, 54, 56, 58, 60, 62, 64, 66, 68, 70, 72, 74, 76, 78, 80, 82, 84, 86, 88, 90, 92, 94, 96, 98, 100, 102, 104, 106, 108, 110, 112, 114, 116, 118, 120, 122, 124, 126, 128, 130, 0, 9, 1, 0, 64, 65, 1, 0, 66, 68, 2, 0, 30, 30, 81, 81, 1, 0, 72, 73, 2, 0, 35, 35, 40, 40, 2, 0, 43, 43, 46, 46, 2, 0, 42, 42, 56, 56, 2, 0, 57, 57, 59, 63, 1, 0, 22, 24, 664, 0, 132, 1, 0, 0, 0, 2, 135, 1, 0, 0, 0, 4, 152, 1, 0, 0, 0, 6, 172, 1, 0, 0, 0, 8, 174, 1, 0, 0, 0, 10, 206, 1, 0, 0, 0, 12, 233, 1, 0, 0, 0, 14, 235, 1, 0, 0, 0, 16, 247, 1, 0, 0, 0, 18, 253, 1, 0, 0, 0, 20, 274, 1, 0, 0, 0, 22, 284, 1, 0, 0, 0, 24, 299, 1, 0, 0, 0, 26, 301, 1, 0, 0, 0, 28, 303, 1, 0, 0, 0, 30, 306, 1, 0, 0, 0, 32, 317, 1, 0, 0, 0, 34, 321, 1, 0, 0, 0, 36, 336, 1, 0, 0, 0, 38, 340, 1, 0, 0, 0, 40, 342, 1, 0, 0, 0, 42, 346, 1, 0, 0, 0, 44, 348, 1, 0, 0, 0, 46, 357, 1, 0, 0, 0, 48, 361, 1, 0, 0, 0, 50, 377, 1, 0, 0, 0, 52, 380, 1, 0, 0, 0, 54, 388, 1, 0, 0, 0, 56, 396, 1, 0, 0, 0, 58, 401, 1, 0, 0, 0, 60, 409, 1, 0, 0, 0, 62, 417, 1, 0, 0, 0, 64, 425, 1, 0, 0, 0, 66, 430, 1, 0, 0, 0, 68, 474, 1, 0, 0, 0, 70, 478, 1, 0, 0, 0, 72, 483, 1, 0, 0, 0, 74, 485, 1, 0, 0, 0, 76, 488, 1, 0, 0, 0, 78, 497, 1, 0, 0, 0, 80, 505, 1, 0, 0, 0, 82, 508, 1, 0, 0, 0, 84, 511, 1, 0, 0, 0, 86, 520, 1, 0, 0, 0, 88, 524, 1, 0, 0, 0, 90, 530, 1, 0, 0, 0, 92, 534, 1, 0, 0, 0, 94, 537, 1, 0, 0, 0, 96, 545, 1, 0, 0, 0, 98, 549, 1, 0, 0, 0, 100, 553, 1, 0, 0, 0, 102, 556, 1, 0, 0, 0, 104, 561, 1, 0, 0, 0, 106, 565, 1, 0, 0, 0, 108, 567, 1, 0, 0, 0, 110, 569, 1, 0, 0, 0, 112, 572, 1, 0, 0, 0, 114, 576, 1, 0, 0, 0, 116, 579, 1, 0, 0, 0, 118, 599, 1, 0, 0, 0, 120, 603, 1, 0, 0, 0, 122, 608, 1, 0, 0, 0, 124, 615, 1, 0, 0, 0, 126, 621, 1, 0, 0, 0, 128, 626, 1, 0, 0, 0, 130, 635, 1, 0, 0, 0, 132, 133, 3, 2, 1, 0, 133, 134, 5, 0, 0, 1, 134, 1, 1, 0, 0, 0, 135, 136, 6, 1, -1, 0, 136, 137, 3, 4, 2, 0, 137, 143, 1, 0, 0, 0, 138, 139, 10, 1, 0, 0, 139, 140, 5, 29, 0, 0, 140, 142, 3, 6, 3, 0, 141, 138, 1, 0, 0, 0, 142, 145, 1, 0, 0, 0, 143, 141, 1, 0, 0, 0, 143, 144, 1, 0, 0, 0, 144, 3, 1, 0, 0, 0, 145, 143, 1, 0, 0, 0, 146, 153, 3, 110, 55, 0, 147, 153, 3, 34, 17, 0, 148, 153, 3, 28, 14, 0, 149, 153, 3, 114, 57, 0, 150, 151, 4, 2, 1, 0, 151, 153, 3, 48, 24, 0, 152, 146, 1, 0, 0, 0, 152, 147, 1, 0, 0, 0, 152, 148, 1, 0, 0, 0, 152, 149, 1, 0, 0, 0, 152, 150, 1, 0, 0, 0, 153, 5, 1, 0, 0, 0, 154, 173, 3, 50, 25, 0, 155, 173, 3, 8, 4, 0, 156, 173, 3, 80, 40, 0, 157, 173, 3, 74, 37, 0, 158, 173, 3, 52, 26, 0, 159, 173, 3, 76, 38, 0, 160, 173, 3, 82, 41, 0, 161, 173, 3, 84, 42, 0, 162, 173, 3, 88, 44, 0, 163, 173, 3, 90, 45, 0, 164, 173, 3, 116, 58, 0, 165, 173, 3, 92, 46, 0, 166, 167, 4, 3, 2, 0, 167, 173, 3, 122, 61, 0, 168, 169, 4, 3, 3, 0, 169, 173, 3, 120, 60, 0, 170, 171, 4, 3, 4, 0, 171, 173, 3, 124, 62, 0, 172, 154, 1, 0, 0, 0, 172, 155, 1, 0, 0, 0, 172, 156, 1, 0, 0, 0, 172, 157, 1, 0, 0, 0, 172, 158, 1, 0, 0, 0, 172, 159, 1, 0, 0, 0, 172, 160, 1, 0, 0, 0, 172, 161, 1, 0, 0, 0, 172, 162, 1, 0, 0, 0, 172, 163, 1, 0, 0, 0, 172, 164, 1, 0, 0, 0, 172, 165, 1, 0, 0, 0, 172, 166, 1, 0, 0, 0, 172, 168, 1, 0, 0, 0, 172, 170, 1, 0, 0, 0, 173, 7, 1, 0, 0, 0, 174, 175, 5, 16, 0, 0, 175, 176, 3, 10, 5, 0, 176, 9, 1, 0, 0, 0, 177, 178, 6, 5, -1, 0, 178, 179, 5, 49, 0, 0, 179, 207, 3, 10, 5, 8, 180, 207, 3, 16, 8, 0, 181, 207, 3, 12, 6, 0, 182, 184, 3, 16, 8, 0, 183, 185, 5, 49, 0, 0, 184, 183, 1, 0, 0, 0, 184, 185, 1, 0, 0, 0, 185, 186, 1, 0, 0, 0, 186, 187, 5, 44, 0, 0, 187, 188, 5, 48, 0, 0, 188, 193, 3, 16, 8, 0, 189, 190, 5, 39, 0, 0, 190, 192, 3, 16, 8, 0, 191, 189, 1, 0, 0, 0, 192, 195, 1, 0, 0, 0, 193, 191, 1, 0, 0, 0, 193, 194, 1, 0, 0, 0, 194, 196, 1, 0, 0, 0, 195, 193, 1, 0, 0, 0, 196, 197, 5, 55, 0, 0, 197, 207, 1, 0, 0, 0, 198, 199, 3, 16, 8, 0, 199, 201, 5, 45, 0, 0, 200, 202, 5, 49, 0, 0, 201, 200, 1, 0, 0, 0, 201, 202, 1, 0, 0, 0, 202, 203, 1, 0, 0, 0, 203, 204, 5, 50, 0, 0, 204, 207, 1, 0, 0, 0, 205, 207, 3, 14, 7, 0, 206, 177, 1, 0, 0, 0, 206, 180, 1, 0, 0, 0, 206, 181, 1, 0, 0, 0, 206, 182, 1, 0, 0, 0, 206, 198, 1, 0, 0, 0, 206, 205, 1, 0, 0, 0, 207, 216, 1, 0, 0, 0, 208, 209, 10, 5, 0, 0, 209, 210, 5, 34, 0, 0, 210, 215, 3, 10, 5, 6, 211, 212, 10, 4, 0, 0, 212, 213, 5, 52, 0, 0, 213, 215, 3, 10, 5, 5, 214, 208, 1, 0, 0, 0, 214, 211, 1, 0, 0, 0, 215, 218, 1, 0, 0, 0, 216, 214, 1, 0, 0, 0, 216, 217, 1, 0, 0, 0, 217, 11, 1, 0, 0, 0, 218, 216, 1, 0, 0, 0, 219, 221, 3, 16, 8, 0, 220, 222, 5, 49, 0, 0, 221, 220, 1, 0, 0, 0, 221, 222, 1, 0, 0, 0, 222, 223, 1, 0, 0, 0, 223, 224, 5, 47, 0, 0, 224, 225, 3, 106, 53, 0, 225, 234, 1, 0, 0, 0, 226, 228, 3, 16, 8, 0, 227, 229, 5, 49, 0, 0, 228, 227, 1, 0, 0, 0, 228, 229, 1, 0, 0, 0, 229, 230, 1, 0, 0, 0, 230, 231, 5, 54, 0, 0, 231, 232, 3, 106, 53, 0, 232, 234, 1, 0, 0, 0, 233, 219, 1, 0, 0, 0, 233, 226, 1, 0, 0, 0, 234, 13, 1, 0, 0, 0, 235, 236, 3, 58, 29, 0, 236, 237, 5, 38, 0, 0, 237, 240, 3, 68, 34, 0, 238, 239, 5, 37, 0, 0, 239, 241, 3, 26, 13, 0, 240, 238, 1, 0, 0, 0, 240, 241, 1, 0, 0, 0, 241, 15, 1, 0, 0, 0, 242, 248, 3, 18, 9, 0, 243, 244, 3, 18, 9, 0, 244, 245, 3, 108, 54, 0, 245, 246, 3, 18, 9, 0, 246, 248, 1, 0, 0, 0, 247, 242, 1, 0, 0, 0, 247, 243, 1, 0, 0, 0, 248, 17, 1, 0, 0, 0, 249, 250, 6, 9, -1, 0, 250, 254, 3, 20, 10, 0, 251, 252, 7, 0, 0, 0, 252, 254, 3, 18, 9, 3, 253, 249, 1, 0, 0, 0, 253, 251, 1, 0, 0, 0, 254, 263, 1, 0, 0, 0, 255, 256, 10, 2, 0, 0, 256, 257, 7, 1, 0, 0, 257, 262, 3, 18, 9, 3, 258, 259, 10, 1, 0, 0, 259, 260, 7, 0, 0, 0, 260, 262, 3, 18, 9, 2, 261, 255, 1, 0, 0, 0, 261, 258, 1, 0, 0, 0, 262, 265, 1, 0, 0, 0, 263, 261, 1, 0, 0, 0, 263, 264, 1, 0, 0, 0, 264, 19, 1, 0, 0, 0, 265, 263, 1, 0, 0, 0, 266, 267, 6, 10, -1, 0, 267, 275, 3, 68, 34, 0, 268, 275, 3, 58, 29, 0, 269, 275, 3, 22, 11, 0, 270, 271, 5, 48, 0, 0, 271, 272, 3, 10, 5, 0, 272, 273, 5, 55, 0, 0, 273, 275, 1, 0, 0, 0, 274, 266, 1, 0, 0, 0, 274, 268, 1, 0, 0, 0, 274, 269, 1, 0, 0, 0, 274, 270, 1, 0, 0, 0, 275, 281, 1, 0, 0, 0, 276, 277, 10, 1, 0, 0, 277, 278, 5, 37, 0, 0, 278, 280, 3, 26, 13, 0, 279, 276, 1, 0, 0, 0, 280, 283, 1, 0, 0, 0, 281, 279, 1, 0, 0, 0, 281, 282, 1, 0, 0, 0, 282, 21, 1, 0, 0, 0, 283, 281, 1, 0, 0, 0, 284, 285, 3, 24, 12, 0, 285, 295, 5, 48, 0, 0, 286, 296, 5, 66, 0, 0, 287, 292, 3, 10, 5, 0, 288, 289, 5, 39, 0, 0, 289, 291, 3, 10, 5, 0, 290, 288, 1, 0, 0, 0, 291, 294, 1, 0, 0, 0, 292, 290, 1, 0, 0, 0, 292, 293, 1, 0, 0, 0, 293, 296, 1, 0, 0, 0, 294, 292, 1, 0, 0, 0, 295, 286, 1, 0, 0, 0, 295, 287, 1, 0, 0, 0, 295, 296, 1, 0, 0, 0, 296, 297, 1, 0, 0, 0, 297, 298, 5, 55, 0, 0, 298, 23, 1, 0, 0, 0, 299, 300, 3, 72, 36, 0, 300, 25, 1, 0, 0, 0, 301, 302, 3, 64, 32, 0, 302, 27, 1, 0, 0, 0, 303, 304, 5, 12, 0, 0, 304, 305, 3, 30, 15, 0, 305, 29, 1, 0, 0, 0, 306, 311, 3, 32, 16, 0, 307, 308, 5, 39, 0, 0, 308, 310, 3, 32, 16, 0, 309, 307, 1, 0, 0, 0, 310, 313, 1, 0, 0, 0, 311, 309, 1, 0, 0, 0, 311, 312, 1, 0, 0, 0, 312, 31, 1, 0, 0, 0, 313, 311, 1, 0, 0, 0, 314, 315, 3, 58, 29, 0, 315, 316, 5, 36, 0, 0, 316, 318, 1, 0, 0, 0, 317, 314, 1, 0, 0, 0, 317, 318, 1, 0, 0, 0, 318, 319, 1, 0, 0, 0, 319, 320, 3, 10, 5, 0, 320, 33, 1, 0, 0, 0, 321, 322, 5, 6, 0, 0, 322, 327, 3, 36, 18, 0, 323, 324, 5, 39, 0, 0, 324, 326, 3, 36, 18, 0, 325, 323, 1, 0, 0, 0, 326, 329, 1, 0, 0, 0, 327, 325, 1, 0, 0, 0, 327, 328, 1, 0, 0, 0, 328, 331, 1, 0, 0, 0, 329, 327, 1, 0, 0, 0, 330, 332, 3, 42, 21, 0, 331, 330, 1, 0, 0, 0, 331, 332, 1, 0, 0, 0, 332, 35, 1, 0, 0, 0, 333, 334, 3, 38, 19, 0, 334, 335, 5, 38, 0, 0, 335, 337, 1, 0, 0, 0, 336, 333, 1, 0, 0, 0, 336, 337, 1, 0, 0, 0, 337, 338, 1, 0, 0, 0, 338, 339, 3, 40, 20, 0, 339, 37, 1, 0, 0, 0, 340, 341, 5, 81, 0, 0, 341, 39, 1, 0, 0, 0, 342, 343, 7, 2, 0, 0, 343, 41, 1, 0, 0, 0, 344, 347, 3, 44, 22, 0, 345, 347, 3, 46, 23, 0, 346, 344, 1, 0, 0, 0, 346, 345, 1, 0, 0, 0, 347, 43, 1, 0, 0, 0, 348, 349, 5, 80, 0, 0, 349, 354, 5, 81, 0, 0, 350, 351, 5, 39, 0, 0, 351, 353, 5, 81, 0, 0, 352, 350, 1, 0, 0, 0, 353, 356, 1, 0, 0, 0, 354, 352, 1, 0, 0, 0, 354, 355, 1, 0, 0, 0, 355, 45, 1, 0, 0, 0, 356, 354, 1, 0, 0, 0, 357, 358, 5, 70, 0, 0, 358, 359, 3, 44, 22, 0, 359, 360, 5, 71, 0, 0, 360, 47, 1, 0, 0, 0, 361, 362, 5, 19, 0, 0, 362, 367, 3, 36, 18, 0, 363, 364, 5, 39, 0, 0, 364, 366, 3, 36, 18, 0, 365, 363, 1, 0, 0, 0, 366, 369, 1, 0, 0, 0, 367, 365, 1, 0, 0, 0, 367, 368, 1, 0, 0, 0, 368, 371, 1, 0, 0, 0, 369, 367, 1, 0, 0, 0, 370, 372, 3, 54, 27, 0, 371, 370, 1, 0, 0, 0, 371, 372, 1, 0, 0, 0, 372, 375, 1, 0, 0, 0, 373, 374, 5, 33, 0, 0, 374, 376, 3, 30, 15, 0, 375, 373, 1, 0, 0, 0, 375, 376, 1, 0, 0, 0, 376, 49, 1, 0, 0, 0, 377, 378, 5, 4, 0, 0, 378, 379, 3, 30, 15, 0, 379, 51, 1, 0, 0, 0, 380, 382, 5, 15, 0, 0, 381, 383, 3, 54, 27, 0, 382, 381, 1, 0, 0, 0, 382, 383, 1, 0, 0, 0, 383, 386, 1, 0, 0, 0, 384, 385, 5, 33, 0, 0, 385, 387, 3, 30, 15, 0, 386, 384, 1, 0, 0, 0, 386, 387, 1, 0, 0, 0, 387, 53, 1, 0, 0, 0, 388, 393, 3, 56, 28, 0, 389, 390, 5, 39, 0, 0, 390, 392, 3, 56, 28, 0, 391, 389, 1, 0, 0, 0, 392, 395, 1, 0, 0, 0, 393, 391, 1, 0, 0, 0, 393, 394, 1, 0, 0, 0, 394, 55, 1, 0, 0, 0, 395, 393, 1, 0, 0, 0, 396, 399, 3, 32, 16, 0, 397, 398, 5, 16, 0, 0, 398, 400, 3, 10, 5, 0, 399, 397, 1, 0, 0, 0, 399, 400, 1, 0, 0, 0, 400, 57, 1, 0, 0, 0, 401, 406, 3, 72, 36, 0, 402, 403, 5, 41, 0, 0, 403, 405, 3, 72, 36, 0, 404, 402, 1, 0, 0, 0, 405, 408, 1, 0, 0, 0, 406, 404, 1, 0, 0, 0, 406, 407, 1, 0, 0, 0, 407, 59, 1, 0, 0, 0, 408, 406, 1, 0, 0, 0, 409, 414, 3, 66, 33, 0, 410, 411, 5, 41, 0, 0, 411, 413, 3, 66, 33, 0, 412, 410, 1, 0, 0, 0, 413, 416, 1, 0, 0, 0, 414, 412, 1, 0, 0, 0, 414, 415, 1, 0, 0, 0, 415, 61, 1, 0, 0, 0, 416, 414, 1, 0, 0, 0, 417, 422, 3, 60, 30, 0, 418, 419, 5, 39, 0, 0, 419, 421, 3, 60, 30, 0, 420, 418, 1, 0, 0, 0, 421, 424, 1, 0, 0, 0, 422, 420, 1, 0, 0, 0, 422, 423, 1, 0, 0, 0, 423, 63, 1, 0, 0, 0, 424, 422, 1, 0, 0, 0, 425, 426, 7, 3, 0, 0, 426, 65, 1, 0, 0, 0, 427, 431, 5, 85, 0, 0, 428, 429, 4, 33, 10, 0, 429, 431, 3, 70, 35, 0, 430, 427, 1, 0, 0, 0, 430, 428, 1, 0, 0, 0, 431, 67, 1, 0, 0, 0, 432, 475, 5, 50, 0, 0, 433, 434, 3, 104, 52, 0, 434, 435, 5, 72, 0, 0, 435, 475, 1, 0, 0, 0, 436, 475, 3, 102, 51, 0, 437, 475, 3, 104, 52, 0, 438, 475, 3, 98, 49, 0, 439, 475, 3, 70, 35, 0, 440, 475, 3, 106, 53, 0, 441, 442, 5, 70, 0, 0, 442, 447, 3, 100, 50, 0, 443, 444, 5, 39, 0, 0, 444, 446, 3, 100, 50, 0, 445, 443, 1, 0, 0, 0, 446, 449, 1, 0, 0, 0, 447, 445, 1, 0, 0, 0, 447, 448, 1, 0, 0, 0, 448, 450, 1, 0, 0, 0, 449, 447, 1, 0, 0, 0, 450, 451, 5, 71, 0, 0, 451, 475, 1, 0, 0, 0, 452, 453, 5, 70, 0, 0, 453, 458, 3, 98, 49, 0, 454, 455, 5, 39, 0, 0, 455, 457, 3, 98, 49, 0, 456, 454, 1, 0, 0, 0, 457, 460, 1, 0, 0, 0, 458, 456, 1, 0, 0, 0, 458, 459, 1, 0, 0, 0, 459, 461, 1, 0, 0, 0, 460, 458, 1, 0, 0, 0, 461, 462, 5, 71, 0, 0, 462, 475, 1, 0, 0, 0, 463, 464, 5, 70, 0, 0, 464, 469, 3, 106, 53, 0, 465, 466, 5, 39, 0, 0, 466, 468, 3, 106, 53, 0, 467, 465, 1, 0, 0, 0, 468, 471, 1, 0, 0, 0, 469, 467, 1, 0, 0, 0, 469, 470, 1, 0, 0, 0, 470, 472, 1, 0, 0, 0, 471, 469, 1, 0, 0, 0, 472, 473, 5, 71, 0, 0, 473, 475, 1, 0, 0, 0, 474, 432, 1, 0, 0, 0, 474, 433, 1, 0, 0, 0, 474, 436, 1, 0, 0, 0, 474, 437, 1, 0, 0, 0, 474, 438, 1, 0, 0, 0, 474, 439, 1, 0, 0, 0, 474, 440, 1, 0, 0, 0, 474, 441, 1, 0, 0, 0, 474, 452, 1, 0, 0, 0, 474, 463, 1, 0, 0, 0, 475, 69, 1, 0, 0, 0, 476, 479, 5, 53, 0, 0, 477, 479, 5, 69, 0, 0, 478, 476, 1, 0, 0, 0, 478, 477, 1, 0, 0, 0, 479, 71, 1, 0, 0, 0, 480, 484, 3, 64, 32, 0, 481, 482, 4, 36, 11, 0, 482, 484, 3, 70, 35, 0, 483, 480, 1, 0, 0, 0, 483, 481, 1, 0, 0, 0, 484, 73, 1, 0, 0, 0, 485, 486, 5, 9, 0, 0, 486, 487, 5, 31, 0, 0, 487, 75, 1, 0, 0, 0, 488, 489, 5, 14, 0, 0, 489, 494, 3, 78, 39, 0, 490, 491, 5, 39, 0, 0, 491, 493, 3, 78, 39, 0, 492, 490, 1, 0, 0, 0, 493, 496, 1, 0, 0, 0, 494, 492, 1, 0, 0, 0, 494, 495, 1, 0, 0, 0, 495, 77, 1, 0, 0, 0, 496, 494, 1, 0, 0, 0, 497, 499, 3, 10, 5, 0, 498, 500, 7, 4, 0, 0, 499, 498, 1, 0, 0, 0, 499, 500, 1, 0, 0, 0, 500, 503, 1, 0, 0, 0, 501, 502, 5, 51, 0, 0, 502, 504, 7, 5, 0, 0, 503, 501, 1, 0, 0, 0, 503, 504, 1, 0, 0, 0, 504, 79, 1, 0, 0, 0, 505, 506, 5, 8, 0, 0, 506, 507, 3, 62, 31, 0, 507, 81, 1, 0, 0, 0, 508, 509, 5, 2, 0, 0, 509, 510, 3, 62, 31, 0, 510, 83, 1, 0, 0, 0, 511, 512, 5, 11, 0, 0, 512, 517, 3, 86, 43, 0, 513, 514, 5, 39, 0, 0, 514, 516, 3, 86, 43, 0, 515, 513, 1, 0, 0, 0, 516, 519, 1, 0, 0, 0, 517, 515, 1, 0, 0, 0, 517, 518, 1, 0, 0, 0, 518, 85, 1, 0, 0, 0, 519, 517, 1, 0, 0, 0, 520, 521, 3, 60, 30, 0, 521, 522, 5, 89, 0, 0, 522, 523, 3, 60, 30, 0, 523, 87, 1, 0, 0, 0, 524, 525, 5, 1, 0, 0, 525, 526, 3, 20, 10, 0, 526, 528, 3, 106, 53, 0, 527, 529, 3, 94, 47, 0, 528, 527, 1, 0, 0, 0, 528, 529, 1, 0, 0, 0, 529, 89, 1, 0, 0, 0, 530, 531, 5, 7, 0, 0, 531, 532, 3, 20, 10, 0, 532, 533, 3, 106, 53, 0, 533, 91, 1, 0, 0, 0, 534, 535, 5, 10, 0, 0, 535, 536, 3, 58, 29, 0, 536, 93, 1, 0, 0, 0, 537, 542, 3, 96, 48, 0, 538, 539, 5, 39, 0, 0, 539, 541, 3, 96, 48, 0, 540, 538, 1, 0, 0, 0, 541, 544, 1, 0, 0, 0, 542, 540, 1, 0, 0, 0, 542, 543, 1, 0, 0, 0, 543, 95, 1, 0, 0, 0, 544, 542, 1, 0, 0, 0, 545, 546, 3, 64, 32, 0, 546, 547, 5, 36, 0, 0, 547, 548, 3, 68, 34, 0, 548, 97, 1, 0, 0, 0, 549, 550, 7, 6, 0, 0, 550, 99, 1, 0, 0, 0, 551, 554, 3, 102, 51, 0, 552, 554, 3, 104, 52, 0, 553, 551, 1, 0, 0, 0, 553, 552, 1, 0, 0, 0, 554, 101, 1, 0, 0, 0, 555, 557, 7, 0, 0, 0, 556, 555, 1, 0, 0, 0, 556, 557, 1, 0, 0, 0, 557, 558, 1, 0, 0, 0, 558, 559, 5, 32, 0, 0, 559, 103, 1, 0, 0, 0, 560, 562, 7, 0, 0, 0, 561, 560, 1, 0, 0, 0, 561, 562, 1, 0, 0, 0, 562, 563, 1, 0, 0, 0, 563, 564, 5, 31, 0, 0, 564, 105, 1, 0, 0, 0, 565, 566, 5, 30, 0, 0, 566, 107, 1, 0, 0, 0, 567, 568, 7, 7, 0, 0, 568, 109, 1, 0, 0, 0, 569, 570, 5, 5, 0, 0, 570, 571, 3, 112, 56, 0, 571, 111, 1, 0, 0, 0, 572, 573, 5, 70, 0, 0, 573, 574, 3, 2, 1, 0, 574, 575, 5, 71, 0, 0, 575, 113, 1, 0, 0, 0, 576, 577, 5, 13, 0, 0, 577, 578, 5, 105, 0, 0, 578, 115, 1, 0, 0, 0, 579, 580, 5, 3, 0, 0, 580, 583, 5, 95, 0, 0, 581, 582, 5, 93, 0, 0, 582, 584, 3, 60, 30, 0, 583, 581, 1, 0, 0, 0, 583, 584, 1, 0, 0, 0, 584, 594, 1, 0, 0, 0, 585, 586, 5, 94, 0, 0, 586, 591, 3, 118, 59, 0, 587, 588, 5, 39, 0, 0, 588, 590, 3, 118, 59, 0, 589, 587, 1, 0, 0, 0, 590, 593, 1, 0, 0, 0, 591, 589, 1, 0, 0, 0, 591, 592, 1, 0, 0, 0, 592, 595, 1, 0, 0, 0, 593, 591, 1, 0, 0, 0, 594, 585, 1, 0, 0, 0, 594, 595, 1, 0, 0, 0, 595, 117, 1, 0, 0, 0, 596, 597, 3, 60, 30, 0, 597, 598, 5, 36, 0, 0, 598, 600, 1, 0, 0, 0, 599, 596, 1, 0, 0, 0, 599, 600, 1, 0, 0, 0, 600, 601, 1, 0, 0, 0, 601, 602, 3, 60, 30, 0, 602, 119, 1, 0, 0, 0, 603, 604, 5, 18, 0, 0, 604, 605, 3, 36, 18, 0, 605, 606, 5, 93, 0, 0, 606, 607, 3, 62, 31, 0, 607, 121, 1, 0, 0, 0, 608, 609, 5, 17, 0, 0, 609, 612, 3, 54, 27, 0, 610, 611, 5, 33, 0, 0, 611, 613, 3, 30, 15, 0, 612, 610, 1, 0, 0, 0, 612, 613, 1, 0, 0, 0, 613, 123, 1, 0, 0, 0, 614, 616, 7, 8, 0, 0, 615, 614, 1, 0, 0, 0, 615, 616, 1, 0, 0, 0, 616, 617, 1, 0, 0, 0, 617, 618, 5, 20, 0, 0, 618, 619, 3, 126, 63, 0, 619, 620, 3, 128, 64, 0, 620, 125, 1, 0, 0, 0, 621, 624, 3, 64, 32, 0, 622, 623, 5, 89, 0, 0, 623, 625, 3, 64, 32, 0, 624, 622, 1, 0, 0, 0, 624, 625, 1, 0, 0, 0, 625, 127, 1, 0, 0, 0, 626, 627, 5, 93, 0, 0, 627, 632, 3, 130, 65, 0, 628, 629, 5, 39, 0, 0, 629, 631, 3, 130, 65, 0, 630, 628, 1, 0, 0, 0, 631, 634, 1, 0, 0, 0, 632, 630, 1, 0, 0, 0, 632, 633, 1, 0, 0, 0, 633, 129, 1, 0, 0, 0, 634, 632, 1, 0, 0, 0, 635, 636, 3, 16, 8, 0, 636, 131, 1, 0, 0, 0, 62, 143, 152, 172, 184, 193, 201, 206, 214, 216, 221, 228, 233, 240, 247, 253, 261, 263, 274, 281, 292, 295, 311, 317, 327, 331, 336, 346, 354, 367, 371, 375, 382, 386, 393, 399, 406, 414, 422, 430, 447, 458, 469, 474, 478, 483, 494, 499, 503, 517, 528, 542, 553, 556, 561, 583, 591, 594, 599, 612, 615, 624, 632] \ No newline at end of file +[4, 1, 128, 642, 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, 1, 0, 1, 0, 1, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 5, 1, 142, 8, 1, 10, 1, 12, 1, 145, 9, 1, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 3, 2, 153, 8, 2, 1, 3, 1, 3, 1, 3, 1, 3, 1, 3, 1, 3, 1, 3, 1, 3, 1, 3, 1, 3, 1, 3, 1, 3, 1, 3, 1, 3, 1, 3, 1, 3, 1, 3, 1, 3, 3, 3, 173, 8, 3, 1, 4, 1, 4, 1, 4, 1, 5, 1, 5, 1, 5, 1, 5, 1, 5, 1, 5, 1, 5, 3, 5, 185, 8, 5, 1, 5, 1, 5, 1, 5, 1, 5, 1, 5, 5, 5, 192, 8, 5, 10, 5, 12, 5, 195, 9, 5, 1, 5, 1, 5, 1, 5, 1, 5, 1, 5, 3, 5, 202, 8, 5, 1, 5, 1, 5, 1, 5, 3, 5, 207, 8, 5, 1, 5, 1, 5, 1, 5, 1, 5, 1, 5, 1, 5, 5, 5, 215, 8, 5, 10, 5, 12, 5, 218, 9, 5, 1, 6, 1, 6, 3, 6, 222, 8, 6, 1, 6, 1, 6, 1, 6, 1, 6, 1, 6, 3, 6, 229, 8, 6, 1, 6, 1, 6, 1, 6, 3, 6, 234, 8, 6, 1, 7, 1, 7, 1, 7, 3, 7, 239, 8, 7, 1, 7, 1, 7, 1, 7, 1, 7, 3, 7, 245, 8, 7, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 3, 8, 252, 8, 8, 1, 9, 1, 9, 1, 9, 1, 9, 3, 9, 258, 8, 9, 1, 9, 1, 9, 1, 9, 1, 9, 1, 9, 1, 9, 5, 9, 266, 8, 9, 10, 9, 12, 9, 269, 9, 9, 1, 10, 1, 10, 1, 10, 1, 10, 1, 10, 1, 10, 1, 10, 1, 10, 3, 10, 279, 8, 10, 1, 10, 1, 10, 1, 10, 5, 10, 284, 8, 10, 10, 10, 12, 10, 287, 9, 10, 1, 11, 1, 11, 1, 11, 1, 11, 1, 11, 1, 11, 5, 11, 295, 8, 11, 10, 11, 12, 11, 298, 9, 11, 3, 11, 300, 8, 11, 1, 11, 1, 11, 1, 12, 1, 12, 1, 13, 1, 13, 1, 14, 1, 14, 1, 14, 1, 15, 1, 15, 1, 15, 5, 15, 314, 8, 15, 10, 15, 12, 15, 317, 9, 15, 1, 16, 1, 16, 1, 16, 3, 16, 322, 8, 16, 1, 16, 1, 16, 1, 17, 1, 17, 1, 17, 1, 17, 5, 17, 330, 8, 17, 10, 17, 12, 17, 333, 9, 17, 1, 17, 3, 17, 336, 8, 17, 1, 18, 1, 18, 1, 18, 3, 18, 341, 8, 18, 1, 18, 1, 18, 1, 19, 1, 19, 1, 20, 1, 20, 1, 21, 1, 21, 3, 21, 351, 8, 21, 1, 22, 1, 22, 1, 22, 1, 22, 5, 22, 357, 8, 22, 10, 22, 12, 22, 360, 9, 22, 1, 23, 1, 23, 1, 23, 1, 23, 1, 24, 1, 24, 1, 24, 1, 24, 5, 24, 370, 8, 24, 10, 24, 12, 24, 373, 9, 24, 1, 24, 3, 24, 376, 8, 24, 1, 24, 1, 24, 3, 24, 380, 8, 24, 1, 25, 1, 25, 1, 25, 1, 26, 1, 26, 3, 26, 387, 8, 26, 1, 26, 1, 26, 3, 26, 391, 8, 26, 1, 27, 1, 27, 1, 27, 5, 27, 396, 8, 27, 10, 27, 12, 27, 399, 9, 27, 1, 28, 1, 28, 1, 28, 3, 28, 404, 8, 28, 1, 29, 1, 29, 1, 29, 5, 29, 409, 8, 29, 10, 29, 12, 29, 412, 9, 29, 1, 30, 1, 30, 1, 30, 5, 30, 417, 8, 30, 10, 30, 12, 30, 420, 9, 30, 1, 31, 1, 31, 1, 31, 5, 31, 425, 8, 31, 10, 31, 12, 31, 428, 9, 31, 1, 32, 1, 32, 1, 33, 1, 33, 1, 33, 3, 33, 435, 8, 33, 1, 34, 1, 34, 1, 34, 1, 34, 1, 34, 1, 34, 1, 34, 1, 34, 1, 34, 1, 34, 1, 34, 1, 34, 1, 34, 5, 34, 450, 8, 34, 10, 34, 12, 34, 453, 9, 34, 1, 34, 1, 34, 1, 34, 1, 34, 1, 34, 1, 34, 5, 34, 461, 8, 34, 10, 34, 12, 34, 464, 9, 34, 1, 34, 1, 34, 1, 34, 1, 34, 1, 34, 1, 34, 5, 34, 472, 8, 34, 10, 34, 12, 34, 475, 9, 34, 1, 34, 1, 34, 3, 34, 479, 8, 34, 1, 35, 1, 35, 3, 35, 483, 8, 35, 1, 36, 1, 36, 1, 36, 3, 36, 488, 8, 36, 1, 37, 1, 37, 1, 37, 1, 38, 1, 38, 1, 38, 1, 38, 5, 38, 497, 8, 38, 10, 38, 12, 38, 500, 9, 38, 1, 39, 1, 39, 3, 39, 504, 8, 39, 1, 39, 1, 39, 3, 39, 508, 8, 39, 1, 40, 1, 40, 1, 40, 1, 41, 1, 41, 1, 41, 1, 42, 1, 42, 1, 42, 1, 42, 5, 42, 520, 8, 42, 10, 42, 12, 42, 523, 9, 42, 1, 43, 1, 43, 1, 43, 1, 43, 1, 44, 1, 44, 1, 44, 1, 44, 3, 44, 533, 8, 44, 1, 45, 1, 45, 1, 45, 1, 45, 1, 46, 1, 46, 1, 46, 1, 47, 1, 47, 1, 47, 5, 47, 545, 8, 47, 10, 47, 12, 47, 548, 9, 47, 1, 48, 1, 48, 1, 48, 1, 48, 1, 49, 1, 49, 1, 50, 1, 50, 3, 50, 558, 8, 50, 1, 51, 3, 51, 561, 8, 51, 1, 51, 1, 51, 1, 52, 3, 52, 566, 8, 52, 1, 52, 1, 52, 1, 53, 1, 53, 1, 54, 1, 54, 1, 55, 1, 55, 1, 55, 1, 56, 1, 56, 1, 56, 1, 56, 1, 57, 1, 57, 1, 57, 1, 58, 1, 58, 1, 58, 1, 58, 3, 58, 588, 8, 58, 1, 58, 1, 58, 1, 58, 1, 58, 5, 58, 594, 8, 58, 10, 58, 12, 58, 597, 9, 58, 3, 58, 599, 8, 58, 1, 59, 1, 59, 1, 59, 3, 59, 604, 8, 59, 1, 59, 1, 59, 1, 60, 1, 60, 1, 60, 1, 60, 1, 60, 1, 61, 1, 61, 1, 61, 1, 61, 3, 61, 617, 8, 61, 1, 62, 3, 62, 620, 8, 62, 1, 62, 1, 62, 1, 62, 1, 62, 1, 63, 1, 63, 1, 63, 3, 63, 629, 8, 63, 1, 64, 1, 64, 1, 64, 1, 64, 5, 64, 635, 8, 64, 10, 64, 12, 64, 638, 9, 64, 1, 65, 1, 65, 1, 65, 0, 4, 2, 10, 18, 20, 66, 0, 2, 4, 6, 8, 10, 12, 14, 16, 18, 20, 22, 24, 26, 28, 30, 32, 34, 36, 38, 40, 42, 44, 46, 48, 50, 52, 54, 56, 58, 60, 62, 64, 66, 68, 70, 72, 74, 76, 78, 80, 82, 84, 86, 88, 90, 92, 94, 96, 98, 100, 102, 104, 106, 108, 110, 112, 114, 116, 118, 120, 122, 124, 126, 128, 130, 0, 9, 1, 0, 64, 65, 1, 0, 66, 68, 2, 0, 30, 30, 81, 81, 1, 0, 72, 73, 2, 0, 35, 35, 40, 40, 2, 0, 43, 43, 46, 46, 2, 0, 42, 42, 56, 56, 2, 0, 57, 57, 59, 63, 1, 0, 22, 24, 669, 0, 132, 1, 0, 0, 0, 2, 135, 1, 0, 0, 0, 4, 152, 1, 0, 0, 0, 6, 172, 1, 0, 0, 0, 8, 174, 1, 0, 0, 0, 10, 206, 1, 0, 0, 0, 12, 233, 1, 0, 0, 0, 14, 235, 1, 0, 0, 0, 16, 251, 1, 0, 0, 0, 18, 257, 1, 0, 0, 0, 20, 278, 1, 0, 0, 0, 22, 288, 1, 0, 0, 0, 24, 303, 1, 0, 0, 0, 26, 305, 1, 0, 0, 0, 28, 307, 1, 0, 0, 0, 30, 310, 1, 0, 0, 0, 32, 321, 1, 0, 0, 0, 34, 325, 1, 0, 0, 0, 36, 340, 1, 0, 0, 0, 38, 344, 1, 0, 0, 0, 40, 346, 1, 0, 0, 0, 42, 350, 1, 0, 0, 0, 44, 352, 1, 0, 0, 0, 46, 361, 1, 0, 0, 0, 48, 365, 1, 0, 0, 0, 50, 381, 1, 0, 0, 0, 52, 384, 1, 0, 0, 0, 54, 392, 1, 0, 0, 0, 56, 400, 1, 0, 0, 0, 58, 405, 1, 0, 0, 0, 60, 413, 1, 0, 0, 0, 62, 421, 1, 0, 0, 0, 64, 429, 1, 0, 0, 0, 66, 434, 1, 0, 0, 0, 68, 478, 1, 0, 0, 0, 70, 482, 1, 0, 0, 0, 72, 487, 1, 0, 0, 0, 74, 489, 1, 0, 0, 0, 76, 492, 1, 0, 0, 0, 78, 501, 1, 0, 0, 0, 80, 509, 1, 0, 0, 0, 82, 512, 1, 0, 0, 0, 84, 515, 1, 0, 0, 0, 86, 524, 1, 0, 0, 0, 88, 528, 1, 0, 0, 0, 90, 534, 1, 0, 0, 0, 92, 538, 1, 0, 0, 0, 94, 541, 1, 0, 0, 0, 96, 549, 1, 0, 0, 0, 98, 553, 1, 0, 0, 0, 100, 557, 1, 0, 0, 0, 102, 560, 1, 0, 0, 0, 104, 565, 1, 0, 0, 0, 106, 569, 1, 0, 0, 0, 108, 571, 1, 0, 0, 0, 110, 573, 1, 0, 0, 0, 112, 576, 1, 0, 0, 0, 114, 580, 1, 0, 0, 0, 116, 583, 1, 0, 0, 0, 118, 603, 1, 0, 0, 0, 120, 607, 1, 0, 0, 0, 122, 612, 1, 0, 0, 0, 124, 619, 1, 0, 0, 0, 126, 625, 1, 0, 0, 0, 128, 630, 1, 0, 0, 0, 130, 639, 1, 0, 0, 0, 132, 133, 3, 2, 1, 0, 133, 134, 5, 0, 0, 1, 134, 1, 1, 0, 0, 0, 135, 136, 6, 1, -1, 0, 136, 137, 3, 4, 2, 0, 137, 143, 1, 0, 0, 0, 138, 139, 10, 1, 0, 0, 139, 140, 5, 29, 0, 0, 140, 142, 3, 6, 3, 0, 141, 138, 1, 0, 0, 0, 142, 145, 1, 0, 0, 0, 143, 141, 1, 0, 0, 0, 143, 144, 1, 0, 0, 0, 144, 3, 1, 0, 0, 0, 145, 143, 1, 0, 0, 0, 146, 153, 3, 110, 55, 0, 147, 153, 3, 34, 17, 0, 148, 153, 3, 28, 14, 0, 149, 153, 3, 114, 57, 0, 150, 151, 4, 2, 1, 0, 151, 153, 3, 48, 24, 0, 152, 146, 1, 0, 0, 0, 152, 147, 1, 0, 0, 0, 152, 148, 1, 0, 0, 0, 152, 149, 1, 0, 0, 0, 152, 150, 1, 0, 0, 0, 153, 5, 1, 0, 0, 0, 154, 173, 3, 50, 25, 0, 155, 173, 3, 8, 4, 0, 156, 173, 3, 80, 40, 0, 157, 173, 3, 74, 37, 0, 158, 173, 3, 52, 26, 0, 159, 173, 3, 76, 38, 0, 160, 173, 3, 82, 41, 0, 161, 173, 3, 84, 42, 0, 162, 173, 3, 88, 44, 0, 163, 173, 3, 90, 45, 0, 164, 173, 3, 116, 58, 0, 165, 173, 3, 92, 46, 0, 166, 167, 4, 3, 2, 0, 167, 173, 3, 122, 61, 0, 168, 169, 4, 3, 3, 0, 169, 173, 3, 120, 60, 0, 170, 171, 4, 3, 4, 0, 171, 173, 3, 124, 62, 0, 172, 154, 1, 0, 0, 0, 172, 155, 1, 0, 0, 0, 172, 156, 1, 0, 0, 0, 172, 157, 1, 0, 0, 0, 172, 158, 1, 0, 0, 0, 172, 159, 1, 0, 0, 0, 172, 160, 1, 0, 0, 0, 172, 161, 1, 0, 0, 0, 172, 162, 1, 0, 0, 0, 172, 163, 1, 0, 0, 0, 172, 164, 1, 0, 0, 0, 172, 165, 1, 0, 0, 0, 172, 166, 1, 0, 0, 0, 172, 168, 1, 0, 0, 0, 172, 170, 1, 0, 0, 0, 173, 7, 1, 0, 0, 0, 174, 175, 5, 16, 0, 0, 175, 176, 3, 10, 5, 0, 176, 9, 1, 0, 0, 0, 177, 178, 6, 5, -1, 0, 178, 179, 5, 49, 0, 0, 179, 207, 3, 10, 5, 8, 180, 207, 3, 16, 8, 0, 181, 207, 3, 12, 6, 0, 182, 184, 3, 16, 8, 0, 183, 185, 5, 49, 0, 0, 184, 183, 1, 0, 0, 0, 184, 185, 1, 0, 0, 0, 185, 186, 1, 0, 0, 0, 186, 187, 5, 44, 0, 0, 187, 188, 5, 48, 0, 0, 188, 193, 3, 16, 8, 0, 189, 190, 5, 39, 0, 0, 190, 192, 3, 16, 8, 0, 191, 189, 1, 0, 0, 0, 192, 195, 1, 0, 0, 0, 193, 191, 1, 0, 0, 0, 193, 194, 1, 0, 0, 0, 194, 196, 1, 0, 0, 0, 195, 193, 1, 0, 0, 0, 196, 197, 5, 55, 0, 0, 197, 207, 1, 0, 0, 0, 198, 199, 3, 16, 8, 0, 199, 201, 5, 45, 0, 0, 200, 202, 5, 49, 0, 0, 201, 200, 1, 0, 0, 0, 201, 202, 1, 0, 0, 0, 202, 203, 1, 0, 0, 0, 203, 204, 5, 50, 0, 0, 204, 207, 1, 0, 0, 0, 205, 207, 3, 14, 7, 0, 206, 177, 1, 0, 0, 0, 206, 180, 1, 0, 0, 0, 206, 181, 1, 0, 0, 0, 206, 182, 1, 0, 0, 0, 206, 198, 1, 0, 0, 0, 206, 205, 1, 0, 0, 0, 207, 216, 1, 0, 0, 0, 208, 209, 10, 5, 0, 0, 209, 210, 5, 34, 0, 0, 210, 215, 3, 10, 5, 6, 211, 212, 10, 4, 0, 0, 212, 213, 5, 52, 0, 0, 213, 215, 3, 10, 5, 5, 214, 208, 1, 0, 0, 0, 214, 211, 1, 0, 0, 0, 215, 218, 1, 0, 0, 0, 216, 214, 1, 0, 0, 0, 216, 217, 1, 0, 0, 0, 217, 11, 1, 0, 0, 0, 218, 216, 1, 0, 0, 0, 219, 221, 3, 16, 8, 0, 220, 222, 5, 49, 0, 0, 221, 220, 1, 0, 0, 0, 221, 222, 1, 0, 0, 0, 222, 223, 1, 0, 0, 0, 223, 224, 5, 47, 0, 0, 224, 225, 3, 106, 53, 0, 225, 234, 1, 0, 0, 0, 226, 228, 3, 16, 8, 0, 227, 229, 5, 49, 0, 0, 228, 227, 1, 0, 0, 0, 228, 229, 1, 0, 0, 0, 229, 230, 1, 0, 0, 0, 230, 231, 5, 54, 0, 0, 231, 232, 3, 106, 53, 0, 232, 234, 1, 0, 0, 0, 233, 219, 1, 0, 0, 0, 233, 226, 1, 0, 0, 0, 234, 13, 1, 0, 0, 0, 235, 238, 3, 58, 29, 0, 236, 237, 5, 37, 0, 0, 237, 239, 3, 26, 13, 0, 238, 236, 1, 0, 0, 0, 238, 239, 1, 0, 0, 0, 239, 240, 1, 0, 0, 0, 240, 241, 5, 38, 0, 0, 241, 244, 3, 68, 34, 0, 242, 243, 5, 37, 0, 0, 243, 245, 3, 26, 13, 0, 244, 242, 1, 0, 0, 0, 244, 245, 1, 0, 0, 0, 245, 15, 1, 0, 0, 0, 246, 252, 3, 18, 9, 0, 247, 248, 3, 18, 9, 0, 248, 249, 3, 108, 54, 0, 249, 250, 3, 18, 9, 0, 250, 252, 1, 0, 0, 0, 251, 246, 1, 0, 0, 0, 251, 247, 1, 0, 0, 0, 252, 17, 1, 0, 0, 0, 253, 254, 6, 9, -1, 0, 254, 258, 3, 20, 10, 0, 255, 256, 7, 0, 0, 0, 256, 258, 3, 18, 9, 3, 257, 253, 1, 0, 0, 0, 257, 255, 1, 0, 0, 0, 258, 267, 1, 0, 0, 0, 259, 260, 10, 2, 0, 0, 260, 261, 7, 1, 0, 0, 261, 266, 3, 18, 9, 3, 262, 263, 10, 1, 0, 0, 263, 264, 7, 0, 0, 0, 264, 266, 3, 18, 9, 2, 265, 259, 1, 0, 0, 0, 265, 262, 1, 0, 0, 0, 266, 269, 1, 0, 0, 0, 267, 265, 1, 0, 0, 0, 267, 268, 1, 0, 0, 0, 268, 19, 1, 0, 0, 0, 269, 267, 1, 0, 0, 0, 270, 271, 6, 10, -1, 0, 271, 279, 3, 68, 34, 0, 272, 279, 3, 58, 29, 0, 273, 279, 3, 22, 11, 0, 274, 275, 5, 48, 0, 0, 275, 276, 3, 10, 5, 0, 276, 277, 5, 55, 0, 0, 277, 279, 1, 0, 0, 0, 278, 270, 1, 0, 0, 0, 278, 272, 1, 0, 0, 0, 278, 273, 1, 0, 0, 0, 278, 274, 1, 0, 0, 0, 279, 285, 1, 0, 0, 0, 280, 281, 10, 1, 0, 0, 281, 282, 5, 37, 0, 0, 282, 284, 3, 26, 13, 0, 283, 280, 1, 0, 0, 0, 284, 287, 1, 0, 0, 0, 285, 283, 1, 0, 0, 0, 285, 286, 1, 0, 0, 0, 286, 21, 1, 0, 0, 0, 287, 285, 1, 0, 0, 0, 288, 289, 3, 24, 12, 0, 289, 299, 5, 48, 0, 0, 290, 300, 5, 66, 0, 0, 291, 296, 3, 10, 5, 0, 292, 293, 5, 39, 0, 0, 293, 295, 3, 10, 5, 0, 294, 292, 1, 0, 0, 0, 295, 298, 1, 0, 0, 0, 296, 294, 1, 0, 0, 0, 296, 297, 1, 0, 0, 0, 297, 300, 1, 0, 0, 0, 298, 296, 1, 0, 0, 0, 299, 290, 1, 0, 0, 0, 299, 291, 1, 0, 0, 0, 299, 300, 1, 0, 0, 0, 300, 301, 1, 0, 0, 0, 301, 302, 5, 55, 0, 0, 302, 23, 1, 0, 0, 0, 303, 304, 3, 72, 36, 0, 304, 25, 1, 0, 0, 0, 305, 306, 3, 64, 32, 0, 306, 27, 1, 0, 0, 0, 307, 308, 5, 12, 0, 0, 308, 309, 3, 30, 15, 0, 309, 29, 1, 0, 0, 0, 310, 315, 3, 32, 16, 0, 311, 312, 5, 39, 0, 0, 312, 314, 3, 32, 16, 0, 313, 311, 1, 0, 0, 0, 314, 317, 1, 0, 0, 0, 315, 313, 1, 0, 0, 0, 315, 316, 1, 0, 0, 0, 316, 31, 1, 0, 0, 0, 317, 315, 1, 0, 0, 0, 318, 319, 3, 58, 29, 0, 319, 320, 5, 36, 0, 0, 320, 322, 1, 0, 0, 0, 321, 318, 1, 0, 0, 0, 321, 322, 1, 0, 0, 0, 322, 323, 1, 0, 0, 0, 323, 324, 3, 10, 5, 0, 324, 33, 1, 0, 0, 0, 325, 326, 5, 6, 0, 0, 326, 331, 3, 36, 18, 0, 327, 328, 5, 39, 0, 0, 328, 330, 3, 36, 18, 0, 329, 327, 1, 0, 0, 0, 330, 333, 1, 0, 0, 0, 331, 329, 1, 0, 0, 0, 331, 332, 1, 0, 0, 0, 332, 335, 1, 0, 0, 0, 333, 331, 1, 0, 0, 0, 334, 336, 3, 42, 21, 0, 335, 334, 1, 0, 0, 0, 335, 336, 1, 0, 0, 0, 336, 35, 1, 0, 0, 0, 337, 338, 3, 38, 19, 0, 338, 339, 5, 38, 0, 0, 339, 341, 1, 0, 0, 0, 340, 337, 1, 0, 0, 0, 340, 341, 1, 0, 0, 0, 341, 342, 1, 0, 0, 0, 342, 343, 3, 40, 20, 0, 343, 37, 1, 0, 0, 0, 344, 345, 5, 81, 0, 0, 345, 39, 1, 0, 0, 0, 346, 347, 7, 2, 0, 0, 347, 41, 1, 0, 0, 0, 348, 351, 3, 44, 22, 0, 349, 351, 3, 46, 23, 0, 350, 348, 1, 0, 0, 0, 350, 349, 1, 0, 0, 0, 351, 43, 1, 0, 0, 0, 352, 353, 5, 80, 0, 0, 353, 358, 5, 81, 0, 0, 354, 355, 5, 39, 0, 0, 355, 357, 5, 81, 0, 0, 356, 354, 1, 0, 0, 0, 357, 360, 1, 0, 0, 0, 358, 356, 1, 0, 0, 0, 358, 359, 1, 0, 0, 0, 359, 45, 1, 0, 0, 0, 360, 358, 1, 0, 0, 0, 361, 362, 5, 70, 0, 0, 362, 363, 3, 44, 22, 0, 363, 364, 5, 71, 0, 0, 364, 47, 1, 0, 0, 0, 365, 366, 5, 19, 0, 0, 366, 371, 3, 36, 18, 0, 367, 368, 5, 39, 0, 0, 368, 370, 3, 36, 18, 0, 369, 367, 1, 0, 0, 0, 370, 373, 1, 0, 0, 0, 371, 369, 1, 0, 0, 0, 371, 372, 1, 0, 0, 0, 372, 375, 1, 0, 0, 0, 373, 371, 1, 0, 0, 0, 374, 376, 3, 54, 27, 0, 375, 374, 1, 0, 0, 0, 375, 376, 1, 0, 0, 0, 376, 379, 1, 0, 0, 0, 377, 378, 5, 33, 0, 0, 378, 380, 3, 30, 15, 0, 379, 377, 1, 0, 0, 0, 379, 380, 1, 0, 0, 0, 380, 49, 1, 0, 0, 0, 381, 382, 5, 4, 0, 0, 382, 383, 3, 30, 15, 0, 383, 51, 1, 0, 0, 0, 384, 386, 5, 15, 0, 0, 385, 387, 3, 54, 27, 0, 386, 385, 1, 0, 0, 0, 386, 387, 1, 0, 0, 0, 387, 390, 1, 0, 0, 0, 388, 389, 5, 33, 0, 0, 389, 391, 3, 30, 15, 0, 390, 388, 1, 0, 0, 0, 390, 391, 1, 0, 0, 0, 391, 53, 1, 0, 0, 0, 392, 397, 3, 56, 28, 0, 393, 394, 5, 39, 0, 0, 394, 396, 3, 56, 28, 0, 395, 393, 1, 0, 0, 0, 396, 399, 1, 0, 0, 0, 397, 395, 1, 0, 0, 0, 397, 398, 1, 0, 0, 0, 398, 55, 1, 0, 0, 0, 399, 397, 1, 0, 0, 0, 400, 403, 3, 32, 16, 0, 401, 402, 5, 16, 0, 0, 402, 404, 3, 10, 5, 0, 403, 401, 1, 0, 0, 0, 403, 404, 1, 0, 0, 0, 404, 57, 1, 0, 0, 0, 405, 410, 3, 72, 36, 0, 406, 407, 5, 41, 0, 0, 407, 409, 3, 72, 36, 0, 408, 406, 1, 0, 0, 0, 409, 412, 1, 0, 0, 0, 410, 408, 1, 0, 0, 0, 410, 411, 1, 0, 0, 0, 411, 59, 1, 0, 0, 0, 412, 410, 1, 0, 0, 0, 413, 418, 3, 66, 33, 0, 414, 415, 5, 41, 0, 0, 415, 417, 3, 66, 33, 0, 416, 414, 1, 0, 0, 0, 417, 420, 1, 0, 0, 0, 418, 416, 1, 0, 0, 0, 418, 419, 1, 0, 0, 0, 419, 61, 1, 0, 0, 0, 420, 418, 1, 0, 0, 0, 421, 426, 3, 60, 30, 0, 422, 423, 5, 39, 0, 0, 423, 425, 3, 60, 30, 0, 424, 422, 1, 0, 0, 0, 425, 428, 1, 0, 0, 0, 426, 424, 1, 0, 0, 0, 426, 427, 1, 0, 0, 0, 427, 63, 1, 0, 0, 0, 428, 426, 1, 0, 0, 0, 429, 430, 7, 3, 0, 0, 430, 65, 1, 0, 0, 0, 431, 435, 5, 85, 0, 0, 432, 433, 4, 33, 10, 0, 433, 435, 3, 70, 35, 0, 434, 431, 1, 0, 0, 0, 434, 432, 1, 0, 0, 0, 435, 67, 1, 0, 0, 0, 436, 479, 5, 50, 0, 0, 437, 438, 3, 104, 52, 0, 438, 439, 5, 72, 0, 0, 439, 479, 1, 0, 0, 0, 440, 479, 3, 102, 51, 0, 441, 479, 3, 104, 52, 0, 442, 479, 3, 98, 49, 0, 443, 479, 3, 70, 35, 0, 444, 479, 3, 106, 53, 0, 445, 446, 5, 70, 0, 0, 446, 451, 3, 100, 50, 0, 447, 448, 5, 39, 0, 0, 448, 450, 3, 100, 50, 0, 449, 447, 1, 0, 0, 0, 450, 453, 1, 0, 0, 0, 451, 449, 1, 0, 0, 0, 451, 452, 1, 0, 0, 0, 452, 454, 1, 0, 0, 0, 453, 451, 1, 0, 0, 0, 454, 455, 5, 71, 0, 0, 455, 479, 1, 0, 0, 0, 456, 457, 5, 70, 0, 0, 457, 462, 3, 98, 49, 0, 458, 459, 5, 39, 0, 0, 459, 461, 3, 98, 49, 0, 460, 458, 1, 0, 0, 0, 461, 464, 1, 0, 0, 0, 462, 460, 1, 0, 0, 0, 462, 463, 1, 0, 0, 0, 463, 465, 1, 0, 0, 0, 464, 462, 1, 0, 0, 0, 465, 466, 5, 71, 0, 0, 466, 479, 1, 0, 0, 0, 467, 468, 5, 70, 0, 0, 468, 473, 3, 106, 53, 0, 469, 470, 5, 39, 0, 0, 470, 472, 3, 106, 53, 0, 471, 469, 1, 0, 0, 0, 472, 475, 1, 0, 0, 0, 473, 471, 1, 0, 0, 0, 473, 474, 1, 0, 0, 0, 474, 476, 1, 0, 0, 0, 475, 473, 1, 0, 0, 0, 476, 477, 5, 71, 0, 0, 477, 479, 1, 0, 0, 0, 478, 436, 1, 0, 0, 0, 478, 437, 1, 0, 0, 0, 478, 440, 1, 0, 0, 0, 478, 441, 1, 0, 0, 0, 478, 442, 1, 0, 0, 0, 478, 443, 1, 0, 0, 0, 478, 444, 1, 0, 0, 0, 478, 445, 1, 0, 0, 0, 478, 456, 1, 0, 0, 0, 478, 467, 1, 0, 0, 0, 479, 69, 1, 0, 0, 0, 480, 483, 5, 53, 0, 0, 481, 483, 5, 69, 0, 0, 482, 480, 1, 0, 0, 0, 482, 481, 1, 0, 0, 0, 483, 71, 1, 0, 0, 0, 484, 488, 3, 64, 32, 0, 485, 486, 4, 36, 11, 0, 486, 488, 3, 70, 35, 0, 487, 484, 1, 0, 0, 0, 487, 485, 1, 0, 0, 0, 488, 73, 1, 0, 0, 0, 489, 490, 5, 9, 0, 0, 490, 491, 5, 31, 0, 0, 491, 75, 1, 0, 0, 0, 492, 493, 5, 14, 0, 0, 493, 498, 3, 78, 39, 0, 494, 495, 5, 39, 0, 0, 495, 497, 3, 78, 39, 0, 496, 494, 1, 0, 0, 0, 497, 500, 1, 0, 0, 0, 498, 496, 1, 0, 0, 0, 498, 499, 1, 0, 0, 0, 499, 77, 1, 0, 0, 0, 500, 498, 1, 0, 0, 0, 501, 503, 3, 10, 5, 0, 502, 504, 7, 4, 0, 0, 503, 502, 1, 0, 0, 0, 503, 504, 1, 0, 0, 0, 504, 507, 1, 0, 0, 0, 505, 506, 5, 51, 0, 0, 506, 508, 7, 5, 0, 0, 507, 505, 1, 0, 0, 0, 507, 508, 1, 0, 0, 0, 508, 79, 1, 0, 0, 0, 509, 510, 5, 8, 0, 0, 510, 511, 3, 62, 31, 0, 511, 81, 1, 0, 0, 0, 512, 513, 5, 2, 0, 0, 513, 514, 3, 62, 31, 0, 514, 83, 1, 0, 0, 0, 515, 516, 5, 11, 0, 0, 516, 521, 3, 86, 43, 0, 517, 518, 5, 39, 0, 0, 518, 520, 3, 86, 43, 0, 519, 517, 1, 0, 0, 0, 520, 523, 1, 0, 0, 0, 521, 519, 1, 0, 0, 0, 521, 522, 1, 0, 0, 0, 522, 85, 1, 0, 0, 0, 523, 521, 1, 0, 0, 0, 524, 525, 3, 60, 30, 0, 525, 526, 5, 89, 0, 0, 526, 527, 3, 60, 30, 0, 527, 87, 1, 0, 0, 0, 528, 529, 5, 1, 0, 0, 529, 530, 3, 20, 10, 0, 530, 532, 3, 106, 53, 0, 531, 533, 3, 94, 47, 0, 532, 531, 1, 0, 0, 0, 532, 533, 1, 0, 0, 0, 533, 89, 1, 0, 0, 0, 534, 535, 5, 7, 0, 0, 535, 536, 3, 20, 10, 0, 536, 537, 3, 106, 53, 0, 537, 91, 1, 0, 0, 0, 538, 539, 5, 10, 0, 0, 539, 540, 3, 58, 29, 0, 540, 93, 1, 0, 0, 0, 541, 546, 3, 96, 48, 0, 542, 543, 5, 39, 0, 0, 543, 545, 3, 96, 48, 0, 544, 542, 1, 0, 0, 0, 545, 548, 1, 0, 0, 0, 546, 544, 1, 0, 0, 0, 546, 547, 1, 0, 0, 0, 547, 95, 1, 0, 0, 0, 548, 546, 1, 0, 0, 0, 549, 550, 3, 64, 32, 0, 550, 551, 5, 36, 0, 0, 551, 552, 3, 68, 34, 0, 552, 97, 1, 0, 0, 0, 553, 554, 7, 6, 0, 0, 554, 99, 1, 0, 0, 0, 555, 558, 3, 102, 51, 0, 556, 558, 3, 104, 52, 0, 557, 555, 1, 0, 0, 0, 557, 556, 1, 0, 0, 0, 558, 101, 1, 0, 0, 0, 559, 561, 7, 0, 0, 0, 560, 559, 1, 0, 0, 0, 560, 561, 1, 0, 0, 0, 561, 562, 1, 0, 0, 0, 562, 563, 5, 32, 0, 0, 563, 103, 1, 0, 0, 0, 564, 566, 7, 0, 0, 0, 565, 564, 1, 0, 0, 0, 565, 566, 1, 0, 0, 0, 566, 567, 1, 0, 0, 0, 567, 568, 5, 31, 0, 0, 568, 105, 1, 0, 0, 0, 569, 570, 5, 30, 0, 0, 570, 107, 1, 0, 0, 0, 571, 572, 7, 7, 0, 0, 572, 109, 1, 0, 0, 0, 573, 574, 5, 5, 0, 0, 574, 575, 3, 112, 56, 0, 575, 111, 1, 0, 0, 0, 576, 577, 5, 70, 0, 0, 577, 578, 3, 2, 1, 0, 578, 579, 5, 71, 0, 0, 579, 113, 1, 0, 0, 0, 580, 581, 5, 13, 0, 0, 581, 582, 5, 105, 0, 0, 582, 115, 1, 0, 0, 0, 583, 584, 5, 3, 0, 0, 584, 587, 5, 95, 0, 0, 585, 586, 5, 93, 0, 0, 586, 588, 3, 60, 30, 0, 587, 585, 1, 0, 0, 0, 587, 588, 1, 0, 0, 0, 588, 598, 1, 0, 0, 0, 589, 590, 5, 94, 0, 0, 590, 595, 3, 118, 59, 0, 591, 592, 5, 39, 0, 0, 592, 594, 3, 118, 59, 0, 593, 591, 1, 0, 0, 0, 594, 597, 1, 0, 0, 0, 595, 593, 1, 0, 0, 0, 595, 596, 1, 0, 0, 0, 596, 599, 1, 0, 0, 0, 597, 595, 1, 0, 0, 0, 598, 589, 1, 0, 0, 0, 598, 599, 1, 0, 0, 0, 599, 117, 1, 0, 0, 0, 600, 601, 3, 60, 30, 0, 601, 602, 5, 36, 0, 0, 602, 604, 1, 0, 0, 0, 603, 600, 1, 0, 0, 0, 603, 604, 1, 0, 0, 0, 604, 605, 1, 0, 0, 0, 605, 606, 3, 60, 30, 0, 606, 119, 1, 0, 0, 0, 607, 608, 5, 18, 0, 0, 608, 609, 3, 36, 18, 0, 609, 610, 5, 93, 0, 0, 610, 611, 3, 62, 31, 0, 611, 121, 1, 0, 0, 0, 612, 613, 5, 17, 0, 0, 613, 616, 3, 54, 27, 0, 614, 615, 5, 33, 0, 0, 615, 617, 3, 30, 15, 0, 616, 614, 1, 0, 0, 0, 616, 617, 1, 0, 0, 0, 617, 123, 1, 0, 0, 0, 618, 620, 7, 8, 0, 0, 619, 618, 1, 0, 0, 0, 619, 620, 1, 0, 0, 0, 620, 621, 1, 0, 0, 0, 621, 622, 5, 20, 0, 0, 622, 623, 3, 126, 63, 0, 623, 624, 3, 128, 64, 0, 624, 125, 1, 0, 0, 0, 625, 628, 3, 64, 32, 0, 626, 627, 5, 89, 0, 0, 627, 629, 3, 64, 32, 0, 628, 626, 1, 0, 0, 0, 628, 629, 1, 0, 0, 0, 629, 127, 1, 0, 0, 0, 630, 631, 5, 93, 0, 0, 631, 636, 3, 130, 65, 0, 632, 633, 5, 39, 0, 0, 633, 635, 3, 130, 65, 0, 634, 632, 1, 0, 0, 0, 635, 638, 1, 0, 0, 0, 636, 634, 1, 0, 0, 0, 636, 637, 1, 0, 0, 0, 637, 129, 1, 0, 0, 0, 638, 636, 1, 0, 0, 0, 639, 640, 3, 16, 8, 0, 640, 131, 1, 0, 0, 0, 63, 143, 152, 172, 184, 193, 201, 206, 214, 216, 221, 228, 233, 238, 244, 251, 257, 265, 267, 278, 285, 296, 299, 315, 321, 331, 335, 340, 350, 358, 371, 375, 379, 386, 390, 397, 403, 410, 418, 426, 434, 451, 462, 473, 478, 482, 487, 498, 503, 507, 521, 532, 546, 557, 560, 565, 587, 595, 598, 603, 616, 619, 628, 636] \ No newline at end of file diff --git a/x-pack/plugin/esql/src/main/java/org/elasticsearch/xpack/esql/parser/EsqlBaseParser.java b/x-pack/plugin/esql/src/main/java/org/elasticsearch/xpack/esql/parser/EsqlBaseParser.java index 944523aeb8d9b..8087f899571a6 100644 --- a/x-pack/plugin/esql/src/main/java/org/elasticsearch/xpack/esql/parser/EsqlBaseParser.java +++ b/x-pack/plugin/esql/src/main/java/org/elasticsearch/xpack/esql/parser/EsqlBaseParser.java @@ -8,26 +8,14 @@ * 2.0. */ -import org.antlr.v4.runtime.FailedPredicateException; -import org.antlr.v4.runtime.NoViableAltException; -import org.antlr.v4.runtime.ParserRuleContext; -import org.antlr.v4.runtime.RecognitionException; -import org.antlr.v4.runtime.RuleContext; -import org.antlr.v4.runtime.RuntimeMetaData; -import org.antlr.v4.runtime.Token; -import org.antlr.v4.runtime.TokenStream; -import org.antlr.v4.runtime.Vocabulary; -import org.antlr.v4.runtime.VocabularyImpl; -import org.antlr.v4.runtime.atn.ATN; -import org.antlr.v4.runtime.atn.ATNDeserializer; -import org.antlr.v4.runtime.atn.ParserATNSimulator; -import org.antlr.v4.runtime.atn.PredictionContextCache; +import org.antlr.v4.runtime.atn.*; import org.antlr.v4.runtime.dfa.DFA; -import org.antlr.v4.runtime.tree.ParseTreeListener; -import org.antlr.v4.runtime.tree.ParseTreeVisitor; -import org.antlr.v4.runtime.tree.TerminalNode; - +import org.antlr.v4.runtime.*; +import org.antlr.v4.runtime.misc.*; +import org.antlr.v4.runtime.tree.*; import java.util.List; +import java.util.Iterator; +import java.util.ArrayList; @SuppressWarnings({"all", "warnings", "unchecked", "unused", "cast", "CheckReturnValue"}) public class EsqlBaseParser extends ParserConfig { @@ -37,70 +25,70 @@ public class EsqlBaseParser extends ParserConfig { protected static final PredictionContextCache _sharedContextCache = new PredictionContextCache(); public static final int - DISSECT=1, DROP=2, ENRICH=3, EVAL=4, EXPLAIN=5, FROM=6, GROK=7, KEEP=8, - LIMIT=9, MV_EXPAND=10, RENAME=11, ROW=12, SHOW=13, SORT=14, STATS=15, - WHERE=16, DEV_INLINESTATS=17, DEV_LOOKUP=18, DEV_METRICS=19, DEV_JOIN=20, - DEV_JOIN_FULL=21, DEV_JOIN_LEFT=22, DEV_JOIN_RIGHT=23, DEV_JOIN_LOOKUP=24, - UNKNOWN_CMD=25, LINE_COMMENT=26, MULTILINE_COMMENT=27, WS=28, PIPE=29, - QUOTED_STRING=30, INTEGER_LITERAL=31, DECIMAL_LITERAL=32, BY=33, AND=34, - ASC=35, ASSIGN=36, CAST_OP=37, COLON=38, COMMA=39, DESC=40, DOT=41, FALSE=42, - FIRST=43, IN=44, IS=45, LAST=46, LIKE=47, LP=48, NOT=49, NULL=50, NULLS=51, - OR=52, PARAM=53, RLIKE=54, RP=55, TRUE=56, EQ=57, CIEQ=58, NEQ=59, LT=60, - LTE=61, GT=62, GTE=63, PLUS=64, MINUS=65, ASTERISK=66, SLASH=67, PERCENT=68, - NAMED_OR_POSITIONAL_PARAM=69, OPENING_BRACKET=70, CLOSING_BRACKET=71, - UNQUOTED_IDENTIFIER=72, QUOTED_IDENTIFIER=73, EXPR_LINE_COMMENT=74, EXPR_MULTILINE_COMMENT=75, - EXPR_WS=76, EXPLAIN_WS=77, EXPLAIN_LINE_COMMENT=78, EXPLAIN_MULTILINE_COMMENT=79, - METADATA=80, UNQUOTED_SOURCE=81, FROM_LINE_COMMENT=82, FROM_MULTILINE_COMMENT=83, - FROM_WS=84, ID_PATTERN=85, PROJECT_LINE_COMMENT=86, PROJECT_MULTILINE_COMMENT=87, - PROJECT_WS=88, AS=89, RENAME_LINE_COMMENT=90, RENAME_MULTILINE_COMMENT=91, - RENAME_WS=92, ON=93, WITH=94, ENRICH_POLICY_NAME=95, ENRICH_LINE_COMMENT=96, - ENRICH_MULTILINE_COMMENT=97, ENRICH_WS=98, ENRICH_FIELD_LINE_COMMENT=99, - ENRICH_FIELD_MULTILINE_COMMENT=100, ENRICH_FIELD_WS=101, MVEXPAND_LINE_COMMENT=102, - MVEXPAND_MULTILINE_COMMENT=103, MVEXPAND_WS=104, INFO=105, SHOW_LINE_COMMENT=106, - SHOW_MULTILINE_COMMENT=107, SHOW_WS=108, SETTING=109, SETTING_LINE_COMMENT=110, - SETTTING_MULTILINE_COMMENT=111, SETTING_WS=112, LOOKUP_LINE_COMMENT=113, - LOOKUP_MULTILINE_COMMENT=114, LOOKUP_WS=115, LOOKUP_FIELD_LINE_COMMENT=116, - LOOKUP_FIELD_MULTILINE_COMMENT=117, LOOKUP_FIELD_WS=118, USING=119, JOIN_LINE_COMMENT=120, - JOIN_MULTILINE_COMMENT=121, JOIN_WS=122, METRICS_LINE_COMMENT=123, METRICS_MULTILINE_COMMENT=124, - METRICS_WS=125, CLOSING_METRICS_LINE_COMMENT=126, CLOSING_METRICS_MULTILINE_COMMENT=127, + DISSECT=1, DROP=2, ENRICH=3, EVAL=4, EXPLAIN=5, FROM=6, GROK=7, KEEP=8, + LIMIT=9, MV_EXPAND=10, RENAME=11, ROW=12, SHOW=13, SORT=14, STATS=15, + WHERE=16, DEV_INLINESTATS=17, DEV_LOOKUP=18, DEV_METRICS=19, DEV_JOIN=20, + DEV_JOIN_FULL=21, DEV_JOIN_LEFT=22, DEV_JOIN_RIGHT=23, DEV_JOIN_LOOKUP=24, + UNKNOWN_CMD=25, LINE_COMMENT=26, MULTILINE_COMMENT=27, WS=28, PIPE=29, + QUOTED_STRING=30, INTEGER_LITERAL=31, DECIMAL_LITERAL=32, BY=33, AND=34, + ASC=35, ASSIGN=36, CAST_OP=37, COLON=38, COMMA=39, DESC=40, DOT=41, FALSE=42, + FIRST=43, IN=44, IS=45, LAST=46, LIKE=47, LP=48, NOT=49, NULL=50, NULLS=51, + OR=52, PARAM=53, RLIKE=54, RP=55, TRUE=56, EQ=57, CIEQ=58, NEQ=59, LT=60, + LTE=61, GT=62, GTE=63, PLUS=64, MINUS=65, ASTERISK=66, SLASH=67, PERCENT=68, + NAMED_OR_POSITIONAL_PARAM=69, OPENING_BRACKET=70, CLOSING_BRACKET=71, + UNQUOTED_IDENTIFIER=72, QUOTED_IDENTIFIER=73, EXPR_LINE_COMMENT=74, EXPR_MULTILINE_COMMENT=75, + EXPR_WS=76, EXPLAIN_WS=77, EXPLAIN_LINE_COMMENT=78, EXPLAIN_MULTILINE_COMMENT=79, + METADATA=80, UNQUOTED_SOURCE=81, FROM_LINE_COMMENT=82, FROM_MULTILINE_COMMENT=83, + FROM_WS=84, ID_PATTERN=85, PROJECT_LINE_COMMENT=86, PROJECT_MULTILINE_COMMENT=87, + PROJECT_WS=88, AS=89, RENAME_LINE_COMMENT=90, RENAME_MULTILINE_COMMENT=91, + RENAME_WS=92, ON=93, WITH=94, ENRICH_POLICY_NAME=95, ENRICH_LINE_COMMENT=96, + ENRICH_MULTILINE_COMMENT=97, ENRICH_WS=98, ENRICH_FIELD_LINE_COMMENT=99, + ENRICH_FIELD_MULTILINE_COMMENT=100, ENRICH_FIELD_WS=101, MVEXPAND_LINE_COMMENT=102, + MVEXPAND_MULTILINE_COMMENT=103, MVEXPAND_WS=104, INFO=105, SHOW_LINE_COMMENT=106, + SHOW_MULTILINE_COMMENT=107, SHOW_WS=108, SETTING=109, SETTING_LINE_COMMENT=110, + SETTTING_MULTILINE_COMMENT=111, SETTING_WS=112, LOOKUP_LINE_COMMENT=113, + LOOKUP_MULTILINE_COMMENT=114, LOOKUP_WS=115, LOOKUP_FIELD_LINE_COMMENT=116, + LOOKUP_FIELD_MULTILINE_COMMENT=117, LOOKUP_FIELD_WS=118, USING=119, JOIN_LINE_COMMENT=120, + JOIN_MULTILINE_COMMENT=121, JOIN_WS=122, METRICS_LINE_COMMENT=123, METRICS_MULTILINE_COMMENT=124, + METRICS_WS=125, CLOSING_METRICS_LINE_COMMENT=126, CLOSING_METRICS_MULTILINE_COMMENT=127, CLOSING_METRICS_WS=128; public static final int - RULE_singleStatement = 0, RULE_query = 1, RULE_sourceCommand = 2, RULE_processingCommand = 3, - RULE_whereCommand = 4, RULE_booleanExpression = 5, RULE_regexBooleanExpression = 6, - RULE_matchBooleanExpression = 7, RULE_valueExpression = 8, RULE_operatorExpression = 9, - RULE_primaryExpression = 10, RULE_functionExpression = 11, RULE_functionName = 12, - RULE_dataType = 13, RULE_rowCommand = 14, RULE_fields = 15, RULE_field = 16, - RULE_fromCommand = 17, RULE_indexPattern = 18, RULE_clusterString = 19, - RULE_indexString = 20, RULE_metadata = 21, RULE_metadataOption = 22, RULE_deprecated_metadata = 23, - RULE_metricsCommand = 24, RULE_evalCommand = 25, RULE_statsCommand = 26, - RULE_aggFields = 27, RULE_aggField = 28, RULE_qualifiedName = 29, RULE_qualifiedNamePattern = 30, - RULE_qualifiedNamePatterns = 31, RULE_identifier = 32, RULE_identifierPattern = 33, - RULE_constant = 34, RULE_parameter = 35, RULE_identifierOrParameter = 36, - RULE_limitCommand = 37, RULE_sortCommand = 38, RULE_orderExpression = 39, - RULE_keepCommand = 40, RULE_dropCommand = 41, RULE_renameCommand = 42, - RULE_renameClause = 43, RULE_dissectCommand = 44, RULE_grokCommand = 45, - RULE_mvExpandCommand = 46, RULE_commandOptions = 47, RULE_commandOption = 48, - RULE_booleanValue = 49, RULE_numericValue = 50, RULE_decimalValue = 51, - RULE_integerValue = 52, RULE_string = 53, RULE_comparisonOperator = 54, - RULE_explainCommand = 55, RULE_subqueryExpression = 56, RULE_showCommand = 57, - RULE_enrichCommand = 58, RULE_enrichWithClause = 59, RULE_lookupCommand = 60, - RULE_inlinestatsCommand = 61, RULE_joinCommand = 62, RULE_joinTarget = 63, + RULE_singleStatement = 0, RULE_query = 1, RULE_sourceCommand = 2, RULE_processingCommand = 3, + RULE_whereCommand = 4, RULE_booleanExpression = 5, RULE_regexBooleanExpression = 6, + RULE_matchBooleanExpression = 7, RULE_valueExpression = 8, RULE_operatorExpression = 9, + RULE_primaryExpression = 10, RULE_functionExpression = 11, RULE_functionName = 12, + RULE_dataType = 13, RULE_rowCommand = 14, RULE_fields = 15, RULE_field = 16, + RULE_fromCommand = 17, RULE_indexPattern = 18, RULE_clusterString = 19, + RULE_indexString = 20, RULE_metadata = 21, RULE_metadataOption = 22, RULE_deprecated_metadata = 23, + RULE_metricsCommand = 24, RULE_evalCommand = 25, RULE_statsCommand = 26, + RULE_aggFields = 27, RULE_aggField = 28, RULE_qualifiedName = 29, RULE_qualifiedNamePattern = 30, + RULE_qualifiedNamePatterns = 31, RULE_identifier = 32, RULE_identifierPattern = 33, + RULE_constant = 34, RULE_parameter = 35, RULE_identifierOrParameter = 36, + RULE_limitCommand = 37, RULE_sortCommand = 38, RULE_orderExpression = 39, + RULE_keepCommand = 40, RULE_dropCommand = 41, RULE_renameCommand = 42, + RULE_renameClause = 43, RULE_dissectCommand = 44, RULE_grokCommand = 45, + RULE_mvExpandCommand = 46, RULE_commandOptions = 47, RULE_commandOption = 48, + RULE_booleanValue = 49, RULE_numericValue = 50, RULE_decimalValue = 51, + RULE_integerValue = 52, RULE_string = 53, RULE_comparisonOperator = 54, + RULE_explainCommand = 55, RULE_subqueryExpression = 56, RULE_showCommand = 57, + RULE_enrichCommand = 58, RULE_enrichWithClause = 59, RULE_lookupCommand = 60, + RULE_inlinestatsCommand = 61, RULE_joinCommand = 62, RULE_joinTarget = 63, RULE_joinCondition = 64, RULE_joinPredicate = 65; private static String[] makeRuleNames() { return new String[] { - "singleStatement", "query", "sourceCommand", "processingCommand", "whereCommand", - "booleanExpression", "regexBooleanExpression", "matchBooleanExpression", - "valueExpression", "operatorExpression", "primaryExpression", "functionExpression", - "functionName", "dataType", "rowCommand", "fields", "field", "fromCommand", - "indexPattern", "clusterString", "indexString", "metadata", "metadataOption", - "deprecated_metadata", "metricsCommand", "evalCommand", "statsCommand", - "aggFields", "aggField", "qualifiedName", "qualifiedNamePattern", "qualifiedNamePatterns", - "identifier", "identifierPattern", "constant", "parameter", "identifierOrParameter", - "limitCommand", "sortCommand", "orderExpression", "keepCommand", "dropCommand", - "renameCommand", "renameClause", "dissectCommand", "grokCommand", "mvExpandCommand", - "commandOptions", "commandOption", "booleanValue", "numericValue", "decimalValue", - "integerValue", "string", "comparisonOperator", "explainCommand", "subqueryExpression", - "showCommand", "enrichCommand", "enrichWithClause", "lookupCommand", + "singleStatement", "query", "sourceCommand", "processingCommand", "whereCommand", + "booleanExpression", "regexBooleanExpression", "matchBooleanExpression", + "valueExpression", "operatorExpression", "primaryExpression", "functionExpression", + "functionName", "dataType", "rowCommand", "fields", "field", "fromCommand", + "indexPattern", "clusterString", "indexString", "metadata", "metadataOption", + "deprecated_metadata", "metricsCommand", "evalCommand", "statsCommand", + "aggFields", "aggField", "qualifiedName", "qualifiedNamePattern", "qualifiedNamePatterns", + "identifier", "identifierPattern", "constant", "parameter", "identifierOrParameter", + "limitCommand", "sortCommand", "orderExpression", "keepCommand", "dropCommand", + "renameCommand", "renameClause", "dissectCommand", "grokCommand", "mvExpandCommand", + "commandOptions", "commandOption", "booleanValue", "numericValue", "decimalValue", + "integerValue", "string", "comparisonOperator", "explainCommand", "subqueryExpression", + "showCommand", "enrichCommand", "enrichWithClause", "lookupCommand", "inlinestatsCommand", "joinCommand", "joinTarget", "joinCondition", "joinPredicate" }; } @@ -108,49 +96,49 @@ private static String[] makeRuleNames() { private static String[] makeLiteralNames() { return new String[] { - null, "'dissect'", "'drop'", "'enrich'", "'eval'", "'explain'", "'from'", - "'grok'", "'keep'", "'limit'", "'mv_expand'", "'rename'", "'row'", "'show'", - "'sort'", "'stats'", "'where'", null, null, null, null, null, null, null, - null, null, null, null, null, "'|'", null, null, null, "'by'", "'and'", - "'asc'", "'='", "'::'", "':'", "','", "'desc'", "'.'", "'false'", "'first'", - "'in'", "'is'", "'last'", "'like'", "'('", "'not'", "'null'", "'nulls'", - "'or'", "'?'", "'rlike'", "')'", "'true'", "'=='", "'=~'", "'!='", "'<'", - "'<='", "'>'", "'>='", "'+'", "'-'", "'*'", "'/'", "'%'", null, null, - "']'", null, null, null, null, null, null, null, null, "'metadata'", - null, null, null, null, null, null, null, null, "'as'", null, null, null, - "'on'", "'with'", null, null, null, null, null, null, null, null, null, - null, "'info'", null, null, null, null, null, null, null, null, null, + null, "'dissect'", "'drop'", "'enrich'", "'eval'", "'explain'", "'from'", + "'grok'", "'keep'", "'limit'", "'mv_expand'", "'rename'", "'row'", "'show'", + "'sort'", "'stats'", "'where'", null, null, null, null, null, null, null, + null, null, null, null, null, "'|'", null, null, null, "'by'", "'and'", + "'asc'", "'='", "'::'", "':'", "','", "'desc'", "'.'", "'false'", "'first'", + "'in'", "'is'", "'last'", "'like'", "'('", "'not'", "'null'", "'nulls'", + "'or'", "'?'", "'rlike'", "')'", "'true'", "'=='", "'=~'", "'!='", "'<'", + "'<='", "'>'", "'>='", "'+'", "'-'", "'*'", "'/'", "'%'", null, null, + "']'", null, null, null, null, null, null, null, null, "'metadata'", + null, null, null, null, null, null, null, null, "'as'", null, null, null, + "'on'", "'with'", null, null, null, null, null, null, null, null, null, + null, "'info'", null, null, null, null, null, null, null, null, null, null, null, null, null, "'USING'" }; } private static final String[] _LITERAL_NAMES = makeLiteralNames(); private static String[] makeSymbolicNames() { return new String[] { - null, "DISSECT", "DROP", "ENRICH", "EVAL", "EXPLAIN", "FROM", "GROK", - "KEEP", "LIMIT", "MV_EXPAND", "RENAME", "ROW", "SHOW", "SORT", "STATS", - "WHERE", "DEV_INLINESTATS", "DEV_LOOKUP", "DEV_METRICS", "DEV_JOIN", - "DEV_JOIN_FULL", "DEV_JOIN_LEFT", "DEV_JOIN_RIGHT", "DEV_JOIN_LOOKUP", - "UNKNOWN_CMD", "LINE_COMMENT", "MULTILINE_COMMENT", "WS", "PIPE", "QUOTED_STRING", - "INTEGER_LITERAL", "DECIMAL_LITERAL", "BY", "AND", "ASC", "ASSIGN", "CAST_OP", - "COLON", "COMMA", "DESC", "DOT", "FALSE", "FIRST", "IN", "IS", "LAST", - "LIKE", "LP", "NOT", "NULL", "NULLS", "OR", "PARAM", "RLIKE", "RP", "TRUE", - "EQ", "CIEQ", "NEQ", "LT", "LTE", "GT", "GTE", "PLUS", "MINUS", "ASTERISK", - "SLASH", "PERCENT", "NAMED_OR_POSITIONAL_PARAM", "OPENING_BRACKET", "CLOSING_BRACKET", - "UNQUOTED_IDENTIFIER", "QUOTED_IDENTIFIER", "EXPR_LINE_COMMENT", "EXPR_MULTILINE_COMMENT", - "EXPR_WS", "EXPLAIN_WS", "EXPLAIN_LINE_COMMENT", "EXPLAIN_MULTILINE_COMMENT", - "METADATA", "UNQUOTED_SOURCE", "FROM_LINE_COMMENT", "FROM_MULTILINE_COMMENT", - "FROM_WS", "ID_PATTERN", "PROJECT_LINE_COMMENT", "PROJECT_MULTILINE_COMMENT", - "PROJECT_WS", "AS", "RENAME_LINE_COMMENT", "RENAME_MULTILINE_COMMENT", - "RENAME_WS", "ON", "WITH", "ENRICH_POLICY_NAME", "ENRICH_LINE_COMMENT", - "ENRICH_MULTILINE_COMMENT", "ENRICH_WS", "ENRICH_FIELD_LINE_COMMENT", - "ENRICH_FIELD_MULTILINE_COMMENT", "ENRICH_FIELD_WS", "MVEXPAND_LINE_COMMENT", - "MVEXPAND_MULTILINE_COMMENT", "MVEXPAND_WS", "INFO", "SHOW_LINE_COMMENT", - "SHOW_MULTILINE_COMMENT", "SHOW_WS", "SETTING", "SETTING_LINE_COMMENT", - "SETTTING_MULTILINE_COMMENT", "SETTING_WS", "LOOKUP_LINE_COMMENT", "LOOKUP_MULTILINE_COMMENT", - "LOOKUP_WS", "LOOKUP_FIELD_LINE_COMMENT", "LOOKUP_FIELD_MULTILINE_COMMENT", - "LOOKUP_FIELD_WS", "USING", "JOIN_LINE_COMMENT", "JOIN_MULTILINE_COMMENT", - "JOIN_WS", "METRICS_LINE_COMMENT", "METRICS_MULTILINE_COMMENT", "METRICS_WS", - "CLOSING_METRICS_LINE_COMMENT", "CLOSING_METRICS_MULTILINE_COMMENT", + null, "DISSECT", "DROP", "ENRICH", "EVAL", "EXPLAIN", "FROM", "GROK", + "KEEP", "LIMIT", "MV_EXPAND", "RENAME", "ROW", "SHOW", "SORT", "STATS", + "WHERE", "DEV_INLINESTATS", "DEV_LOOKUP", "DEV_METRICS", "DEV_JOIN", + "DEV_JOIN_FULL", "DEV_JOIN_LEFT", "DEV_JOIN_RIGHT", "DEV_JOIN_LOOKUP", + "UNKNOWN_CMD", "LINE_COMMENT", "MULTILINE_COMMENT", "WS", "PIPE", "QUOTED_STRING", + "INTEGER_LITERAL", "DECIMAL_LITERAL", "BY", "AND", "ASC", "ASSIGN", "CAST_OP", + "COLON", "COMMA", "DESC", "DOT", "FALSE", "FIRST", "IN", "IS", "LAST", + "LIKE", "LP", "NOT", "NULL", "NULLS", "OR", "PARAM", "RLIKE", "RP", "TRUE", + "EQ", "CIEQ", "NEQ", "LT", "LTE", "GT", "GTE", "PLUS", "MINUS", "ASTERISK", + "SLASH", "PERCENT", "NAMED_OR_POSITIONAL_PARAM", "OPENING_BRACKET", "CLOSING_BRACKET", + "UNQUOTED_IDENTIFIER", "QUOTED_IDENTIFIER", "EXPR_LINE_COMMENT", "EXPR_MULTILINE_COMMENT", + "EXPR_WS", "EXPLAIN_WS", "EXPLAIN_LINE_COMMENT", "EXPLAIN_MULTILINE_COMMENT", + "METADATA", "UNQUOTED_SOURCE", "FROM_LINE_COMMENT", "FROM_MULTILINE_COMMENT", + "FROM_WS", "ID_PATTERN", "PROJECT_LINE_COMMENT", "PROJECT_MULTILINE_COMMENT", + "PROJECT_WS", "AS", "RENAME_LINE_COMMENT", "RENAME_MULTILINE_COMMENT", + "RENAME_WS", "ON", "WITH", "ENRICH_POLICY_NAME", "ENRICH_LINE_COMMENT", + "ENRICH_MULTILINE_COMMENT", "ENRICH_WS", "ENRICH_FIELD_LINE_COMMENT", + "ENRICH_FIELD_MULTILINE_COMMENT", "ENRICH_FIELD_WS", "MVEXPAND_LINE_COMMENT", + "MVEXPAND_MULTILINE_COMMENT", "MVEXPAND_WS", "INFO", "SHOW_LINE_COMMENT", + "SHOW_MULTILINE_COMMENT", "SHOW_WS", "SETTING", "SETTING_LINE_COMMENT", + "SETTTING_MULTILINE_COMMENT", "SETTING_WS", "LOOKUP_LINE_COMMENT", "LOOKUP_MULTILINE_COMMENT", + "LOOKUP_WS", "LOOKUP_FIELD_LINE_COMMENT", "LOOKUP_FIELD_MULTILINE_COMMENT", + "LOOKUP_FIELD_WS", "USING", "JOIN_LINE_COMMENT", "JOIN_MULTILINE_COMMENT", + "JOIN_WS", "METRICS_LINE_COMMENT", "METRICS_MULTILINE_COMMENT", "METRICS_WS", + "CLOSING_METRICS_LINE_COMMENT", "CLOSING_METRICS_MULTILINE_COMMENT", "CLOSING_METRICS_WS" }; } @@ -262,7 +250,7 @@ public QueryContext(ParserRuleContext parent, int invokingState) { super(parent, invokingState); } @Override public int getRuleIndex() { return RULE_query; } - + @SuppressWarnings("this-escape") public QueryContext() { } public void copyFrom(QueryContext ctx) { @@ -358,7 +346,7 @@ private QueryContext query(int _p) throws RecognitionException { setState(140); processingCommand(); } - } + } } setState(145); _errHandler.sync(this); @@ -725,7 +713,7 @@ public BooleanExpressionContext(ParserRuleContext parent, int invokingState) { super(parent, invokingState); } @Override public int getRuleIndex() { return RULE_booleanExpression; } - + @SuppressWarnings("this-escape") public BooleanExpressionContext() { } public void copyFrom(BooleanExpressionContext ctx) { @@ -1067,7 +1055,7 @@ private BooleanExpressionContext booleanExpression(int _p) throws RecognitionExc } break; } - } + } } setState(218); _errHandler.sync(this); @@ -1185,7 +1173,9 @@ public final RegexBooleanExpressionContext regexBooleanExpression() throws Recog @SuppressWarnings("CheckReturnValue") public static class MatchBooleanExpressionContext extends ParserRuleContext { public QualifiedNameContext fieldExp; + public DataTypeContext fieldType; public ConstantContext matchQuery; + public DataTypeContext queryType; public TerminalNode COLON() { return getToken(EsqlBaseParser.COLON, 0); } public QualifiedNameContext qualifiedName() { return getRuleContext(QualifiedNameContext.class,0); @@ -1193,9 +1183,15 @@ public QualifiedNameContext qualifiedName() { public ConstantContext constant() { return getRuleContext(ConstantContext.class,0); } - public TerminalNode CAST_OP() { return getToken(EsqlBaseParser.CAST_OP, 0); } - public DataTypeContext dataType() { - return getRuleContext(DataTypeContext.class,0); + public List CAST_OP() { return getTokens(EsqlBaseParser.CAST_OP); } + public TerminalNode CAST_OP(int i) { + return getToken(EsqlBaseParser.CAST_OP, i); + } + public List dataType() { + return getRuleContexts(DataTypeContext.class); + } + public DataTypeContext dataType(int i) { + return getRuleContext(DataTypeContext.class,i); } @SuppressWarnings("this-escape") public MatchBooleanExpressionContext(ParserRuleContext parent, int invokingState) { @@ -1220,24 +1216,37 @@ public T accept(ParseTreeVisitor visitor) { public final MatchBooleanExpressionContext matchBooleanExpression() throws RecognitionException { MatchBooleanExpressionContext _localctx = new MatchBooleanExpressionContext(_ctx, getState()); enterRule(_localctx, 14, RULE_matchBooleanExpression); + int _la; try { enterOuterAlt(_localctx, 1); { setState(235); ((MatchBooleanExpressionContext)_localctx).fieldExp = qualifiedName(); - setState(236); + setState(238); + _errHandler.sync(this); + _la = _input.LA(1); + if (_la==CAST_OP) { + { + setState(236); + match(CAST_OP); + setState(237); + ((MatchBooleanExpressionContext)_localctx).fieldType = dataType(); + } + } + + setState(240); match(COLON); - setState(237); + setState(241); ((MatchBooleanExpressionContext)_localctx).matchQuery = constant(); - setState(240); + setState(244); _errHandler.sync(this); - switch ( getInterpreter().adaptivePredict(_input,12,_ctx) ) { + switch ( getInterpreter().adaptivePredict(_input,13,_ctx) ) { case 1: { - setState(238); + setState(242); match(CAST_OP); - setState(239); - dataType(); + setState(243); + ((MatchBooleanExpressionContext)_localctx).queryType = dataType(); } break; } @@ -1261,7 +1270,7 @@ public ValueExpressionContext(ParserRuleContext parent, int invokingState) { super(parent, invokingState); } @Override public int getRuleIndex() { return RULE_valueExpression; } - + @SuppressWarnings("this-escape") public ValueExpressionContext() { } public void copyFrom(ValueExpressionContext ctx) { @@ -1323,14 +1332,14 @@ public final ValueExpressionContext valueExpression() throws RecognitionExceptio ValueExpressionContext _localctx = new ValueExpressionContext(_ctx, getState()); enterRule(_localctx, 16, RULE_valueExpression); try { - setState(247); + setState(251); _errHandler.sync(this); - switch ( getInterpreter().adaptivePredict(_input,13,_ctx) ) { + switch ( getInterpreter().adaptivePredict(_input,14,_ctx) ) { case 1: _localctx = new ValueExpressionDefaultContext(_localctx); enterOuterAlt(_localctx, 1); { - setState(242); + setState(246); operatorExpression(0); } break; @@ -1338,11 +1347,11 @@ public final ValueExpressionContext valueExpression() throws RecognitionExceptio _localctx = new ComparisonContext(_localctx); enterOuterAlt(_localctx, 2); { - setState(243); + setState(247); ((ComparisonContext)_localctx).left = operatorExpression(0); - setState(244); + setState(248); comparisonOperator(); - setState(245); + setState(249); ((ComparisonContext)_localctx).right = operatorExpression(0); } break; @@ -1366,7 +1375,7 @@ public OperatorExpressionContext(ParserRuleContext parent, int invokingState) { super(parent, invokingState); } @Override public int getRuleIndex() { return RULE_operatorExpression; } - + @SuppressWarnings("this-escape") public OperatorExpressionContext() { } public void copyFrom(OperatorExpressionContext ctx) { @@ -1467,16 +1476,16 @@ private OperatorExpressionContext operatorExpression(int _p) throws RecognitionE int _alt; enterOuterAlt(_localctx, 1); { - setState(253); + setState(257); _errHandler.sync(this); - switch ( getInterpreter().adaptivePredict(_input,14,_ctx) ) { + switch ( getInterpreter().adaptivePredict(_input,15,_ctx) ) { case 1: { _localctx = new OperatorExpressionDefaultContext(_localctx); _ctx = _localctx; _prevctx = _localctx; - setState(250); + setState(254); primaryExpression(0); } break; @@ -1485,7 +1494,7 @@ private OperatorExpressionContext operatorExpression(int _p) throws RecognitionE _localctx = new ArithmeticUnaryContext(_localctx); _ctx = _localctx; _prevctx = _localctx; - setState(251); + setState(255); ((ArithmeticUnaryContext)_localctx).operator = _input.LT(1); _la = _input.LA(1); if ( !(_la==PLUS || _la==MINUS) ) { @@ -1496,31 +1505,31 @@ private OperatorExpressionContext operatorExpression(int _p) throws RecognitionE _errHandler.reportMatch(this); consume(); } - setState(252); + setState(256); operatorExpression(3); } break; } _ctx.stop = _input.LT(-1); - setState(263); + setState(267); _errHandler.sync(this); - _alt = getInterpreter().adaptivePredict(_input,16,_ctx); + _alt = getInterpreter().adaptivePredict(_input,17,_ctx); while ( _alt!=2 && _alt!=org.antlr.v4.runtime.atn.ATN.INVALID_ALT_NUMBER ) { if ( _alt==1 ) { if ( _parseListeners!=null ) triggerExitRuleEvent(); _prevctx = _localctx; { - setState(261); + setState(265); _errHandler.sync(this); - switch ( getInterpreter().adaptivePredict(_input,15,_ctx) ) { + switch ( getInterpreter().adaptivePredict(_input,16,_ctx) ) { case 1: { _localctx = new ArithmeticBinaryContext(new OperatorExpressionContext(_parentctx, _parentState)); ((ArithmeticBinaryContext)_localctx).left = _prevctx; pushNewRecursionContext(_localctx, _startState, RULE_operatorExpression); - setState(255); + setState(259); if (!(precpred(_ctx, 2))) throw new FailedPredicateException(this, "precpred(_ctx, 2)"); - setState(256); + setState(260); ((ArithmeticBinaryContext)_localctx).operator = _input.LT(1); _la = _input.LA(1); if ( !(((((_la - 66)) & ~0x3f) == 0 && ((1L << (_la - 66)) & 7L) != 0)) ) { @@ -1531,7 +1540,7 @@ private OperatorExpressionContext operatorExpression(int _p) throws RecognitionE _errHandler.reportMatch(this); consume(); } - setState(257); + setState(261); ((ArithmeticBinaryContext)_localctx).right = operatorExpression(3); } break; @@ -1540,9 +1549,9 @@ private OperatorExpressionContext operatorExpression(int _p) throws RecognitionE _localctx = new ArithmeticBinaryContext(new OperatorExpressionContext(_parentctx, _parentState)); ((ArithmeticBinaryContext)_localctx).left = _prevctx; pushNewRecursionContext(_localctx, _startState, RULE_operatorExpression); - setState(258); + setState(262); if (!(precpred(_ctx, 1))) throw new FailedPredicateException(this, "precpred(_ctx, 1)"); - setState(259); + setState(263); ((ArithmeticBinaryContext)_localctx).operator = _input.LT(1); _la = _input.LA(1); if ( !(_la==PLUS || _la==MINUS) ) { @@ -1553,16 +1562,16 @@ private OperatorExpressionContext operatorExpression(int _p) throws RecognitionE _errHandler.reportMatch(this); consume(); } - setState(260); + setState(264); ((ArithmeticBinaryContext)_localctx).right = operatorExpression(2); } break; } - } + } } - setState(265); + setState(269); _errHandler.sync(this); - _alt = getInterpreter().adaptivePredict(_input,16,_ctx); + _alt = getInterpreter().adaptivePredict(_input,17,_ctx); } } } @@ -1584,7 +1593,7 @@ public PrimaryExpressionContext(ParserRuleContext parent, int invokingState) { super(parent, invokingState); } @Override public int getRuleIndex() { return RULE_primaryExpression; } - + @SuppressWarnings("this-escape") public PrimaryExpressionContext() { } public void copyFrom(PrimaryExpressionContext ctx) { @@ -1718,16 +1727,16 @@ private PrimaryExpressionContext primaryExpression(int _p) throws RecognitionExc int _alt; enterOuterAlt(_localctx, 1); { - setState(274); + setState(278); _errHandler.sync(this); - switch ( getInterpreter().adaptivePredict(_input,17,_ctx) ) { + switch ( getInterpreter().adaptivePredict(_input,18,_ctx) ) { case 1: { _localctx = new ConstantDefaultContext(_localctx); _ctx = _localctx; _prevctx = _localctx; - setState(267); + setState(271); constant(); } break; @@ -1736,7 +1745,7 @@ private PrimaryExpressionContext primaryExpression(int _p) throws RecognitionExc _localctx = new DereferenceContext(_localctx); _ctx = _localctx; _prevctx = _localctx; - setState(268); + setState(272); qualifiedName(); } break; @@ -1745,7 +1754,7 @@ private PrimaryExpressionContext primaryExpression(int _p) throws RecognitionExc _localctx = new FunctionContext(_localctx); _ctx = _localctx; _prevctx = _localctx; - setState(269); + setState(273); functionExpression(); } break; @@ -1754,19 +1763,19 @@ private PrimaryExpressionContext primaryExpression(int _p) throws RecognitionExc _localctx = new ParenthesizedExpressionContext(_localctx); _ctx = _localctx; _prevctx = _localctx; - setState(270); + setState(274); match(LP); - setState(271); + setState(275); booleanExpression(0); - setState(272); + setState(276); match(RP); } break; } _ctx.stop = _input.LT(-1); - setState(281); + setState(285); _errHandler.sync(this); - _alt = getInterpreter().adaptivePredict(_input,18,_ctx); + _alt = getInterpreter().adaptivePredict(_input,19,_ctx); while ( _alt!=2 && _alt!=org.antlr.v4.runtime.atn.ATN.INVALID_ALT_NUMBER ) { if ( _alt==1 ) { if ( _parseListeners!=null ) triggerExitRuleEvent(); @@ -1775,18 +1784,18 @@ private PrimaryExpressionContext primaryExpression(int _p) throws RecognitionExc { _localctx = new InlineCastContext(new PrimaryExpressionContext(_parentctx, _parentState)); pushNewRecursionContext(_localctx, _startState, RULE_primaryExpression); - setState(276); + setState(280); if (!(precpred(_ctx, 1))) throw new FailedPredicateException(this, "precpred(_ctx, 1)"); - setState(277); + setState(281); match(CAST_OP); - setState(278); + setState(282); dataType(); } - } + } } - setState(283); + setState(287); _errHandler.sync(this); - _alt = getInterpreter().adaptivePredict(_input,18,_ctx); + _alt = getInterpreter().adaptivePredict(_input,19,_ctx); } } } @@ -1846,37 +1855,37 @@ public final FunctionExpressionContext functionExpression() throws RecognitionEx try { enterOuterAlt(_localctx, 1); { - setState(284); + setState(288); functionName(); - setState(285); + setState(289); match(LP); - setState(295); + setState(299); _errHandler.sync(this); - switch ( getInterpreter().adaptivePredict(_input,20,_ctx) ) { + switch ( getInterpreter().adaptivePredict(_input,21,_ctx) ) { case 1: { - setState(286); + setState(290); match(ASTERISK); } break; case 2: { { - setState(287); + setState(291); booleanExpression(0); - setState(292); + setState(296); _errHandler.sync(this); _la = _input.LA(1); while (_la==COMMA) { { { - setState(288); + setState(292); match(COMMA); - setState(289); + setState(293); booleanExpression(0); } } - setState(294); + setState(298); _errHandler.sync(this); _la = _input.LA(1); } @@ -1884,7 +1893,7 @@ public final FunctionExpressionContext functionExpression() throws RecognitionEx } break; } - setState(297); + setState(301); match(RP); } } @@ -1930,7 +1939,7 @@ public final FunctionNameContext functionName() throws RecognitionException { try { enterOuterAlt(_localctx, 1); { - setState(299); + setState(303); identifierOrParameter(); } } @@ -1952,7 +1961,7 @@ public DataTypeContext(ParserRuleContext parent, int invokingState) { super(parent, invokingState); } @Override public int getRuleIndex() { return RULE_dataType; } - + @SuppressWarnings("this-escape") public DataTypeContext() { } public void copyFrom(DataTypeContext ctx) { @@ -1988,7 +1997,7 @@ public final DataTypeContext dataType() throws RecognitionException { _localctx = new ToDataTypeContext(_localctx); enterOuterAlt(_localctx, 1); { - setState(301); + setState(305); identifier(); } } @@ -2035,9 +2044,9 @@ public final RowCommandContext rowCommand() throws RecognitionException { try { enterOuterAlt(_localctx, 1); { - setState(303); + setState(307); match(ROW); - setState(304); + setState(308); fields(); } } @@ -2091,25 +2100,25 @@ public final FieldsContext fields() throws RecognitionException { int _alt; enterOuterAlt(_localctx, 1); { - setState(306); + setState(310); field(); - setState(311); + setState(315); _errHandler.sync(this); - _alt = getInterpreter().adaptivePredict(_input,21,_ctx); + _alt = getInterpreter().adaptivePredict(_input,22,_ctx); while ( _alt!=2 && _alt!=org.antlr.v4.runtime.atn.ATN.INVALID_ALT_NUMBER ) { if ( _alt==1 ) { { { - setState(307); + setState(311); match(COMMA); - setState(308); + setState(312); field(); } - } + } } - setState(313); + setState(317); _errHandler.sync(this); - _alt = getInterpreter().adaptivePredict(_input,21,_ctx); + _alt = getInterpreter().adaptivePredict(_input,22,_ctx); } } } @@ -2159,19 +2168,19 @@ public final FieldContext field() throws RecognitionException { try { enterOuterAlt(_localctx, 1); { - setState(317); + setState(321); _errHandler.sync(this); - switch ( getInterpreter().adaptivePredict(_input,22,_ctx) ) { + switch ( getInterpreter().adaptivePredict(_input,23,_ctx) ) { case 1: { - setState(314); + setState(318); qualifiedName(); - setState(315); + setState(319); match(ASSIGN); } break; } - setState(319); + setState(323); booleanExpression(0); } } @@ -2229,34 +2238,34 @@ public final FromCommandContext fromCommand() throws RecognitionException { int _alt; enterOuterAlt(_localctx, 1); { - setState(321); + setState(325); match(FROM); - setState(322); + setState(326); indexPattern(); - setState(327); + setState(331); _errHandler.sync(this); - _alt = getInterpreter().adaptivePredict(_input,23,_ctx); + _alt = getInterpreter().adaptivePredict(_input,24,_ctx); while ( _alt!=2 && _alt!=org.antlr.v4.runtime.atn.ATN.INVALID_ALT_NUMBER ) { if ( _alt==1 ) { { { - setState(323); + setState(327); match(COMMA); - setState(324); + setState(328); indexPattern(); } - } + } } - setState(329); + setState(333); _errHandler.sync(this); - _alt = getInterpreter().adaptivePredict(_input,23,_ctx); + _alt = getInterpreter().adaptivePredict(_input,24,_ctx); } - setState(331); + setState(335); _errHandler.sync(this); - switch ( getInterpreter().adaptivePredict(_input,24,_ctx) ) { + switch ( getInterpreter().adaptivePredict(_input,25,_ctx) ) { case 1: { - setState(330); + setState(334); metadata(); } break; @@ -2309,19 +2318,19 @@ public final IndexPatternContext indexPattern() throws RecognitionException { try { enterOuterAlt(_localctx, 1); { - setState(336); + setState(340); _errHandler.sync(this); - switch ( getInterpreter().adaptivePredict(_input,25,_ctx) ) { + switch ( getInterpreter().adaptivePredict(_input,26,_ctx) ) { case 1: { - setState(333); + setState(337); clusterString(); - setState(334); + setState(338); match(COLON); } break; } - setState(338); + setState(342); indexString(); } } @@ -2365,7 +2374,7 @@ public final ClusterStringContext clusterString() throws RecognitionException { try { enterOuterAlt(_localctx, 1); { - setState(340); + setState(344); match(UNQUOTED_SOURCE); } } @@ -2411,7 +2420,7 @@ public final IndexStringContext indexString() throws RecognitionException { try { enterOuterAlt(_localctx, 1); { - setState(342); + setState(346); _la = _input.LA(1); if ( !(_la==QUOTED_STRING || _la==UNQUOTED_SOURCE) ) { _errHandler.recoverInline(this); @@ -2466,20 +2475,20 @@ public final MetadataContext metadata() throws RecognitionException { MetadataContext _localctx = new MetadataContext(_ctx, getState()); enterRule(_localctx, 42, RULE_metadata); try { - setState(346); + setState(350); _errHandler.sync(this); switch (_input.LA(1)) { case METADATA: enterOuterAlt(_localctx, 1); { - setState(344); + setState(348); metadataOption(); } break; case OPENING_BRACKET: enterOuterAlt(_localctx, 2); { - setState(345); + setState(349); deprecated_metadata(); } break; @@ -2536,27 +2545,27 @@ public final MetadataOptionContext metadataOption() throws RecognitionException int _alt; enterOuterAlt(_localctx, 1); { - setState(348); + setState(352); match(METADATA); - setState(349); + setState(353); match(UNQUOTED_SOURCE); - setState(354); + setState(358); _errHandler.sync(this); - _alt = getInterpreter().adaptivePredict(_input,27,_ctx); + _alt = getInterpreter().adaptivePredict(_input,28,_ctx); while ( _alt!=2 && _alt!=org.antlr.v4.runtime.atn.ATN.INVALID_ALT_NUMBER ) { if ( _alt==1 ) { { { - setState(350); + setState(354); match(COMMA); - setState(351); + setState(355); match(UNQUOTED_SOURCE); } - } + } } - setState(356); + setState(360); _errHandler.sync(this); - _alt = getInterpreter().adaptivePredict(_input,27,_ctx); + _alt = getInterpreter().adaptivePredict(_input,28,_ctx); } } } @@ -2603,11 +2612,11 @@ public final Deprecated_metadataContext deprecated_metadata() throws Recognition try { enterOuterAlt(_localctx, 1); { - setState(357); + setState(361); match(OPENING_BRACKET); - setState(358); + setState(362); metadataOption(); - setState(359); + setState(363); match(CLOSING_BRACKET); } } @@ -2671,46 +2680,46 @@ public final MetricsCommandContext metricsCommand() throws RecognitionException int _alt; enterOuterAlt(_localctx, 1); { - setState(361); + setState(365); match(DEV_METRICS); - setState(362); + setState(366); indexPattern(); - setState(367); + setState(371); _errHandler.sync(this); - _alt = getInterpreter().adaptivePredict(_input,28,_ctx); + _alt = getInterpreter().adaptivePredict(_input,29,_ctx); while ( _alt!=2 && _alt!=org.antlr.v4.runtime.atn.ATN.INVALID_ALT_NUMBER ) { if ( _alt==1 ) { { { - setState(363); + setState(367); match(COMMA); - setState(364); + setState(368); indexPattern(); } - } + } } - setState(369); + setState(373); _errHandler.sync(this); - _alt = getInterpreter().adaptivePredict(_input,28,_ctx); + _alt = getInterpreter().adaptivePredict(_input,29,_ctx); } - setState(371); + setState(375); _errHandler.sync(this); - switch ( getInterpreter().adaptivePredict(_input,29,_ctx) ) { + switch ( getInterpreter().adaptivePredict(_input,30,_ctx) ) { case 1: { - setState(370); + setState(374); ((MetricsCommandContext)_localctx).aggregates = aggFields(); } break; } - setState(375); + setState(379); _errHandler.sync(this); - switch ( getInterpreter().adaptivePredict(_input,30,_ctx) ) { + switch ( getInterpreter().adaptivePredict(_input,31,_ctx) ) { case 1: { - setState(373); + setState(377); match(BY); - setState(374); + setState(378); ((MetricsCommandContext)_localctx).grouping = fields(); } break; @@ -2760,9 +2769,9 @@ public final EvalCommandContext evalCommand() throws RecognitionException { try { enterOuterAlt(_localctx, 1); { - setState(377); + setState(381); match(EVAL); - setState(378); + setState(382); fields(); } } @@ -2815,26 +2824,26 @@ public final StatsCommandContext statsCommand() throws RecognitionException { try { enterOuterAlt(_localctx, 1); { - setState(380); + setState(384); match(STATS); - setState(382); + setState(386); _errHandler.sync(this); - switch ( getInterpreter().adaptivePredict(_input,31,_ctx) ) { + switch ( getInterpreter().adaptivePredict(_input,32,_ctx) ) { case 1: { - setState(381); + setState(385); ((StatsCommandContext)_localctx).stats = aggFields(); } break; } - setState(386); + setState(390); _errHandler.sync(this); - switch ( getInterpreter().adaptivePredict(_input,32,_ctx) ) { + switch ( getInterpreter().adaptivePredict(_input,33,_ctx) ) { case 1: { - setState(384); + setState(388); match(BY); - setState(385); + setState(389); ((StatsCommandContext)_localctx).grouping = fields(); } break; @@ -2891,25 +2900,25 @@ public final AggFieldsContext aggFields() throws RecognitionException { int _alt; enterOuterAlt(_localctx, 1); { - setState(388); + setState(392); aggField(); - setState(393); + setState(397); _errHandler.sync(this); - _alt = getInterpreter().adaptivePredict(_input,33,_ctx); + _alt = getInterpreter().adaptivePredict(_input,34,_ctx); while ( _alt!=2 && _alt!=org.antlr.v4.runtime.atn.ATN.INVALID_ALT_NUMBER ) { if ( _alt==1 ) { { { - setState(389); + setState(393); match(COMMA); - setState(390); + setState(394); aggField(); } - } + } } - setState(395); + setState(399); _errHandler.sync(this); - _alt = getInterpreter().adaptivePredict(_input,33,_ctx); + _alt = getInterpreter().adaptivePredict(_input,34,_ctx); } } } @@ -2959,16 +2968,16 @@ public final AggFieldContext aggField() throws RecognitionException { try { enterOuterAlt(_localctx, 1); { - setState(396); + setState(400); field(); - setState(399); + setState(403); _errHandler.sync(this); - switch ( getInterpreter().adaptivePredict(_input,34,_ctx) ) { + switch ( getInterpreter().adaptivePredict(_input,35,_ctx) ) { case 1: { - setState(397); + setState(401); match(WHERE); - setState(398); + setState(402); booleanExpression(0); } break; @@ -3025,25 +3034,25 @@ public final QualifiedNameContext qualifiedName() throws RecognitionException { int _alt; enterOuterAlt(_localctx, 1); { - setState(401); + setState(405); identifierOrParameter(); - setState(406); + setState(410); _errHandler.sync(this); - _alt = getInterpreter().adaptivePredict(_input,35,_ctx); + _alt = getInterpreter().adaptivePredict(_input,36,_ctx); while ( _alt!=2 && _alt!=org.antlr.v4.runtime.atn.ATN.INVALID_ALT_NUMBER ) { if ( _alt==1 ) { { { - setState(402); + setState(406); match(DOT); - setState(403); + setState(407); identifierOrParameter(); } - } + } } - setState(408); + setState(412); _errHandler.sync(this); - _alt = getInterpreter().adaptivePredict(_input,35,_ctx); + _alt = getInterpreter().adaptivePredict(_input,36,_ctx); } } } @@ -3097,25 +3106,25 @@ public final QualifiedNamePatternContext qualifiedNamePattern() throws Recogniti int _alt; enterOuterAlt(_localctx, 1); { - setState(409); + setState(413); identifierPattern(); - setState(414); + setState(418); _errHandler.sync(this); - _alt = getInterpreter().adaptivePredict(_input,36,_ctx); + _alt = getInterpreter().adaptivePredict(_input,37,_ctx); while ( _alt!=2 && _alt!=org.antlr.v4.runtime.atn.ATN.INVALID_ALT_NUMBER ) { if ( _alt==1 ) { { { - setState(410); + setState(414); match(DOT); - setState(411); + setState(415); identifierPattern(); } - } + } } - setState(416); + setState(420); _errHandler.sync(this); - _alt = getInterpreter().adaptivePredict(_input,36,_ctx); + _alt = getInterpreter().adaptivePredict(_input,37,_ctx); } } } @@ -3169,25 +3178,25 @@ public final QualifiedNamePatternsContext qualifiedNamePatterns() throws Recogni int _alt; enterOuterAlt(_localctx, 1); { - setState(417); + setState(421); qualifiedNamePattern(); - setState(422); + setState(426); _errHandler.sync(this); - _alt = getInterpreter().adaptivePredict(_input,37,_ctx); + _alt = getInterpreter().adaptivePredict(_input,38,_ctx); while ( _alt!=2 && _alt!=org.antlr.v4.runtime.atn.ATN.INVALID_ALT_NUMBER ) { if ( _alt==1 ) { { { - setState(418); + setState(422); match(COMMA); - setState(419); + setState(423); qualifiedNamePattern(); } - } + } } - setState(424); + setState(428); _errHandler.sync(this); - _alt = getInterpreter().adaptivePredict(_input,37,_ctx); + _alt = getInterpreter().adaptivePredict(_input,38,_ctx); } } } @@ -3233,7 +3242,7 @@ public final IdentifierContext identifier() throws RecognitionException { try { enterOuterAlt(_localctx, 1); { - setState(425); + setState(429); _la = _input.LA(1); if ( !(_la==UNQUOTED_IDENTIFIER || _la==QUOTED_IDENTIFIER) ) { _errHandler.recoverInline(this); @@ -3286,22 +3295,22 @@ public final IdentifierPatternContext identifierPattern() throws RecognitionExce IdentifierPatternContext _localctx = new IdentifierPatternContext(_ctx, getState()); enterRule(_localctx, 66, RULE_identifierPattern); try { - setState(430); + setState(434); _errHandler.sync(this); - switch ( getInterpreter().adaptivePredict(_input,38,_ctx) ) { + switch ( getInterpreter().adaptivePredict(_input,39,_ctx) ) { case 1: enterOuterAlt(_localctx, 1); { - setState(427); + setState(431); match(ID_PATTERN); } break; case 2: enterOuterAlt(_localctx, 2); { - setState(428); + setState(432); if (!(this.isDevVersion())) throw new FailedPredicateException(this, "this.isDevVersion()"); - setState(429); + setState(433); parameter(); } break; @@ -3325,7 +3334,7 @@ public ConstantContext(ParserRuleContext parent, int invokingState) { super(parent, invokingState); } @Override public int getRuleIndex() { return RULE_constant; } - + @SuppressWarnings("this-escape") public ConstantContext() { } public void copyFrom(ConstantContext ctx) { @@ -3574,14 +3583,14 @@ public final ConstantContext constant() throws RecognitionException { enterRule(_localctx, 68, RULE_constant); int _la; try { - setState(474); + setState(478); _errHandler.sync(this); - switch ( getInterpreter().adaptivePredict(_input,42,_ctx) ) { + switch ( getInterpreter().adaptivePredict(_input,43,_ctx) ) { case 1: _localctx = new NullLiteralContext(_localctx); enterOuterAlt(_localctx, 1); { - setState(432); + setState(436); match(NULL); } break; @@ -3589,9 +3598,9 @@ public final ConstantContext constant() throws RecognitionException { _localctx = new QualifiedIntegerLiteralContext(_localctx); enterOuterAlt(_localctx, 2); { - setState(433); + setState(437); integerValue(); - setState(434); + setState(438); match(UNQUOTED_IDENTIFIER); } break; @@ -3599,7 +3608,7 @@ public final ConstantContext constant() throws RecognitionException { _localctx = new DecimalLiteralContext(_localctx); enterOuterAlt(_localctx, 3); { - setState(436); + setState(440); decimalValue(); } break; @@ -3607,7 +3616,7 @@ public final ConstantContext constant() throws RecognitionException { _localctx = new IntegerLiteralContext(_localctx); enterOuterAlt(_localctx, 4); { - setState(437); + setState(441); integerValue(); } break; @@ -3615,7 +3624,7 @@ public final ConstantContext constant() throws RecognitionException { _localctx = new BooleanLiteralContext(_localctx); enterOuterAlt(_localctx, 5); { - setState(438); + setState(442); booleanValue(); } break; @@ -3623,7 +3632,7 @@ public final ConstantContext constant() throws RecognitionException { _localctx = new InputParameterContext(_localctx); enterOuterAlt(_localctx, 6); { - setState(439); + setState(443); parameter(); } break; @@ -3631,7 +3640,7 @@ public final ConstantContext constant() throws RecognitionException { _localctx = new StringLiteralContext(_localctx); enterOuterAlt(_localctx, 7); { - setState(440); + setState(444); string(); } break; @@ -3639,27 +3648,27 @@ public final ConstantContext constant() throws RecognitionException { _localctx = new NumericArrayLiteralContext(_localctx); enterOuterAlt(_localctx, 8); { - setState(441); + setState(445); match(OPENING_BRACKET); - setState(442); + setState(446); numericValue(); - setState(447); + setState(451); _errHandler.sync(this); _la = _input.LA(1); while (_la==COMMA) { { { - setState(443); + setState(447); match(COMMA); - setState(444); + setState(448); numericValue(); } } - setState(449); + setState(453); _errHandler.sync(this); _la = _input.LA(1); } - setState(450); + setState(454); match(CLOSING_BRACKET); } break; @@ -3667,27 +3676,27 @@ public final ConstantContext constant() throws RecognitionException { _localctx = new BooleanArrayLiteralContext(_localctx); enterOuterAlt(_localctx, 9); { - setState(452); + setState(456); match(OPENING_BRACKET); - setState(453); + setState(457); booleanValue(); - setState(458); + setState(462); _errHandler.sync(this); _la = _input.LA(1); while (_la==COMMA) { { { - setState(454); + setState(458); match(COMMA); - setState(455); + setState(459); booleanValue(); } } - setState(460); + setState(464); _errHandler.sync(this); _la = _input.LA(1); } - setState(461); + setState(465); match(CLOSING_BRACKET); } break; @@ -3695,27 +3704,27 @@ public final ConstantContext constant() throws RecognitionException { _localctx = new StringArrayLiteralContext(_localctx); enterOuterAlt(_localctx, 10); { - setState(463); + setState(467); match(OPENING_BRACKET); - setState(464); + setState(468); string(); - setState(469); + setState(473); _errHandler.sync(this); _la = _input.LA(1); while (_la==COMMA) { { { - setState(465); + setState(469); match(COMMA); - setState(466); + setState(470); string(); } } - setState(471); + setState(475); _errHandler.sync(this); _la = _input.LA(1); } - setState(472); + setState(476); match(CLOSING_BRACKET); } break; @@ -3739,7 +3748,7 @@ public ParameterContext(ParserRuleContext parent, int invokingState) { super(parent, invokingState); } @Override public int getRuleIndex() { return RULE_parameter; } - + @SuppressWarnings("this-escape") public ParameterContext() { } public void copyFrom(ParameterContext ctx) { @@ -3789,14 +3798,14 @@ public final ParameterContext parameter() throws RecognitionException { ParameterContext _localctx = new ParameterContext(_ctx, getState()); enterRule(_localctx, 70, RULE_parameter); try { - setState(478); + setState(482); _errHandler.sync(this); switch (_input.LA(1)) { case PARAM: _localctx = new InputParamContext(_localctx); enterOuterAlt(_localctx, 1); { - setState(476); + setState(480); match(PARAM); } break; @@ -3804,7 +3813,7 @@ public final ParameterContext parameter() throws RecognitionException { _localctx = new InputNamedOrPositionalParamContext(_localctx); enterOuterAlt(_localctx, 2); { - setState(477); + setState(481); match(NAMED_OR_POSITIONAL_PARAM); } break; @@ -3855,22 +3864,22 @@ public final IdentifierOrParameterContext identifierOrParameter() throws Recogni IdentifierOrParameterContext _localctx = new IdentifierOrParameterContext(_ctx, getState()); enterRule(_localctx, 72, RULE_identifierOrParameter); try { - setState(483); + setState(487); _errHandler.sync(this); - switch ( getInterpreter().adaptivePredict(_input,44,_ctx) ) { + switch ( getInterpreter().adaptivePredict(_input,45,_ctx) ) { case 1: enterOuterAlt(_localctx, 1); { - setState(480); + setState(484); identifier(); } break; case 2: enterOuterAlt(_localctx, 2); { - setState(481); + setState(485); if (!(this.isDevVersion())) throw new FailedPredicateException(this, "this.isDevVersion()"); - setState(482); + setState(486); parameter(); } break; @@ -3917,9 +3926,9 @@ public final LimitCommandContext limitCommand() throws RecognitionException { try { enterOuterAlt(_localctx, 1); { - setState(485); + setState(489); match(LIMIT); - setState(486); + setState(490); match(INTEGER_LITERAL); } } @@ -3974,27 +3983,27 @@ public final SortCommandContext sortCommand() throws RecognitionException { int _alt; enterOuterAlt(_localctx, 1); { - setState(488); + setState(492); match(SORT); - setState(489); + setState(493); orderExpression(); - setState(494); + setState(498); _errHandler.sync(this); - _alt = getInterpreter().adaptivePredict(_input,45,_ctx); + _alt = getInterpreter().adaptivePredict(_input,46,_ctx); while ( _alt!=2 && _alt!=org.antlr.v4.runtime.atn.ATN.INVALID_ALT_NUMBER ) { if ( _alt==1 ) { { { - setState(490); + setState(494); match(COMMA); - setState(491); + setState(495); orderExpression(); } - } + } } - setState(496); + setState(500); _errHandler.sync(this); - _alt = getInterpreter().adaptivePredict(_input,45,_ctx); + _alt = getInterpreter().adaptivePredict(_input,46,_ctx); } } } @@ -4048,14 +4057,14 @@ public final OrderExpressionContext orderExpression() throws RecognitionExceptio try { enterOuterAlt(_localctx, 1); { - setState(497); + setState(501); booleanExpression(0); - setState(499); + setState(503); _errHandler.sync(this); - switch ( getInterpreter().adaptivePredict(_input,46,_ctx) ) { + switch ( getInterpreter().adaptivePredict(_input,47,_ctx) ) { case 1: { - setState(498); + setState(502); ((OrderExpressionContext)_localctx).ordering = _input.LT(1); _la = _input.LA(1); if ( !(_la==ASC || _la==DESC) ) { @@ -4069,14 +4078,14 @@ public final OrderExpressionContext orderExpression() throws RecognitionExceptio } break; } - setState(503); + setState(507); _errHandler.sync(this); - switch ( getInterpreter().adaptivePredict(_input,47,_ctx) ) { + switch ( getInterpreter().adaptivePredict(_input,48,_ctx) ) { case 1: { - setState(501); + setState(505); match(NULLS); - setState(502); + setState(506); ((OrderExpressionContext)_localctx).nullOrdering = _input.LT(1); _la = _input.LA(1); if ( !(_la==FIRST || _la==LAST) ) { @@ -4135,9 +4144,9 @@ public final KeepCommandContext keepCommand() throws RecognitionException { try { enterOuterAlt(_localctx, 1); { - setState(505); + setState(509); match(KEEP); - setState(506); + setState(510); qualifiedNamePatterns(); } } @@ -4184,9 +4193,9 @@ public final DropCommandContext dropCommand() throws RecognitionException { try { enterOuterAlt(_localctx, 1); { - setState(508); + setState(512); match(DROP); - setState(509); + setState(513); qualifiedNamePatterns(); } } @@ -4241,27 +4250,27 @@ public final RenameCommandContext renameCommand() throws RecognitionException { int _alt; enterOuterAlt(_localctx, 1); { - setState(511); + setState(515); match(RENAME); - setState(512); + setState(516); renameClause(); - setState(517); + setState(521); _errHandler.sync(this); - _alt = getInterpreter().adaptivePredict(_input,48,_ctx); + _alt = getInterpreter().adaptivePredict(_input,49,_ctx); while ( _alt!=2 && _alt!=org.antlr.v4.runtime.atn.ATN.INVALID_ALT_NUMBER ) { if ( _alt==1 ) { { { - setState(513); + setState(517); match(COMMA); - setState(514); + setState(518); renameClause(); } - } + } } - setState(519); + setState(523); _errHandler.sync(this); - _alt = getInterpreter().adaptivePredict(_input,48,_ctx); + _alt = getInterpreter().adaptivePredict(_input,49,_ctx); } } } @@ -4313,11 +4322,11 @@ public final RenameClauseContext renameClause() throws RecognitionException { try { enterOuterAlt(_localctx, 1); { - setState(520); + setState(524); ((RenameClauseContext)_localctx).oldName = qualifiedNamePattern(); - setState(521); + setState(525); match(AS); - setState(522); + setState(526); ((RenameClauseContext)_localctx).newName = qualifiedNamePattern(); } } @@ -4370,18 +4379,18 @@ public final DissectCommandContext dissectCommand() throws RecognitionException try { enterOuterAlt(_localctx, 1); { - setState(524); + setState(528); match(DISSECT); - setState(525); + setState(529); primaryExpression(0); - setState(526); + setState(530); string(); - setState(528); + setState(532); _errHandler.sync(this); - switch ( getInterpreter().adaptivePredict(_input,49,_ctx) ) { + switch ( getInterpreter().adaptivePredict(_input,50,_ctx) ) { case 1: { - setState(527); + setState(531); commandOptions(); } break; @@ -4434,11 +4443,11 @@ public final GrokCommandContext grokCommand() throws RecognitionException { try { enterOuterAlt(_localctx, 1); { - setState(530); + setState(534); match(GROK); - setState(531); + setState(535); primaryExpression(0); - setState(532); + setState(536); string(); } } @@ -4485,9 +4494,9 @@ public final MvExpandCommandContext mvExpandCommand() throws RecognitionExceptio try { enterOuterAlt(_localctx, 1); { - setState(534); + setState(538); match(MV_EXPAND); - setState(535); + setState(539); qualifiedName(); } } @@ -4541,25 +4550,25 @@ public final CommandOptionsContext commandOptions() throws RecognitionException int _alt; enterOuterAlt(_localctx, 1); { - setState(537); + setState(541); commandOption(); - setState(542); + setState(546); _errHandler.sync(this); - _alt = getInterpreter().adaptivePredict(_input,50,_ctx); + _alt = getInterpreter().adaptivePredict(_input,51,_ctx); while ( _alt!=2 && _alt!=org.antlr.v4.runtime.atn.ATN.INVALID_ALT_NUMBER ) { if ( _alt==1 ) { { { - setState(538); + setState(542); match(COMMA); - setState(539); + setState(543); commandOption(); } - } + } } - setState(544); + setState(548); _errHandler.sync(this); - _alt = getInterpreter().adaptivePredict(_input,50,_ctx); + _alt = getInterpreter().adaptivePredict(_input,51,_ctx); } } } @@ -4609,11 +4618,11 @@ public final CommandOptionContext commandOption() throws RecognitionException { try { enterOuterAlt(_localctx, 1); { - setState(545); + setState(549); identifier(); - setState(546); + setState(550); match(ASSIGN); - setState(547); + setState(551); constant(); } } @@ -4659,7 +4668,7 @@ public final BooleanValueContext booleanValue() throws RecognitionException { try { enterOuterAlt(_localctx, 1); { - setState(549); + setState(553); _la = _input.LA(1); if ( !(_la==FALSE || _la==TRUE) ) { _errHandler.recoverInline(this); @@ -4714,20 +4723,20 @@ public final NumericValueContext numericValue() throws RecognitionException { NumericValueContext _localctx = new NumericValueContext(_ctx, getState()); enterRule(_localctx, 100, RULE_numericValue); try { - setState(553); + setState(557); _errHandler.sync(this); - switch ( getInterpreter().adaptivePredict(_input,51,_ctx) ) { + switch ( getInterpreter().adaptivePredict(_input,52,_ctx) ) { case 1: enterOuterAlt(_localctx, 1); { - setState(551); + setState(555); decimalValue(); } break; case 2: enterOuterAlt(_localctx, 2); { - setState(552); + setState(556); integerValue(); } break; @@ -4776,12 +4785,12 @@ public final DecimalValueContext decimalValue() throws RecognitionException { try { enterOuterAlt(_localctx, 1); { - setState(556); + setState(560); _errHandler.sync(this); _la = _input.LA(1); if (_la==PLUS || _la==MINUS) { { - setState(555); + setState(559); _la = _input.LA(1); if ( !(_la==PLUS || _la==MINUS) ) { _errHandler.recoverInline(this); @@ -4794,7 +4803,7 @@ public final DecimalValueContext decimalValue() throws RecognitionException { } } - setState(558); + setState(562); match(DECIMAL_LITERAL); } } @@ -4841,12 +4850,12 @@ public final IntegerValueContext integerValue() throws RecognitionException { try { enterOuterAlt(_localctx, 1); { - setState(561); + setState(565); _errHandler.sync(this); _la = _input.LA(1); if (_la==PLUS || _la==MINUS) { { - setState(560); + setState(564); _la = _input.LA(1); if ( !(_la==PLUS || _la==MINUS) ) { _errHandler.recoverInline(this); @@ -4859,7 +4868,7 @@ public final IntegerValueContext integerValue() throws RecognitionException { } } - setState(563); + setState(567); match(INTEGER_LITERAL); } } @@ -4903,7 +4912,7 @@ public final StringContext string() throws RecognitionException { try { enterOuterAlt(_localctx, 1); { - setState(565); + setState(569); match(QUOTED_STRING); } } @@ -4953,7 +4962,7 @@ public final ComparisonOperatorContext comparisonOperator() throws RecognitionEx try { enterOuterAlt(_localctx, 1); { - setState(567); + setState(571); _la = _input.LA(1); if ( !((((_la) & ~0x3f) == 0 && ((1L << _la) & -432345564227567616L) != 0)) ) { _errHandler.recoverInline(this); @@ -5008,9 +5017,9 @@ public final ExplainCommandContext explainCommand() throws RecognitionException try { enterOuterAlt(_localctx, 1); { - setState(569); + setState(573); match(EXPLAIN); - setState(570); + setState(574); subqueryExpression(); } } @@ -5058,11 +5067,11 @@ public final SubqueryExpressionContext subqueryExpression() throws RecognitionEx try { enterOuterAlt(_localctx, 1); { - setState(572); + setState(576); match(OPENING_BRACKET); - setState(573); + setState(577); query(0); - setState(574); + setState(578); match(CLOSING_BRACKET); } } @@ -5084,7 +5093,7 @@ public ShowCommandContext(ParserRuleContext parent, int invokingState) { super(parent, invokingState); } @Override public int getRuleIndex() { return RULE_showCommand; } - + @SuppressWarnings("this-escape") public ShowCommandContext() { } public void copyFrom(ShowCommandContext ctx) { @@ -5119,9 +5128,9 @@ public final ShowCommandContext showCommand() throws RecognitionException { _localctx = new ShowInfoContext(_localctx); enterOuterAlt(_localctx, 1); { - setState(576); + setState(580); match(SHOW); - setState(577); + setState(581); match(INFO); } } @@ -5184,48 +5193,48 @@ public final EnrichCommandContext enrichCommand() throws RecognitionException { int _alt; enterOuterAlt(_localctx, 1); { - setState(579); + setState(583); match(ENRICH); - setState(580); + setState(584); ((EnrichCommandContext)_localctx).policyName = match(ENRICH_POLICY_NAME); - setState(583); + setState(587); _errHandler.sync(this); - switch ( getInterpreter().adaptivePredict(_input,54,_ctx) ) { + switch ( getInterpreter().adaptivePredict(_input,55,_ctx) ) { case 1: { - setState(581); + setState(585); match(ON); - setState(582); + setState(586); ((EnrichCommandContext)_localctx).matchField = qualifiedNamePattern(); } break; } - setState(594); + setState(598); _errHandler.sync(this); - switch ( getInterpreter().adaptivePredict(_input,56,_ctx) ) { + switch ( getInterpreter().adaptivePredict(_input,57,_ctx) ) { case 1: { - setState(585); + setState(589); match(WITH); - setState(586); + setState(590); enrichWithClause(); - setState(591); + setState(595); _errHandler.sync(this); - _alt = getInterpreter().adaptivePredict(_input,55,_ctx); + _alt = getInterpreter().adaptivePredict(_input,56,_ctx); while ( _alt!=2 && _alt!=org.antlr.v4.runtime.atn.ATN.INVALID_ALT_NUMBER ) { if ( _alt==1 ) { { { - setState(587); + setState(591); match(COMMA); - setState(588); + setState(592); enrichWithClause(); } - } + } } - setState(593); + setState(597); _errHandler.sync(this); - _alt = getInterpreter().adaptivePredict(_input,55,_ctx); + _alt = getInterpreter().adaptivePredict(_input,56,_ctx); } } break; @@ -5280,19 +5289,19 @@ public final EnrichWithClauseContext enrichWithClause() throws RecognitionExcept try { enterOuterAlt(_localctx, 1); { - setState(599); + setState(603); _errHandler.sync(this); - switch ( getInterpreter().adaptivePredict(_input,57,_ctx) ) { + switch ( getInterpreter().adaptivePredict(_input,58,_ctx) ) { case 1: { - setState(596); + setState(600); ((EnrichWithClauseContext)_localctx).newName = qualifiedNamePattern(); - setState(597); + setState(601); match(ASSIGN); } break; } - setState(601); + setState(605); ((EnrichWithClauseContext)_localctx).enrichField = qualifiedNamePattern(); } } @@ -5345,13 +5354,13 @@ public final LookupCommandContext lookupCommand() throws RecognitionException { try { enterOuterAlt(_localctx, 1); { - setState(603); + setState(607); match(DEV_LOOKUP); - setState(604); + setState(608); ((LookupCommandContext)_localctx).tableName = indexPattern(); - setState(605); + setState(609); match(ON); - setState(606); + setState(610); ((LookupCommandContext)_localctx).matchFields = qualifiedNamePatterns(); } } @@ -5404,18 +5413,18 @@ public final InlinestatsCommandContext inlinestatsCommand() throws RecognitionEx try { enterOuterAlt(_localctx, 1); { - setState(608); + setState(612); match(DEV_INLINESTATS); - setState(609); + setState(613); ((InlinestatsCommandContext)_localctx).stats = aggFields(); - setState(612); + setState(616); _errHandler.sync(this); - switch ( getInterpreter().adaptivePredict(_input,58,_ctx) ) { + switch ( getInterpreter().adaptivePredict(_input,59,_ctx) ) { case 1: { - setState(610); + setState(614); match(BY); - setState(611); + setState(615); ((InlinestatsCommandContext)_localctx).grouping = fields(); } break; @@ -5473,12 +5482,12 @@ public final JoinCommandContext joinCommand() throws RecognitionException { try { enterOuterAlt(_localctx, 1); { - setState(615); + setState(619); _errHandler.sync(this); _la = _input.LA(1); if ((((_la) & ~0x3f) == 0 && ((1L << _la) & 29360128L) != 0)) { { - setState(614); + setState(618); ((JoinCommandContext)_localctx).type = _input.LT(1); _la = _input.LA(1); if ( !((((_la) & ~0x3f) == 0 && ((1L << _la) & 29360128L) != 0)) ) { @@ -5492,11 +5501,11 @@ public final JoinCommandContext joinCommand() throws RecognitionException { } } - setState(617); + setState(621); match(DEV_JOIN); - setState(618); + setState(622); joinTarget(); - setState(619); + setState(623); joinCondition(); } } @@ -5549,16 +5558,16 @@ public final JoinTargetContext joinTarget() throws RecognitionException { try { enterOuterAlt(_localctx, 1); { - setState(621); + setState(625); ((JoinTargetContext)_localctx).index = identifier(); - setState(624); + setState(628); _errHandler.sync(this); _la = _input.LA(1); if (_la==AS) { { - setState(622); + setState(626); match(AS); - setState(623); + setState(627); ((JoinTargetContext)_localctx).alias = identifier(); } } @@ -5616,27 +5625,27 @@ public final JoinConditionContext joinCondition() throws RecognitionException { int _alt; enterOuterAlt(_localctx, 1); { - setState(626); + setState(630); match(ON); - setState(627); + setState(631); joinPredicate(); - setState(632); + setState(636); _errHandler.sync(this); - _alt = getInterpreter().adaptivePredict(_input,61,_ctx); + _alt = getInterpreter().adaptivePredict(_input,62,_ctx); while ( _alt!=2 && _alt!=org.antlr.v4.runtime.atn.ATN.INVALID_ALT_NUMBER ) { if ( _alt==1 ) { { { - setState(628); + setState(632); match(COMMA); - setState(629); + setState(633); joinPredicate(); } - } + } } - setState(634); + setState(638); _errHandler.sync(this); - _alt = getInterpreter().adaptivePredict(_input,61,_ctx); + _alt = getInterpreter().adaptivePredict(_input,62,_ctx); } } } @@ -5682,7 +5691,7 @@ public final JoinPredicateContext joinPredicate() throws RecognitionException { try { enterOuterAlt(_localctx, 1); { - setState(635); + setState(639); valueExpression(); } } @@ -5784,7 +5793,7 @@ private boolean identifierOrParameter_sempred(IdentifierOrParameterContext _loca } public static final String _serializedATN = - "\u0004\u0001\u0080\u027e\u0002\u0000\u0007\u0000\u0002\u0001\u0007\u0001"+ + "\u0004\u0001\u0080\u0282\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"+ @@ -5818,374 +5827,377 @@ private boolean identifierOrParameter_sempred(IdentifierOrParameterContext _loca "\b\u0005\n\u0005\f\u0005\u00da\t\u0005\u0001\u0006\u0001\u0006\u0003\u0006"+ "\u00de\b\u0006\u0001\u0006\u0001\u0006\u0001\u0006\u0001\u0006\u0001\u0006"+ "\u0003\u0006\u00e5\b\u0006\u0001\u0006\u0001\u0006\u0001\u0006\u0003\u0006"+ - "\u00ea\b\u0006\u0001\u0007\u0001\u0007\u0001\u0007\u0001\u0007\u0001\u0007"+ - "\u0003\u0007\u00f1\b\u0007\u0001\b\u0001\b\u0001\b\u0001\b\u0001\b\u0003"+ - "\b\u00f8\b\b\u0001\t\u0001\t\u0001\t\u0001\t\u0003\t\u00fe\b\t\u0001\t"+ - "\u0001\t\u0001\t\u0001\t\u0001\t\u0001\t\u0005\t\u0106\b\t\n\t\f\t\u0109"+ - "\t\t\u0001\n\u0001\n\u0001\n\u0001\n\u0001\n\u0001\n\u0001\n\u0001\n\u0003"+ - "\n\u0113\b\n\u0001\n\u0001\n\u0001\n\u0005\n\u0118\b\n\n\n\f\n\u011b\t"+ - "\n\u0001\u000b\u0001\u000b\u0001\u000b\u0001\u000b\u0001\u000b\u0001\u000b"+ - "\u0005\u000b\u0123\b\u000b\n\u000b\f\u000b\u0126\t\u000b\u0003\u000b\u0128"+ - "\b\u000b\u0001\u000b\u0001\u000b\u0001\f\u0001\f\u0001\r\u0001\r\u0001"+ - "\u000e\u0001\u000e\u0001\u000e\u0001\u000f\u0001\u000f\u0001\u000f\u0005"+ - "\u000f\u0136\b\u000f\n\u000f\f\u000f\u0139\t\u000f\u0001\u0010\u0001\u0010"+ - "\u0001\u0010\u0003\u0010\u013e\b\u0010\u0001\u0010\u0001\u0010\u0001\u0011"+ - "\u0001\u0011\u0001\u0011\u0001\u0011\u0005\u0011\u0146\b\u0011\n\u0011"+ - "\f\u0011\u0149\t\u0011\u0001\u0011\u0003\u0011\u014c\b\u0011\u0001\u0012"+ - "\u0001\u0012\u0001\u0012\u0003\u0012\u0151\b\u0012\u0001\u0012\u0001\u0012"+ - "\u0001\u0013\u0001\u0013\u0001\u0014\u0001\u0014\u0001\u0015\u0001\u0015"+ - "\u0003\u0015\u015b\b\u0015\u0001\u0016\u0001\u0016\u0001\u0016\u0001\u0016"+ - "\u0005\u0016\u0161\b\u0016\n\u0016\f\u0016\u0164\t\u0016\u0001\u0017\u0001"+ - "\u0017\u0001\u0017\u0001\u0017\u0001\u0018\u0001\u0018\u0001\u0018\u0001"+ - "\u0018\u0005\u0018\u016e\b\u0018\n\u0018\f\u0018\u0171\t\u0018\u0001\u0018"+ - "\u0003\u0018\u0174\b\u0018\u0001\u0018\u0001\u0018\u0003\u0018\u0178\b"+ - "\u0018\u0001\u0019\u0001\u0019\u0001\u0019\u0001\u001a\u0001\u001a\u0003"+ - "\u001a\u017f\b\u001a\u0001\u001a\u0001\u001a\u0003\u001a\u0183\b\u001a"+ - "\u0001\u001b\u0001\u001b\u0001\u001b\u0005\u001b\u0188\b\u001b\n\u001b"+ - "\f\u001b\u018b\t\u001b\u0001\u001c\u0001\u001c\u0001\u001c\u0003\u001c"+ - "\u0190\b\u001c\u0001\u001d\u0001\u001d\u0001\u001d\u0005\u001d\u0195\b"+ - "\u001d\n\u001d\f\u001d\u0198\t\u001d\u0001\u001e\u0001\u001e\u0001\u001e"+ - "\u0005\u001e\u019d\b\u001e\n\u001e\f\u001e\u01a0\t\u001e\u0001\u001f\u0001"+ - "\u001f\u0001\u001f\u0005\u001f\u01a5\b\u001f\n\u001f\f\u001f\u01a8\t\u001f"+ - "\u0001 \u0001 \u0001!\u0001!\u0001!\u0003!\u01af\b!\u0001\"\u0001\"\u0001"+ - "\"\u0001\"\u0001\"\u0001\"\u0001\"\u0001\"\u0001\"\u0001\"\u0001\"\u0001"+ - "\"\u0001\"\u0005\"\u01be\b\"\n\"\f\"\u01c1\t\"\u0001\"\u0001\"\u0001\""+ - "\u0001\"\u0001\"\u0001\"\u0005\"\u01c9\b\"\n\"\f\"\u01cc\t\"\u0001\"\u0001"+ - "\"\u0001\"\u0001\"\u0001\"\u0001\"\u0005\"\u01d4\b\"\n\"\f\"\u01d7\t\""+ - "\u0001\"\u0001\"\u0003\"\u01db\b\"\u0001#\u0001#\u0003#\u01df\b#\u0001"+ - "$\u0001$\u0001$\u0003$\u01e4\b$\u0001%\u0001%\u0001%\u0001&\u0001&\u0001"+ - "&\u0001&\u0005&\u01ed\b&\n&\f&\u01f0\t&\u0001\'\u0001\'\u0003\'\u01f4"+ - "\b\'\u0001\'\u0001\'\u0003\'\u01f8\b\'\u0001(\u0001(\u0001(\u0001)\u0001"+ - ")\u0001)\u0001*\u0001*\u0001*\u0001*\u0005*\u0204\b*\n*\f*\u0207\t*\u0001"+ - "+\u0001+\u0001+\u0001+\u0001,\u0001,\u0001,\u0001,\u0003,\u0211\b,\u0001"+ - "-\u0001-\u0001-\u0001-\u0001.\u0001.\u0001.\u0001/\u0001/\u0001/\u0005"+ - "/\u021d\b/\n/\f/\u0220\t/\u00010\u00010\u00010\u00010\u00011\u00011\u0001"+ - "2\u00012\u00032\u022a\b2\u00013\u00033\u022d\b3\u00013\u00013\u00014\u0003"+ - "4\u0232\b4\u00014\u00014\u00015\u00015\u00016\u00016\u00017\u00017\u0001"+ - "7\u00018\u00018\u00018\u00018\u00019\u00019\u00019\u0001:\u0001:\u0001"+ - ":\u0001:\u0003:\u0248\b:\u0001:\u0001:\u0001:\u0001:\u0005:\u024e\b:\n"+ - ":\f:\u0251\t:\u0003:\u0253\b:\u0001;\u0001;\u0001;\u0003;\u0258\b;\u0001"+ - ";\u0001;\u0001<\u0001<\u0001<\u0001<\u0001<\u0001=\u0001=\u0001=\u0001"+ - "=\u0003=\u0265\b=\u0001>\u0003>\u0268\b>\u0001>\u0001>\u0001>\u0001>\u0001"+ - "?\u0001?\u0001?\u0003?\u0271\b?\u0001@\u0001@\u0001@\u0001@\u0005@\u0277"+ - "\b@\n@\f@\u027a\t@\u0001A\u0001A\u0001A\u0000\u0004\u0002\n\u0012\u0014"+ - "B\u0000\u0002\u0004\u0006\b\n\f\u000e\u0010\u0012\u0014\u0016\u0018\u001a"+ - "\u001c\u001e \"$&(*,.02468:<>@BDFHJLNPRTVXZ\\^`bdfhjlnprtvxz|~\u0080\u0082"+ - "\u0000\t\u0001\u0000@A\u0001\u0000BD\u0002\u0000\u001e\u001eQQ\u0001\u0000"+ - "HI\u0002\u0000##((\u0002\u0000++..\u0002\u0000**88\u0002\u000099;?\u0001"+ - "\u0000\u0016\u0018\u0298\u0000\u0084\u0001\u0000\u0000\u0000\u0002\u0087"+ - "\u0001\u0000\u0000\u0000\u0004\u0098\u0001\u0000\u0000\u0000\u0006\u00ac"+ - "\u0001\u0000\u0000\u0000\b\u00ae\u0001\u0000\u0000\u0000\n\u00ce\u0001"+ - "\u0000\u0000\u0000\f\u00e9\u0001\u0000\u0000\u0000\u000e\u00eb\u0001\u0000"+ - "\u0000\u0000\u0010\u00f7\u0001\u0000\u0000\u0000\u0012\u00fd\u0001\u0000"+ - "\u0000\u0000\u0014\u0112\u0001\u0000\u0000\u0000\u0016\u011c\u0001\u0000"+ - "\u0000\u0000\u0018\u012b\u0001\u0000\u0000\u0000\u001a\u012d\u0001\u0000"+ - "\u0000\u0000\u001c\u012f\u0001\u0000\u0000\u0000\u001e\u0132\u0001\u0000"+ - "\u0000\u0000 \u013d\u0001\u0000\u0000\u0000\"\u0141\u0001\u0000\u0000"+ - "\u0000$\u0150\u0001\u0000\u0000\u0000&\u0154\u0001\u0000\u0000\u0000("+ - "\u0156\u0001\u0000\u0000\u0000*\u015a\u0001\u0000\u0000\u0000,\u015c\u0001"+ - "\u0000\u0000\u0000.\u0165\u0001\u0000\u0000\u00000\u0169\u0001\u0000\u0000"+ - "\u00002\u0179\u0001\u0000\u0000\u00004\u017c\u0001\u0000\u0000\u00006"+ - "\u0184\u0001\u0000\u0000\u00008\u018c\u0001\u0000\u0000\u0000:\u0191\u0001"+ - "\u0000\u0000\u0000<\u0199\u0001\u0000\u0000\u0000>\u01a1\u0001\u0000\u0000"+ - "\u0000@\u01a9\u0001\u0000\u0000\u0000B\u01ae\u0001\u0000\u0000\u0000D"+ - "\u01da\u0001\u0000\u0000\u0000F\u01de\u0001\u0000\u0000\u0000H\u01e3\u0001"+ - "\u0000\u0000\u0000J\u01e5\u0001\u0000\u0000\u0000L\u01e8\u0001\u0000\u0000"+ - "\u0000N\u01f1\u0001\u0000\u0000\u0000P\u01f9\u0001\u0000\u0000\u0000R"+ - "\u01fc\u0001\u0000\u0000\u0000T\u01ff\u0001\u0000\u0000\u0000V\u0208\u0001"+ - "\u0000\u0000\u0000X\u020c\u0001\u0000\u0000\u0000Z\u0212\u0001\u0000\u0000"+ - "\u0000\\\u0216\u0001\u0000\u0000\u0000^\u0219\u0001\u0000\u0000\u0000"+ - "`\u0221\u0001\u0000\u0000\u0000b\u0225\u0001\u0000\u0000\u0000d\u0229"+ - "\u0001\u0000\u0000\u0000f\u022c\u0001\u0000\u0000\u0000h\u0231\u0001\u0000"+ - "\u0000\u0000j\u0235\u0001\u0000\u0000\u0000l\u0237\u0001\u0000\u0000\u0000"+ - "n\u0239\u0001\u0000\u0000\u0000p\u023c\u0001\u0000\u0000\u0000r\u0240"+ - "\u0001\u0000\u0000\u0000t\u0243\u0001\u0000\u0000\u0000v\u0257\u0001\u0000"+ - "\u0000\u0000x\u025b\u0001\u0000\u0000\u0000z\u0260\u0001\u0000\u0000\u0000"+ - "|\u0267\u0001\u0000\u0000\u0000~\u026d\u0001\u0000\u0000\u0000\u0080\u0272"+ - "\u0001\u0000\u0000\u0000\u0082\u027b\u0001\u0000\u0000\u0000\u0084\u0085"+ - "\u0003\u0002\u0001\u0000\u0085\u0086\u0005\u0000\u0000\u0001\u0086\u0001"+ - "\u0001\u0000\u0000\u0000\u0087\u0088\u0006\u0001\uffff\uffff\u0000\u0088"+ - "\u0089\u0003\u0004\u0002\u0000\u0089\u008f\u0001\u0000\u0000\u0000\u008a"+ - "\u008b\n\u0001\u0000\u0000\u008b\u008c\u0005\u001d\u0000\u0000\u008c\u008e"+ - "\u0003\u0006\u0003\u0000\u008d\u008a\u0001\u0000\u0000\u0000\u008e\u0091"+ - "\u0001\u0000\u0000\u0000\u008f\u008d\u0001\u0000\u0000\u0000\u008f\u0090"+ - "\u0001\u0000\u0000\u0000\u0090\u0003\u0001\u0000\u0000\u0000\u0091\u008f"+ - "\u0001\u0000\u0000\u0000\u0092\u0099\u0003n7\u0000\u0093\u0099\u0003\""+ - "\u0011\u0000\u0094\u0099\u0003\u001c\u000e\u0000\u0095\u0099\u0003r9\u0000"+ - "\u0096\u0097\u0004\u0002\u0001\u0000\u0097\u0099\u00030\u0018\u0000\u0098"+ - "\u0092\u0001\u0000\u0000\u0000\u0098\u0093\u0001\u0000\u0000\u0000\u0098"+ - "\u0094\u0001\u0000\u0000\u0000\u0098\u0095\u0001\u0000\u0000\u0000\u0098"+ - "\u0096\u0001\u0000\u0000\u0000\u0099\u0005\u0001\u0000\u0000\u0000\u009a"+ - "\u00ad\u00032\u0019\u0000\u009b\u00ad\u0003\b\u0004\u0000\u009c\u00ad"+ - "\u0003P(\u0000\u009d\u00ad\u0003J%\u0000\u009e\u00ad\u00034\u001a\u0000"+ - "\u009f\u00ad\u0003L&\u0000\u00a0\u00ad\u0003R)\u0000\u00a1\u00ad\u0003"+ - "T*\u0000\u00a2\u00ad\u0003X,\u0000\u00a3\u00ad\u0003Z-\u0000\u00a4\u00ad"+ - "\u0003t:\u0000\u00a5\u00ad\u0003\\.\u0000\u00a6\u00a7\u0004\u0003\u0002"+ - "\u0000\u00a7\u00ad\u0003z=\u0000\u00a8\u00a9\u0004\u0003\u0003\u0000\u00a9"+ - "\u00ad\u0003x<\u0000\u00aa\u00ab\u0004\u0003\u0004\u0000\u00ab\u00ad\u0003"+ - "|>\u0000\u00ac\u009a\u0001\u0000\u0000\u0000\u00ac\u009b\u0001\u0000\u0000"+ - "\u0000\u00ac\u009c\u0001\u0000\u0000\u0000\u00ac\u009d\u0001\u0000\u0000"+ - "\u0000\u00ac\u009e\u0001\u0000\u0000\u0000\u00ac\u009f\u0001\u0000\u0000"+ - "\u0000\u00ac\u00a0\u0001\u0000\u0000\u0000\u00ac\u00a1\u0001\u0000\u0000"+ - "\u0000\u00ac\u00a2\u0001\u0000\u0000\u0000\u00ac\u00a3\u0001\u0000\u0000"+ - "\u0000\u00ac\u00a4\u0001\u0000\u0000\u0000\u00ac\u00a5\u0001\u0000\u0000"+ - "\u0000\u00ac\u00a6\u0001\u0000\u0000\u0000\u00ac\u00a8\u0001\u0000\u0000"+ - "\u0000\u00ac\u00aa\u0001\u0000\u0000\u0000\u00ad\u0007\u0001\u0000\u0000"+ - "\u0000\u00ae\u00af\u0005\u0010\u0000\u0000\u00af\u00b0\u0003\n\u0005\u0000"+ - "\u00b0\t\u0001\u0000\u0000\u0000\u00b1\u00b2\u0006\u0005\uffff\uffff\u0000"+ - "\u00b2\u00b3\u00051\u0000\u0000\u00b3\u00cf\u0003\n\u0005\b\u00b4\u00cf"+ - "\u0003\u0010\b\u0000\u00b5\u00cf\u0003\f\u0006\u0000\u00b6\u00b8\u0003"+ - "\u0010\b\u0000\u00b7\u00b9\u00051\u0000\u0000\u00b8\u00b7\u0001\u0000"+ - "\u0000\u0000\u00b8\u00b9\u0001\u0000\u0000\u0000\u00b9\u00ba\u0001\u0000"+ - "\u0000\u0000\u00ba\u00bb\u0005,\u0000\u0000\u00bb\u00bc\u00050\u0000\u0000"+ - "\u00bc\u00c1\u0003\u0010\b\u0000\u00bd\u00be\u0005\'\u0000\u0000\u00be"+ - "\u00c0\u0003\u0010\b\u0000\u00bf\u00bd\u0001\u0000\u0000\u0000\u00c0\u00c3"+ - "\u0001\u0000\u0000\u0000\u00c1\u00bf\u0001\u0000\u0000\u0000\u00c1\u00c2"+ - "\u0001\u0000\u0000\u0000\u00c2\u00c4\u0001\u0000\u0000\u0000\u00c3\u00c1"+ - "\u0001\u0000\u0000\u0000\u00c4\u00c5\u00057\u0000\u0000\u00c5\u00cf\u0001"+ - "\u0000\u0000\u0000\u00c6\u00c7\u0003\u0010\b\u0000\u00c7\u00c9\u0005-"+ - "\u0000\u0000\u00c8\u00ca\u00051\u0000\u0000\u00c9\u00c8\u0001\u0000\u0000"+ - "\u0000\u00c9\u00ca\u0001\u0000\u0000\u0000\u00ca\u00cb\u0001\u0000\u0000"+ - "\u0000\u00cb\u00cc\u00052\u0000\u0000\u00cc\u00cf\u0001\u0000\u0000\u0000"+ - "\u00cd\u00cf\u0003\u000e\u0007\u0000\u00ce\u00b1\u0001\u0000\u0000\u0000"+ - "\u00ce\u00b4\u0001\u0000\u0000\u0000\u00ce\u00b5\u0001\u0000\u0000\u0000"+ - "\u00ce\u00b6\u0001\u0000\u0000\u0000\u00ce\u00c6\u0001\u0000\u0000\u0000"+ - "\u00ce\u00cd\u0001\u0000\u0000\u0000\u00cf\u00d8\u0001\u0000\u0000\u0000"+ - "\u00d0\u00d1\n\u0005\u0000\u0000\u00d1\u00d2\u0005\"\u0000\u0000\u00d2"+ - "\u00d7\u0003\n\u0005\u0006\u00d3\u00d4\n\u0004\u0000\u0000\u00d4\u00d5"+ - "\u00054\u0000\u0000\u00d5\u00d7\u0003\n\u0005\u0005\u00d6\u00d0\u0001"+ - "\u0000\u0000\u0000\u00d6\u00d3\u0001\u0000\u0000\u0000\u00d7\u00da\u0001"+ - "\u0000\u0000\u0000\u00d8\u00d6\u0001\u0000\u0000\u0000\u00d8\u00d9\u0001"+ - "\u0000\u0000\u0000\u00d9\u000b\u0001\u0000\u0000\u0000\u00da\u00d8\u0001"+ - "\u0000\u0000\u0000\u00db\u00dd\u0003\u0010\b\u0000\u00dc\u00de\u00051"+ - "\u0000\u0000\u00dd\u00dc\u0001\u0000\u0000\u0000\u00dd\u00de\u0001\u0000"+ - "\u0000\u0000\u00de\u00df\u0001\u0000\u0000\u0000\u00df\u00e0\u0005/\u0000"+ - "\u0000\u00e0\u00e1\u0003j5\u0000\u00e1\u00ea\u0001\u0000\u0000\u0000\u00e2"+ - "\u00e4\u0003\u0010\b\u0000\u00e3\u00e5\u00051\u0000\u0000\u00e4\u00e3"+ - "\u0001\u0000\u0000\u0000\u00e4\u00e5\u0001\u0000\u0000\u0000\u00e5\u00e6"+ - "\u0001\u0000\u0000\u0000\u00e6\u00e7\u00056\u0000\u0000\u00e7\u00e8\u0003"+ - "j5\u0000\u00e8\u00ea\u0001\u0000\u0000\u0000\u00e9\u00db\u0001\u0000\u0000"+ + "\u00ea\b\u0006\u0001\u0007\u0001\u0007\u0001\u0007\u0003\u0007\u00ef\b"+ + "\u0007\u0001\u0007\u0001\u0007\u0001\u0007\u0001\u0007\u0003\u0007\u00f5"+ + "\b\u0007\u0001\b\u0001\b\u0001\b\u0001\b\u0001\b\u0003\b\u00fc\b\b\u0001"+ + "\t\u0001\t\u0001\t\u0001\t\u0003\t\u0102\b\t\u0001\t\u0001\t\u0001\t\u0001"+ + "\t\u0001\t\u0001\t\u0005\t\u010a\b\t\n\t\f\t\u010d\t\t\u0001\n\u0001\n"+ + "\u0001\n\u0001\n\u0001\n\u0001\n\u0001\n\u0001\n\u0003\n\u0117\b\n\u0001"+ + "\n\u0001\n\u0001\n\u0005\n\u011c\b\n\n\n\f\n\u011f\t\n\u0001\u000b\u0001"+ + "\u000b\u0001\u000b\u0001\u000b\u0001\u000b\u0001\u000b\u0005\u000b\u0127"+ + "\b\u000b\n\u000b\f\u000b\u012a\t\u000b\u0003\u000b\u012c\b\u000b\u0001"+ + "\u000b\u0001\u000b\u0001\f\u0001\f\u0001\r\u0001\r\u0001\u000e\u0001\u000e"+ + "\u0001\u000e\u0001\u000f\u0001\u000f\u0001\u000f\u0005\u000f\u013a\b\u000f"+ + "\n\u000f\f\u000f\u013d\t\u000f\u0001\u0010\u0001\u0010\u0001\u0010\u0003"+ + "\u0010\u0142\b\u0010\u0001\u0010\u0001\u0010\u0001\u0011\u0001\u0011\u0001"+ + "\u0011\u0001\u0011\u0005\u0011\u014a\b\u0011\n\u0011\f\u0011\u014d\t\u0011"+ + "\u0001\u0011\u0003\u0011\u0150\b\u0011\u0001\u0012\u0001\u0012\u0001\u0012"+ + "\u0003\u0012\u0155\b\u0012\u0001\u0012\u0001\u0012\u0001\u0013\u0001\u0013"+ + "\u0001\u0014\u0001\u0014\u0001\u0015\u0001\u0015\u0003\u0015\u015f\b\u0015"+ + "\u0001\u0016\u0001\u0016\u0001\u0016\u0001\u0016\u0005\u0016\u0165\b\u0016"+ + "\n\u0016\f\u0016\u0168\t\u0016\u0001\u0017\u0001\u0017\u0001\u0017\u0001"+ + "\u0017\u0001\u0018\u0001\u0018\u0001\u0018\u0001\u0018\u0005\u0018\u0172"+ + "\b\u0018\n\u0018\f\u0018\u0175\t\u0018\u0001\u0018\u0003\u0018\u0178\b"+ + "\u0018\u0001\u0018\u0001\u0018\u0003\u0018\u017c\b\u0018\u0001\u0019\u0001"+ + "\u0019\u0001\u0019\u0001\u001a\u0001\u001a\u0003\u001a\u0183\b\u001a\u0001"+ + "\u001a\u0001\u001a\u0003\u001a\u0187\b\u001a\u0001\u001b\u0001\u001b\u0001"+ + "\u001b\u0005\u001b\u018c\b\u001b\n\u001b\f\u001b\u018f\t\u001b\u0001\u001c"+ + "\u0001\u001c\u0001\u001c\u0003\u001c\u0194\b\u001c\u0001\u001d\u0001\u001d"+ + "\u0001\u001d\u0005\u001d\u0199\b\u001d\n\u001d\f\u001d\u019c\t\u001d\u0001"+ + "\u001e\u0001\u001e\u0001\u001e\u0005\u001e\u01a1\b\u001e\n\u001e\f\u001e"+ + "\u01a4\t\u001e\u0001\u001f\u0001\u001f\u0001\u001f\u0005\u001f\u01a9\b"+ + "\u001f\n\u001f\f\u001f\u01ac\t\u001f\u0001 \u0001 \u0001!\u0001!\u0001"+ + "!\u0003!\u01b3\b!\u0001\"\u0001\"\u0001\"\u0001\"\u0001\"\u0001\"\u0001"+ + "\"\u0001\"\u0001\"\u0001\"\u0001\"\u0001\"\u0001\"\u0005\"\u01c2\b\"\n"+ + "\"\f\"\u01c5\t\"\u0001\"\u0001\"\u0001\"\u0001\"\u0001\"\u0001\"\u0005"+ + "\"\u01cd\b\"\n\"\f\"\u01d0\t\"\u0001\"\u0001\"\u0001\"\u0001\"\u0001\""+ + "\u0001\"\u0005\"\u01d8\b\"\n\"\f\"\u01db\t\"\u0001\"\u0001\"\u0003\"\u01df"+ + "\b\"\u0001#\u0001#\u0003#\u01e3\b#\u0001$\u0001$\u0001$\u0003$\u01e8\b"+ + "$\u0001%\u0001%\u0001%\u0001&\u0001&\u0001&\u0001&\u0005&\u01f1\b&\n&"+ + "\f&\u01f4\t&\u0001\'\u0001\'\u0003\'\u01f8\b\'\u0001\'\u0001\'\u0003\'"+ + "\u01fc\b\'\u0001(\u0001(\u0001(\u0001)\u0001)\u0001)\u0001*\u0001*\u0001"+ + "*\u0001*\u0005*\u0208\b*\n*\f*\u020b\t*\u0001+\u0001+\u0001+\u0001+\u0001"+ + ",\u0001,\u0001,\u0001,\u0003,\u0215\b,\u0001-\u0001-\u0001-\u0001-\u0001"+ + ".\u0001.\u0001.\u0001/\u0001/\u0001/\u0005/\u0221\b/\n/\f/\u0224\t/\u0001"+ + "0\u00010\u00010\u00010\u00011\u00011\u00012\u00012\u00032\u022e\b2\u0001"+ + "3\u00033\u0231\b3\u00013\u00013\u00014\u00034\u0236\b4\u00014\u00014\u0001"+ + "5\u00015\u00016\u00016\u00017\u00017\u00017\u00018\u00018\u00018\u0001"+ + "8\u00019\u00019\u00019\u0001:\u0001:\u0001:\u0001:\u0003:\u024c\b:\u0001"+ + ":\u0001:\u0001:\u0001:\u0005:\u0252\b:\n:\f:\u0255\t:\u0003:\u0257\b:"+ + "\u0001;\u0001;\u0001;\u0003;\u025c\b;\u0001;\u0001;\u0001<\u0001<\u0001"+ + "<\u0001<\u0001<\u0001=\u0001=\u0001=\u0001=\u0003=\u0269\b=\u0001>\u0003"+ + ">\u026c\b>\u0001>\u0001>\u0001>\u0001>\u0001?\u0001?\u0001?\u0003?\u0275"+ + "\b?\u0001@\u0001@\u0001@\u0001@\u0005@\u027b\b@\n@\f@\u027e\t@\u0001A"+ + "\u0001A\u0001A\u0000\u0004\u0002\n\u0012\u0014B\u0000\u0002\u0004\u0006"+ + "\b\n\f\u000e\u0010\u0012\u0014\u0016\u0018\u001a\u001c\u001e \"$&(*,."+ + "02468:<>@BDFHJLNPRTVXZ\\^`bdfhjlnprtvxz|~\u0080\u0082\u0000\t\u0001\u0000"+ + "@A\u0001\u0000BD\u0002\u0000\u001e\u001eQQ\u0001\u0000HI\u0002\u0000#"+ + "#((\u0002\u0000++..\u0002\u0000**88\u0002\u000099;?\u0001\u0000\u0016"+ + "\u0018\u029d\u0000\u0084\u0001\u0000\u0000\u0000\u0002\u0087\u0001\u0000"+ + "\u0000\u0000\u0004\u0098\u0001\u0000\u0000\u0000\u0006\u00ac\u0001\u0000"+ + "\u0000\u0000\b\u00ae\u0001\u0000\u0000\u0000\n\u00ce\u0001\u0000\u0000"+ + "\u0000\f\u00e9\u0001\u0000\u0000\u0000\u000e\u00eb\u0001\u0000\u0000\u0000"+ + "\u0010\u00fb\u0001\u0000\u0000\u0000\u0012\u0101\u0001\u0000\u0000\u0000"+ + "\u0014\u0116\u0001\u0000\u0000\u0000\u0016\u0120\u0001\u0000\u0000\u0000"+ + "\u0018\u012f\u0001\u0000\u0000\u0000\u001a\u0131\u0001\u0000\u0000\u0000"+ + "\u001c\u0133\u0001\u0000\u0000\u0000\u001e\u0136\u0001\u0000\u0000\u0000"+ + " \u0141\u0001\u0000\u0000\u0000\"\u0145\u0001\u0000\u0000\u0000$\u0154"+ + "\u0001\u0000\u0000\u0000&\u0158\u0001\u0000\u0000\u0000(\u015a\u0001\u0000"+ + "\u0000\u0000*\u015e\u0001\u0000\u0000\u0000,\u0160\u0001\u0000\u0000\u0000"+ + ".\u0169\u0001\u0000\u0000\u00000\u016d\u0001\u0000\u0000\u00002\u017d"+ + "\u0001\u0000\u0000\u00004\u0180\u0001\u0000\u0000\u00006\u0188\u0001\u0000"+ + "\u0000\u00008\u0190\u0001\u0000\u0000\u0000:\u0195\u0001\u0000\u0000\u0000"+ + "<\u019d\u0001\u0000\u0000\u0000>\u01a5\u0001\u0000\u0000\u0000@\u01ad"+ + "\u0001\u0000\u0000\u0000B\u01b2\u0001\u0000\u0000\u0000D\u01de\u0001\u0000"+ + "\u0000\u0000F\u01e2\u0001\u0000\u0000\u0000H\u01e7\u0001\u0000\u0000\u0000"+ + "J\u01e9\u0001\u0000\u0000\u0000L\u01ec\u0001\u0000\u0000\u0000N\u01f5"+ + "\u0001\u0000\u0000\u0000P\u01fd\u0001\u0000\u0000\u0000R\u0200\u0001\u0000"+ + "\u0000\u0000T\u0203\u0001\u0000\u0000\u0000V\u020c\u0001\u0000\u0000\u0000"+ + "X\u0210\u0001\u0000\u0000\u0000Z\u0216\u0001\u0000\u0000\u0000\\\u021a"+ + "\u0001\u0000\u0000\u0000^\u021d\u0001\u0000\u0000\u0000`\u0225\u0001\u0000"+ + "\u0000\u0000b\u0229\u0001\u0000\u0000\u0000d\u022d\u0001\u0000\u0000\u0000"+ + "f\u0230\u0001\u0000\u0000\u0000h\u0235\u0001\u0000\u0000\u0000j\u0239"+ + "\u0001\u0000\u0000\u0000l\u023b\u0001\u0000\u0000\u0000n\u023d\u0001\u0000"+ + "\u0000\u0000p\u0240\u0001\u0000\u0000\u0000r\u0244\u0001\u0000\u0000\u0000"+ + "t\u0247\u0001\u0000\u0000\u0000v\u025b\u0001\u0000\u0000\u0000x\u025f"+ + "\u0001\u0000\u0000\u0000z\u0264\u0001\u0000\u0000\u0000|\u026b\u0001\u0000"+ + "\u0000\u0000~\u0271\u0001\u0000\u0000\u0000\u0080\u0276\u0001\u0000\u0000"+ + "\u0000\u0082\u027f\u0001\u0000\u0000\u0000\u0084\u0085\u0003\u0002\u0001"+ + "\u0000\u0085\u0086\u0005\u0000\u0000\u0001\u0086\u0001\u0001\u0000\u0000"+ + "\u0000\u0087\u0088\u0006\u0001\uffff\uffff\u0000\u0088\u0089\u0003\u0004"+ + "\u0002\u0000\u0089\u008f\u0001\u0000\u0000\u0000\u008a\u008b\n\u0001\u0000"+ + "\u0000\u008b\u008c\u0005\u001d\u0000\u0000\u008c\u008e\u0003\u0006\u0003"+ + "\u0000\u008d\u008a\u0001\u0000\u0000\u0000\u008e\u0091\u0001\u0000\u0000"+ + "\u0000\u008f\u008d\u0001\u0000\u0000\u0000\u008f\u0090\u0001\u0000\u0000"+ + "\u0000\u0090\u0003\u0001\u0000\u0000\u0000\u0091\u008f\u0001\u0000\u0000"+ + "\u0000\u0092\u0099\u0003n7\u0000\u0093\u0099\u0003\"\u0011\u0000\u0094"+ + "\u0099\u0003\u001c\u000e\u0000\u0095\u0099\u0003r9\u0000\u0096\u0097\u0004"+ + "\u0002\u0001\u0000\u0097\u0099\u00030\u0018\u0000\u0098\u0092\u0001\u0000"+ + "\u0000\u0000\u0098\u0093\u0001\u0000\u0000\u0000\u0098\u0094\u0001\u0000"+ + "\u0000\u0000\u0098\u0095\u0001\u0000\u0000\u0000\u0098\u0096\u0001\u0000"+ + "\u0000\u0000\u0099\u0005\u0001\u0000\u0000\u0000\u009a\u00ad\u00032\u0019"+ + "\u0000\u009b\u00ad\u0003\b\u0004\u0000\u009c\u00ad\u0003P(\u0000\u009d"+ + "\u00ad\u0003J%\u0000\u009e\u00ad\u00034\u001a\u0000\u009f\u00ad\u0003"+ + "L&\u0000\u00a0\u00ad\u0003R)\u0000\u00a1\u00ad\u0003T*\u0000\u00a2\u00ad"+ + "\u0003X,\u0000\u00a3\u00ad\u0003Z-\u0000\u00a4\u00ad\u0003t:\u0000\u00a5"+ + "\u00ad\u0003\\.\u0000\u00a6\u00a7\u0004\u0003\u0002\u0000\u00a7\u00ad"+ + "\u0003z=\u0000\u00a8\u00a9\u0004\u0003\u0003\u0000\u00a9\u00ad\u0003x"+ + "<\u0000\u00aa\u00ab\u0004\u0003\u0004\u0000\u00ab\u00ad\u0003|>\u0000"+ + "\u00ac\u009a\u0001\u0000\u0000\u0000\u00ac\u009b\u0001\u0000\u0000\u0000"+ + "\u00ac\u009c\u0001\u0000\u0000\u0000\u00ac\u009d\u0001\u0000\u0000\u0000"+ + "\u00ac\u009e\u0001\u0000\u0000\u0000\u00ac\u009f\u0001\u0000\u0000\u0000"+ + "\u00ac\u00a0\u0001\u0000\u0000\u0000\u00ac\u00a1\u0001\u0000\u0000\u0000"+ + "\u00ac\u00a2\u0001\u0000\u0000\u0000\u00ac\u00a3\u0001\u0000\u0000\u0000"+ + "\u00ac\u00a4\u0001\u0000\u0000\u0000\u00ac\u00a5\u0001\u0000\u0000\u0000"+ + "\u00ac\u00a6\u0001\u0000\u0000\u0000\u00ac\u00a8\u0001\u0000\u0000\u0000"+ + "\u00ac\u00aa\u0001\u0000\u0000\u0000\u00ad\u0007\u0001\u0000\u0000\u0000"+ + "\u00ae\u00af\u0005\u0010\u0000\u0000\u00af\u00b0\u0003\n\u0005\u0000\u00b0"+ + "\t\u0001\u0000\u0000\u0000\u00b1\u00b2\u0006\u0005\uffff\uffff\u0000\u00b2"+ + "\u00b3\u00051\u0000\u0000\u00b3\u00cf\u0003\n\u0005\b\u00b4\u00cf\u0003"+ + "\u0010\b\u0000\u00b5\u00cf\u0003\f\u0006\u0000\u00b6\u00b8\u0003\u0010"+ + "\b\u0000\u00b7\u00b9\u00051\u0000\u0000\u00b8\u00b7\u0001\u0000\u0000"+ + "\u0000\u00b8\u00b9\u0001\u0000\u0000\u0000\u00b9\u00ba\u0001\u0000\u0000"+ + "\u0000\u00ba\u00bb\u0005,\u0000\u0000\u00bb\u00bc\u00050\u0000\u0000\u00bc"+ + "\u00c1\u0003\u0010\b\u0000\u00bd\u00be\u0005\'\u0000\u0000\u00be\u00c0"+ + "\u0003\u0010\b\u0000\u00bf\u00bd\u0001\u0000\u0000\u0000\u00c0\u00c3\u0001"+ + "\u0000\u0000\u0000\u00c1\u00bf\u0001\u0000\u0000\u0000\u00c1\u00c2\u0001"+ + "\u0000\u0000\u0000\u00c2\u00c4\u0001\u0000\u0000\u0000\u00c3\u00c1\u0001"+ + "\u0000\u0000\u0000\u00c4\u00c5\u00057\u0000\u0000\u00c5\u00cf\u0001\u0000"+ + "\u0000\u0000\u00c6\u00c7\u0003\u0010\b\u0000\u00c7\u00c9\u0005-\u0000"+ + "\u0000\u00c8\u00ca\u00051\u0000\u0000\u00c9\u00c8\u0001\u0000\u0000\u0000"+ + "\u00c9\u00ca\u0001\u0000\u0000\u0000\u00ca\u00cb\u0001\u0000\u0000\u0000"+ + "\u00cb\u00cc\u00052\u0000\u0000\u00cc\u00cf\u0001\u0000\u0000\u0000\u00cd"+ + "\u00cf\u0003\u000e\u0007\u0000\u00ce\u00b1\u0001\u0000\u0000\u0000\u00ce"+ + "\u00b4\u0001\u0000\u0000\u0000\u00ce\u00b5\u0001\u0000\u0000\u0000\u00ce"+ + "\u00b6\u0001\u0000\u0000\u0000\u00ce\u00c6\u0001\u0000\u0000\u0000\u00ce"+ + "\u00cd\u0001\u0000\u0000\u0000\u00cf\u00d8\u0001\u0000\u0000\u0000\u00d0"+ + "\u00d1\n\u0005\u0000\u0000\u00d1\u00d2\u0005\"\u0000\u0000\u00d2\u00d7"+ + "\u0003\n\u0005\u0006\u00d3\u00d4\n\u0004\u0000\u0000\u00d4\u00d5\u0005"+ + "4\u0000\u0000\u00d5\u00d7\u0003\n\u0005\u0005\u00d6\u00d0\u0001\u0000"+ + "\u0000\u0000\u00d6\u00d3\u0001\u0000\u0000\u0000\u00d7\u00da\u0001\u0000"+ + "\u0000\u0000\u00d8\u00d6\u0001\u0000\u0000\u0000\u00d8\u00d9\u0001\u0000"+ + "\u0000\u0000\u00d9\u000b\u0001\u0000\u0000\u0000\u00da\u00d8\u0001\u0000"+ + "\u0000\u0000\u00db\u00dd\u0003\u0010\b\u0000\u00dc\u00de\u00051\u0000"+ + "\u0000\u00dd\u00dc\u0001\u0000\u0000\u0000\u00dd\u00de\u0001\u0000\u0000"+ + "\u0000\u00de\u00df\u0001\u0000\u0000\u0000\u00df\u00e0\u0005/\u0000\u0000"+ + "\u00e0\u00e1\u0003j5\u0000\u00e1\u00ea\u0001\u0000\u0000\u0000\u00e2\u00e4"+ + "\u0003\u0010\b\u0000\u00e3\u00e5\u00051\u0000\u0000\u00e4\u00e3\u0001"+ + "\u0000\u0000\u0000\u00e4\u00e5\u0001\u0000\u0000\u0000\u00e5\u00e6\u0001"+ + "\u0000\u0000\u0000\u00e6\u00e7\u00056\u0000\u0000\u00e7\u00e8\u0003j5"+ + "\u0000\u00e8\u00ea\u0001\u0000\u0000\u0000\u00e9\u00db\u0001\u0000\u0000"+ "\u0000\u00e9\u00e2\u0001\u0000\u0000\u0000\u00ea\r\u0001\u0000\u0000\u0000"+ - "\u00eb\u00ec\u0003:\u001d\u0000\u00ec\u00ed\u0005&\u0000\u0000\u00ed\u00f0"+ - "\u0003D\"\u0000\u00ee\u00ef\u0005%\u0000\u0000\u00ef\u00f1\u0003\u001a"+ - "\r\u0000\u00f0\u00ee\u0001\u0000\u0000\u0000\u00f0\u00f1\u0001\u0000\u0000"+ - "\u0000\u00f1\u000f\u0001\u0000\u0000\u0000\u00f2\u00f8\u0003\u0012\t\u0000"+ - "\u00f3\u00f4\u0003\u0012\t\u0000\u00f4\u00f5\u0003l6\u0000\u00f5\u00f6"+ - "\u0003\u0012\t\u0000\u00f6\u00f8\u0001\u0000\u0000\u0000\u00f7\u00f2\u0001"+ - "\u0000\u0000\u0000\u00f7\u00f3\u0001\u0000\u0000\u0000\u00f8\u0011\u0001"+ - "\u0000\u0000\u0000\u00f9\u00fa\u0006\t\uffff\uffff\u0000\u00fa\u00fe\u0003"+ - "\u0014\n\u0000\u00fb\u00fc\u0007\u0000\u0000\u0000\u00fc\u00fe\u0003\u0012"+ - "\t\u0003\u00fd\u00f9\u0001\u0000\u0000\u0000\u00fd\u00fb\u0001\u0000\u0000"+ - "\u0000\u00fe\u0107\u0001\u0000\u0000\u0000\u00ff\u0100\n\u0002\u0000\u0000"+ - "\u0100\u0101\u0007\u0001\u0000\u0000\u0101\u0106\u0003\u0012\t\u0003\u0102"+ - "\u0103\n\u0001\u0000\u0000\u0103\u0104\u0007\u0000\u0000\u0000\u0104\u0106"+ - "\u0003\u0012\t\u0002\u0105\u00ff\u0001\u0000\u0000\u0000\u0105\u0102\u0001"+ - "\u0000\u0000\u0000\u0106\u0109\u0001\u0000\u0000\u0000\u0107\u0105\u0001"+ - "\u0000\u0000\u0000\u0107\u0108\u0001\u0000\u0000\u0000\u0108\u0013\u0001"+ - "\u0000\u0000\u0000\u0109\u0107\u0001\u0000\u0000\u0000\u010a\u010b\u0006"+ - "\n\uffff\uffff\u0000\u010b\u0113\u0003D\"\u0000\u010c\u0113\u0003:\u001d"+ - "\u0000\u010d\u0113\u0003\u0016\u000b\u0000\u010e\u010f\u00050\u0000\u0000"+ - "\u010f\u0110\u0003\n\u0005\u0000\u0110\u0111\u00057\u0000\u0000\u0111"+ - "\u0113\u0001\u0000\u0000\u0000\u0112\u010a\u0001\u0000\u0000\u0000\u0112"+ - "\u010c\u0001\u0000\u0000\u0000\u0112\u010d\u0001\u0000\u0000\u0000\u0112"+ - "\u010e\u0001\u0000\u0000\u0000\u0113\u0119\u0001\u0000\u0000\u0000\u0114"+ - "\u0115\n\u0001\u0000\u0000\u0115\u0116\u0005%\u0000\u0000\u0116\u0118"+ - "\u0003\u001a\r\u0000\u0117\u0114\u0001\u0000\u0000\u0000\u0118\u011b\u0001"+ - "\u0000\u0000\u0000\u0119\u0117\u0001\u0000\u0000\u0000\u0119\u011a\u0001"+ - "\u0000\u0000\u0000\u011a\u0015\u0001\u0000\u0000\u0000\u011b\u0119\u0001"+ - "\u0000\u0000\u0000\u011c\u011d\u0003\u0018\f\u0000\u011d\u0127\u00050"+ - "\u0000\u0000\u011e\u0128\u0005B\u0000\u0000\u011f\u0124\u0003\n\u0005"+ - "\u0000\u0120\u0121\u0005\'\u0000\u0000\u0121\u0123\u0003\n\u0005\u0000"+ - "\u0122\u0120\u0001\u0000\u0000\u0000\u0123\u0126\u0001\u0000\u0000\u0000"+ - "\u0124\u0122\u0001\u0000\u0000\u0000\u0124\u0125\u0001\u0000\u0000\u0000"+ - "\u0125\u0128\u0001\u0000\u0000\u0000\u0126\u0124\u0001\u0000\u0000\u0000"+ - "\u0127\u011e\u0001\u0000\u0000\u0000\u0127\u011f\u0001\u0000\u0000\u0000"+ - "\u0127\u0128\u0001\u0000\u0000\u0000\u0128\u0129\u0001\u0000\u0000\u0000"+ - "\u0129\u012a\u00057\u0000\u0000\u012a\u0017\u0001\u0000\u0000\u0000\u012b"+ - "\u012c\u0003H$\u0000\u012c\u0019\u0001\u0000\u0000\u0000\u012d\u012e\u0003"+ - "@ \u0000\u012e\u001b\u0001\u0000\u0000\u0000\u012f\u0130\u0005\f\u0000"+ - "\u0000\u0130\u0131\u0003\u001e\u000f\u0000\u0131\u001d\u0001\u0000\u0000"+ - "\u0000\u0132\u0137\u0003 \u0010\u0000\u0133\u0134\u0005\'\u0000\u0000"+ - "\u0134\u0136\u0003 \u0010\u0000\u0135\u0133\u0001\u0000\u0000\u0000\u0136"+ - "\u0139\u0001\u0000\u0000\u0000\u0137\u0135\u0001\u0000\u0000\u0000\u0137"+ - "\u0138\u0001\u0000\u0000\u0000\u0138\u001f\u0001\u0000\u0000\u0000\u0139"+ - "\u0137\u0001\u0000\u0000\u0000\u013a\u013b\u0003:\u001d\u0000\u013b\u013c"+ - "\u0005$\u0000\u0000\u013c\u013e\u0001\u0000\u0000\u0000\u013d\u013a\u0001"+ - "\u0000\u0000\u0000\u013d\u013e\u0001\u0000\u0000\u0000\u013e\u013f\u0001"+ - "\u0000\u0000\u0000\u013f\u0140\u0003\n\u0005\u0000\u0140!\u0001\u0000"+ - "\u0000\u0000\u0141\u0142\u0005\u0006\u0000\u0000\u0142\u0147\u0003$\u0012"+ - "\u0000\u0143\u0144\u0005\'\u0000\u0000\u0144\u0146\u0003$\u0012\u0000"+ - "\u0145\u0143\u0001\u0000\u0000\u0000\u0146\u0149\u0001\u0000\u0000\u0000"+ - "\u0147\u0145\u0001\u0000\u0000\u0000\u0147\u0148\u0001\u0000\u0000\u0000"+ - "\u0148\u014b\u0001\u0000\u0000\u0000\u0149\u0147\u0001\u0000\u0000\u0000"+ - "\u014a\u014c\u0003*\u0015\u0000\u014b\u014a\u0001\u0000\u0000\u0000\u014b"+ - "\u014c\u0001\u0000\u0000\u0000\u014c#\u0001\u0000\u0000\u0000\u014d\u014e"+ - "\u0003&\u0013\u0000\u014e\u014f\u0005&\u0000\u0000\u014f\u0151\u0001\u0000"+ - "\u0000\u0000\u0150\u014d\u0001\u0000\u0000\u0000\u0150\u0151\u0001\u0000"+ - "\u0000\u0000\u0151\u0152\u0001\u0000\u0000\u0000\u0152\u0153\u0003(\u0014"+ - "\u0000\u0153%\u0001\u0000\u0000\u0000\u0154\u0155\u0005Q\u0000\u0000\u0155"+ - "\'\u0001\u0000\u0000\u0000\u0156\u0157\u0007\u0002\u0000\u0000\u0157)"+ - "\u0001\u0000\u0000\u0000\u0158\u015b\u0003,\u0016\u0000\u0159\u015b\u0003"+ - ".\u0017\u0000\u015a\u0158\u0001\u0000\u0000\u0000\u015a\u0159\u0001\u0000"+ - "\u0000\u0000\u015b+\u0001\u0000\u0000\u0000\u015c\u015d\u0005P\u0000\u0000"+ - "\u015d\u0162\u0005Q\u0000\u0000\u015e\u015f\u0005\'\u0000\u0000\u015f"+ - "\u0161\u0005Q\u0000\u0000\u0160\u015e\u0001\u0000\u0000\u0000\u0161\u0164"+ - "\u0001\u0000\u0000\u0000\u0162\u0160\u0001\u0000\u0000\u0000\u0162\u0163"+ - "\u0001\u0000\u0000\u0000\u0163-\u0001\u0000\u0000\u0000\u0164\u0162\u0001"+ - "\u0000\u0000\u0000\u0165\u0166\u0005F\u0000\u0000\u0166\u0167\u0003,\u0016"+ - "\u0000\u0167\u0168\u0005G\u0000\u0000\u0168/\u0001\u0000\u0000\u0000\u0169"+ - "\u016a\u0005\u0013\u0000\u0000\u016a\u016f\u0003$\u0012\u0000\u016b\u016c"+ - "\u0005\'\u0000\u0000\u016c\u016e\u0003$\u0012\u0000\u016d\u016b\u0001"+ - "\u0000\u0000\u0000\u016e\u0171\u0001\u0000\u0000\u0000\u016f\u016d\u0001"+ - "\u0000\u0000\u0000\u016f\u0170\u0001\u0000\u0000\u0000\u0170\u0173\u0001"+ - "\u0000\u0000\u0000\u0171\u016f\u0001\u0000\u0000\u0000\u0172\u0174\u0003"+ - "6\u001b\u0000\u0173\u0172\u0001\u0000\u0000\u0000\u0173\u0174\u0001\u0000"+ - "\u0000\u0000\u0174\u0177\u0001\u0000\u0000\u0000\u0175\u0176\u0005!\u0000"+ - "\u0000\u0176\u0178\u0003\u001e\u000f\u0000\u0177\u0175\u0001\u0000\u0000"+ - "\u0000\u0177\u0178\u0001\u0000\u0000\u0000\u01781\u0001\u0000\u0000\u0000"+ - "\u0179\u017a\u0005\u0004\u0000\u0000\u017a\u017b\u0003\u001e\u000f\u0000"+ - "\u017b3\u0001\u0000\u0000\u0000\u017c\u017e\u0005\u000f\u0000\u0000\u017d"+ - "\u017f\u00036\u001b\u0000\u017e\u017d\u0001\u0000\u0000\u0000\u017e\u017f"+ - "\u0001\u0000\u0000\u0000\u017f\u0182\u0001\u0000\u0000\u0000\u0180\u0181"+ - "\u0005!\u0000\u0000\u0181\u0183\u0003\u001e\u000f\u0000\u0182\u0180\u0001"+ - "\u0000\u0000\u0000\u0182\u0183\u0001\u0000\u0000\u0000\u01835\u0001\u0000"+ - "\u0000\u0000\u0184\u0189\u00038\u001c\u0000\u0185\u0186\u0005\'\u0000"+ - "\u0000\u0186\u0188\u00038\u001c\u0000\u0187\u0185\u0001\u0000\u0000\u0000"+ - "\u0188\u018b\u0001\u0000\u0000\u0000\u0189\u0187\u0001\u0000\u0000\u0000"+ - "\u0189\u018a\u0001\u0000\u0000\u0000\u018a7\u0001\u0000\u0000\u0000\u018b"+ - "\u0189\u0001\u0000\u0000\u0000\u018c\u018f\u0003 \u0010\u0000\u018d\u018e"+ - "\u0005\u0010\u0000\u0000\u018e\u0190\u0003\n\u0005\u0000\u018f\u018d\u0001"+ - "\u0000\u0000\u0000\u018f\u0190\u0001\u0000\u0000\u0000\u01909\u0001\u0000"+ - "\u0000\u0000\u0191\u0196\u0003H$\u0000\u0192\u0193\u0005)\u0000\u0000"+ - "\u0193\u0195\u0003H$\u0000\u0194\u0192\u0001\u0000\u0000\u0000\u0195\u0198"+ - "\u0001\u0000\u0000\u0000\u0196\u0194\u0001\u0000\u0000\u0000\u0196\u0197"+ - "\u0001\u0000\u0000\u0000\u0197;\u0001\u0000\u0000\u0000\u0198\u0196\u0001"+ - "\u0000\u0000\u0000\u0199\u019e\u0003B!\u0000\u019a\u019b\u0005)\u0000"+ - "\u0000\u019b\u019d\u0003B!\u0000\u019c\u019a\u0001\u0000\u0000\u0000\u019d"+ - "\u01a0\u0001\u0000\u0000\u0000\u019e\u019c\u0001\u0000\u0000\u0000\u019e"+ - "\u019f\u0001\u0000\u0000\u0000\u019f=\u0001\u0000\u0000\u0000\u01a0\u019e"+ - "\u0001\u0000\u0000\u0000\u01a1\u01a6\u0003<\u001e\u0000\u01a2\u01a3\u0005"+ - "\'\u0000\u0000\u01a3\u01a5\u0003<\u001e\u0000\u01a4\u01a2\u0001\u0000"+ - "\u0000\u0000\u01a5\u01a8\u0001\u0000\u0000\u0000\u01a6\u01a4\u0001\u0000"+ - "\u0000\u0000\u01a6\u01a7\u0001\u0000\u0000\u0000\u01a7?\u0001\u0000\u0000"+ - "\u0000\u01a8\u01a6\u0001\u0000\u0000\u0000\u01a9\u01aa\u0007\u0003\u0000"+ - "\u0000\u01aaA\u0001\u0000\u0000\u0000\u01ab\u01af\u0005U\u0000\u0000\u01ac"+ - "\u01ad\u0004!\n\u0000\u01ad\u01af\u0003F#\u0000\u01ae\u01ab\u0001\u0000"+ - "\u0000\u0000\u01ae\u01ac\u0001\u0000\u0000\u0000\u01afC\u0001\u0000\u0000"+ - "\u0000\u01b0\u01db\u00052\u0000\u0000\u01b1\u01b2\u0003h4\u0000\u01b2"+ - "\u01b3\u0005H\u0000\u0000\u01b3\u01db\u0001\u0000\u0000\u0000\u01b4\u01db"+ - "\u0003f3\u0000\u01b5\u01db\u0003h4\u0000\u01b6\u01db\u0003b1\u0000\u01b7"+ - "\u01db\u0003F#\u0000\u01b8\u01db\u0003j5\u0000\u01b9\u01ba\u0005F\u0000"+ - "\u0000\u01ba\u01bf\u0003d2\u0000\u01bb\u01bc\u0005\'\u0000\u0000\u01bc"+ - "\u01be\u0003d2\u0000\u01bd\u01bb\u0001\u0000\u0000\u0000\u01be\u01c1\u0001"+ - "\u0000\u0000\u0000\u01bf\u01bd\u0001\u0000\u0000\u0000\u01bf\u01c0\u0001"+ - "\u0000\u0000\u0000\u01c0\u01c2\u0001\u0000\u0000\u0000\u01c1\u01bf\u0001"+ - "\u0000\u0000\u0000\u01c2\u01c3\u0005G\u0000\u0000\u01c3\u01db\u0001\u0000"+ - "\u0000\u0000\u01c4\u01c5\u0005F\u0000\u0000\u01c5\u01ca\u0003b1\u0000"+ - "\u01c6\u01c7\u0005\'\u0000\u0000\u01c7\u01c9\u0003b1\u0000\u01c8\u01c6"+ - "\u0001\u0000\u0000\u0000\u01c9\u01cc\u0001\u0000\u0000\u0000\u01ca\u01c8"+ - "\u0001\u0000\u0000\u0000\u01ca\u01cb\u0001\u0000\u0000\u0000\u01cb\u01cd"+ - "\u0001\u0000\u0000\u0000\u01cc\u01ca\u0001\u0000\u0000\u0000\u01cd\u01ce"+ - "\u0005G\u0000\u0000\u01ce\u01db\u0001\u0000\u0000\u0000\u01cf\u01d0\u0005"+ - "F\u0000\u0000\u01d0\u01d5\u0003j5\u0000\u01d1\u01d2\u0005\'\u0000\u0000"+ - "\u01d2\u01d4\u0003j5\u0000\u01d3\u01d1\u0001\u0000\u0000\u0000\u01d4\u01d7"+ - "\u0001\u0000\u0000\u0000\u01d5\u01d3\u0001\u0000\u0000\u0000\u01d5\u01d6"+ - "\u0001\u0000\u0000\u0000\u01d6\u01d8\u0001\u0000\u0000\u0000\u01d7\u01d5"+ - "\u0001\u0000\u0000\u0000\u01d8\u01d9\u0005G\u0000\u0000\u01d9\u01db\u0001"+ - "\u0000\u0000\u0000\u01da\u01b0\u0001\u0000\u0000\u0000\u01da\u01b1\u0001"+ - "\u0000\u0000\u0000\u01da\u01b4\u0001\u0000\u0000\u0000\u01da\u01b5\u0001"+ - "\u0000\u0000\u0000\u01da\u01b6\u0001\u0000\u0000\u0000\u01da\u01b7\u0001"+ - "\u0000\u0000\u0000\u01da\u01b8\u0001\u0000\u0000\u0000\u01da\u01b9\u0001"+ - "\u0000\u0000\u0000\u01da\u01c4\u0001\u0000\u0000\u0000\u01da\u01cf\u0001"+ - "\u0000\u0000\u0000\u01dbE\u0001\u0000\u0000\u0000\u01dc\u01df\u00055\u0000"+ - "\u0000\u01dd\u01df\u0005E\u0000\u0000\u01de\u01dc\u0001\u0000\u0000\u0000"+ - "\u01de\u01dd\u0001\u0000\u0000\u0000\u01dfG\u0001\u0000\u0000\u0000\u01e0"+ - "\u01e4\u0003@ \u0000\u01e1\u01e2\u0004$\u000b\u0000\u01e2\u01e4\u0003"+ - "F#\u0000\u01e3\u01e0\u0001\u0000\u0000\u0000\u01e3\u01e1\u0001\u0000\u0000"+ - "\u0000\u01e4I\u0001\u0000\u0000\u0000\u01e5\u01e6\u0005\t\u0000\u0000"+ - "\u01e6\u01e7\u0005\u001f\u0000\u0000\u01e7K\u0001\u0000\u0000\u0000\u01e8"+ - "\u01e9\u0005\u000e\u0000\u0000\u01e9\u01ee\u0003N\'\u0000\u01ea\u01eb"+ - "\u0005\'\u0000\u0000\u01eb\u01ed\u0003N\'\u0000\u01ec\u01ea\u0001\u0000"+ - "\u0000\u0000\u01ed\u01f0\u0001\u0000\u0000\u0000\u01ee\u01ec\u0001\u0000"+ - "\u0000\u0000\u01ee\u01ef\u0001\u0000\u0000\u0000\u01efM\u0001\u0000\u0000"+ - "\u0000\u01f0\u01ee\u0001\u0000\u0000\u0000\u01f1\u01f3\u0003\n\u0005\u0000"+ - "\u01f2\u01f4\u0007\u0004\u0000\u0000\u01f3\u01f2\u0001\u0000\u0000\u0000"+ - "\u01f3\u01f4\u0001\u0000\u0000\u0000\u01f4\u01f7\u0001\u0000\u0000\u0000"+ - "\u01f5\u01f6\u00053\u0000\u0000\u01f6\u01f8\u0007\u0005\u0000\u0000\u01f7"+ - "\u01f5\u0001\u0000\u0000\u0000\u01f7\u01f8\u0001\u0000\u0000\u0000\u01f8"+ - "O\u0001\u0000\u0000\u0000\u01f9\u01fa\u0005\b\u0000\u0000\u01fa\u01fb"+ - "\u0003>\u001f\u0000\u01fbQ\u0001\u0000\u0000\u0000\u01fc\u01fd\u0005\u0002"+ - "\u0000\u0000\u01fd\u01fe\u0003>\u001f\u0000\u01feS\u0001\u0000\u0000\u0000"+ - "\u01ff\u0200\u0005\u000b\u0000\u0000\u0200\u0205\u0003V+\u0000\u0201\u0202"+ - "\u0005\'\u0000\u0000\u0202\u0204\u0003V+\u0000\u0203\u0201\u0001\u0000"+ - "\u0000\u0000\u0204\u0207\u0001\u0000\u0000\u0000\u0205\u0203\u0001\u0000"+ - "\u0000\u0000\u0205\u0206\u0001\u0000\u0000\u0000\u0206U\u0001\u0000\u0000"+ - "\u0000\u0207\u0205\u0001\u0000\u0000\u0000\u0208\u0209\u0003<\u001e\u0000"+ - "\u0209\u020a\u0005Y\u0000\u0000\u020a\u020b\u0003<\u001e\u0000\u020bW"+ - "\u0001\u0000\u0000\u0000\u020c\u020d\u0005\u0001\u0000\u0000\u020d\u020e"+ - "\u0003\u0014\n\u0000\u020e\u0210\u0003j5\u0000\u020f\u0211\u0003^/\u0000"+ - "\u0210\u020f\u0001\u0000\u0000\u0000\u0210\u0211\u0001\u0000\u0000\u0000"+ - "\u0211Y\u0001\u0000\u0000\u0000\u0212\u0213\u0005\u0007\u0000\u0000\u0213"+ - "\u0214\u0003\u0014\n\u0000\u0214\u0215\u0003j5\u0000\u0215[\u0001\u0000"+ - "\u0000\u0000\u0216\u0217\u0005\n\u0000\u0000\u0217\u0218\u0003:\u001d"+ - "\u0000\u0218]\u0001\u0000\u0000\u0000\u0219\u021e\u0003`0\u0000\u021a"+ - "\u021b\u0005\'\u0000\u0000\u021b\u021d\u0003`0\u0000\u021c\u021a\u0001"+ - "\u0000\u0000\u0000\u021d\u0220\u0001\u0000\u0000\u0000\u021e\u021c\u0001"+ - "\u0000\u0000\u0000\u021e\u021f\u0001\u0000\u0000\u0000\u021f_\u0001\u0000"+ - "\u0000\u0000\u0220\u021e\u0001\u0000\u0000\u0000\u0221\u0222\u0003@ \u0000"+ - "\u0222\u0223\u0005$\u0000\u0000\u0223\u0224\u0003D\"\u0000\u0224a\u0001"+ - "\u0000\u0000\u0000\u0225\u0226\u0007\u0006\u0000\u0000\u0226c\u0001\u0000"+ - "\u0000\u0000\u0227\u022a\u0003f3\u0000\u0228\u022a\u0003h4\u0000\u0229"+ - "\u0227\u0001\u0000\u0000\u0000\u0229\u0228\u0001\u0000\u0000\u0000\u022a"+ - "e\u0001\u0000\u0000\u0000\u022b\u022d\u0007\u0000\u0000\u0000\u022c\u022b"+ - "\u0001\u0000\u0000\u0000\u022c\u022d\u0001\u0000\u0000\u0000\u022d\u022e"+ - "\u0001\u0000\u0000\u0000\u022e\u022f\u0005 \u0000\u0000\u022fg\u0001\u0000"+ - "\u0000\u0000\u0230\u0232\u0007\u0000\u0000\u0000\u0231\u0230\u0001\u0000"+ - "\u0000\u0000\u0231\u0232\u0001\u0000\u0000\u0000\u0232\u0233\u0001\u0000"+ - "\u0000\u0000\u0233\u0234\u0005\u001f\u0000\u0000\u0234i\u0001\u0000\u0000"+ - "\u0000\u0235\u0236\u0005\u001e\u0000\u0000\u0236k\u0001\u0000\u0000\u0000"+ - "\u0237\u0238\u0007\u0007\u0000\u0000\u0238m\u0001\u0000\u0000\u0000\u0239"+ - "\u023a\u0005\u0005\u0000\u0000\u023a\u023b\u0003p8\u0000\u023bo\u0001"+ - "\u0000\u0000\u0000\u023c\u023d\u0005F\u0000\u0000\u023d\u023e\u0003\u0002"+ - "\u0001\u0000\u023e\u023f\u0005G\u0000\u0000\u023fq\u0001\u0000\u0000\u0000"+ - "\u0240\u0241\u0005\r\u0000\u0000\u0241\u0242\u0005i\u0000\u0000\u0242"+ - "s\u0001\u0000\u0000\u0000\u0243\u0244\u0005\u0003\u0000\u0000\u0244\u0247"+ - "\u0005_\u0000\u0000\u0245\u0246\u0005]\u0000\u0000\u0246\u0248\u0003<"+ - "\u001e\u0000\u0247\u0245\u0001\u0000\u0000\u0000\u0247\u0248\u0001\u0000"+ - "\u0000\u0000\u0248\u0252\u0001\u0000\u0000\u0000\u0249\u024a\u0005^\u0000"+ - "\u0000\u024a\u024f\u0003v;\u0000\u024b\u024c\u0005\'\u0000\u0000\u024c"+ - "\u024e\u0003v;\u0000\u024d\u024b\u0001\u0000\u0000\u0000\u024e\u0251\u0001"+ - "\u0000\u0000\u0000\u024f\u024d\u0001\u0000\u0000\u0000\u024f\u0250\u0001"+ - "\u0000\u0000\u0000\u0250\u0253\u0001\u0000\u0000\u0000\u0251\u024f\u0001"+ - "\u0000\u0000\u0000\u0252\u0249\u0001\u0000\u0000\u0000\u0252\u0253\u0001"+ - "\u0000\u0000\u0000\u0253u\u0001\u0000\u0000\u0000\u0254\u0255\u0003<\u001e"+ - "\u0000\u0255\u0256\u0005$\u0000\u0000\u0256\u0258\u0001\u0000\u0000\u0000"+ - "\u0257\u0254\u0001\u0000\u0000\u0000\u0257\u0258\u0001\u0000\u0000\u0000"+ - "\u0258\u0259\u0001\u0000\u0000\u0000\u0259\u025a\u0003<\u001e\u0000\u025a"+ - "w\u0001\u0000\u0000\u0000\u025b\u025c\u0005\u0012\u0000\u0000\u025c\u025d"+ - "\u0003$\u0012\u0000\u025d\u025e\u0005]\u0000\u0000\u025e\u025f\u0003>"+ - "\u001f\u0000\u025fy\u0001\u0000\u0000\u0000\u0260\u0261\u0005\u0011\u0000"+ - "\u0000\u0261\u0264\u00036\u001b\u0000\u0262\u0263\u0005!\u0000\u0000\u0263"+ - "\u0265\u0003\u001e\u000f\u0000\u0264\u0262\u0001\u0000\u0000\u0000\u0264"+ - "\u0265\u0001\u0000\u0000\u0000\u0265{\u0001\u0000\u0000\u0000\u0266\u0268"+ - "\u0007\b\u0000\u0000\u0267\u0266\u0001\u0000\u0000\u0000\u0267\u0268\u0001"+ - "\u0000\u0000\u0000\u0268\u0269\u0001\u0000\u0000\u0000\u0269\u026a\u0005"+ - "\u0014\u0000\u0000\u026a\u026b\u0003~?\u0000\u026b\u026c\u0003\u0080@"+ - "\u0000\u026c}\u0001\u0000\u0000\u0000\u026d\u0270\u0003@ \u0000\u026e"+ - "\u026f\u0005Y\u0000\u0000\u026f\u0271\u0003@ \u0000\u0270\u026e\u0001"+ - "\u0000\u0000\u0000\u0270\u0271\u0001\u0000\u0000\u0000\u0271\u007f\u0001"+ - "\u0000\u0000\u0000\u0272\u0273\u0005]\u0000\u0000\u0273\u0278\u0003\u0082"+ - "A\u0000\u0274\u0275\u0005\'\u0000\u0000\u0275\u0277\u0003\u0082A\u0000"+ - "\u0276\u0274\u0001\u0000\u0000\u0000\u0277\u027a\u0001\u0000\u0000\u0000"+ - "\u0278\u0276\u0001\u0000\u0000\u0000\u0278\u0279\u0001\u0000\u0000\u0000"+ - "\u0279\u0081\u0001\u0000\u0000\u0000\u027a\u0278\u0001\u0000\u0000\u0000"+ - "\u027b\u027c\u0003\u0010\b\u0000\u027c\u0083\u0001\u0000\u0000\u0000>"+ - "\u008f\u0098\u00ac\u00b8\u00c1\u00c9\u00ce\u00d6\u00d8\u00dd\u00e4\u00e9"+ - "\u00f0\u00f7\u00fd\u0105\u0107\u0112\u0119\u0124\u0127\u0137\u013d\u0147"+ - "\u014b\u0150\u015a\u0162\u016f\u0173\u0177\u017e\u0182\u0189\u018f\u0196"+ - "\u019e\u01a6\u01ae\u01bf\u01ca\u01d5\u01da\u01de\u01e3\u01ee\u01f3\u01f7"+ - "\u0205\u0210\u021e\u0229\u022c\u0231\u0247\u024f\u0252\u0257\u0264\u0267"+ - "\u0270\u0278"; + "\u00eb\u00ee\u0003:\u001d\u0000\u00ec\u00ed\u0005%\u0000\u0000\u00ed\u00ef"+ + "\u0003\u001a\r\u0000\u00ee\u00ec\u0001\u0000\u0000\u0000\u00ee\u00ef\u0001"+ + "\u0000\u0000\u0000\u00ef\u00f0\u0001\u0000\u0000\u0000\u00f0\u00f1\u0005"+ + "&\u0000\u0000\u00f1\u00f4\u0003D\"\u0000\u00f2\u00f3\u0005%\u0000\u0000"+ + "\u00f3\u00f5\u0003\u001a\r\u0000\u00f4\u00f2\u0001\u0000\u0000\u0000\u00f4"+ + "\u00f5\u0001\u0000\u0000\u0000\u00f5\u000f\u0001\u0000\u0000\u0000\u00f6"+ + "\u00fc\u0003\u0012\t\u0000\u00f7\u00f8\u0003\u0012\t\u0000\u00f8\u00f9"+ + "\u0003l6\u0000\u00f9\u00fa\u0003\u0012\t\u0000\u00fa\u00fc\u0001\u0000"+ + "\u0000\u0000\u00fb\u00f6\u0001\u0000\u0000\u0000\u00fb\u00f7\u0001\u0000"+ + "\u0000\u0000\u00fc\u0011\u0001\u0000\u0000\u0000\u00fd\u00fe\u0006\t\uffff"+ + "\uffff\u0000\u00fe\u0102\u0003\u0014\n\u0000\u00ff\u0100\u0007\u0000\u0000"+ + "\u0000\u0100\u0102\u0003\u0012\t\u0003\u0101\u00fd\u0001\u0000\u0000\u0000"+ + "\u0101\u00ff\u0001\u0000\u0000\u0000\u0102\u010b\u0001\u0000\u0000\u0000"+ + "\u0103\u0104\n\u0002\u0000\u0000\u0104\u0105\u0007\u0001\u0000\u0000\u0105"+ + "\u010a\u0003\u0012\t\u0003\u0106\u0107\n\u0001\u0000\u0000\u0107\u0108"+ + "\u0007\u0000\u0000\u0000\u0108\u010a\u0003\u0012\t\u0002\u0109\u0103\u0001"+ + "\u0000\u0000\u0000\u0109\u0106\u0001\u0000\u0000\u0000\u010a\u010d\u0001"+ + "\u0000\u0000\u0000\u010b\u0109\u0001\u0000\u0000\u0000\u010b\u010c\u0001"+ + "\u0000\u0000\u0000\u010c\u0013\u0001\u0000\u0000\u0000\u010d\u010b\u0001"+ + "\u0000\u0000\u0000\u010e\u010f\u0006\n\uffff\uffff\u0000\u010f\u0117\u0003"+ + "D\"\u0000\u0110\u0117\u0003:\u001d\u0000\u0111\u0117\u0003\u0016\u000b"+ + "\u0000\u0112\u0113\u00050\u0000\u0000\u0113\u0114\u0003\n\u0005\u0000"+ + "\u0114\u0115\u00057\u0000\u0000\u0115\u0117\u0001\u0000\u0000\u0000\u0116"+ + "\u010e\u0001\u0000\u0000\u0000\u0116\u0110\u0001\u0000\u0000\u0000\u0116"+ + "\u0111\u0001\u0000\u0000\u0000\u0116\u0112\u0001\u0000\u0000\u0000\u0117"+ + "\u011d\u0001\u0000\u0000\u0000\u0118\u0119\n\u0001\u0000\u0000\u0119\u011a"+ + "\u0005%\u0000\u0000\u011a\u011c\u0003\u001a\r\u0000\u011b\u0118\u0001"+ + "\u0000\u0000\u0000\u011c\u011f\u0001\u0000\u0000\u0000\u011d\u011b\u0001"+ + "\u0000\u0000\u0000\u011d\u011e\u0001\u0000\u0000\u0000\u011e\u0015\u0001"+ + "\u0000\u0000\u0000\u011f\u011d\u0001\u0000\u0000\u0000\u0120\u0121\u0003"+ + "\u0018\f\u0000\u0121\u012b\u00050\u0000\u0000\u0122\u012c\u0005B\u0000"+ + "\u0000\u0123\u0128\u0003\n\u0005\u0000\u0124\u0125\u0005\'\u0000\u0000"+ + "\u0125\u0127\u0003\n\u0005\u0000\u0126\u0124\u0001\u0000\u0000\u0000\u0127"+ + "\u012a\u0001\u0000\u0000\u0000\u0128\u0126\u0001\u0000\u0000\u0000\u0128"+ + "\u0129\u0001\u0000\u0000\u0000\u0129\u012c\u0001\u0000\u0000\u0000\u012a"+ + "\u0128\u0001\u0000\u0000\u0000\u012b\u0122\u0001\u0000\u0000\u0000\u012b"+ + "\u0123\u0001\u0000\u0000\u0000\u012b\u012c\u0001\u0000\u0000\u0000\u012c"+ + "\u012d\u0001\u0000\u0000\u0000\u012d\u012e\u00057\u0000\u0000\u012e\u0017"+ + "\u0001\u0000\u0000\u0000\u012f\u0130\u0003H$\u0000\u0130\u0019\u0001\u0000"+ + "\u0000\u0000\u0131\u0132\u0003@ \u0000\u0132\u001b\u0001\u0000\u0000\u0000"+ + "\u0133\u0134\u0005\f\u0000\u0000\u0134\u0135\u0003\u001e\u000f\u0000\u0135"+ + "\u001d\u0001\u0000\u0000\u0000\u0136\u013b\u0003 \u0010\u0000\u0137\u0138"+ + "\u0005\'\u0000\u0000\u0138\u013a\u0003 \u0010\u0000\u0139\u0137\u0001"+ + "\u0000\u0000\u0000\u013a\u013d\u0001\u0000\u0000\u0000\u013b\u0139\u0001"+ + "\u0000\u0000\u0000\u013b\u013c\u0001\u0000\u0000\u0000\u013c\u001f\u0001"+ + "\u0000\u0000\u0000\u013d\u013b\u0001\u0000\u0000\u0000\u013e\u013f\u0003"+ + ":\u001d\u0000\u013f\u0140\u0005$\u0000\u0000\u0140\u0142\u0001\u0000\u0000"+ + "\u0000\u0141\u013e\u0001\u0000\u0000\u0000\u0141\u0142\u0001\u0000\u0000"+ + "\u0000\u0142\u0143\u0001\u0000\u0000\u0000\u0143\u0144\u0003\n\u0005\u0000"+ + "\u0144!\u0001\u0000\u0000\u0000\u0145\u0146\u0005\u0006\u0000\u0000\u0146"+ + "\u014b\u0003$\u0012\u0000\u0147\u0148\u0005\'\u0000\u0000\u0148\u014a"+ + "\u0003$\u0012\u0000\u0149\u0147\u0001\u0000\u0000\u0000\u014a\u014d\u0001"+ + "\u0000\u0000\u0000\u014b\u0149\u0001\u0000\u0000\u0000\u014b\u014c\u0001"+ + "\u0000\u0000\u0000\u014c\u014f\u0001\u0000\u0000\u0000\u014d\u014b\u0001"+ + "\u0000\u0000\u0000\u014e\u0150\u0003*\u0015\u0000\u014f\u014e\u0001\u0000"+ + "\u0000\u0000\u014f\u0150\u0001\u0000\u0000\u0000\u0150#\u0001\u0000\u0000"+ + "\u0000\u0151\u0152\u0003&\u0013\u0000\u0152\u0153\u0005&\u0000\u0000\u0153"+ + "\u0155\u0001\u0000\u0000\u0000\u0154\u0151\u0001\u0000\u0000\u0000\u0154"+ + "\u0155\u0001\u0000\u0000\u0000\u0155\u0156\u0001\u0000\u0000\u0000\u0156"+ + "\u0157\u0003(\u0014\u0000\u0157%\u0001\u0000\u0000\u0000\u0158\u0159\u0005"+ + "Q\u0000\u0000\u0159\'\u0001\u0000\u0000\u0000\u015a\u015b\u0007\u0002"+ + "\u0000\u0000\u015b)\u0001\u0000\u0000\u0000\u015c\u015f\u0003,\u0016\u0000"+ + "\u015d\u015f\u0003.\u0017\u0000\u015e\u015c\u0001\u0000\u0000\u0000\u015e"+ + "\u015d\u0001\u0000\u0000\u0000\u015f+\u0001\u0000\u0000\u0000\u0160\u0161"+ + "\u0005P\u0000\u0000\u0161\u0166\u0005Q\u0000\u0000\u0162\u0163\u0005\'"+ + "\u0000\u0000\u0163\u0165\u0005Q\u0000\u0000\u0164\u0162\u0001\u0000\u0000"+ + "\u0000\u0165\u0168\u0001\u0000\u0000\u0000\u0166\u0164\u0001\u0000\u0000"+ + "\u0000\u0166\u0167\u0001\u0000\u0000\u0000\u0167-\u0001\u0000\u0000\u0000"+ + "\u0168\u0166\u0001\u0000\u0000\u0000\u0169\u016a\u0005F\u0000\u0000\u016a"+ + "\u016b\u0003,\u0016\u0000\u016b\u016c\u0005G\u0000\u0000\u016c/\u0001"+ + "\u0000\u0000\u0000\u016d\u016e\u0005\u0013\u0000\u0000\u016e\u0173\u0003"+ + "$\u0012\u0000\u016f\u0170\u0005\'\u0000\u0000\u0170\u0172\u0003$\u0012"+ + "\u0000\u0171\u016f\u0001\u0000\u0000\u0000\u0172\u0175\u0001\u0000\u0000"+ + "\u0000\u0173\u0171\u0001\u0000\u0000\u0000\u0173\u0174\u0001\u0000\u0000"+ + "\u0000\u0174\u0177\u0001\u0000\u0000\u0000\u0175\u0173\u0001\u0000\u0000"+ + "\u0000\u0176\u0178\u00036\u001b\u0000\u0177\u0176\u0001\u0000\u0000\u0000"+ + "\u0177\u0178\u0001\u0000\u0000\u0000\u0178\u017b\u0001\u0000\u0000\u0000"+ + "\u0179\u017a\u0005!\u0000\u0000\u017a\u017c\u0003\u001e\u000f\u0000\u017b"+ + "\u0179\u0001\u0000\u0000\u0000\u017b\u017c\u0001\u0000\u0000\u0000\u017c"+ + "1\u0001\u0000\u0000\u0000\u017d\u017e\u0005\u0004\u0000\u0000\u017e\u017f"+ + "\u0003\u001e\u000f\u0000\u017f3\u0001\u0000\u0000\u0000\u0180\u0182\u0005"+ + "\u000f\u0000\u0000\u0181\u0183\u00036\u001b\u0000\u0182\u0181\u0001\u0000"+ + "\u0000\u0000\u0182\u0183\u0001\u0000\u0000\u0000\u0183\u0186\u0001\u0000"+ + "\u0000\u0000\u0184\u0185\u0005!\u0000\u0000\u0185\u0187\u0003\u001e\u000f"+ + "\u0000\u0186\u0184\u0001\u0000\u0000\u0000\u0186\u0187\u0001\u0000\u0000"+ + "\u0000\u01875\u0001\u0000\u0000\u0000\u0188\u018d\u00038\u001c\u0000\u0189"+ + "\u018a\u0005\'\u0000\u0000\u018a\u018c\u00038\u001c\u0000\u018b\u0189"+ + "\u0001\u0000\u0000\u0000\u018c\u018f\u0001\u0000\u0000\u0000\u018d\u018b"+ + "\u0001\u0000\u0000\u0000\u018d\u018e\u0001\u0000\u0000\u0000\u018e7\u0001"+ + "\u0000\u0000\u0000\u018f\u018d\u0001\u0000\u0000\u0000\u0190\u0193\u0003"+ + " \u0010\u0000\u0191\u0192\u0005\u0010\u0000\u0000\u0192\u0194\u0003\n"+ + "\u0005\u0000\u0193\u0191\u0001\u0000\u0000\u0000\u0193\u0194\u0001\u0000"+ + "\u0000\u0000\u01949\u0001\u0000\u0000\u0000\u0195\u019a\u0003H$\u0000"+ + "\u0196\u0197\u0005)\u0000\u0000\u0197\u0199\u0003H$\u0000\u0198\u0196"+ + "\u0001\u0000\u0000\u0000\u0199\u019c\u0001\u0000\u0000\u0000\u019a\u0198"+ + "\u0001\u0000\u0000\u0000\u019a\u019b\u0001\u0000\u0000\u0000\u019b;\u0001"+ + "\u0000\u0000\u0000\u019c\u019a\u0001\u0000\u0000\u0000\u019d\u01a2\u0003"+ + "B!\u0000\u019e\u019f\u0005)\u0000\u0000\u019f\u01a1\u0003B!\u0000\u01a0"+ + "\u019e\u0001\u0000\u0000\u0000\u01a1\u01a4\u0001\u0000\u0000\u0000\u01a2"+ + "\u01a0\u0001\u0000\u0000\u0000\u01a2\u01a3\u0001\u0000\u0000\u0000\u01a3"+ + "=\u0001\u0000\u0000\u0000\u01a4\u01a2\u0001\u0000\u0000\u0000\u01a5\u01aa"+ + "\u0003<\u001e\u0000\u01a6\u01a7\u0005\'\u0000\u0000\u01a7\u01a9\u0003"+ + "<\u001e\u0000\u01a8\u01a6\u0001\u0000\u0000\u0000\u01a9\u01ac\u0001\u0000"+ + "\u0000\u0000\u01aa\u01a8\u0001\u0000\u0000\u0000\u01aa\u01ab\u0001\u0000"+ + "\u0000\u0000\u01ab?\u0001\u0000\u0000\u0000\u01ac\u01aa\u0001\u0000\u0000"+ + "\u0000\u01ad\u01ae\u0007\u0003\u0000\u0000\u01aeA\u0001\u0000\u0000\u0000"+ + "\u01af\u01b3\u0005U\u0000\u0000\u01b0\u01b1\u0004!\n\u0000\u01b1\u01b3"+ + "\u0003F#\u0000\u01b2\u01af\u0001\u0000\u0000\u0000\u01b2\u01b0\u0001\u0000"+ + "\u0000\u0000\u01b3C\u0001\u0000\u0000\u0000\u01b4\u01df\u00052\u0000\u0000"+ + "\u01b5\u01b6\u0003h4\u0000\u01b6\u01b7\u0005H\u0000\u0000\u01b7\u01df"+ + "\u0001\u0000\u0000\u0000\u01b8\u01df\u0003f3\u0000\u01b9\u01df\u0003h"+ + "4\u0000\u01ba\u01df\u0003b1\u0000\u01bb\u01df\u0003F#\u0000\u01bc\u01df"+ + "\u0003j5\u0000\u01bd\u01be\u0005F\u0000\u0000\u01be\u01c3\u0003d2\u0000"+ + "\u01bf\u01c0\u0005\'\u0000\u0000\u01c0\u01c2\u0003d2\u0000\u01c1\u01bf"+ + "\u0001\u0000\u0000\u0000\u01c2\u01c5\u0001\u0000\u0000\u0000\u01c3\u01c1"+ + "\u0001\u0000\u0000\u0000\u01c3\u01c4\u0001\u0000\u0000\u0000\u01c4\u01c6"+ + "\u0001\u0000\u0000\u0000\u01c5\u01c3\u0001\u0000\u0000\u0000\u01c6\u01c7"+ + "\u0005G\u0000\u0000\u01c7\u01df\u0001\u0000\u0000\u0000\u01c8\u01c9\u0005"+ + "F\u0000\u0000\u01c9\u01ce\u0003b1\u0000\u01ca\u01cb\u0005\'\u0000\u0000"+ + "\u01cb\u01cd\u0003b1\u0000\u01cc\u01ca\u0001\u0000\u0000\u0000\u01cd\u01d0"+ + "\u0001\u0000\u0000\u0000\u01ce\u01cc\u0001\u0000\u0000\u0000\u01ce\u01cf"+ + "\u0001\u0000\u0000\u0000\u01cf\u01d1\u0001\u0000\u0000\u0000\u01d0\u01ce"+ + "\u0001\u0000\u0000\u0000\u01d1\u01d2\u0005G\u0000\u0000\u01d2\u01df\u0001"+ + "\u0000\u0000\u0000\u01d3\u01d4\u0005F\u0000\u0000\u01d4\u01d9\u0003j5"+ + "\u0000\u01d5\u01d6\u0005\'\u0000\u0000\u01d6\u01d8\u0003j5\u0000\u01d7"+ + "\u01d5\u0001\u0000\u0000\u0000\u01d8\u01db\u0001\u0000\u0000\u0000\u01d9"+ + "\u01d7\u0001\u0000\u0000\u0000\u01d9\u01da\u0001\u0000\u0000\u0000\u01da"+ + "\u01dc\u0001\u0000\u0000\u0000\u01db\u01d9\u0001\u0000\u0000\u0000\u01dc"+ + "\u01dd\u0005G\u0000\u0000\u01dd\u01df\u0001\u0000\u0000\u0000\u01de\u01b4"+ + "\u0001\u0000\u0000\u0000\u01de\u01b5\u0001\u0000\u0000\u0000\u01de\u01b8"+ + "\u0001\u0000\u0000\u0000\u01de\u01b9\u0001\u0000\u0000\u0000\u01de\u01ba"+ + "\u0001\u0000\u0000\u0000\u01de\u01bb\u0001\u0000\u0000\u0000\u01de\u01bc"+ + "\u0001\u0000\u0000\u0000\u01de\u01bd\u0001\u0000\u0000\u0000\u01de\u01c8"+ + "\u0001\u0000\u0000\u0000\u01de\u01d3\u0001\u0000\u0000\u0000\u01dfE\u0001"+ + "\u0000\u0000\u0000\u01e0\u01e3\u00055\u0000\u0000\u01e1\u01e3\u0005E\u0000"+ + "\u0000\u01e2\u01e0\u0001\u0000\u0000\u0000\u01e2\u01e1\u0001\u0000\u0000"+ + "\u0000\u01e3G\u0001\u0000\u0000\u0000\u01e4\u01e8\u0003@ \u0000\u01e5"+ + "\u01e6\u0004$\u000b\u0000\u01e6\u01e8\u0003F#\u0000\u01e7\u01e4\u0001"+ + "\u0000\u0000\u0000\u01e7\u01e5\u0001\u0000\u0000\u0000\u01e8I\u0001\u0000"+ + "\u0000\u0000\u01e9\u01ea\u0005\t\u0000\u0000\u01ea\u01eb\u0005\u001f\u0000"+ + "\u0000\u01ebK\u0001\u0000\u0000\u0000\u01ec\u01ed\u0005\u000e\u0000\u0000"+ + "\u01ed\u01f2\u0003N\'\u0000\u01ee\u01ef\u0005\'\u0000\u0000\u01ef\u01f1"+ + "\u0003N\'\u0000\u01f0\u01ee\u0001\u0000\u0000\u0000\u01f1\u01f4\u0001"+ + "\u0000\u0000\u0000\u01f2\u01f0\u0001\u0000\u0000\u0000\u01f2\u01f3\u0001"+ + "\u0000\u0000\u0000\u01f3M\u0001\u0000\u0000\u0000\u01f4\u01f2\u0001\u0000"+ + "\u0000\u0000\u01f5\u01f7\u0003\n\u0005\u0000\u01f6\u01f8\u0007\u0004\u0000"+ + "\u0000\u01f7\u01f6\u0001\u0000\u0000\u0000\u01f7\u01f8\u0001\u0000\u0000"+ + "\u0000\u01f8\u01fb\u0001\u0000\u0000\u0000\u01f9\u01fa\u00053\u0000\u0000"+ + "\u01fa\u01fc\u0007\u0005\u0000\u0000\u01fb\u01f9\u0001\u0000\u0000\u0000"+ + "\u01fb\u01fc\u0001\u0000\u0000\u0000\u01fcO\u0001\u0000\u0000\u0000\u01fd"+ + "\u01fe\u0005\b\u0000\u0000\u01fe\u01ff\u0003>\u001f\u0000\u01ffQ\u0001"+ + "\u0000\u0000\u0000\u0200\u0201\u0005\u0002\u0000\u0000\u0201\u0202\u0003"+ + ">\u001f\u0000\u0202S\u0001\u0000\u0000\u0000\u0203\u0204\u0005\u000b\u0000"+ + "\u0000\u0204\u0209\u0003V+\u0000\u0205\u0206\u0005\'\u0000\u0000\u0206"+ + "\u0208\u0003V+\u0000\u0207\u0205\u0001\u0000\u0000\u0000\u0208\u020b\u0001"+ + "\u0000\u0000\u0000\u0209\u0207\u0001\u0000\u0000\u0000\u0209\u020a\u0001"+ + "\u0000\u0000\u0000\u020aU\u0001\u0000\u0000\u0000\u020b\u0209\u0001\u0000"+ + "\u0000\u0000\u020c\u020d\u0003<\u001e\u0000\u020d\u020e\u0005Y\u0000\u0000"+ + "\u020e\u020f\u0003<\u001e\u0000\u020fW\u0001\u0000\u0000\u0000\u0210\u0211"+ + "\u0005\u0001\u0000\u0000\u0211\u0212\u0003\u0014\n\u0000\u0212\u0214\u0003"+ + "j5\u0000\u0213\u0215\u0003^/\u0000\u0214\u0213\u0001\u0000\u0000\u0000"+ + "\u0214\u0215\u0001\u0000\u0000\u0000\u0215Y\u0001\u0000\u0000\u0000\u0216"+ + "\u0217\u0005\u0007\u0000\u0000\u0217\u0218\u0003\u0014\n\u0000\u0218\u0219"+ + "\u0003j5\u0000\u0219[\u0001\u0000\u0000\u0000\u021a\u021b\u0005\n\u0000"+ + "\u0000\u021b\u021c\u0003:\u001d\u0000\u021c]\u0001\u0000\u0000\u0000\u021d"+ + "\u0222\u0003`0\u0000\u021e\u021f\u0005\'\u0000\u0000\u021f\u0221\u0003"+ + "`0\u0000\u0220\u021e\u0001\u0000\u0000\u0000\u0221\u0224\u0001\u0000\u0000"+ + "\u0000\u0222\u0220\u0001\u0000\u0000\u0000\u0222\u0223\u0001\u0000\u0000"+ + "\u0000\u0223_\u0001\u0000\u0000\u0000\u0224\u0222\u0001\u0000\u0000\u0000"+ + "\u0225\u0226\u0003@ \u0000\u0226\u0227\u0005$\u0000\u0000\u0227\u0228"+ + "\u0003D\"\u0000\u0228a\u0001\u0000\u0000\u0000\u0229\u022a\u0007\u0006"+ + "\u0000\u0000\u022ac\u0001\u0000\u0000\u0000\u022b\u022e\u0003f3\u0000"+ + "\u022c\u022e\u0003h4\u0000\u022d\u022b\u0001\u0000\u0000\u0000\u022d\u022c"+ + "\u0001\u0000\u0000\u0000\u022ee\u0001\u0000\u0000\u0000\u022f\u0231\u0007"+ + "\u0000\u0000\u0000\u0230\u022f\u0001\u0000\u0000\u0000\u0230\u0231\u0001"+ + "\u0000\u0000\u0000\u0231\u0232\u0001\u0000\u0000\u0000\u0232\u0233\u0005"+ + " \u0000\u0000\u0233g\u0001\u0000\u0000\u0000\u0234\u0236\u0007\u0000\u0000"+ + "\u0000\u0235\u0234\u0001\u0000\u0000\u0000\u0235\u0236\u0001\u0000\u0000"+ + "\u0000\u0236\u0237\u0001\u0000\u0000\u0000\u0237\u0238\u0005\u001f\u0000"+ + "\u0000\u0238i\u0001\u0000\u0000\u0000\u0239\u023a\u0005\u001e\u0000\u0000"+ + "\u023ak\u0001\u0000\u0000\u0000\u023b\u023c\u0007\u0007\u0000\u0000\u023c"+ + "m\u0001\u0000\u0000\u0000\u023d\u023e\u0005\u0005\u0000\u0000\u023e\u023f"+ + "\u0003p8\u0000\u023fo\u0001\u0000\u0000\u0000\u0240\u0241\u0005F\u0000"+ + "\u0000\u0241\u0242\u0003\u0002\u0001\u0000\u0242\u0243\u0005G\u0000\u0000"+ + "\u0243q\u0001\u0000\u0000\u0000\u0244\u0245\u0005\r\u0000\u0000\u0245"+ + "\u0246\u0005i\u0000\u0000\u0246s\u0001\u0000\u0000\u0000\u0247\u0248\u0005"+ + "\u0003\u0000\u0000\u0248\u024b\u0005_\u0000\u0000\u0249\u024a\u0005]\u0000"+ + "\u0000\u024a\u024c\u0003<\u001e\u0000\u024b\u0249\u0001\u0000\u0000\u0000"+ + "\u024b\u024c\u0001\u0000\u0000\u0000\u024c\u0256\u0001\u0000\u0000\u0000"+ + "\u024d\u024e\u0005^\u0000\u0000\u024e\u0253\u0003v;\u0000\u024f\u0250"+ + "\u0005\'\u0000\u0000\u0250\u0252\u0003v;\u0000\u0251\u024f\u0001\u0000"+ + "\u0000\u0000\u0252\u0255\u0001\u0000\u0000\u0000\u0253\u0251\u0001\u0000"+ + "\u0000\u0000\u0253\u0254\u0001\u0000\u0000\u0000\u0254\u0257\u0001\u0000"+ + "\u0000\u0000\u0255\u0253\u0001\u0000\u0000\u0000\u0256\u024d\u0001\u0000"+ + "\u0000\u0000\u0256\u0257\u0001\u0000\u0000\u0000\u0257u\u0001\u0000\u0000"+ + "\u0000\u0258\u0259\u0003<\u001e\u0000\u0259\u025a\u0005$\u0000\u0000\u025a"+ + "\u025c\u0001\u0000\u0000\u0000\u025b\u0258\u0001\u0000\u0000\u0000\u025b"+ + "\u025c\u0001\u0000\u0000\u0000\u025c\u025d\u0001\u0000\u0000\u0000\u025d"+ + "\u025e\u0003<\u001e\u0000\u025ew\u0001\u0000\u0000\u0000\u025f\u0260\u0005"+ + "\u0012\u0000\u0000\u0260\u0261\u0003$\u0012\u0000\u0261\u0262\u0005]\u0000"+ + "\u0000\u0262\u0263\u0003>\u001f\u0000\u0263y\u0001\u0000\u0000\u0000\u0264"+ + "\u0265\u0005\u0011\u0000\u0000\u0265\u0268\u00036\u001b\u0000\u0266\u0267"+ + "\u0005!\u0000\u0000\u0267\u0269\u0003\u001e\u000f\u0000\u0268\u0266\u0001"+ + "\u0000\u0000\u0000\u0268\u0269\u0001\u0000\u0000\u0000\u0269{\u0001\u0000"+ + "\u0000\u0000\u026a\u026c\u0007\b\u0000\u0000\u026b\u026a\u0001\u0000\u0000"+ + "\u0000\u026b\u026c\u0001\u0000\u0000\u0000\u026c\u026d\u0001\u0000\u0000"+ + "\u0000\u026d\u026e\u0005\u0014\u0000\u0000\u026e\u026f\u0003~?\u0000\u026f"+ + "\u0270\u0003\u0080@\u0000\u0270}\u0001\u0000\u0000\u0000\u0271\u0274\u0003"+ + "@ \u0000\u0272\u0273\u0005Y\u0000\u0000\u0273\u0275\u0003@ \u0000\u0274"+ + "\u0272\u0001\u0000\u0000\u0000\u0274\u0275\u0001\u0000\u0000\u0000\u0275"+ + "\u007f\u0001\u0000\u0000\u0000\u0276\u0277\u0005]\u0000\u0000\u0277\u027c"+ + "\u0003\u0082A\u0000\u0278\u0279\u0005\'\u0000\u0000\u0279\u027b\u0003"+ + "\u0082A\u0000\u027a\u0278\u0001\u0000\u0000\u0000\u027b\u027e\u0001\u0000"+ + "\u0000\u0000\u027c\u027a\u0001\u0000\u0000\u0000\u027c\u027d\u0001\u0000"+ + "\u0000\u0000\u027d\u0081\u0001\u0000\u0000\u0000\u027e\u027c\u0001\u0000"+ + "\u0000\u0000\u027f\u0280\u0003\u0010\b\u0000\u0280\u0083\u0001\u0000\u0000"+ + "\u0000?\u008f\u0098\u00ac\u00b8\u00c1\u00c9\u00ce\u00d6\u00d8\u00dd\u00e4"+ + "\u00e9\u00ee\u00f4\u00fb\u0101\u0109\u010b\u0116\u011d\u0128\u012b\u013b"+ + "\u0141\u014b\u014f\u0154\u015e\u0166\u0173\u0177\u017b\u0182\u0186\u018d"+ + "\u0193\u019a\u01a2\u01aa\u01b2\u01c3\u01ce\u01d9\u01de\u01e2\u01e7\u01f2"+ + "\u01f7\u01fb\u0209\u0214\u0222\u022d\u0230\u0235\u024b\u0253\u0256\u025b"+ + "\u0268\u026b\u0274\u027c"; public static final ATN _ATN = new ATNDeserializer().deserialize(_serializedATN.toCharArray()); static { diff --git a/x-pack/plugin/esql/src/main/java/org/elasticsearch/xpack/esql/parser/ExpressionBuilder.java b/x-pack/plugin/esql/src/main/java/org/elasticsearch/xpack/esql/parser/ExpressionBuilder.java index 1d7828c0fda01..a3c6d060f4424 100644 --- a/x-pack/plugin/esql/src/main/java/org/elasticsearch/xpack/esql/parser/ExpressionBuilder.java +++ b/x-pack/plugin/esql/src/main/java/org/elasticsearch/xpack/esql/parser/ExpressionBuilder.java @@ -927,12 +927,19 @@ String unresolvedAttributeNameInParam(ParserRuleContext ctx, Expression param) { @Override public Expression visitMatchBooleanExpression(EsqlBaseParser.MatchBooleanExpressionContext ctx) { final Expression matchQueryExpression; - if (ctx.dataType() != null) { - matchQueryExpression = castToType(source(ctx), ctx.matchQuery, ctx.dataType()); + if (ctx.queryType != null) { + matchQueryExpression = castToType(source(ctx), ctx.matchQuery, ctx.queryType); } else { matchQueryExpression = expression(ctx.matchQuery); } - return new Match(source(ctx), expression(ctx.fieldExp), matchQueryExpression); + final Expression matchFieldExpression; + if (ctx.fieldType != null) { + matchFieldExpression = castToType(source(ctx), ctx.fieldExp, ctx.fieldType); + } else { + matchFieldExpression = expression(ctx.fieldExp); + } + + return new Match(source(ctx), matchFieldExpression, matchQueryExpression); } } diff --git a/x-pack/plugin/esql/src/main/java/org/elasticsearch/xpack/esql/planner/EsqlExpressionTranslators.java b/x-pack/plugin/esql/src/main/java/org/elasticsearch/xpack/esql/planner/EsqlExpressionTranslators.java index 9f15a20ed4b55..18ae8f133a9cd 100644 --- a/x-pack/plugin/esql/src/main/java/org/elasticsearch/xpack/esql/planner/EsqlExpressionTranslators.java +++ b/x-pack/plugin/esql/src/main/java/org/elasticsearch/xpack/esql/planner/EsqlExpressionTranslators.java @@ -33,6 +33,7 @@ import org.elasticsearch.xpack.esql.core.querydsl.query.TermsQuery; import org.elasticsearch.xpack.esql.core.tree.Source; import org.elasticsearch.xpack.esql.core.type.DataType; +import org.elasticsearch.xpack.esql.core.type.MultiTypeEsField; import org.elasticsearch.xpack.esql.core.util.Check; import org.elasticsearch.xpack.esql.expression.function.fulltext.Kql; import org.elasticsearch.xpack.esql.expression.function.fulltext.Match; @@ -531,7 +532,17 @@ private static RangeQuery translate(Range r, TranslatorHandler handler) { public static class MatchFunctionTranslator extends ExpressionTranslator { @Override protected Query asQuery(Match match, TranslatorHandler handler) { - return new MatchQuery(match.source(), ((FieldAttribute) match.field()).name(), match.queryAsObject()); + Expression field = match.field(); + if (field instanceof FieldAttribute fieldAttribute) { + String fieldName = fieldAttribute.name(); + if (fieldAttribute.field() instanceof MultiTypeEsField multiTypeEsField) { + // If we have multiple field types, we allow the query to be done, but getting the underlying field name + fieldName = multiTypeEsField.getName(); + } + return new MatchQuery(match.source(), fieldName, match.queryAsObject()); + } + + throw new IllegalArgumentException("Match must have a field attribute as the first argument"); } } diff --git a/x-pack/plugin/esql/src/test/java/org/elasticsearch/xpack/esql/parser/StatementParserTests.java b/x-pack/plugin/esql/src/test/java/org/elasticsearch/xpack/esql/parser/StatementParserTests.java index a59e7299f9ab8..94d75c774e067 100644 --- a/x-pack/plugin/esql/src/test/java/org/elasticsearch/xpack/esql/parser/StatementParserTests.java +++ b/x-pack/plugin/esql/src/test/java/org/elasticsearch/xpack/esql/parser/StatementParserTests.java @@ -30,6 +30,7 @@ import org.elasticsearch.xpack.esql.expression.function.aggregate.FilteredExpression; import org.elasticsearch.xpack.esql.expression.function.fulltext.Match; import org.elasticsearch.xpack.esql.expression.function.scalar.convert.ToIP; +import org.elasticsearch.xpack.esql.expression.function.scalar.convert.ToInteger; import org.elasticsearch.xpack.esql.expression.function.scalar.string.RLike; import org.elasticsearch.xpack.esql.expression.function.scalar.string.WildcardLike; import org.elasticsearch.xpack.esql.expression.predicate.operator.arithmetic.Add; @@ -2334,7 +2335,7 @@ public void testInvalidMatchOperator() { ); } - public void testMatchFunctionCasting() { + public void testMatchFunctionQueryCasting() { var plan = statement("FROM test | WHERE match(field, \"value\"::IP)"); var filter = as(plan, Filter.class); var function = (UnresolvedFunction) filter.condition(); @@ -2344,7 +2345,7 @@ public void testMatchFunctionCasting() { assertThat(literal.value(), equalTo("value")); } - public void testMatchOperatorCasting() { + public void testMatchOperatorQueryCasting() { var plan = statement("FROM test | WHERE field:\"value\"::IP"); var filter = as(plan, Filter.class); var match = (Match) filter.condition(); @@ -2354,4 +2355,24 @@ public void testMatchOperatorCasting() { var literal = (Literal) toIp.field(); assertThat(literal.value(), equalTo("value")); } + + public void testMatchFunctionFieldCasting() { + var plan = statement("FROM test | WHERE match(field::int, \"value\")"); + var filter = as(plan, Filter.class); + var function = (UnresolvedFunction) filter.condition(); + var toInteger = (ToInteger) function.children().get(0); + var matchField = (UnresolvedAttribute) toInteger.field(); + assertThat(matchField.name(), equalTo("field")); + assertThat(function.children().get(1).fold(), equalTo("value")); + } + + public void testMatchOperatorFieldCasting() { + var plan = statement("FROM test | WHERE field::int : \"value\""); + var filter = as(plan, Filter.class); + var match = (Match) filter.condition(); + var toInteger = (ToInteger) match.field(); + var matchField = (UnresolvedAttribute) toInteger.field(); + assertThat(matchField.name(), equalTo("field")); + assertThat(match.query().fold(), equalTo("value")); + } }