diff --git a/docs/pages/guides/recipes/analytics/event-analytics.mdx b/docs/pages/guides/recipes/analytics/event-analytics.mdx
index c3b82914edcea..274404c4e536f 100644
--- a/docs/pages/guides/recipes/analytics/event-analytics.mdx
+++ b/docs/pages/guides/recipes/analytics/event-analytics.mdx
@@ -64,8 +64,9 @@ We’ll call the cube just events and assign a page views event type to
`pageview`. Also, we’re going to assign a unique event_id to every event to use
as primary key.
+
+
```javascript
-// Create a cube for events with the following content
cube(`events`, {
sql: `
SELECT
@@ -91,10 +92,39 @@ cube(`events`, {
});
```
+```yaml
+cubes:
+ - name: events
+ sql: >
+ SELECT
+ t.id || '-e' as event_id
+ , t.anonymous_id as anonymous_id
+ , t.timestamp
+ , t.event
+ , t.context_page_path as page_path
+ , NULL as referrer
+ from javascript.tracks as t
+
+ UNION ALL
+
+ SELECT
+ p.id as event_id
+ , p.anonymous_id
+ , p.timestamp
+ , 'pageview' as event
+ , p.context_page_path as page_path
+ , p.referrer as referrer
+ FROM javascript.pages as p
+```
+
+
+
The above SQL creates base table for our events cube. Now we can add some
measures to calculate the number of events and number of page views only, using
a filter on `event` column.
+
+
```javascript
cube("events", {
// ...,
@@ -114,10 +144,30 @@ cube("events", {
});
```
+```yaml
+cubes:
+ - name: events
+ # ...
+
+ measures:
+ - name: count
+ sql: event_id
+ type: count
+
+ - name: page_views_count
+ sql: event_id
+ type: count
+ filters: [{ sql: "{CUBE}.event = 'pageview'" }]
+```
+
+
+
Having this in place, we will already be able to calculate the total number of
events and pageviews. Next, we’re going to add dimensions to be able to filter
events in a specific time range and for specific types.
+
+
```javascript
cube("events", {
// ...,
@@ -148,6 +198,33 @@ cube("events", {
});
```
+```yaml
+cubes:
+ - name: events
+ # ...
+
+ dimensions:
+ - name: anonymous_id
+ sql: anonymous_id
+ type: number
+ primary_key: true
+
+ - name: event_id
+ sql: event_id
+ type: number
+ primary_key: true
+
+ - name: timestamp
+ sql: timestamp
+ type: time
+
+ - name: event
+ sql: event
+ type: string
+```
+
+
+
Now we have everything for Events cube and can move forward to grouping these
events into sessions.
@@ -174,6 +251,8 @@ previous. We’re going to use `inactivity_time` to terminate a session based on
how users interact with your app. Now we’re ready to introduce our Sessions
cube.
+
+
```javascript
// Create new cube for sessions with the following content
cube(`sessions`, {
@@ -184,27 +263,48 @@ cube(`sessions`, {
, event.timestamp AS session_start_at
, ROW_NUMBER() OVER(PARTITION BY event.anonymous_id ORDER BY event.timestamp) AS session_sequence
, LEAD(timestamp) OVER(PARTITION BY event.anonymous_id ORDER BY event.timestamp) AS next_session_start_at
- FROM
- (SELECT
+ FROM (
+ SELECT
e.anonymous_id
, e.timestamp
, DATEDIFF(minutes, LAG(e.timestamp) OVER(PARTITION BY e.anonymous_id ORDER BY e.timestamp), e.timestamp) AS inactivity_time
- FROM ${events.sql()} AS e
- ) AS event
+ FROM ${events.sql()} AS e
+ ) AS event
WHERE (event.inactivity_time > 30 OR event.inactivity_time IS NULL)
`,
});
```
-The SQL query above creates sessions, either where inactivity_time is NULL,
-which means it is the first session for the user, or after 30 minutes of
-inactivity.
+```yaml
+cubes:
+ - name: sessions
+ sql: >
+ SELECT
+ ROW_NUMBER() OVER(PARTITION BY event.anonymous_id ORDER BY event.timestamp) || ' - '|| event.anonymous_id AS session_id
+ , event.anonymous_id
+ , event.timestamp AS session_start_at
+ , ROW_NUMBER() OVER(PARTITION BY event.anonymous_id ORDER BY event.timestamp) AS session_sequence
+ , LEAD(timestamp) OVER(PARTITION BY event.anonymous_id ORDER BY event.timestamp) AS next_session_start_at
+ FROM (
+ SELECT e.anonymous_id
+ , e.timestamp
+ , DATEDIFF(minutes
+ , LAG(e.timestamp) OVER(PARTITION BY e.anonymous_id ORDER BY e.timestamp)
+ , e.timestamp) AS inactivity_time
+ FROM {events.sql()} AS e
+ ) AS event
+ WHERE (event.inactivity_time > 30 OR event.inactivity_time IS NULL)
+```
+
+
As a primary key, we’re going to use `session_id`, which is the combination of
the `anonymous_id` and the session sequence, since it’s guaranteed to be unique
for each session. Having this in place, we can already count sessions and plot a
time series chart of sessions.
+
+
```javascript
cube("sessions", {
// ...,
@@ -242,6 +342,38 @@ cube("sessions", {
});
```
+```yaml
+cubes:
+ - name: sessions
+ # ...
+
+ measures:
+ - name: count
+ sql: session_id
+ type: count
+
+ dimensions:
+ - name: anonymous_id
+ sql: anonymous_id
+ type: number
+ primary_key: true
+
+ - name: session_id
+ sql: session_id
+ type: number
+ primary_key: true
+
+ - name: start_at
+ sql: session_start_at
+ type: time
+
+ - name: next_start_at
+ sql: next_session_start_at
+ type: time
+```
+
+
+
## Connecting Events to Sessions
The next step is to identify the events contained within the session and the
@@ -253,6 +385,8 @@ cube has a `many_to_one` relation to the `sessions` cube, and specify a
condition, such as all users' events from session start (inclusive) till the
start of the next session (exclusive) belong to that session.
+
+
```javascript
cube("events", {
// ...,
@@ -270,9 +404,27 @@ cube("events", {
});
```
+```yaml
+cubes:
+ - name: events
+ # ...
+
+ joins:
+ - name: sessions
+ relationship: many_to_one
+ sql: >
+ {events.anonymous_id} = {sessions.anonymous_id}
+ AND {events.timestamp} >= {sessions.start_at}
+ AND ({events.timestamp} < {sessions.next_start_at} or {sessions.next_start_at} is null)
+```
+
+
+
To determine the end of the session, we’re going to use a [subquery
dimension](/product/data-modeling/concepts/calculated-members#subquery-dimensions).
+
+
```javascript
cube("events", {
// ...,
@@ -293,7 +445,7 @@ cube("sessions", {
end_raw: {
sql: `${events.last_event_timestamp}`,
type: `time`,
- subQuery: true,
+ sub_query: true,
public: false,
},
@@ -320,6 +472,46 @@ cube("sessions", {
});
```
+```yaml
+cubes:
+ - name: events
+ # ...
+
+ measures:
+ - name: last_event_timestamp
+ sql: timestamp
+ type: max
+ public: false
+
+ - name: sessions
+ # ...
+
+ dimensions:
+ - name: end_raw
+ sql: "{events.last_event_timestamp}"
+ type: time
+ sub_query: true
+ public: false
+
+ - name: end_at
+ sql: >
+ CASE WHEN {end_raw} + INTERVAL '1 minutes' > {CUBE}.next_session_start_at
+ THEN {CUBE}.next_session_start_at
+ ELSE {end_raw} + INTERVAL '30 minutes'
+ END
+
+ - name: duration_minutes
+ sql: "datediff(minutes, {CUBE}.session_start_at, {end_at})"
+ type: number
+
+ measures:
+ - name: average_duration_minutes
+ sql: "{duration_minutes}"
+ type: avg
+```
+
+
+
## Mapping Sessions to Users
Right now all our sessions are anonymous, so the final step in our modeling
@@ -334,13 +526,13 @@ us with a `user_id` to use in the **Sessions** cube. Also, `identifies` could be
used later on to join `sessions` to your `users` cube, which could be a cube
built based on your internal database data for users.
+
+
```javascript
// Create a new file for the `identifies` cube with following content
cube(`identifies`, {
sql: `SELECT distinct user_id, anonymous_id FROM javascript.identifies`,
- measures: {},
-
dimensions: {
id: {
sql: `user_id || '-' || anonymous_id`,
@@ -362,9 +554,35 @@ cube(`identifies`, {
});
```
+```yaml
+# Create a new file for the `identifies` cube with following content
+cubes:
+ - name: identifies
+ sql: "SELECT distinct user_id, anonymous_id FROM javascript.identifies"
+
+ dimensions:
+ - name: id
+ sql: "user_id || '-' || anonymous_id"
+ type: string
+ primary_key: true
+
+ - name: anonymous_id
+ sql: anonymous_id
+ type: number
+
+ - name: user_id
+ sql: user_id
+ type: number
+ format: id
+```
+
+
+
We need to declare a relationship between `identifies` and `sessions`, where
session has a `many_to_one` relationship with identity.
+
+
```javascript
cube("sessions", {
// ...,
@@ -378,10 +596,25 @@ cube("sessions", {
});
```
+```yaml
+cubes:
+ - name: sessions
+ # ...
+
+ joins:
+ - name: identifies
+ relationship: many_to_one
+ sql: "{identifies.anonymous_id} = {sessions.anonymous_id}"
+```
+
+
+
Once we have it, we can create a dimension `user_id`, which will be either a
`user_id` from the identifies table or an `anonymous_id` in case we don’t have
the identity of a visitor, which means that this visitor never signed in.
+
+
```javascript
cube("sessions", {
// ...,
@@ -395,9 +628,23 @@ cube("sessions", {
});
```
+```yaml
+cubes:
+ - name: sessions
+ # ...
+
+ dimensions:
+ - name: user_id
+ sql: "coalesce({identifies.user_id}, {CUBE}.anonymous_id)"
+ type: string
+
+
+
Based on the just-created dimension, we can add two new metrics: the count of
users and the average sessions per user.
+
+
```javascript
cube("sessions", {
// ...,
@@ -416,6 +663,23 @@ cube("sessions", {
});
```
+```yaml
+cubes:
+ - name: sessions
+ # ...
+
+ measures:
+ - name: users_count
+ sql: "{user_id}"
+ type: count_distinct
+
+ - name: average_sessions_per_user
+ sql: "{count}::NUMERIC / NULLIF({users_count}, 0)"
+ type: number
+```
+
+
+
That was our final step in building a foundation for a sessions data model.
Congratulations on making it here! Now we’re ready to add some advanced metrics
on top of it.
@@ -424,10 +688,12 @@ on top of it.
### Number of Events per Session
-This one is super easy to add with a subQuery dimension. We just calculate the
+This one is super easy to add with a subquery dimension. We just calculate the
number of events, which we already have as a measure in the `events` cube, as a
dimension in the `sessions` cube.
+
+
```javascript
cube("sessions", {
// ...,
@@ -436,20 +702,34 @@ cube("sessions", {
number_events: {
sql: `${events.count}`,
type: `number`,
- subQuery: true,
+ sub_query: true,
},
},
});
```
-### Bounce Rate
+```yaml
+cubes:
+ - name: sessions
+ # ...
+
+ dimensions:
+ - name: number_events
+ sql: "{events.count}"
+ type: number
+ sub_query: true
+```
-A bounced session is usually defined as a session with only one event. Since
+
+
+### Bounce Rate
we’ve just defined the number of events per session, we can easily add a
dimension `is_bounced` to identify bounced sessions to the Sessions cube. Using
this dimension, we can add two measures to the Sessions cube as well - a count
of bounced sessions and a bounce rate.
+
+
```javascript
cube("sessions", {
// ...,
@@ -484,11 +764,40 @@ cube("sessions", {
});
```
+```yaml
+cubes:
+ - name: sessions
+ # ...
+
+ dimensions:
+ - name: is_bounced
+ type: string
+ case:
+ when: [{ sql: "{number_events} = 1", label: "True" }]
+ else: { label: "False" }
+
+ measures:
+ - name: bounced_count
+ sql: session_id
+ type: count
+ filters:
+ - - sql: "{is_bounced} = 'True'
+
+ - name: bounce_rate
+ sql: "100.00 * {bounced_count} / NULLIF({count}, 0)"
+ type: number
+ format: percent
+```
+
+
+
### First Referrer
We already have this column in place in our base table. We’re just going to
define a dimension on top of this.
+
+
```javascript
cube("sessions", {
// ...,
@@ -502,6 +811,19 @@ cube("sessions", {
});
```
+```yaml
+cubes:
+ - name: sessions
+ # ...
+
+ measures:
+ - name: first_referrer
+ type: string
+ sql: first_referrer
+```
+
+
+
### Sessions New vs Returning
Same as for the first referrer. We already have a `session_sequence` field in
@@ -509,6 +831,8 @@ the base table, which we can use for the `is_first` dimension. If
`session_sequence` is 1 - then it belongs to the first session, otherwise - to a
repeated session.
+
+
```javascript
cube("sessions", {
// ...,
@@ -541,6 +865,33 @@ cube("sessions", {
});
```
+```yaml
+cubes:
+ - name: sessions
+ # ...
+
+ dimensions:
+ - name: is_first
+ type: string
+ case:
+ when: [{ sql: "{CUBE}.session_sequence = 1", label: "First" }]
+ else: { label: "Repeat" }
+
+ measures:
+ - name: repeat_count
+ description: Repeat Sessions Count
+ sql: session_id
+ type: count
+ filters: [{ sql: "{is_first} = 'Repeat'" }]
+
+ - name: repeat_percent
+ description: Percent of Repeat Sessions
+ sql: "100.00 * {repeat_count} / NULLIF({count}, 0)"
+ type: number
+ format: percent
+
+
+
### Filter Sessions, where user performs specific event
Often, you want to select specific sessions where a user performed some
@@ -549,6 +900,8 @@ important action. In the example below, we’ll filter out sessions where the
Define a measure on the Events cube to count only `form_submitted` events.
+
+
```javascript
cube("events", {
// ...,
@@ -564,7 +917,24 @@ cube("events", {
});
```
-Define a dimension `form_submitted_count` on the Sessions using subQuery.
+```yaml
+cubes:
+ - name: events
+ # ...
+
+ # Add this measure to the `events` cube
+ measures:
+ - name: form_submitted_count
+ sql: event_id
+ type: count
+ filters: [{ sql: "{CUBE}.event = 'form_submitted'" }]
+```
+
+
+
+Define a dimension `form_submitted_count` on the Sessions using `sub_query`.
+
+
```javascript
cube("sessions", {
@@ -575,15 +945,32 @@ cube("sessions", {
form_submitted_count: {
sql: `${events.form_submitted_count}`,
type: `number`,
- subQuery: true,
+ sub_query: true,
},
},
});
```
+```yaml
+cubes:
+ - name: sessions
+ # ...
+
+ # Add this dimension to the `sessions` cube
+ dimensions:
+ - name: form_submitted_count
+ sql: "{events.form_submitted_count}"
+ type: number
+ sub_query: true
+```
+
+
+
Create a measure to count only sessions where `form_submitted_count` is greater
than 0.
+
+
```javascript
cube("sessions", {
// ...,
@@ -599,6 +986,21 @@ cube("sessions", {
});
```
+```yaml
+cubes:
+ - name: sessions
+ # ...
+
+ # Add this measure to the `sessions` cube
+ measures:
+ - name: with_form_submitted_count
+ sql: session_id
+ type: count
+ filters: [{ sql: "{form_submitted_count} > 0" }]
+```
+
+
+
Now we can use the `with_form_submitted_count` measure to get only sessions when
the `form_submitted` event occurred.
diff --git a/docs/pages/guides/recipes/data-modeling/snapshots.mdx b/docs/pages/guides/recipes/data-modeling/snapshots.mdx
index ce851e7339df8..96ec28ae61945 100644
--- a/docs/pages/guides/recipes/data-modeling/snapshots.mdx
+++ b/docs/pages/guides/recipes/data-modeling/snapshots.mdx
@@ -75,6 +75,8 @@ First, we need to generate a range with all dates of interest, from the earliest
to the latest. Second, we need to join the dates with the statuses and leave
only the most recent statuses to date.
+
+
```javascript
cube(`status_snapshots`, {
extends: statuses,
@@ -111,6 +113,39 @@ cube(`status_snapshots`, {
});
```
+```yaml
+cubes:
+ - name: status_snapshots
+ extends: statuses
+ sql: >
+ -- Create a range from the earlist date to the latest date
+ WITH range AS (
+ SELECT date
+ FROM GENERATE_SERIES(
+ (SELECT MIN(changed_at) FROM {statuses.sql()} AS statuses),
+ (SELECT MAX(changed_at) FROM {statuses.sql()} AS statuses),
+ INTERVAL '1 DAY'
+ ) AS date
+ )
+
+ -- Calculate snapshots for every date in the range
+ SELECT range.date, statuses.*
+ FROM range
+ LEFT JOIN {statuses.sql()} AS statuses
+ ON range.date >= statuses.changed_at
+ AND statuses.changed_at = (
+ SELECT MAX(changed_at)
+ FROM {statuses.sql()} AS sub_statuses
+ WHERE sub_statuses.order_id = statuses.order_id
+ )
+ dimensions:
+ date:
+ sql: date
+ type: time
+```
+
+
+
To generate a range of dates, here we use the
diff --git a/docs/pages/product/data-modeling/concepts/data-blending.mdx b/docs/pages/product/data-modeling/concepts/data-blending.mdx
index d2541242f6507..f19c045bd096a 100644
--- a/docs/pages/product/data-modeling/concepts/data-blending.mdx
+++ b/docs/pages/product/data-modeling/concepts/data-blending.mdx
@@ -128,6 +128,8 @@ cube(`online_orders`, {
Given the above cubes, a data blending cube can be introduced as follows:
+
+
```javascript
cube(`all_sales`, {
sql: `
@@ -136,14 +138,14 @@ cube(`all_sales`, {
user_id AS customer_id,
created_at,
'online' AS row_type
- FROM (${online_orders.sql()}) AS online
+ FROM ${online_orders.sql()} AS online
UNION ALL
SELECT
amount,
customer_id,
created_at,
'retail' AS row_type
- FROM (${retail_orders.sql()}) AS retail
+ FROM ${retail_orders.sql()} AS retail
`,
measures: {
@@ -193,16 +195,63 @@ cube(`all_sales`, {
});
```
-
+```yaml
+cubes:
+ - name: all_sales
+ sql: >
+ SELECT
+ amount,
+ user_id AS customer_id,
+ created_at,
+ 'online' AS row_type
+ FROM {online_orders.sql()} AS online
+ UNION ALL
+ SELECT
+ amount,
+ customer_id,
+ created_at,
+ 'retail' AS row_type
+ FROM {retail_orders.sql()} AS retail
+
+ measures:
+ - name: customer_count
+ sql: customer_id
+ type: count_distinct
+
+ - name: revenue
+ sql: amount
+ type: sum
+
+ - name: online_revenue
+ sql: amount
+ type: sum
+ filters:
+ - sql: "{CUBE}.row_type = 'online'"
-Currently, [`{cube.sql()}` function][ref-cube-sql-func] is not supported in YAML data models.
-Please [track this issue](https://github.com/cube-js/cube/issues/7484).
+ - name: offline_revenue
+ sql: amount
+ type: sum
+ filters:
+ - sql: "{CUBE}.row_type = 'retail'"
-As a workaround, you can use JavaScript data models, put a SQL query in a
-[Jinja](/product/data-modeling/dynamic/jinja#jinja) variable, or load it from
-the [template context](/reference/python/cube#templatecontext-class).
+ - name: online_revenue_percentage
+ sql: >
+ {online_revenue} /
+ NULLIF({online_revenue} + {offline_revenue}, 0)
+ type: number
+ format: percent
-
+ dimensions:
+ - name: created_at
+ sql: created_at
+ type: time
+
+ - name: revenue_type
+ sql: row_type
+ type: string
+```
+
+
Another use case of the Data Blending approach would be when you want to chart
some measures (business related) together and see how they correlate.
diff --git a/docs/pages/product/data-modeling/concepts/polymorphic-cubes.mdx b/docs/pages/product/data-modeling/concepts/polymorphic-cubes.mdx
index 5c548b0b26d18..b3aeb0b344ebc 100644
--- a/docs/pages/product/data-modeling/concepts/polymorphic-cubes.mdx
+++ b/docs/pages/product/data-modeling/concepts/polymorphic-cubes.mdx
@@ -90,6 +90,8 @@ cube(`users`, {
Then you can derive the `teachers` and `students` cubes from `users`:
+
+
```javascript
cube(`teachers`, {
extends: users,
@@ -110,16 +112,24 @@ cube(`students`, {
});
```
-
-
-Currently, [`{cube.sql()}` function][ref-cube-sql-func] is not supported in YAML data models.
-Please [track this issue](https://github.com/cube-js/cube/issues/7484).
-
-As a workaround, you can use JavaScript data models, put a SQL query in a
-[Jinja](/product/data-modeling/dynamic/jinja#jinja) variable, or load it from
-the [template context](/reference/python/cube#templatecontext-class).
+```yaml
+cubes:
+ - name: teachers
+ extends: users
+ sql: >
+ SELECT *
+ FROM {users.sql()}
+ WHERE type = 'teacher'
+
+ - name: students
+ extends: users
+ sql: >
+ SELECT *
+ FROM {users.sql()}
+ WHERE type = 'student'
+```
-
+
Once we have those cubes, we can define correct joins from the `lessons` cube:
diff --git a/docs/pages/product/data-modeling/syntax.mdx b/docs/pages/product/data-modeling/syntax.mdx
index 46865cd47b7cc..ad759429b42cd 100644
--- a/docs/pages/product/data-modeling/syntax.mdx
+++ b/docs/pages/product/data-modeling/syntax.mdx
@@ -38,7 +38,7 @@ model
Cube supports two ways to define data model files: with [YAML][wiki-yaml] or
JavaScript syntax. YAML data model files should have the `.yml` extension,
whereas JavaScript data model files should end with `.js`. You can mix YAML and
-JavaScript files within a single data model.
+JavaScript files within a single data model.
@@ -547,6 +547,8 @@ when defining [polymorphic cubes][ref-polymorphism] or using [data blending][ref
Consider the following data model:
+
+
```javascript
cube(`organisms`, {
sql_table: `organisms`
@@ -564,7 +566,7 @@ cube(`dogs`, {
sql: `
SELECT *
FROM ${animals.sql()}
- WHERE species = 'dogs'
+ WHERE species = 'dogs'
`,
measures: {
@@ -575,6 +577,30 @@ cube(`dogs`, {
})
```
+```yaml
+cubes:
+ - name: organisms
+ sql_table: organisms
+
+ - name: animals
+ sql: >
+ SELECT *
+ FROM {organisms.sql()}
+ WHERE kingdom = 'animals'
+
+ - name: dogs
+ sql: >
+ SELECT *
+ FROM {animals.sql()}
+ WHERE species = 'dogs'
+
+ measures:
+ - name: count
+ type: count
+```
+
+
+
If you query for `dogs.count`, Cube will generate the following SQL:
```sql
@@ -590,18 +616,6 @@ FROM (
) AS "dogs"
```
-
-
-Currently, `{cube.sql()}` function is only supported in JavaScript data models.
-It is not supported in YAML data models.
-Please [track this issue](https://github.com/cube-js/cube/issues/7484).
-
-As a workaround, you can use JavaScript data models, put a SQL query in a
-[Jinja](/product/data-modeling/dynamic/jinja#jinja) variable, or load it from
-the [template context](/reference/python/cube#templatecontext-class).
-
-
-
### Curly braces and escaping
As you can see in the examples above, within [SQL expressions][self-sql-expressions],
@@ -761,4 +775,4 @@ defining dynamic data models.
[ref-style-guide]: /guides/style-guide
[ref-polymorphism]: /product/data-modeling/concepts/polymorphic-cubes
[ref-data-blending]: /product/data-modeling/concepts/data-blending
-[link-js-template-literals]: https://developer.mozilla.org/en-US/docs/Learn_web_development/Core/Scripting/Strings#embedding_javascript
\ No newline at end of file
+[link-js-template-literals]: https://developer.mozilla.org/en-US/docs/Learn_web_development/Core/Scripting/Strings#embedding_javascript
diff --git a/docs/pages/reference/data-model/cube.mdx b/docs/pages/reference/data-model/cube.mdx
index c367aa0ba15e6..2fb5e5dec58ef 100644
--- a/docs/pages/reference/data-model/cube.mdx
+++ b/docs/pages/reference/data-model/cube.mdx
@@ -269,18 +269,34 @@ cubes:
-With JavaScript models, you can also reference other cubes' SQL statements for
-code reuse:
+You can also reference other cubes' SQL statements for code reuse using the
+[`{cube.sql()}`][ref-syntax-cube-sql] function:
+
+
```javascript
cube(`companies`, {
sql: `
- SELECT users.company_name, users.company_id
+ SELECT
+ users.company_name,
+ users.company_id
FROM ${users.sql()} AS users
`,
});
```
+```yaml
+cubes:
+ - name: companies
+ sql:
+ SELECT
+ users.company_name,
+ users.company_id
+ FROM {users.sql()} AS users
+```
+
+
+
It is recommended to prefer the [`sql_table`](#parameters-sql-table) parameter
over the `sql` parameter for all cubes that are supposed to use queries like
this: `SELECT * FROM table`.
@@ -626,4 +642,5 @@ The `access_policy` parameter is used to configure [data access policies][ref-re
[ref-ref-segments]: /reference/data-model/segments
[ref-ref-joins]: /reference/data-model/joins
[ref-ref-pre-aggs]: /reference/data-model/pre-aggregations
-[ref-ref-dap]: /reference/data-model/data-access-policies
\ No newline at end of file
+[ref-ref-dap]: /reference/data-model/data-access-policies
+[ref-syntax-cube-sql]: /product/data-modeling/syntax#cubesql-function
\ No newline at end of file
diff --git a/packages/cubejs-schema-compiler/package.json b/packages/cubejs-schema-compiler/package.json
index 304dcbd3d7423..5427c538971ff 100644
--- a/packages/cubejs-schema-compiler/package.json
+++ b/packages/cubejs-schema-compiler/package.json
@@ -98,7 +98,9 @@
"coverageDirectory": "coverage/",
"collectCoverageFrom": [
"dist/src/**/*.js",
- "dist/src/**/*.ts"
+ "dist/src/**/*.ts",
+ "!dist/src/parser/GenericSql*.js",
+ "!dist/src/parser/Python3*.js"
],
"coveragePathIgnorePatterns": [
".*\\.d\\.ts"
diff --git a/packages/cubejs-schema-compiler/src/parser/Python3Parser.g4 b/packages/cubejs-schema-compiler/src/parser/Python3Parser.g4
index b4f7fd5f2ea18..5cfdeaf231837 100644
--- a/packages/cubejs-schema-compiler/src/parser/Python3Parser.g4
+++ b/packages/cubejs-schema-compiler/src/parser/Python3Parser.g4
@@ -228,7 +228,7 @@ testlist_comp: (test | star_expr) (
comp_for
| (COMMA (test | star_expr))* (COMMA)?
);
-trailer: '(' (arglist)? ')' | '[' subscriptlist ']' | '.' NAME;
+trailer: callArguments | '[' subscriptlist ']' | '.' NAME;
subscriptlist: subscript (COMMA subscript)* (COMMA)?;
subscript: test | (test)? ':' (test)? (sliceop)?;
sliceop: ':' (test)?;
@@ -251,6 +251,8 @@ dictorsetmaker: (
classdef: 'class' NAME ('(' (arglist)? ')')? ':' suite;
+callArguments: '(' (arglist)? ')';
+
arglist: argument (COMMA argument)* (COMMA)?;
// The reason that keywords are test nodes instead of NAME is that using NAME results in an
diff --git a/packages/cubejs-schema-compiler/src/parser/Python3Parser.interp b/packages/cubejs-schema-compiler/src/parser/Python3Parser.interp
index f6dbf2507cab5..ece9c97d4167a 100644
--- a/packages/cubejs-schema-compiler/src/parser/Python3Parser.interp
+++ b/packages/cubejs-schema-compiler/src/parser/Python3Parser.interp
@@ -307,6 +307,7 @@ exprlist
testlist
dictorsetmaker
classdef
+callArguments
arglist
argument
comp_iter
@@ -321,4 +322,4 @@ double_string_template_atom
atn:
-[3, 51485, 51898, 1421, 44986, 20307, 1543, 60043, 49729, 3, 114, 1171, 4, 2, 9, 2, 4, 3, 9, 3, 4, 4, 9, 4, 4, 5, 9, 5, 4, 6, 9, 6, 4, 7, 9, 7, 4, 8, 9, 8, 4, 9, 9, 9, 4, 10, 9, 10, 4, 11, 9, 11, 4, 12, 9, 12, 4, 13, 9, 13, 4, 14, 9, 14, 4, 15, 9, 15, 4, 16, 9, 16, 4, 17, 9, 17, 4, 18, 9, 18, 4, 19, 9, 19, 4, 20, 9, 20, 4, 21, 9, 21, 4, 22, 9, 22, 4, 23, 9, 23, 4, 24, 9, 24, 4, 25, 9, 25, 4, 26, 9, 26, 4, 27, 9, 27, 4, 28, 9, 28, 4, 29, 9, 29, 4, 30, 9, 30, 4, 31, 9, 31, 4, 32, 9, 32, 4, 33, 9, 33, 4, 34, 9, 34, 4, 35, 9, 35, 4, 36, 9, 36, 4, 37, 9, 37, 4, 38, 9, 38, 4, 39, 9, 39, 4, 40, 9, 40, 4, 41, 9, 41, 4, 42, 9, 42, 4, 43, 9, 43, 4, 44, 9, 44, 4, 45, 9, 45, 4, 46, 9, 46, 4, 47, 9, 47, 4, 48, 9, 48, 4, 49, 9, 49, 4, 50, 9, 50, 4, 51, 9, 51, 4, 52, 9, 52, 4, 53, 9, 53, 4, 54, 9, 54, 4, 55, 9, 55, 4, 56, 9, 56, 4, 57, 9, 57, 4, 58, 9, 58, 4, 59, 9, 59, 4, 60, 9, 60, 4, 61, 9, 61, 4, 62, 9, 62, 4, 63, 9, 63, 4, 64, 9, 64, 4, 65, 9, 65, 4, 66, 9, 66, 4, 67, 9, 67, 4, 68, 9, 68, 4, 69, 9, 69, 4, 70, 9, 70, 4, 71, 9, 71, 4, 72, 9, 72, 4, 73, 9, 73, 4, 74, 9, 74, 4, 75, 9, 75, 4, 76, 9, 76, 4, 77, 9, 77, 4, 78, 9, 78, 4, 79, 9, 79, 4, 80, 9, 80, 4, 81, 9, 81, 4, 82, 9, 82, 4, 83, 9, 83, 4, 84, 9, 84, 4, 85, 9, 85, 4, 86, 9, 86, 4, 87, 9, 87, 4, 88, 9, 88, 4, 89, 9, 89, 4, 90, 9, 90, 3, 2, 3, 2, 7, 2, 183, 10, 2, 12, 2, 14, 2, 186, 11, 2, 3, 2, 3, 2, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 5, 3, 195, 10, 3, 3, 4, 3, 4, 7, 4, 199, 10, 4, 12, 4, 14, 4, 202, 11, 4, 3, 4, 3, 4, 3, 5, 3, 5, 3, 5, 3, 5, 5, 5, 210, 10, 5, 3, 5, 5, 5, 213, 10, 5, 3, 5, 3, 5, 3, 6, 6, 6, 218, 10, 6, 13, 6, 14, 6, 219, 3, 7, 3, 7, 3, 7, 3, 7, 5, 7, 226, 10, 7, 3, 8, 3, 8, 3, 8, 3, 9, 3, 9, 3, 9, 3, 9, 3, 9, 5, 9, 236, 10, 9, 3, 9, 3, 9, 3, 9, 3, 10, 3, 10, 5, 10, 243, 10, 10, 3, 10, 3, 10, 3, 11, 3, 11, 3, 11, 5, 11, 250, 10, 11, 3, 11, 3, 11, 3, 11, 3, 11, 5, 11, 256, 10, 11, 7, 11, 258, 10, 11, 12, 11, 14, 11, 261, 11, 11, 3, 11, 3, 11, 3, 11, 5, 11, 266, 10, 11, 3, 11, 3, 11, 3, 11, 3, 11, 5, 11, 272, 10, 11, 7, 11, 274, 10, 11, 12, 11, 14, 11, 277, 11, 11, 3, 11, 3, 11, 3, 11, 3, 11, 5, 11, 283, 10, 11, 5, 11, 285, 10, 11, 5, 11, 287, 10, 11, 3, 11, 3, 11, 3, 11, 5, 11, 292, 10, 11, 5, 11, 294, 10, 11, 5, 11, 296, 10, 11, 3, 11, 3, 11, 5, 11, 300, 10, 11, 3, 11, 3, 11, 3, 11, 3, 11, 5, 11, 306, 10, 11, 7, 11, 308, 10, 11, 12, 11, 14, 11, 311, 11, 11, 3, 11, 3, 11, 3, 11, 3, 11, 5, 11, 317, 10, 11, 5, 11, 319, 10, 11, 5, 11, 321, 10, 11, 3, 11, 3, 11, 3, 11, 5, 11, 326, 10, 11, 5, 11, 328, 10, 11, 3, 12, 3, 12, 3, 12, 5, 12, 333, 10, 12, 3, 13, 3, 13, 3, 13, 5, 13, 338, 10, 13, 3, 13, 3, 13, 3, 13, 3, 13, 5, 13, 344, 10, 13, 7, 13, 346, 10, 13, 12, 13, 14, 13, 349, 11, 13, 3, 13, 3, 13, 3, 13, 5, 13, 354, 10, 13, 3, 13, 3, 13, 3, 13, 3, 13, 5, 13, 360, 10, 13, 7, 13, 362, 10, 13, 12, 13, 14, 13, 365, 11, 13, 3, 13, 3, 13, 3, 13, 3, 13, 5, 13, 371, 10, 13, 5, 13, 373, 10, 13, 5, 13, 375, 10, 13, 3, 13, 3, 13, 3, 13, 5, 13, 380, 10, 13, 5, 13, 382, 10, 13, 5, 13, 384, 10, 13, 3, 13, 3, 13, 5, 13, 388, 10, 13, 3, 13, 3, 13, 3, 13, 3, 13, 5, 13, 394, 10, 13, 7, 13, 396, 10, 13, 12, 13, 14, 13, 399, 11, 13, 3, 13, 3, 13, 3, 13, 3, 13, 5, 13, 405, 10, 13, 5, 13, 407, 10, 13, 5, 13, 409, 10, 13, 3, 13, 3, 13, 3, 13, 5, 13, 414, 10, 13, 5, 13, 416, 10, 13, 3, 14, 3, 14, 3, 15, 3, 15, 5, 15, 422, 10, 15, 3, 16, 3, 16, 3, 16, 7, 16, 427, 10, 16, 12, 16, 14, 16, 430, 11, 16, 3, 16, 5, 16, 433, 10, 16, 3, 16, 3, 16, 3, 17, 3, 17, 3, 17, 3, 17, 3, 17, 3, 17, 3, 17, 3, 17, 5, 17, 445, 10, 17, 3, 18, 3, 18, 3, 18, 3, 18, 3, 18, 5, 18, 452, 10, 18, 3, 18, 3, 18, 3, 18, 5, 18, 457, 10, 18, 7, 18, 459, 10, 18, 12, 18, 14, 18, 462, 11, 18, 5, 18, 464, 10, 18, 3, 19, 3, 19, 3, 19, 3, 19, 5, 19, 470, 10, 19, 3, 20, 3, 20, 5, 20, 474, 10, 20, 3, 20, 3, 20, 3, 20, 5, 20, 479, 10, 20, 7, 20, 481, 10, 20, 12, 20, 14, 20, 484, 11, 20, 3, 20, 5, 20, 487, 10, 20, 3, 21, 3, 21, 3, 22, 3, 22, 3, 22, 3, 23, 3, 23, 3, 24, 3, 24, 3, 24, 3, 24, 3, 24, 5, 24, 501, 10, 24, 3, 25, 3, 25, 3, 26, 3, 26, 3, 27, 3, 27, 5, 27, 509, 10, 27, 3, 28, 3, 28, 3, 29, 3, 29, 3, 29, 3, 29, 5, 29, 517, 10, 29, 5, 29, 519, 10, 29, 3, 30, 3, 30, 5, 30, 523, 10, 30, 3, 31, 3, 31, 3, 31, 3, 32, 3, 32, 7, 32, 530, 10, 32, 12, 32, 14, 32, 533, 11, 32, 3, 32, 3, 32, 6, 32, 537, 10, 32, 13, 32, 14, 32, 538, 5, 32, 541, 10, 32, 3, 32, 3, 32, 3, 32, 3, 32, 3, 32, 3, 32, 3, 32, 5, 32, 550, 10, 32, 3, 33, 3, 33, 3, 33, 5, 33, 555, 10, 33, 3, 34, 3, 34, 3, 34, 5, 34, 560, 10, 34, 3, 35, 3, 35, 3, 35, 7, 35, 565, 10, 35, 12, 35, 14, 35, 568, 11, 35, 3, 35, 5, 35, 571, 10, 35, 3, 36, 3, 36, 3, 36, 7, 36, 576, 10, 36, 12, 36, 14, 36, 579, 11, 36, 3, 37, 3, 37, 3, 37, 7, 37, 584, 10, 37, 12, 37, 14, 37, 587, 11, 37, 3, 38, 3, 38, 3, 38, 3, 38, 7, 38, 593, 10, 38, 12, 38, 14, 38, 596, 11, 38, 3, 39, 3, 39, 3, 39, 3, 39, 7, 39, 602, 10, 39, 12, 39, 14, 39, 605, 11, 39, 3, 40, 3, 40, 3, 40, 3, 40, 5, 40, 611, 10, 40, 3, 41, 3, 41, 3, 41, 3, 41, 3, 41, 3, 41, 3, 41, 3, 41, 3, 41, 5, 41, 622, 10, 41, 3, 42, 3, 42, 3, 42, 3, 42, 5, 42, 628, 10, 42, 3, 43, 3, 43, 3, 43, 3, 43, 3, 43, 3, 43, 3, 43, 3, 43, 3, 43, 7, 43, 639, 10, 43, 12, 43, 14, 43, 642, 11, 43, 3, 43, 3, 43, 3, 43, 5, 43, 647, 10, 43, 3, 44, 3, 44, 3, 44, 3, 44, 3, 44, 3, 44, 3, 44, 5, 44, 656, 10, 44, 3, 45, 3, 45, 3, 45, 3, 45, 3, 45, 3, 45, 3, 45, 3, 45, 3, 45, 5, 45, 667, 10, 45, 3, 46, 3, 46, 3, 46, 3, 46, 3, 46, 3, 46, 3, 46, 6, 46, 676, 10, 46, 13, 46, 14, 46, 677, 3, 46, 3, 46, 3, 46, 5, 46, 683, 10, 46, 3, 46, 3, 46, 3, 46, 5, 46, 688, 10, 46, 3, 46, 3, 46, 3, 46, 5, 46, 693, 10, 46, 3, 47, 3, 47, 3, 47, 3, 47, 7, 47, 699, 10, 47, 12, 47, 14, 47, 702, 11, 47, 3, 47, 3, 47, 3, 47, 3, 48, 3, 48, 3, 48, 5, 48, 710, 10, 48, 3, 49, 3, 49, 3, 49, 3, 49, 5, 49, 716, 10, 49, 5, 49, 718, 10, 49, 3, 50, 3, 50, 3, 50, 3, 50, 6, 50, 724, 10, 50, 13, 50, 14, 50, 725, 3, 50, 3, 50, 5, 50, 730, 10, 50, 3, 51, 3, 51, 3, 51, 3, 51, 3, 51, 3, 51, 5, 51, 738, 10, 51, 3, 51, 5, 51, 741, 10, 51, 3, 52, 3, 52, 5, 52, 745, 10, 52, 3, 53, 3, 53, 5, 53, 749, 10, 53, 3, 53, 3, 53, 3, 53, 3, 54, 3, 54, 5, 54, 756, 10, 54, 3, 54, 3, 54, 3, 54, 3, 55, 3, 55, 3, 55, 7, 55, 764, 10, 55, 12, 55, 14, 55, 767, 11, 55, 3, 56, 3, 56, 3, 56, 7, 56, 772, 10, 56, 12, 56, 14, 56, 775, 11, 56, 3, 57, 3, 57, 3, 57, 5, 57, 780, 10, 57, 3, 58, 3, 58, 3, 58, 3, 58, 7, 58, 786, 10, 58, 12, 58, 14, 58, 789, 11, 58, 3, 59, 3, 59, 3, 59, 3, 59, 3, 59, 3, 59, 3, 59, 3, 59, 3, 59, 3, 59, 3, 59, 3, 59, 3, 59, 5, 59, 804, 10, 59, 3, 60, 3, 60, 3, 60, 3, 61, 3, 61, 3, 61, 7, 61, 812, 10, 61, 12, 61, 14, 61, 815, 11, 61, 3, 62, 3, 62, 3, 62, 7, 62, 820, 10, 62, 12, 62, 14, 62, 823, 11, 62, 3, 63, 3, 63, 3, 63, 7, 63, 828, 10, 63, 12, 63, 14, 63, 831, 11, 63, 3, 64, 3, 64, 3, 64, 7, 64, 836, 10, 64, 12, 64, 14, 64, 839, 11, 64, 3, 65, 3, 65, 3, 65, 7, 65, 844, 10, 65, 12, 65, 14, 65, 847, 11, 65, 3, 66, 3, 66, 3, 66, 7, 66, 852, 10, 66, 12, 66, 14, 66, 855, 11, 66, 3, 67, 3, 67, 3, 67, 5, 67, 860, 10, 67, 3, 68, 3, 68, 3, 68, 5, 68, 865, 10, 68, 3, 69, 5, 69, 868, 10, 69, 3, 69, 3, 69, 7, 69, 872, 10, 69, 12, 69, 14, 69, 875, 11, 69, 3, 70, 3, 70, 3, 70, 5, 70, 880, 10, 70, 3, 70, 3, 70, 3, 70, 5, 70, 885, 10, 70, 3, 70, 3, 70, 3, 70, 5, 70, 890, 10, 70, 3, 70, 3, 70, 3, 70, 3, 70, 6, 70, 896, 10, 70, 13, 70, 14, 70, 897, 3, 70, 6, 70, 901, 10, 70, 13, 70, 14, 70, 902, 3, 70, 3, 70, 3, 70, 3, 70, 5, 70, 909, 10, 70, 3, 71, 3, 71, 5, 71, 913, 10, 71, 3, 71, 3, 71, 3, 71, 3, 71, 5, 71, 919, 10, 71, 7, 71, 921, 10, 71, 12, 71, 14, 71, 924, 11, 71, 3, 71, 5, 71, 927, 10, 71, 5, 71, 929, 10, 71, 3, 72, 3, 72, 5, 72, 933, 10, 72, 3, 72, 3, 72, 3, 72, 3, 72, 3, 72, 3, 72, 3, 72, 5, 72, 942, 10, 72, 3, 73, 3, 73, 3, 73, 7, 73, 947, 10, 73, 12, 73, 14, 73, 950, 11, 73, 3, 73, 5, 73, 953, 10, 73, 3, 74, 3, 74, 5, 74, 957, 10, 74, 3, 74, 3, 74, 5, 74, 961, 10, 74, 3, 74, 5, 74, 964, 10, 74, 5, 74, 966, 10, 74, 3, 75, 3, 75, 5, 75, 970, 10, 75, 3, 76, 3, 76, 5, 76, 974, 10, 76, 3, 76, 3, 76, 3, 76, 5, 76, 979, 10, 76, 7, 76, 981, 10, 76, 12, 76, 14, 76, 984, 11, 76, 3, 76, 5, 76, 987, 10, 76, 3, 77, 3, 77, 3, 77, 7, 77, 992, 10, 77, 12, 77, 14, 77, 995, 11, 77, 3, 77, 5, 77, 998, 10, 77, 3, 78, 3, 78, 3, 78, 3, 78, 3, 78, 3, 78, 5, 78, 1006, 10, 78, 3, 78, 3, 78, 3, 78, 3, 78, 3, 78, 3, 78, 3, 78, 3, 78, 5, 78, 1016, 10, 78, 7, 78, 1018, 10, 78, 12, 78, 14, 78, 1021, 11, 78, 3, 78, 5, 78, 1024, 10, 78, 5, 78, 1026, 10, 78, 3, 78, 3, 78, 5, 78, 1030, 10, 78, 3, 78, 3, 78, 3, 78, 3, 78, 5, 78, 1036, 10, 78, 7, 78, 1038, 10, 78, 12, 78, 14, 78, 1041, 11, 78, 3, 78, 5, 78, 1044, 10, 78, 5, 78, 1046, 10, 78, 5, 78, 1048, 10, 78, 3, 79, 3, 79, 3, 79, 3, 79, 5, 79, 1054, 10, 79, 3, 79, 5, 79, 1057, 10, 79, 3, 79, 3, 79, 3, 79, 3, 80, 3, 80, 3, 80, 7, 80, 1065, 10, 80, 12, 80, 14, 80, 1068, 11, 80, 3, 80, 5, 80, 1071, 10, 80, 3, 81, 3, 81, 5, 81, 1075, 10, 81, 3, 81, 3, 81, 3, 81, 3, 81, 3, 81, 3, 81, 3, 81, 3, 81, 5, 81, 1085, 10, 81, 3, 82, 3, 82, 5, 82, 1089, 10, 82, 3, 83, 5, 83, 1092, 10, 83, 3, 83, 3, 83, 3, 83, 3, 83, 3, 83, 5, 83, 1099, 10, 83, 3, 84, 3, 84, 3, 84, 5, 84, 1104, 10, 84, 3, 85, 3, 85, 3, 86, 3, 86, 5, 86, 1110, 10, 86, 3, 87, 3, 87, 3, 87, 5, 87, 1115, 10, 87, 3, 88, 3, 88, 7, 88, 1119, 10, 88, 12, 88, 14, 88, 1122, 11, 88, 3, 88, 3, 88, 3, 88, 7, 88, 1127, 10, 88, 12, 88, 14, 88, 1130, 11, 88, 3, 88, 3, 88, 3, 88, 7, 88, 1135, 10, 88, 12, 88, 14, 88, 1138, 11, 88, 3, 88, 3, 88, 3, 88, 7, 88, 1143, 10, 88, 12, 88, 14, 88, 1146, 11, 88, 3, 88, 5, 88, 1149, 10, 88, 3, 89, 3, 89, 3, 89, 3, 89, 5, 89, 1155, 10, 89, 3, 89, 3, 89, 5, 89, 1159, 10, 89, 3, 90, 3, 90, 3, 90, 3, 90, 5, 90, 1165, 10, 90, 3, 90, 3, 90, 5, 90, 1169, 10, 90, 3, 90, 2, 2, 2, 91, 2, 2, 4, 2, 6, 2, 8, 2, 10, 2, 12, 2, 14, 2, 16, 2, 18, 2, 20, 2, 22, 2, 24, 2, 26, 2, 28, 2, 30, 2, 32, 2, 34, 2, 36, 2, 38, 2, 40, 2, 42, 2, 44, 2, 46, 2, 48, 2, 50, 2, 52, 2, 54, 2, 56, 2, 58, 2, 60, 2, 62, 2, 64, 2, 66, 2, 68, 2, 70, 2, 72, 2, 74, 2, 76, 2, 78, 2, 80, 2, 82, 2, 84, 2, 86, 2, 88, 2, 90, 2, 92, 2, 94, 2, 96, 2, 98, 2, 100, 2, 102, 2, 104, 2, 106, 2, 108, 2, 110, 2, 112, 2, 114, 2, 116, 2, 118, 2, 120, 2, 122, 2, 124, 2, 126, 2, 128, 2, 130, 2, 132, 2, 134, 2, 136, 2, 138, 2, 140, 2, 142, 2, 144, 2, 146, 2, 148, 2, 150, 2, 152, 2, 154, 2, 156, 2, 158, 2, 160, 2, 162, 2, 164, 2, 166, 2, 168, 2, 170, 2, 172, 2, 174, 2, 176, 2, 178, 2, 2, 8, 3, 2, 92, 104, 3, 2, 57, 58, 3, 2, 72, 73, 3, 2, 74, 75, 5, 2, 59, 59, 76, 78, 90, 90, 4, 2, 74, 75, 79, 79, 2, 1306, 2, 184, 3, 2, 2, 2, 4, 194, 3, 2, 2, 2, 6, 196, 3, 2, 2, 2, 8, 205, 3, 2, 2, 2, 10, 217, 3, 2, 2, 2, 12, 221, 3, 2, 2, 2, 14, 227, 3, 2, 2, 2, 16, 230, 3, 2, 2, 2, 18, 240, 3, 2, 2, 2, 20, 327, 3, 2, 2, 2, 22, 329, 3, 2, 2, 2, 24, 415, 3, 2, 2, 2, 26, 417, 3, 2, 2, 2, 28, 421, 3, 2, 2, 2, 30, 423, 3, 2, 2, 2, 32, 444, 3, 2, 2, 2, 34, 446, 3, 2, 2, 2, 36, 465, 3, 2, 2, 2, 38, 473, 3, 2, 2, 2, 40, 488, 3, 2, 2, 2, 42, 490, 3, 2, 2, 2, 44, 493, 3, 2, 2, 2, 46, 500, 3, 2, 2, 2, 48, 502, 3, 2, 2, 2, 50, 504, 3, 2, 2, 2, 52, 506, 3, 2, 2, 2, 54, 510, 3, 2, 2, 2, 56, 512, 3, 2, 2, 2, 58, 522, 3, 2, 2, 2, 60, 524, 3, 2, 2, 2, 62, 527, 3, 2, 2, 2, 64, 551, 3, 2, 2, 2, 66, 556, 3, 2, 2, 2, 68, 561, 3, 2, 2, 2, 70, 572, 3, 2, 2, 2, 72, 580, 3, 2, 2, 2, 74, 588, 3, 2, 2, 2, 76, 597, 3, 2, 2, 2, 78, 606, 3, 2, 2, 2, 80, 621, 3, 2, 2, 2, 82, 623, 3, 2, 2, 2, 84, 629, 3, 2, 2, 2, 86, 648, 3, 2, 2, 2, 88, 657, 3, 2, 2, 2, 90, 668, 3, 2, 2, 2, 92, 694, 3, 2, 2, 2, 94, 706, 3, 2, 2, 2, 96, 711, 3, 2, 2, 2, 98, 729, 3, 2, 2, 2, 100, 740, 3, 2, 2, 2, 102, 744, 3, 2, 2, 2, 104, 746, 3, 2, 2, 2, 106, 753, 3, 2, 2, 2, 108, 760, 3, 2, 2, 2, 110, 768, 3, 2, 2, 2, 112, 779, 3, 2, 2, 2, 114, 781, 3, 2, 2, 2, 116, 803, 3, 2, 2, 2, 118, 805, 3, 2, 2, 2, 120, 808, 3, 2, 2, 2, 122, 816, 3, 2, 2, 2, 124, 824, 3, 2, 2, 2, 126, 832, 3, 2, 2, 2, 128, 840, 3, 2, 2, 2, 130, 848, 3, 2, 2, 2, 132, 859, 3, 2, 2, 2, 134, 861, 3, 2, 2, 2, 136, 867, 3, 2, 2, 2, 138, 908, 3, 2, 2, 2, 140, 912, 3, 2, 2, 2, 142, 941, 3, 2, 2, 2, 144, 943, 3, 2, 2, 2, 146, 965, 3, 2, 2, 2, 148, 967, 3, 2, 2, 2, 150, 973, 3, 2, 2, 2, 152, 988, 3, 2, 2, 2, 154, 1047, 3, 2, 2, 2, 156, 1049, 3, 2, 2, 2, 158, 1061, 3, 2, 2, 2, 160, 1084, 3, 2, 2, 2, 162, 1088, 3, 2, 2, 2, 164, 1091, 3, 2, 2, 2, 166, 1100, 3, 2, 2, 2, 168, 1105, 3, 2, 2, 2, 170, 1107, 3, 2, 2, 2, 172, 1114, 3, 2, 2, 2, 174, 1148, 3, 2, 2, 2, 176, 1158, 3, 2, 2, 2, 178, 1168, 3, 2, 2, 2, 180, 183, 7, 47, 2, 2, 181, 183, 5, 28, 15, 2, 182, 180, 3, 2, 2, 2, 182, 181, 3, 2, 2, 2, 183, 186, 3, 2, 2, 2, 184, 182, 3, 2, 2, 2, 184, 185, 3, 2, 2, 2, 185, 187, 3, 2, 2, 2, 186, 184, 3, 2, 2, 2, 187, 188, 7, 2, 2, 3, 188, 3, 3, 2, 2, 2, 189, 195, 7, 47, 2, 2, 190, 195, 5, 30, 16, 2, 191, 192, 5, 80, 41, 2, 192, 193, 7, 47, 2, 2, 193, 195, 3, 2, 2, 2, 194, 189, 3, 2, 2, 2, 194, 190, 3, 2, 2, 2, 194, 191, 3, 2, 2, 2, 195, 5, 3, 2, 2, 2, 196, 200, 5, 152, 77, 2, 197, 199, 7, 47, 2, 2, 198, 197, 3, 2, 2, 2, 199, 202, 3, 2, 2, 2, 200, 198, 3, 2, 2, 2, 200, 201, 3, 2, 2, 2, 201, 203, 3, 2, 2, 2, 202, 200, 3, 2, 2, 2, 203, 204, 7, 2, 2, 3, 204, 7, 3, 2, 2, 2, 205, 206, 7, 90, 2, 2, 206, 212, 5, 72, 37, 2, 207, 209, 7, 60, 2, 2, 208, 210, 5, 158, 80, 2, 209, 208, 3, 2, 2, 2, 209, 210, 3, 2, 2, 2, 210, 211, 3, 2, 2, 2, 211, 213, 7, 61, 2, 2, 212, 207, 3, 2, 2, 2, 212, 213, 3, 2, 2, 2, 213, 214, 3, 2, 2, 2, 214, 215, 7, 47, 2, 2, 215, 9, 3, 2, 2, 2, 216, 218, 5, 8, 5, 2, 217, 216, 3, 2, 2, 2, 218, 219, 3, 2, 2, 2, 219, 217, 3, 2, 2, 2, 219, 220, 3, 2, 2, 2, 220, 11, 3, 2, 2, 2, 221, 225, 5, 10, 6, 2, 222, 226, 5, 156, 79, 2, 223, 226, 5, 16, 9, 2, 224, 226, 5, 14, 8, 2, 225, 222, 3, 2, 2, 2, 225, 223, 3, 2, 2, 2, 225, 224, 3, 2, 2, 2, 226, 13, 3, 2, 2, 2, 227, 228, 7, 45, 2, 2, 228, 229, 5, 16, 9, 2, 229, 15, 3, 2, 2, 2, 230, 231, 7, 12, 2, 2, 231, 232, 7, 48, 2, 2, 232, 235, 5, 18, 10, 2, 233, 234, 7, 91, 2, 2, 234, 236, 5, 100, 51, 2, 235, 233, 3, 2, 2, 2, 235, 236, 3, 2, 2, 2, 236, 237, 3, 2, 2, 2, 237, 238, 7, 63, 2, 2, 238, 239, 5, 98, 50, 2, 239, 17, 3, 2, 2, 2, 240, 242, 7, 60, 2, 2, 241, 243, 5, 20, 11, 2, 242, 241, 3, 2, 2, 2, 242, 243, 3, 2, 2, 2, 243, 244, 3, 2, 2, 2, 244, 245, 7, 61, 2, 2, 245, 19, 3, 2, 2, 2, 246, 249, 5, 22, 12, 2, 247, 248, 7, 66, 2, 2, 248, 250, 5, 100, 51, 2, 249, 247, 3, 2, 2, 2, 249, 250, 3, 2, 2, 2, 250, 259, 3, 2, 2, 2, 251, 252, 7, 62, 2, 2, 252, 255, 5, 22, 12, 2, 253, 254, 7, 66, 2, 2, 254, 256, 5, 100, 51, 2, 255, 253, 3, 2, 2, 2, 255, 256, 3, 2, 2, 2, 256, 258, 3, 2, 2, 2, 257, 251, 3, 2, 2, 2, 258, 261, 3, 2, 2, 2, 259, 257, 3, 2, 2, 2, 259, 260, 3, 2, 2, 2, 260, 295, 3, 2, 2, 2, 261, 259, 3, 2, 2, 2, 262, 293, 7, 62, 2, 2, 263, 265, 7, 59, 2, 2, 264, 266, 5, 22, 12, 2, 265, 264, 3, 2, 2, 2, 265, 266, 3, 2, 2, 2, 266, 275, 3, 2, 2, 2, 267, 268, 7, 62, 2, 2, 268, 271, 5, 22, 12, 2, 269, 270, 7, 66, 2, 2, 270, 272, 5, 100, 51, 2, 271, 269, 3, 2, 2, 2, 271, 272, 3, 2, 2, 2, 272, 274, 3, 2, 2, 2, 273, 267, 3, 2, 2, 2, 274, 277, 3, 2, 2, 2, 275, 273, 3, 2, 2, 2, 275, 276, 3, 2, 2, 2, 276, 286, 3, 2, 2, 2, 277, 275, 3, 2, 2, 2, 278, 284, 7, 62, 2, 2, 279, 280, 7, 65, 2, 2, 280, 282, 5, 22, 12, 2, 281, 283, 7, 62, 2, 2, 282, 281, 3, 2, 2, 2, 282, 283, 3, 2, 2, 2, 283, 285, 3, 2, 2, 2, 284, 279, 3, 2, 2, 2, 284, 285, 3, 2, 2, 2, 285, 287, 3, 2, 2, 2, 286, 278, 3, 2, 2, 2, 286, 287, 3, 2, 2, 2, 287, 294, 3, 2, 2, 2, 288, 289, 7, 65, 2, 2, 289, 291, 5, 22, 12, 2, 290, 292, 7, 62, 2, 2, 291, 290, 3, 2, 2, 2, 291, 292, 3, 2, 2, 2, 292, 294, 3, 2, 2, 2, 293, 263, 3, 2, 2, 2, 293, 288, 3, 2, 2, 2, 293, 294, 3, 2, 2, 2, 294, 296, 3, 2, 2, 2, 295, 262, 3, 2, 2, 2, 295, 296, 3, 2, 2, 2, 296, 328, 3, 2, 2, 2, 297, 299, 7, 59, 2, 2, 298, 300, 5, 22, 12, 2, 299, 298, 3, 2, 2, 2, 299, 300, 3, 2, 2, 2, 300, 309, 3, 2, 2, 2, 301, 302, 7, 62, 2, 2, 302, 305, 5, 22, 12, 2, 303, 304, 7, 66, 2, 2, 304, 306, 5, 100, 51, 2, 305, 303, 3, 2, 2, 2, 305, 306, 3, 2, 2, 2, 306, 308, 3, 2, 2, 2, 307, 301, 3, 2, 2, 2, 308, 311, 3, 2, 2, 2, 309, 307, 3, 2, 2, 2, 309, 310, 3, 2, 2, 2, 310, 320, 3, 2, 2, 2, 311, 309, 3, 2, 2, 2, 312, 318, 7, 62, 2, 2, 313, 314, 7, 65, 2, 2, 314, 316, 5, 22, 12, 2, 315, 317, 7, 62, 2, 2, 316, 315, 3, 2, 2, 2, 316, 317, 3, 2, 2, 2, 317, 319, 3, 2, 2, 2, 318, 313, 3, 2, 2, 2, 318, 319, 3, 2, 2, 2, 319, 321, 3, 2, 2, 2, 320, 312, 3, 2, 2, 2, 320, 321, 3, 2, 2, 2, 321, 328, 3, 2, 2, 2, 322, 323, 7, 65, 2, 2, 323, 325, 5, 22, 12, 2, 324, 326, 7, 62, 2, 2, 325, 324, 3, 2, 2, 2, 325, 326, 3, 2, 2, 2, 326, 328, 3, 2, 2, 2, 327, 246, 3, 2, 2, 2, 327, 297, 3, 2, 2, 2, 327, 322, 3, 2, 2, 2, 328, 21, 3, 2, 2, 2, 329, 332, 7, 48, 2, 2, 330, 331, 7, 63, 2, 2, 331, 333, 5, 100, 51, 2, 332, 330, 3, 2, 2, 2, 332, 333, 3, 2, 2, 2, 333, 23, 3, 2, 2, 2, 334, 337, 5, 26, 14, 2, 335, 336, 7, 66, 2, 2, 336, 338, 5, 100, 51, 2, 337, 335, 3, 2, 2, 2, 337, 338, 3, 2, 2, 2, 338, 347, 3, 2, 2, 2, 339, 340, 7, 62, 2, 2, 340, 343, 5, 26, 14, 2, 341, 342, 7, 66, 2, 2, 342, 344, 5, 100, 51, 2, 343, 341, 3, 2, 2, 2, 343, 344, 3, 2, 2, 2, 344, 346, 3, 2, 2, 2, 345, 339, 3, 2, 2, 2, 346, 349, 3, 2, 2, 2, 347, 345, 3, 2, 2, 2, 347, 348, 3, 2, 2, 2, 348, 383, 3, 2, 2, 2, 349, 347, 3, 2, 2, 2, 350, 381, 7, 62, 2, 2, 351, 353, 7, 59, 2, 2, 352, 354, 5, 26, 14, 2, 353, 352, 3, 2, 2, 2, 353, 354, 3, 2, 2, 2, 354, 363, 3, 2, 2, 2, 355, 356, 7, 62, 2, 2, 356, 359, 5, 26, 14, 2, 357, 358, 7, 66, 2, 2, 358, 360, 5, 100, 51, 2, 359, 357, 3, 2, 2, 2, 359, 360, 3, 2, 2, 2, 360, 362, 3, 2, 2, 2, 361, 355, 3, 2, 2, 2, 362, 365, 3, 2, 2, 2, 363, 361, 3, 2, 2, 2, 363, 364, 3, 2, 2, 2, 364, 374, 3, 2, 2, 2, 365, 363, 3, 2, 2, 2, 366, 372, 7, 62, 2, 2, 367, 368, 7, 65, 2, 2, 368, 370, 5, 26, 14, 2, 369, 371, 7, 62, 2, 2, 370, 369, 3, 2, 2, 2, 370, 371, 3, 2, 2, 2, 371, 373, 3, 2, 2, 2, 372, 367, 3, 2, 2, 2, 372, 373, 3, 2, 2, 2, 373, 375, 3, 2, 2, 2, 374, 366, 3, 2, 2, 2, 374, 375, 3, 2, 2, 2, 375, 382, 3, 2, 2, 2, 376, 377, 7, 65, 2, 2, 377, 379, 5, 26, 14, 2, 378, 380, 7, 62, 2, 2, 379, 378, 3, 2, 2, 2, 379, 380, 3, 2, 2, 2, 380, 382, 3, 2, 2, 2, 381, 351, 3, 2, 2, 2, 381, 376, 3, 2, 2, 2, 381, 382, 3, 2, 2, 2, 382, 384, 3, 2, 2, 2, 383, 350, 3, 2, 2, 2, 383, 384, 3, 2, 2, 2, 384, 416, 3, 2, 2, 2, 385, 387, 7, 59, 2, 2, 386, 388, 5, 26, 14, 2, 387, 386, 3, 2, 2, 2, 387, 388, 3, 2, 2, 2, 388, 397, 3, 2, 2, 2, 389, 390, 7, 62, 2, 2, 390, 393, 5, 26, 14, 2, 391, 392, 7, 66, 2, 2, 392, 394, 5, 100, 51, 2, 393, 391, 3, 2, 2, 2, 393, 394, 3, 2, 2, 2, 394, 396, 3, 2, 2, 2, 395, 389, 3, 2, 2, 2, 396, 399, 3, 2, 2, 2, 397, 395, 3, 2, 2, 2, 397, 398, 3, 2, 2, 2, 398, 408, 3, 2, 2, 2, 399, 397, 3, 2, 2, 2, 400, 406, 7, 62, 2, 2, 401, 402, 7, 65, 2, 2, 402, 404, 5, 26, 14, 2, 403, 405, 7, 62, 2, 2, 404, 403, 3, 2, 2, 2, 404, 405, 3, 2, 2, 2, 405, 407, 3, 2, 2, 2, 406, 401, 3, 2, 2, 2, 406, 407, 3, 2, 2, 2, 407, 409, 3, 2, 2, 2, 408, 400, 3, 2, 2, 2, 408, 409, 3, 2, 2, 2, 409, 416, 3, 2, 2, 2, 410, 411, 7, 65, 2, 2, 411, 413, 5, 26, 14, 2, 412, 414, 7, 62, 2, 2, 413, 412, 3, 2, 2, 2, 413, 414, 3, 2, 2, 2, 414, 416, 3, 2, 2, 2, 415, 334, 3, 2, 2, 2, 415, 385, 3, 2, 2, 2, 415, 410, 3, 2, 2, 2, 416, 25, 3, 2, 2, 2, 417, 418, 7, 48, 2, 2, 418, 27, 3, 2, 2, 2, 419, 422, 5, 30, 16, 2, 420, 422, 5, 80, 41, 2, 421, 419, 3, 2, 2, 2, 421, 420, 3, 2, 2, 2, 422, 29, 3, 2, 2, 2, 423, 428, 5, 32, 17, 2, 424, 425, 7, 64, 2, 2, 425, 427, 5, 32, 17, 2, 426, 424, 3, 2, 2, 2, 427, 430, 3, 2, 2, 2, 428, 426, 3, 2, 2, 2, 428, 429, 3, 2, 2, 2, 429, 432, 3, 2, 2, 2, 430, 428, 3, 2, 2, 2, 431, 433, 7, 64, 2, 2, 432, 431, 3, 2, 2, 2, 432, 433, 3, 2, 2, 2, 433, 434, 3, 2, 2, 2, 434, 435, 7, 47, 2, 2, 435, 31, 3, 2, 2, 2, 436, 445, 5, 34, 18, 2, 437, 445, 5, 42, 22, 2, 438, 445, 5, 44, 23, 2, 439, 445, 5, 46, 24, 2, 440, 445, 5, 58, 30, 2, 441, 445, 5, 74, 38, 2, 442, 445, 5, 76, 39, 2, 443, 445, 5, 78, 40, 2, 444, 436, 3, 2, 2, 2, 444, 437, 3, 2, 2, 2, 444, 438, 3, 2, 2, 2, 444, 439, 3, 2, 2, 2, 444, 440, 3, 2, 2, 2, 444, 441, 3, 2, 2, 2, 444, 442, 3, 2, 2, 2, 444, 443, 3, 2, 2, 2, 445, 33, 3, 2, 2, 2, 446, 463, 5, 38, 20, 2, 447, 464, 5, 36, 19, 2, 448, 451, 5, 40, 21, 2, 449, 452, 5, 170, 86, 2, 450, 452, 5, 152, 77, 2, 451, 449, 3, 2, 2, 2, 451, 450, 3, 2, 2, 2, 452, 464, 3, 2, 2, 2, 453, 456, 7, 66, 2, 2, 454, 457, 5, 170, 86, 2, 455, 457, 5, 38, 20, 2, 456, 454, 3, 2, 2, 2, 456, 455, 3, 2, 2, 2, 457, 459, 3, 2, 2, 2, 458, 453, 3, 2, 2, 2, 459, 462, 3, 2, 2, 2, 460, 458, 3, 2, 2, 2, 460, 461, 3, 2, 2, 2, 461, 464, 3, 2, 2, 2, 462, 460, 3, 2, 2, 2, 463, 447, 3, 2, 2, 2, 463, 448, 3, 2, 2, 2, 463, 460, 3, 2, 2, 2, 464, 35, 3, 2, 2, 2, 465, 466, 7, 63, 2, 2, 466, 469, 5, 100, 51, 2, 467, 468, 7, 66, 2, 2, 468, 470, 5, 100, 51, 2, 469, 467, 3, 2, 2, 2, 469, 470, 3, 2, 2, 2, 470, 37, 3, 2, 2, 2, 471, 474, 5, 100, 51, 2, 472, 474, 5, 118, 60, 2, 473, 471, 3, 2, 2, 2, 473, 472, 3, 2, 2, 2, 474, 482, 3, 2, 2, 2, 475, 478, 7, 62, 2, 2, 476, 479, 5, 100, 51, 2, 477, 479, 5, 118, 60, 2, 478, 476, 3, 2, 2, 2, 478, 477, 3, 2, 2, 2, 479, 481, 3, 2, 2, 2, 480, 475, 3, 2, 2, 2, 481, 484, 3, 2, 2, 2, 482, 480, 3, 2, 2, 2, 482, 483, 3, 2, 2, 2, 483, 486, 3, 2, 2, 2, 484, 482, 3, 2, 2, 2, 485, 487, 7, 62, 2, 2, 486, 485, 3, 2, 2, 2, 486, 487, 3, 2, 2, 2, 487, 39, 3, 2, 2, 2, 488, 489, 9, 2, 2, 2, 489, 41, 3, 2, 2, 2, 490, 491, 7, 41, 2, 2, 491, 492, 5, 150, 76, 2, 492, 43, 3, 2, 2, 2, 493, 494, 7, 42, 2, 2, 494, 45, 3, 2, 2, 2, 495, 501, 5, 48, 25, 2, 496, 501, 5, 50, 26, 2, 497, 501, 5, 52, 27, 2, 498, 501, 5, 56, 29, 2, 499, 501, 5, 54, 28, 2, 500, 495, 3, 2, 2, 2, 500, 496, 3, 2, 2, 2, 500, 497, 3, 2, 2, 2, 500, 498, 3, 2, 2, 2, 500, 499, 3, 2, 2, 2, 501, 47, 3, 2, 2, 2, 502, 503, 7, 44, 2, 2, 503, 49, 3, 2, 2, 2, 504, 505, 7, 43, 2, 2, 505, 51, 3, 2, 2, 2, 506, 508, 7, 13, 2, 2, 507, 509, 5, 152, 77, 2, 508, 507, 3, 2, 2, 2, 508, 509, 3, 2, 2, 2, 509, 53, 3, 2, 2, 2, 510, 511, 5, 170, 86, 2, 511, 55, 3, 2, 2, 2, 512, 518, 7, 14, 2, 2, 513, 516, 5, 100, 51, 2, 514, 515, 7, 15, 2, 2, 515, 517, 5, 100, 51, 2, 516, 514, 3, 2, 2, 2, 516, 517, 3, 2, 2, 2, 517, 519, 3, 2, 2, 2, 518, 513, 3, 2, 2, 2, 518, 519, 3, 2, 2, 2, 519, 57, 3, 2, 2, 2, 520, 523, 5, 60, 31, 2, 521, 523, 5, 62, 32, 2, 522, 520, 3, 2, 2, 2, 522, 521, 3, 2, 2, 2, 523, 59, 3, 2, 2, 2, 524, 525, 7, 16, 2, 2, 525, 526, 5, 70, 36, 2, 526, 61, 3, 2, 2, 2, 527, 540, 7, 15, 2, 2, 528, 530, 9, 3, 2, 2, 529, 528, 3, 2, 2, 2, 530, 533, 3, 2, 2, 2, 531, 529, 3, 2, 2, 2, 531, 532, 3, 2, 2, 2, 532, 534, 3, 2, 2, 2, 533, 531, 3, 2, 2, 2, 534, 541, 5, 72, 37, 2, 535, 537, 9, 3, 2, 2, 536, 535, 3, 2, 2, 2, 537, 538, 3, 2, 2, 2, 538, 536, 3, 2, 2, 2, 538, 539, 3, 2, 2, 2, 539, 541, 3, 2, 2, 2, 540, 531, 3, 2, 2, 2, 540, 536, 3, 2, 2, 2, 541, 542, 3, 2, 2, 2, 542, 549, 7, 16, 2, 2, 543, 550, 7, 59, 2, 2, 544, 545, 7, 60, 2, 2, 545, 546, 5, 68, 35, 2, 546, 547, 7, 61, 2, 2, 547, 550, 3, 2, 2, 2, 548, 550, 5, 68, 35, 2, 549, 543, 3, 2, 2, 2, 549, 544, 3, 2, 2, 2, 549, 548, 3, 2, 2, 2, 550, 63, 3, 2, 2, 2, 551, 554, 7, 48, 2, 2, 552, 553, 7, 17, 2, 2, 553, 555, 7, 48, 2, 2, 554, 552, 3, 2, 2, 2, 554, 555, 3, 2, 2, 2, 555, 65, 3, 2, 2, 2, 556, 559, 5, 72, 37, 2, 557, 558, 7, 17, 2, 2, 558, 560, 7, 48, 2, 2, 559, 557, 3, 2, 2, 2, 559, 560, 3, 2, 2, 2, 560, 67, 3, 2, 2, 2, 561, 566, 5, 64, 33, 2, 562, 563, 7, 62, 2, 2, 563, 565, 5, 64, 33, 2, 564, 562, 3, 2, 2, 2, 565, 568, 3, 2, 2, 2, 566, 564, 3, 2, 2, 2, 566, 567, 3, 2, 2, 2, 567, 570, 3, 2, 2, 2, 568, 566, 3, 2, 2, 2, 569, 571, 7, 62, 2, 2, 570, 569, 3, 2, 2, 2, 570, 571, 3, 2, 2, 2, 571, 69, 3, 2, 2, 2, 572, 577, 5, 66, 34, 2, 573, 574, 7, 62, 2, 2, 574, 576, 5, 66, 34, 2, 575, 573, 3, 2, 2, 2, 576, 579, 3, 2, 2, 2, 577, 575, 3, 2, 2, 2, 577, 578, 3, 2, 2, 2, 578, 71, 3, 2, 2, 2, 579, 577, 3, 2, 2, 2, 580, 585, 7, 48, 2, 2, 581, 582, 7, 57, 2, 2, 582, 584, 7, 48, 2, 2, 583, 581, 3, 2, 2, 2, 584, 587, 3, 2, 2, 2, 585, 583, 3, 2, 2, 2, 585, 586, 3, 2, 2, 2, 586, 73, 3, 2, 2, 2, 587, 585, 3, 2, 2, 2, 588, 589, 7, 18, 2, 2, 589, 594, 7, 48, 2, 2, 590, 591, 7, 62, 2, 2, 591, 593, 7, 48, 2, 2, 592, 590, 3, 2, 2, 2, 593, 596, 3, 2, 2, 2, 594, 592, 3, 2, 2, 2, 594, 595, 3, 2, 2, 2, 595, 75, 3, 2, 2, 2, 596, 594, 3, 2, 2, 2, 597, 598, 7, 19, 2, 2, 598, 603, 7, 48, 2, 2, 599, 600, 7, 62, 2, 2, 600, 602, 7, 48, 2, 2, 601, 599, 3, 2, 2, 2, 602, 605, 3, 2, 2, 2, 603, 601, 3, 2, 2, 2, 603, 604, 3, 2, 2, 2, 604, 77, 3, 2, 2, 2, 605, 603, 3, 2, 2, 2, 606, 607, 7, 20, 2, 2, 607, 610, 5, 100, 51, 2, 608, 609, 7, 62, 2, 2, 609, 611, 5, 100, 51, 2, 610, 608, 3, 2, 2, 2, 610, 611, 3, 2, 2, 2, 611, 79, 3, 2, 2, 2, 612, 622, 5, 84, 43, 2, 613, 622, 5, 86, 44, 2, 614, 622, 5, 88, 45, 2, 615, 622, 5, 90, 46, 2, 616, 622, 5, 92, 47, 2, 617, 622, 5, 16, 9, 2, 618, 622, 5, 156, 79, 2, 619, 622, 5, 12, 7, 2, 620, 622, 5, 82, 42, 2, 621, 612, 3, 2, 2, 2, 621, 613, 3, 2, 2, 2, 621, 614, 3, 2, 2, 2, 621, 615, 3, 2, 2, 2, 621, 616, 3, 2, 2, 2, 621, 617, 3, 2, 2, 2, 621, 618, 3, 2, 2, 2, 621, 619, 3, 2, 2, 2, 621, 620, 3, 2, 2, 2, 622, 81, 3, 2, 2, 2, 623, 627, 7, 45, 2, 2, 624, 628, 5, 16, 9, 2, 625, 628, 5, 92, 47, 2, 626, 628, 5, 88, 45, 2, 627, 624, 3, 2, 2, 2, 627, 625, 3, 2, 2, 2, 627, 626, 3, 2, 2, 2, 628, 83, 3, 2, 2, 2, 629, 630, 7, 21, 2, 2, 630, 631, 5, 100, 51, 2, 631, 632, 7, 63, 2, 2, 632, 640, 5, 98, 50, 2, 633, 634, 7, 22, 2, 2, 634, 635, 5, 100, 51, 2, 635, 636, 7, 63, 2, 2, 636, 637, 5, 98, 50, 2, 637, 639, 3, 2, 2, 2, 638, 633, 3, 2, 2, 2, 639, 642, 3, 2, 2, 2, 640, 638, 3, 2, 2, 2, 640, 641, 3, 2, 2, 2, 641, 646, 3, 2, 2, 2, 642, 640, 3, 2, 2, 2, 643, 644, 7, 23, 2, 2, 644, 645, 7, 63, 2, 2, 645, 647, 5, 98, 50, 2, 646, 643, 3, 2, 2, 2, 646, 647, 3, 2, 2, 2, 647, 85, 3, 2, 2, 2, 648, 649, 7, 24, 2, 2, 649, 650, 5, 100, 51, 2, 650, 651, 7, 63, 2, 2, 651, 655, 5, 98, 50, 2, 652, 653, 7, 23, 2, 2, 653, 654, 7, 63, 2, 2, 654, 656, 5, 98, 50, 2, 655, 652, 3, 2, 2, 2, 655, 656, 3, 2, 2, 2, 656, 87, 3, 2, 2, 2, 657, 658, 7, 25, 2, 2, 658, 659, 5, 150, 76, 2, 659, 660, 7, 26, 2, 2, 660, 661, 5, 152, 77, 2, 661, 662, 7, 63, 2, 2, 662, 666, 5, 98, 50, 2, 663, 664, 7, 23, 2, 2, 664, 665, 7, 63, 2, 2, 665, 667, 5, 98, 50, 2, 666, 663, 3, 2, 2, 2, 666, 667, 3, 2, 2, 2, 667, 89, 3, 2, 2, 2, 668, 669, 7, 27, 2, 2, 669, 670, 7, 63, 2, 2, 670, 692, 5, 98, 50, 2, 671, 672, 5, 96, 49, 2, 672, 673, 7, 63, 2, 2, 673, 674, 5, 98, 50, 2, 674, 676, 3, 2, 2, 2, 675, 671, 3, 2, 2, 2, 676, 677, 3, 2, 2, 2, 677, 675, 3, 2, 2, 2, 677, 678, 3, 2, 2, 2, 678, 682, 3, 2, 2, 2, 679, 680, 7, 23, 2, 2, 680, 681, 7, 63, 2, 2, 681, 683, 5, 98, 50, 2, 682, 679, 3, 2, 2, 2, 682, 683, 3, 2, 2, 2, 683, 687, 3, 2, 2, 2, 684, 685, 7, 28, 2, 2, 685, 686, 7, 63, 2, 2, 686, 688, 5, 98, 50, 2, 687, 684, 3, 2, 2, 2, 687, 688, 3, 2, 2, 2, 688, 693, 3, 2, 2, 2, 689, 690, 7, 28, 2, 2, 690, 691, 7, 63, 2, 2, 691, 693, 5, 98, 50, 2, 692, 675, 3, 2, 2, 2, 692, 689, 3, 2, 2, 2, 693, 91, 3, 2, 2, 2, 694, 695, 7, 29, 2, 2, 695, 700, 5, 94, 48, 2, 696, 697, 7, 62, 2, 2, 697, 699, 5, 94, 48, 2, 698, 696, 3, 2, 2, 2, 699, 702, 3, 2, 2, 2, 700, 698, 3, 2, 2, 2, 700, 701, 3, 2, 2, 2, 701, 703, 3, 2, 2, 2, 702, 700, 3, 2, 2, 2, 703, 704, 7, 63, 2, 2, 704, 705, 5, 98, 50, 2, 705, 93, 3, 2, 2, 2, 706, 709, 5, 100, 51, 2, 707, 708, 7, 17, 2, 2, 708, 710, 5, 120, 61, 2, 709, 707, 3, 2, 2, 2, 709, 710, 3, 2, 2, 2, 710, 95, 3, 2, 2, 2, 711, 717, 7, 30, 2, 2, 712, 715, 5, 100, 51, 2, 713, 714, 7, 17, 2, 2, 714, 716, 7, 48, 2, 2, 715, 713, 3, 2, 2, 2, 715, 716, 3, 2, 2, 2, 716, 718, 3, 2, 2, 2, 717, 712, 3, 2, 2, 2, 717, 718, 3, 2, 2, 2, 718, 97, 3, 2, 2, 2, 719, 730, 5, 30, 16, 2, 720, 721, 7, 47, 2, 2, 721, 723, 7, 3, 2, 2, 722, 724, 5, 28, 15, 2, 723, 722, 3, 2, 2, 2, 724, 725, 3, 2, 2, 2, 725, 723, 3, 2, 2, 2, 725, 726, 3, 2, 2, 2, 726, 727, 3, 2, 2, 2, 727, 728, 7, 4, 2, 2, 728, 730, 3, 2, 2, 2, 729, 719, 3, 2, 2, 2, 729, 720, 3, 2, 2, 2, 730, 99, 3, 2, 2, 2, 731, 737, 5, 108, 55, 2, 732, 733, 7, 21, 2, 2, 733, 734, 5, 108, 55, 2, 734, 735, 7, 23, 2, 2, 735, 736, 5, 100, 51, 2, 736, 738, 3, 2, 2, 2, 737, 732, 3, 2, 2, 2, 737, 738, 3, 2, 2, 2, 738, 741, 3, 2, 2, 2, 739, 741, 5, 104, 53, 2, 740, 731, 3, 2, 2, 2, 740, 739, 3, 2, 2, 2, 741, 101, 3, 2, 2, 2, 742, 745, 5, 108, 55, 2, 743, 745, 5, 106, 54, 2, 744, 742, 3, 2, 2, 2, 744, 743, 3, 2, 2, 2, 745, 103, 3, 2, 2, 2, 746, 748, 7, 31, 2, 2, 747, 749, 5, 24, 13, 2, 748, 747, 3, 2, 2, 2, 748, 749, 3, 2, 2, 2, 749, 750, 3, 2, 2, 2, 750, 751, 7, 63, 2, 2, 751, 752, 5, 100, 51, 2, 752, 105, 3, 2, 2, 2, 753, 755, 7, 31, 2, 2, 754, 756, 5, 24, 13, 2, 755, 754, 3, 2, 2, 2, 755, 756, 3, 2, 2, 2, 756, 757, 3, 2, 2, 2, 757, 758, 7, 63, 2, 2, 758, 759, 5, 102, 52, 2, 759, 107, 3, 2, 2, 2, 760, 765, 5, 110, 56, 2, 761, 762, 7, 32, 2, 2, 762, 764, 5, 110, 56, 2, 763, 761, 3, 2, 2, 2, 764, 767, 3, 2, 2, 2, 765, 763, 3, 2, 2, 2, 765, 766, 3, 2, 2, 2, 766, 109, 3, 2, 2, 2, 767, 765, 3, 2, 2, 2, 768, 773, 5, 112, 57, 2, 769, 770, 7, 33, 2, 2, 770, 772, 5, 112, 57, 2, 771, 769, 3, 2, 2, 2, 772, 775, 3, 2, 2, 2, 773, 771, 3, 2, 2, 2, 773, 774, 3, 2, 2, 2, 774, 111, 3, 2, 2, 2, 775, 773, 3, 2, 2, 2, 776, 777, 7, 34, 2, 2, 777, 780, 5, 112, 57, 2, 778, 780, 5, 114, 58, 2, 779, 776, 3, 2, 2, 2, 779, 778, 3, 2, 2, 2, 780, 113, 3, 2, 2, 2, 781, 787, 5, 120, 61, 2, 782, 783, 5, 116, 59, 2, 783, 784, 5, 120, 61, 2, 784, 786, 3, 2, 2, 2, 785, 782, 3, 2, 2, 2, 786, 789, 3, 2, 2, 2, 787, 785, 3, 2, 2, 2, 787, 788, 3, 2, 2, 2, 788, 115, 3, 2, 2, 2, 789, 787, 3, 2, 2, 2, 790, 804, 7, 83, 2, 2, 791, 804, 7, 84, 2, 2, 792, 804, 7, 85, 2, 2, 793, 804, 7, 86, 2, 2, 794, 804, 7, 87, 2, 2, 795, 804, 7, 88, 2, 2, 796, 804, 7, 89, 2, 2, 797, 804, 7, 26, 2, 2, 798, 799, 7, 34, 2, 2, 799, 804, 7, 26, 2, 2, 800, 804, 7, 35, 2, 2, 801, 802, 7, 35, 2, 2, 802, 804, 7, 34, 2, 2, 803, 790, 3, 2, 2, 2, 803, 791, 3, 2, 2, 2, 803, 792, 3, 2, 2, 2, 803, 793, 3, 2, 2, 2, 803, 794, 3, 2, 2, 2, 803, 795, 3, 2, 2, 2, 803, 796, 3, 2, 2, 2, 803, 797, 3, 2, 2, 2, 803, 798, 3, 2, 2, 2, 803, 800, 3, 2, 2, 2, 803, 801, 3, 2, 2, 2, 804, 117, 3, 2, 2, 2, 805, 806, 7, 59, 2, 2, 806, 807, 5, 120, 61, 2, 807, 119, 3, 2, 2, 2, 808, 813, 5, 122, 62, 2, 809, 810, 7, 69, 2, 2, 810, 812, 5, 122, 62, 2, 811, 809, 3, 2, 2, 2, 812, 815, 3, 2, 2, 2, 813, 811, 3, 2, 2, 2, 813, 814, 3, 2, 2, 2, 814, 121, 3, 2, 2, 2, 815, 813, 3, 2, 2, 2, 816, 821, 5, 124, 63, 2, 817, 818, 7, 70, 2, 2, 818, 820, 5, 124, 63, 2, 819, 817, 3, 2, 2, 2, 820, 823, 3, 2, 2, 2, 821, 819, 3, 2, 2, 2, 821, 822, 3, 2, 2, 2, 822, 123, 3, 2, 2, 2, 823, 821, 3, 2, 2, 2, 824, 829, 5, 126, 64, 2, 825, 826, 7, 71, 2, 2, 826, 828, 5, 126, 64, 2, 827, 825, 3, 2, 2, 2, 828, 831, 3, 2, 2, 2, 829, 827, 3, 2, 2, 2, 829, 830, 3, 2, 2, 2, 830, 125, 3, 2, 2, 2, 831, 829, 3, 2, 2, 2, 832, 837, 5, 128, 65, 2, 833, 834, 9, 4, 2, 2, 834, 836, 5, 128, 65, 2, 835, 833, 3, 2, 2, 2, 836, 839, 3, 2, 2, 2, 837, 835, 3, 2, 2, 2, 837, 838, 3, 2, 2, 2, 838, 127, 3, 2, 2, 2, 839, 837, 3, 2, 2, 2, 840, 845, 5, 130, 66, 2, 841, 842, 9, 5, 2, 2, 842, 844, 5, 130, 66, 2, 843, 841, 3, 2, 2, 2, 844, 847, 3, 2, 2, 2, 845, 843, 3, 2, 2, 2, 845, 846, 3, 2, 2, 2, 846, 129, 3, 2, 2, 2, 847, 845, 3, 2, 2, 2, 848, 853, 5, 132, 67, 2, 849, 850, 9, 6, 2, 2, 850, 852, 5, 132, 67, 2, 851, 849, 3, 2, 2, 2, 852, 855, 3, 2, 2, 2, 853, 851, 3, 2, 2, 2, 853, 854, 3, 2, 2, 2, 854, 131, 3, 2, 2, 2, 855, 853, 3, 2, 2, 2, 856, 857, 9, 7, 2, 2, 857, 860, 5, 132, 67, 2, 858, 860, 5, 134, 68, 2, 859, 856, 3, 2, 2, 2, 859, 858, 3, 2, 2, 2, 860, 133, 3, 2, 2, 2, 861, 864, 5, 136, 69, 2, 862, 863, 7, 65, 2, 2, 863, 865, 5, 132, 67, 2, 864, 862, 3, 2, 2, 2, 864, 865, 3, 2, 2, 2, 865, 135, 3, 2, 2, 2, 866, 868, 7, 46, 2, 2, 867, 866, 3, 2, 2, 2, 867, 868, 3, 2, 2, 2, 868, 869, 3, 2, 2, 2, 869, 873, 5, 138, 70, 2, 870, 872, 5, 142, 72, 2, 871, 870, 3, 2, 2, 2, 872, 875, 3, 2, 2, 2, 873, 871, 3, 2, 2, 2, 873, 874, 3, 2, 2, 2, 874, 137, 3, 2, 2, 2, 875, 873, 3, 2, 2, 2, 876, 879, 7, 60, 2, 2, 877, 880, 5, 170, 86, 2, 878, 880, 5, 140, 71, 2, 879, 877, 3, 2, 2, 2, 879, 878, 3, 2, 2, 2, 879, 880, 3, 2, 2, 2, 880, 881, 3, 2, 2, 2, 881, 909, 7, 61, 2, 2, 882, 884, 7, 67, 2, 2, 883, 885, 5, 140, 71, 2, 884, 883, 3, 2, 2, 2, 884, 885, 3, 2, 2, 2, 885, 886, 3, 2, 2, 2, 886, 909, 7, 68, 2, 2, 887, 889, 7, 80, 2, 2, 888, 890, 5, 154, 78, 2, 889, 888, 3, 2, 2, 2, 889, 890, 3, 2, 2, 2, 890, 891, 3, 2, 2, 2, 891, 909, 7, 82, 2, 2, 892, 909, 7, 48, 2, 2, 893, 909, 7, 10, 2, 2, 894, 896, 5, 174, 88, 2, 895, 894, 3, 2, 2, 2, 896, 897, 3, 2, 2, 2, 897, 895, 3, 2, 2, 2, 897, 898, 3, 2, 2, 2, 898, 909, 3, 2, 2, 2, 899, 901, 7, 9, 2, 2, 900, 899, 3, 2, 2, 2, 901, 902, 3, 2, 2, 2, 902, 900, 3, 2, 2, 2, 902, 903, 3, 2, 2, 2, 903, 909, 3, 2, 2, 2, 904, 909, 7, 58, 2, 2, 905, 909, 7, 36, 2, 2, 906, 909, 7, 37, 2, 2, 907, 909, 7, 38, 2, 2, 908, 876, 3, 2, 2, 2, 908, 882, 3, 2, 2, 2, 908, 887, 3, 2, 2, 2, 908, 892, 3, 2, 2, 2, 908, 893, 3, 2, 2, 2, 908, 895, 3, 2, 2, 2, 908, 900, 3, 2, 2, 2, 908, 904, 3, 2, 2, 2, 908, 905, 3, 2, 2, 2, 908, 906, 3, 2, 2, 2, 908, 907, 3, 2, 2, 2, 909, 139, 3, 2, 2, 2, 910, 913, 5, 100, 51, 2, 911, 913, 5, 118, 60, 2, 912, 910, 3, 2, 2, 2, 912, 911, 3, 2, 2, 2, 913, 928, 3, 2, 2, 2, 914, 929, 5, 164, 83, 2, 915, 918, 7, 62, 2, 2, 916, 919, 5, 100, 51, 2, 917, 919, 5, 118, 60, 2, 918, 916, 3, 2, 2, 2, 918, 917, 3, 2, 2, 2, 919, 921, 3, 2, 2, 2, 920, 915, 3, 2, 2, 2, 921, 924, 3, 2, 2, 2, 922, 920, 3, 2, 2, 2, 922, 923, 3, 2, 2, 2, 923, 926, 3, 2, 2, 2, 924, 922, 3, 2, 2, 2, 925, 927, 7, 62, 2, 2, 926, 925, 3, 2, 2, 2, 926, 927, 3, 2, 2, 2, 927, 929, 3, 2, 2, 2, 928, 914, 3, 2, 2, 2, 928, 922, 3, 2, 2, 2, 929, 141, 3, 2, 2, 2, 930, 932, 7, 60, 2, 2, 931, 933, 5, 158, 80, 2, 932, 931, 3, 2, 2, 2, 932, 933, 3, 2, 2, 2, 933, 934, 3, 2, 2, 2, 934, 942, 7, 61, 2, 2, 935, 936, 7, 67, 2, 2, 936, 937, 5, 144, 73, 2, 937, 938, 7, 68, 2, 2, 938, 942, 3, 2, 2, 2, 939, 940, 7, 57, 2, 2, 940, 942, 7, 48, 2, 2, 941, 930, 3, 2, 2, 2, 941, 935, 3, 2, 2, 2, 941, 939, 3, 2, 2, 2, 942, 143, 3, 2, 2, 2, 943, 948, 5, 146, 74, 2, 944, 945, 7, 62, 2, 2, 945, 947, 5, 146, 74, 2, 946, 944, 3, 2, 2, 2, 947, 950, 3, 2, 2, 2, 948, 946, 3, 2, 2, 2, 948, 949, 3, 2, 2, 2, 949, 952, 3, 2, 2, 2, 950, 948, 3, 2, 2, 2, 951, 953, 7, 62, 2, 2, 952, 951, 3, 2, 2, 2, 952, 953, 3, 2, 2, 2, 953, 145, 3, 2, 2, 2, 954, 966, 5, 100, 51, 2, 955, 957, 5, 100, 51, 2, 956, 955, 3, 2, 2, 2, 956, 957, 3, 2, 2, 2, 957, 958, 3, 2, 2, 2, 958, 960, 7, 63, 2, 2, 959, 961, 5, 100, 51, 2, 960, 959, 3, 2, 2, 2, 960, 961, 3, 2, 2, 2, 961, 963, 3, 2, 2, 2, 962, 964, 5, 148, 75, 2, 963, 962, 3, 2, 2, 2, 963, 964, 3, 2, 2, 2, 964, 966, 3, 2, 2, 2, 965, 954, 3, 2, 2, 2, 965, 956, 3, 2, 2, 2, 966, 147, 3, 2, 2, 2, 967, 969, 7, 63, 2, 2, 968, 970, 5, 100, 51, 2, 969, 968, 3, 2, 2, 2, 969, 970, 3, 2, 2, 2, 970, 149, 3, 2, 2, 2, 971, 974, 5, 120, 61, 2, 972, 974, 5, 118, 60, 2, 973, 971, 3, 2, 2, 2, 973, 972, 3, 2, 2, 2, 974, 982, 3, 2, 2, 2, 975, 978, 7, 62, 2, 2, 976, 979, 5, 120, 61, 2, 977, 979, 5, 118, 60, 2, 978, 976, 3, 2, 2, 2, 978, 977, 3, 2, 2, 2, 979, 981, 3, 2, 2, 2, 980, 975, 3, 2, 2, 2, 981, 984, 3, 2, 2, 2, 982, 980, 3, 2, 2, 2, 982, 983, 3, 2, 2, 2, 983, 986, 3, 2, 2, 2, 984, 982, 3, 2, 2, 2, 985, 987, 7, 62, 2, 2, 986, 985, 3, 2, 2, 2, 986, 987, 3, 2, 2, 2, 987, 151, 3, 2, 2, 2, 988, 993, 5, 100, 51, 2, 989, 990, 7, 62, 2, 2, 990, 992, 5, 100, 51, 2, 991, 989, 3, 2, 2, 2, 992, 995, 3, 2, 2, 2, 993, 991, 3, 2, 2, 2, 993, 994, 3, 2, 2, 2, 994, 997, 3, 2, 2, 2, 995, 993, 3, 2, 2, 2, 996, 998, 7, 62, 2, 2, 997, 996, 3, 2, 2, 2, 997, 998, 3, 2, 2, 2, 998, 153, 3, 2, 2, 2, 999, 1000, 5, 100, 51, 2, 1000, 1001, 7, 63, 2, 2, 1001, 1002, 5, 100, 51, 2, 1002, 1006, 3, 2, 2, 2, 1003, 1004, 7, 65, 2, 2, 1004, 1006, 5, 120, 61, 2, 1005, 999, 3, 2, 2, 2, 1005, 1003, 3, 2, 2, 2, 1006, 1025, 3, 2, 2, 2, 1007, 1026, 5, 164, 83, 2, 1008, 1015, 7, 62, 2, 2, 1009, 1010, 5, 100, 51, 2, 1010, 1011, 7, 63, 2, 2, 1011, 1012, 5, 100, 51, 2, 1012, 1016, 3, 2, 2, 2, 1013, 1014, 7, 65, 2, 2, 1014, 1016, 5, 120, 61, 2, 1015, 1009, 3, 2, 2, 2, 1015, 1013, 3, 2, 2, 2, 1016, 1018, 3, 2, 2, 2, 1017, 1008, 3, 2, 2, 2, 1018, 1021, 3, 2, 2, 2, 1019, 1017, 3, 2, 2, 2, 1019, 1020, 3, 2, 2, 2, 1020, 1023, 3, 2, 2, 2, 1021, 1019, 3, 2, 2, 2, 1022, 1024, 7, 62, 2, 2, 1023, 1022, 3, 2, 2, 2, 1023, 1024, 3, 2, 2, 2, 1024, 1026, 3, 2, 2, 2, 1025, 1007, 3, 2, 2, 2, 1025, 1019, 3, 2, 2, 2, 1026, 1048, 3, 2, 2, 2, 1027, 1030, 5, 100, 51, 2, 1028, 1030, 5, 118, 60, 2, 1029, 1027, 3, 2, 2, 2, 1029, 1028, 3, 2, 2, 2, 1030, 1045, 3, 2, 2, 2, 1031, 1046, 5, 164, 83, 2, 1032, 1035, 7, 62, 2, 2, 1033, 1036, 5, 100, 51, 2, 1034, 1036, 5, 118, 60, 2, 1035, 1033, 3, 2, 2, 2, 1035, 1034, 3, 2, 2, 2, 1036, 1038, 3, 2, 2, 2, 1037, 1032, 3, 2, 2, 2, 1038, 1041, 3, 2, 2, 2, 1039, 1037, 3, 2, 2, 2, 1039, 1040, 3, 2, 2, 2, 1040, 1043, 3, 2, 2, 2, 1041, 1039, 3, 2, 2, 2, 1042, 1044, 7, 62, 2, 2, 1043, 1042, 3, 2, 2, 2, 1043, 1044, 3, 2, 2, 2, 1044, 1046, 3, 2, 2, 2, 1045, 1031, 3, 2, 2, 2, 1045, 1039, 3, 2, 2, 2, 1046, 1048, 3, 2, 2, 2, 1047, 1005, 3, 2, 2, 2, 1047, 1029, 3, 2, 2, 2, 1048, 155, 3, 2, 2, 2, 1049, 1050, 7, 39, 2, 2, 1050, 1056, 7, 48, 2, 2, 1051, 1053, 7, 60, 2, 2, 1052, 1054, 5, 158, 80, 2, 1053, 1052, 3, 2, 2, 2, 1053, 1054, 3, 2, 2, 2, 1054, 1055, 3, 2, 2, 2, 1055, 1057, 7, 61, 2, 2, 1056, 1051, 3, 2, 2, 2, 1056, 1057, 3, 2, 2, 2, 1057, 1058, 3, 2, 2, 2, 1058, 1059, 7, 63, 2, 2, 1059, 1060, 5, 98, 50, 2, 1060, 157, 3, 2, 2, 2, 1061, 1066, 5, 160, 81, 2, 1062, 1063, 7, 62, 2, 2, 1063, 1065, 5, 160, 81, 2, 1064, 1062, 3, 2, 2, 2, 1065, 1068, 3, 2, 2, 2, 1066, 1064, 3, 2, 2, 2, 1066, 1067, 3, 2, 2, 2, 1067, 1070, 3, 2, 2, 2, 1068, 1066, 3, 2, 2, 2, 1069, 1071, 7, 62, 2, 2, 1070, 1069, 3, 2, 2, 2, 1070, 1071, 3, 2, 2, 2, 1071, 159, 3, 2, 2, 2, 1072, 1074, 5, 100, 51, 2, 1073, 1075, 5, 164, 83, 2, 1074, 1073, 3, 2, 2, 2, 1074, 1075, 3, 2, 2, 2, 1075, 1085, 3, 2, 2, 2, 1076, 1077, 5, 100, 51, 2, 1077, 1078, 7, 66, 2, 2, 1078, 1079, 5, 100, 51, 2, 1079, 1085, 3, 2, 2, 2, 1080, 1081, 7, 65, 2, 2, 1081, 1085, 5, 100, 51, 2, 1082, 1083, 7, 59, 2, 2, 1083, 1085, 5, 100, 51, 2, 1084, 1072, 3, 2, 2, 2, 1084, 1076, 3, 2, 2, 2, 1084, 1080, 3, 2, 2, 2, 1084, 1082, 3, 2, 2, 2, 1085, 161, 3, 2, 2, 2, 1086, 1089, 5, 164, 83, 2, 1087, 1089, 5, 166, 84, 2, 1088, 1086, 3, 2, 2, 2, 1088, 1087, 3, 2, 2, 2, 1089, 163, 3, 2, 2, 2, 1090, 1092, 7, 45, 2, 2, 1091, 1090, 3, 2, 2, 2, 1091, 1092, 3, 2, 2, 2, 1092, 1093, 3, 2, 2, 2, 1093, 1094, 7, 25, 2, 2, 1094, 1095, 5, 150, 76, 2, 1095, 1096, 7, 26, 2, 2, 1096, 1098, 5, 108, 55, 2, 1097, 1099, 5, 162, 82, 2, 1098, 1097, 3, 2, 2, 2, 1098, 1099, 3, 2, 2, 2, 1099, 165, 3, 2, 2, 2, 1100, 1101, 7, 21, 2, 2, 1101, 1103, 5, 102, 52, 2, 1102, 1104, 5, 162, 82, 2, 1103, 1102, 3, 2, 2, 2, 1103, 1104, 3, 2, 2, 2, 1104, 167, 3, 2, 2, 2, 1105, 1106, 7, 48, 2, 2, 1106, 169, 3, 2, 2, 2, 1107, 1109, 7, 40, 2, 2, 1108, 1110, 5, 172, 87, 2, 1109, 1108, 3, 2, 2, 2, 1109, 1110, 3, 2, 2, 2, 1110, 171, 3, 2, 2, 2, 1111, 1112, 7, 15, 2, 2, 1112, 1115, 5, 100, 51, 2, 1113, 1115, 5, 152, 77, 2, 1114, 1111, 3, 2, 2, 2, 1114, 1113, 3, 2, 2, 2, 1115, 173, 3, 2, 2, 2, 1116, 1120, 7, 5, 2, 2, 1117, 1119, 5, 176, 89, 2, 1118, 1117, 3, 2, 2, 2, 1119, 1122, 3, 2, 2, 2, 1120, 1118, 3, 2, 2, 2, 1120, 1121, 3, 2, 2, 2, 1121, 1123, 3, 2, 2, 2, 1122, 1120, 3, 2, 2, 2, 1123, 1149, 7, 109, 2, 2, 1124, 1128, 7, 7, 2, 2, 1125, 1127, 5, 176, 89, 2, 1126, 1125, 3, 2, 2, 2, 1127, 1130, 3, 2, 2, 2, 1128, 1126, 3, 2, 2, 2, 1128, 1129, 3, 2, 2, 2, 1129, 1131, 3, 2, 2, 2, 1130, 1128, 3, 2, 2, 2, 1131, 1149, 7, 110, 2, 2, 1132, 1136, 7, 6, 2, 2, 1133, 1135, 5, 178, 90, 2, 1134, 1133, 3, 2, 2, 2, 1135, 1138, 3, 2, 2, 2, 1136, 1134, 3, 2, 2, 2, 1136, 1137, 3, 2, 2, 2, 1137, 1139, 3, 2, 2, 2, 1138, 1136, 3, 2, 2, 2, 1139, 1149, 7, 112, 2, 2, 1140, 1144, 7, 8, 2, 2, 1141, 1143, 5, 178, 90, 2, 1142, 1141, 3, 2, 2, 2, 1143, 1146, 3, 2, 2, 2, 1144, 1142, 3, 2, 2, 2, 1144, 1145, 3, 2, 2, 2, 1145, 1147, 3, 2, 2, 2, 1146, 1144, 3, 2, 2, 2, 1147, 1149, 7, 113, 2, 2, 1148, 1116, 3, 2, 2, 2, 1148, 1124, 3, 2, 2, 2, 1148, 1132, 3, 2, 2, 2, 1148, 1140, 3, 2, 2, 2, 1149, 175, 3, 2, 2, 2, 1150, 1159, 7, 111, 2, 2, 1151, 1154, 7, 80, 2, 2, 1152, 1155, 5, 100, 51, 2, 1153, 1155, 5, 118, 60, 2, 1154, 1152, 3, 2, 2, 2, 1154, 1153, 3, 2, 2, 2, 1155, 1156, 3, 2, 2, 2, 1156, 1157, 7, 81, 2, 2, 1157, 1159, 3, 2, 2, 2, 1158, 1150, 3, 2, 2, 2, 1158, 1151, 3, 2, 2, 2, 1159, 177, 3, 2, 2, 2, 1160, 1169, 7, 114, 2, 2, 1161, 1164, 7, 80, 2, 2, 1162, 1165, 5, 100, 51, 2, 1163, 1165, 5, 118, 60, 2, 1164, 1162, 3, 2, 2, 2, 1164, 1163, 3, 2, 2, 2, 1165, 1166, 3, 2, 2, 2, 1166, 1167, 7, 81, 2, 2, 1167, 1169, 3, 2, 2, 2, 1168, 1160, 3, 2, 2, 2, 1168, 1161, 3, 2, 2, 2, 1169, 179, 3, 2, 2, 2, 178, 182, 184, 194, 200, 209, 212, 219, 225, 235, 242, 249, 255, 259, 265, 271, 275, 282, 284, 286, 291, 293, 295, 299, 305, 309, 316, 318, 320, 325, 327, 332, 337, 343, 347, 353, 359, 363, 370, 372, 374, 379, 381, 383, 387, 393, 397, 404, 406, 408, 413, 415, 421, 428, 432, 444, 451, 456, 460, 463, 469, 473, 478, 482, 486, 500, 508, 516, 518, 522, 531, 538, 540, 549, 554, 559, 566, 570, 577, 585, 594, 603, 610, 621, 627, 640, 646, 655, 666, 677, 682, 687, 692, 700, 709, 715, 717, 725, 729, 737, 740, 744, 748, 755, 765, 773, 779, 787, 803, 813, 821, 829, 837, 845, 853, 859, 864, 867, 873, 879, 884, 889, 897, 902, 908, 912, 918, 922, 926, 928, 932, 941, 948, 952, 956, 960, 963, 965, 969, 973, 978, 982, 986, 993, 997, 1005, 1015, 1019, 1023, 1025, 1029, 1035, 1039, 1043, 1045, 1047, 1053, 1056, 1066, 1070, 1074, 1084, 1088, 1091, 1098, 1103, 1109, 1114, 1120, 1128, 1136, 1144, 1148, 1154, 1158, 1164, 1168]
\ No newline at end of file
+[3, 51485, 51898, 1421, 44986, 20307, 1543, 60043, 49729, 3, 114, 1175, 4, 2, 9, 2, 4, 3, 9, 3, 4, 4, 9, 4, 4, 5, 9, 5, 4, 6, 9, 6, 4, 7, 9, 7, 4, 8, 9, 8, 4, 9, 9, 9, 4, 10, 9, 10, 4, 11, 9, 11, 4, 12, 9, 12, 4, 13, 9, 13, 4, 14, 9, 14, 4, 15, 9, 15, 4, 16, 9, 16, 4, 17, 9, 17, 4, 18, 9, 18, 4, 19, 9, 19, 4, 20, 9, 20, 4, 21, 9, 21, 4, 22, 9, 22, 4, 23, 9, 23, 4, 24, 9, 24, 4, 25, 9, 25, 4, 26, 9, 26, 4, 27, 9, 27, 4, 28, 9, 28, 4, 29, 9, 29, 4, 30, 9, 30, 4, 31, 9, 31, 4, 32, 9, 32, 4, 33, 9, 33, 4, 34, 9, 34, 4, 35, 9, 35, 4, 36, 9, 36, 4, 37, 9, 37, 4, 38, 9, 38, 4, 39, 9, 39, 4, 40, 9, 40, 4, 41, 9, 41, 4, 42, 9, 42, 4, 43, 9, 43, 4, 44, 9, 44, 4, 45, 9, 45, 4, 46, 9, 46, 4, 47, 9, 47, 4, 48, 9, 48, 4, 49, 9, 49, 4, 50, 9, 50, 4, 51, 9, 51, 4, 52, 9, 52, 4, 53, 9, 53, 4, 54, 9, 54, 4, 55, 9, 55, 4, 56, 9, 56, 4, 57, 9, 57, 4, 58, 9, 58, 4, 59, 9, 59, 4, 60, 9, 60, 4, 61, 9, 61, 4, 62, 9, 62, 4, 63, 9, 63, 4, 64, 9, 64, 4, 65, 9, 65, 4, 66, 9, 66, 4, 67, 9, 67, 4, 68, 9, 68, 4, 69, 9, 69, 4, 70, 9, 70, 4, 71, 9, 71, 4, 72, 9, 72, 4, 73, 9, 73, 4, 74, 9, 74, 4, 75, 9, 75, 4, 76, 9, 76, 4, 77, 9, 77, 4, 78, 9, 78, 4, 79, 9, 79, 4, 80, 9, 80, 4, 81, 9, 81, 4, 82, 9, 82, 4, 83, 9, 83, 4, 84, 9, 84, 4, 85, 9, 85, 4, 86, 9, 86, 4, 87, 9, 87, 4, 88, 9, 88, 4, 89, 9, 89, 4, 90, 9, 90, 4, 91, 9, 91, 3, 2, 3, 2, 7, 2, 185, 10, 2, 12, 2, 14, 2, 188, 11, 2, 3, 2, 3, 2, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 5, 3, 197, 10, 3, 3, 4, 3, 4, 7, 4, 201, 10, 4, 12, 4, 14, 4, 204, 11, 4, 3, 4, 3, 4, 3, 5, 3, 5, 3, 5, 3, 5, 5, 5, 212, 10, 5, 3, 5, 5, 5, 215, 10, 5, 3, 5, 3, 5, 3, 6, 6, 6, 220, 10, 6, 13, 6, 14, 6, 221, 3, 7, 3, 7, 3, 7, 3, 7, 5, 7, 228, 10, 7, 3, 8, 3, 8, 3, 8, 3, 9, 3, 9, 3, 9, 3, 9, 3, 9, 5, 9, 238, 10, 9, 3, 9, 3, 9, 3, 9, 3, 10, 3, 10, 5, 10, 245, 10, 10, 3, 10, 3, 10, 3, 11, 3, 11, 3, 11, 5, 11, 252, 10, 11, 3, 11, 3, 11, 3, 11, 3, 11, 5, 11, 258, 10, 11, 7, 11, 260, 10, 11, 12, 11, 14, 11, 263, 11, 11, 3, 11, 3, 11, 3, 11, 5, 11, 268, 10, 11, 3, 11, 3, 11, 3, 11, 3, 11, 5, 11, 274, 10, 11, 7, 11, 276, 10, 11, 12, 11, 14, 11, 279, 11, 11, 3, 11, 3, 11, 3, 11, 3, 11, 5, 11, 285, 10, 11, 5, 11, 287, 10, 11, 5, 11, 289, 10, 11, 3, 11, 3, 11, 3, 11, 5, 11, 294, 10, 11, 5, 11, 296, 10, 11, 5, 11, 298, 10, 11, 3, 11, 3, 11, 5, 11, 302, 10, 11, 3, 11, 3, 11, 3, 11, 3, 11, 5, 11, 308, 10, 11, 7, 11, 310, 10, 11, 12, 11, 14, 11, 313, 11, 11, 3, 11, 3, 11, 3, 11, 3, 11, 5, 11, 319, 10, 11, 5, 11, 321, 10, 11, 5, 11, 323, 10, 11, 3, 11, 3, 11, 3, 11, 5, 11, 328, 10, 11, 5, 11, 330, 10, 11, 3, 12, 3, 12, 3, 12, 5, 12, 335, 10, 12, 3, 13, 3, 13, 3, 13, 5, 13, 340, 10, 13, 3, 13, 3, 13, 3, 13, 3, 13, 5, 13, 346, 10, 13, 7, 13, 348, 10, 13, 12, 13, 14, 13, 351, 11, 13, 3, 13, 3, 13, 3, 13, 5, 13, 356, 10, 13, 3, 13, 3, 13, 3, 13, 3, 13, 5, 13, 362, 10, 13, 7, 13, 364, 10, 13, 12, 13, 14, 13, 367, 11, 13, 3, 13, 3, 13, 3, 13, 3, 13, 5, 13, 373, 10, 13, 5, 13, 375, 10, 13, 5, 13, 377, 10, 13, 3, 13, 3, 13, 3, 13, 5, 13, 382, 10, 13, 5, 13, 384, 10, 13, 5, 13, 386, 10, 13, 3, 13, 3, 13, 5, 13, 390, 10, 13, 3, 13, 3, 13, 3, 13, 3, 13, 5, 13, 396, 10, 13, 7, 13, 398, 10, 13, 12, 13, 14, 13, 401, 11, 13, 3, 13, 3, 13, 3, 13, 3, 13, 5, 13, 407, 10, 13, 5, 13, 409, 10, 13, 5, 13, 411, 10, 13, 3, 13, 3, 13, 3, 13, 5, 13, 416, 10, 13, 5, 13, 418, 10, 13, 3, 14, 3, 14, 3, 15, 3, 15, 5, 15, 424, 10, 15, 3, 16, 3, 16, 3, 16, 7, 16, 429, 10, 16, 12, 16, 14, 16, 432, 11, 16, 3, 16, 5, 16, 435, 10, 16, 3, 16, 3, 16, 3, 17, 3, 17, 3, 17, 3, 17, 3, 17, 3, 17, 3, 17, 3, 17, 5, 17, 447, 10, 17, 3, 18, 3, 18, 3, 18, 3, 18, 3, 18, 5, 18, 454, 10, 18, 3, 18, 3, 18, 3, 18, 5, 18, 459, 10, 18, 7, 18, 461, 10, 18, 12, 18, 14, 18, 464, 11, 18, 5, 18, 466, 10, 18, 3, 19, 3, 19, 3, 19, 3, 19, 5, 19, 472, 10, 19, 3, 20, 3, 20, 5, 20, 476, 10, 20, 3, 20, 3, 20, 3, 20, 5, 20, 481, 10, 20, 7, 20, 483, 10, 20, 12, 20, 14, 20, 486, 11, 20, 3, 20, 5, 20, 489, 10, 20, 3, 21, 3, 21, 3, 22, 3, 22, 3, 22, 3, 23, 3, 23, 3, 24, 3, 24, 3, 24, 3, 24, 3, 24, 5, 24, 503, 10, 24, 3, 25, 3, 25, 3, 26, 3, 26, 3, 27, 3, 27, 5, 27, 511, 10, 27, 3, 28, 3, 28, 3, 29, 3, 29, 3, 29, 3, 29, 5, 29, 519, 10, 29, 5, 29, 521, 10, 29, 3, 30, 3, 30, 5, 30, 525, 10, 30, 3, 31, 3, 31, 3, 31, 3, 32, 3, 32, 7, 32, 532, 10, 32, 12, 32, 14, 32, 535, 11, 32, 3, 32, 3, 32, 6, 32, 539, 10, 32, 13, 32, 14, 32, 540, 5, 32, 543, 10, 32, 3, 32, 3, 32, 3, 32, 3, 32, 3, 32, 3, 32, 3, 32, 5, 32, 552, 10, 32, 3, 33, 3, 33, 3, 33, 5, 33, 557, 10, 33, 3, 34, 3, 34, 3, 34, 5, 34, 562, 10, 34, 3, 35, 3, 35, 3, 35, 7, 35, 567, 10, 35, 12, 35, 14, 35, 570, 11, 35, 3, 35, 5, 35, 573, 10, 35, 3, 36, 3, 36, 3, 36, 7, 36, 578, 10, 36, 12, 36, 14, 36, 581, 11, 36, 3, 37, 3, 37, 3, 37, 7, 37, 586, 10, 37, 12, 37, 14, 37, 589, 11, 37, 3, 38, 3, 38, 3, 38, 3, 38, 7, 38, 595, 10, 38, 12, 38, 14, 38, 598, 11, 38, 3, 39, 3, 39, 3, 39, 3, 39, 7, 39, 604, 10, 39, 12, 39, 14, 39, 607, 11, 39, 3, 40, 3, 40, 3, 40, 3, 40, 5, 40, 613, 10, 40, 3, 41, 3, 41, 3, 41, 3, 41, 3, 41, 3, 41, 3, 41, 3, 41, 3, 41, 5, 41, 624, 10, 41, 3, 42, 3, 42, 3, 42, 3, 42, 5, 42, 630, 10, 42, 3, 43, 3, 43, 3, 43, 3, 43, 3, 43, 3, 43, 3, 43, 3, 43, 3, 43, 7, 43, 641, 10, 43, 12, 43, 14, 43, 644, 11, 43, 3, 43, 3, 43, 3, 43, 5, 43, 649, 10, 43, 3, 44, 3, 44, 3, 44, 3, 44, 3, 44, 3, 44, 3, 44, 5, 44, 658, 10, 44, 3, 45, 3, 45, 3, 45, 3, 45, 3, 45, 3, 45, 3, 45, 3, 45, 3, 45, 5, 45, 669, 10, 45, 3, 46, 3, 46, 3, 46, 3, 46, 3, 46, 3, 46, 3, 46, 6, 46, 678, 10, 46, 13, 46, 14, 46, 679, 3, 46, 3, 46, 3, 46, 5, 46, 685, 10, 46, 3, 46, 3, 46, 3, 46, 5, 46, 690, 10, 46, 3, 46, 3, 46, 3, 46, 5, 46, 695, 10, 46, 3, 47, 3, 47, 3, 47, 3, 47, 7, 47, 701, 10, 47, 12, 47, 14, 47, 704, 11, 47, 3, 47, 3, 47, 3, 47, 3, 48, 3, 48, 3, 48, 5, 48, 712, 10, 48, 3, 49, 3, 49, 3, 49, 3, 49, 5, 49, 718, 10, 49, 5, 49, 720, 10, 49, 3, 50, 3, 50, 3, 50, 3, 50, 6, 50, 726, 10, 50, 13, 50, 14, 50, 727, 3, 50, 3, 50, 5, 50, 732, 10, 50, 3, 51, 3, 51, 3, 51, 3, 51, 3, 51, 3, 51, 5, 51, 740, 10, 51, 3, 51, 5, 51, 743, 10, 51, 3, 52, 3, 52, 5, 52, 747, 10, 52, 3, 53, 3, 53, 5, 53, 751, 10, 53, 3, 53, 3, 53, 3, 53, 3, 54, 3, 54, 5, 54, 758, 10, 54, 3, 54, 3, 54, 3, 54, 3, 55, 3, 55, 3, 55, 7, 55, 766, 10, 55, 12, 55, 14, 55, 769, 11, 55, 3, 56, 3, 56, 3, 56, 7, 56, 774, 10, 56, 12, 56, 14, 56, 777, 11, 56, 3, 57, 3, 57, 3, 57, 5, 57, 782, 10, 57, 3, 58, 3, 58, 3, 58, 3, 58, 7, 58, 788, 10, 58, 12, 58, 14, 58, 791, 11, 58, 3, 59, 3, 59, 3, 59, 3, 59, 3, 59, 3, 59, 3, 59, 3, 59, 3, 59, 3, 59, 3, 59, 3, 59, 3, 59, 5, 59, 806, 10, 59, 3, 60, 3, 60, 3, 60, 3, 61, 3, 61, 3, 61, 7, 61, 814, 10, 61, 12, 61, 14, 61, 817, 11, 61, 3, 62, 3, 62, 3, 62, 7, 62, 822, 10, 62, 12, 62, 14, 62, 825, 11, 62, 3, 63, 3, 63, 3, 63, 7, 63, 830, 10, 63, 12, 63, 14, 63, 833, 11, 63, 3, 64, 3, 64, 3, 64, 7, 64, 838, 10, 64, 12, 64, 14, 64, 841, 11, 64, 3, 65, 3, 65, 3, 65, 7, 65, 846, 10, 65, 12, 65, 14, 65, 849, 11, 65, 3, 66, 3, 66, 3, 66, 7, 66, 854, 10, 66, 12, 66, 14, 66, 857, 11, 66, 3, 67, 3, 67, 3, 67, 5, 67, 862, 10, 67, 3, 68, 3, 68, 3, 68, 5, 68, 867, 10, 68, 3, 69, 5, 69, 870, 10, 69, 3, 69, 3, 69, 7, 69, 874, 10, 69, 12, 69, 14, 69, 877, 11, 69, 3, 70, 3, 70, 3, 70, 5, 70, 882, 10, 70, 3, 70, 3, 70, 3, 70, 5, 70, 887, 10, 70, 3, 70, 3, 70, 3, 70, 5, 70, 892, 10, 70, 3, 70, 3, 70, 3, 70, 3, 70, 6, 70, 898, 10, 70, 13, 70, 14, 70, 899, 3, 70, 6, 70, 903, 10, 70, 13, 70, 14, 70, 904, 3, 70, 3, 70, 3, 70, 3, 70, 5, 70, 911, 10, 70, 3, 71, 3, 71, 5, 71, 915, 10, 71, 3, 71, 3, 71, 3, 71, 3, 71, 5, 71, 921, 10, 71, 7, 71, 923, 10, 71, 12, 71, 14, 71, 926, 11, 71, 3, 71, 5, 71, 929, 10, 71, 5, 71, 931, 10, 71, 3, 72, 3, 72, 3, 72, 3, 72, 3, 72, 3, 72, 3, 72, 5, 72, 940, 10, 72, 3, 73, 3, 73, 3, 73, 7, 73, 945, 10, 73, 12, 73, 14, 73, 948, 11, 73, 3, 73, 5, 73, 951, 10, 73, 3, 74, 3, 74, 5, 74, 955, 10, 74, 3, 74, 3, 74, 5, 74, 959, 10, 74, 3, 74, 5, 74, 962, 10, 74, 5, 74, 964, 10, 74, 3, 75, 3, 75, 5, 75, 968, 10, 75, 3, 76, 3, 76, 5, 76, 972, 10, 76, 3, 76, 3, 76, 3, 76, 5, 76, 977, 10, 76, 7, 76, 979, 10, 76, 12, 76, 14, 76, 982, 11, 76, 3, 76, 5, 76, 985, 10, 76, 3, 77, 3, 77, 3, 77, 7, 77, 990, 10, 77, 12, 77, 14, 77, 993, 11, 77, 3, 77, 5, 77, 996, 10, 77, 3, 78, 3, 78, 3, 78, 3, 78, 3, 78, 3, 78, 5, 78, 1004, 10, 78, 3, 78, 3, 78, 3, 78, 3, 78, 3, 78, 3, 78, 3, 78, 3, 78, 5, 78, 1014, 10, 78, 7, 78, 1016, 10, 78, 12, 78, 14, 78, 1019, 11, 78, 3, 78, 5, 78, 1022, 10, 78, 5, 78, 1024, 10, 78, 3, 78, 3, 78, 5, 78, 1028, 10, 78, 3, 78, 3, 78, 3, 78, 3, 78, 5, 78, 1034, 10, 78, 7, 78, 1036, 10, 78, 12, 78, 14, 78, 1039, 11, 78, 3, 78, 5, 78, 1042, 10, 78, 5, 78, 1044, 10, 78, 5, 78, 1046, 10, 78, 3, 79, 3, 79, 3, 79, 3, 79, 5, 79, 1052, 10, 79, 3, 79, 5, 79, 1055, 10, 79, 3, 79, 3, 79, 3, 79, 3, 80, 3, 80, 5, 80, 1062, 10, 80, 3, 80, 3, 80, 3, 81, 3, 81, 3, 81, 7, 81, 1069, 10, 81, 12, 81, 14, 81, 1072, 11, 81, 3, 81, 5, 81, 1075, 10, 81, 3, 82, 3, 82, 5, 82, 1079, 10, 82, 3, 82, 3, 82, 3, 82, 3, 82, 3, 82, 3, 82, 3, 82, 3, 82, 5, 82, 1089, 10, 82, 3, 83, 3, 83, 5, 83, 1093, 10, 83, 3, 84, 5, 84, 1096, 10, 84, 3, 84, 3, 84, 3, 84, 3, 84, 3, 84, 5, 84, 1103, 10, 84, 3, 85, 3, 85, 3, 85, 5, 85, 1108, 10, 85, 3, 86, 3, 86, 3, 87, 3, 87, 5, 87, 1114, 10, 87, 3, 88, 3, 88, 3, 88, 5, 88, 1119, 10, 88, 3, 89, 3, 89, 7, 89, 1123, 10, 89, 12, 89, 14, 89, 1126, 11, 89, 3, 89, 3, 89, 3, 89, 7, 89, 1131, 10, 89, 12, 89, 14, 89, 1134, 11, 89, 3, 89, 3, 89, 3, 89, 7, 89, 1139, 10, 89, 12, 89, 14, 89, 1142, 11, 89, 3, 89, 3, 89, 3, 89, 7, 89, 1147, 10, 89, 12, 89, 14, 89, 1150, 11, 89, 3, 89, 5, 89, 1153, 10, 89, 3, 90, 3, 90, 3, 90, 3, 90, 5, 90, 1159, 10, 90, 3, 90, 3, 90, 5, 90, 1163, 10, 90, 3, 91, 3, 91, 3, 91, 3, 91, 5, 91, 1169, 10, 91, 3, 91, 3, 91, 5, 91, 1173, 10, 91, 3, 91, 2, 2, 2, 92, 2, 2, 4, 2, 6, 2, 8, 2, 10, 2, 12, 2, 14, 2, 16, 2, 18, 2, 20, 2, 22, 2, 24, 2, 26, 2, 28, 2, 30, 2, 32, 2, 34, 2, 36, 2, 38, 2, 40, 2, 42, 2, 44, 2, 46, 2, 48, 2, 50, 2, 52, 2, 54, 2, 56, 2, 58, 2, 60, 2, 62, 2, 64, 2, 66, 2, 68, 2, 70, 2, 72, 2, 74, 2, 76, 2, 78, 2, 80, 2, 82, 2, 84, 2, 86, 2, 88, 2, 90, 2, 92, 2, 94, 2, 96, 2, 98, 2, 100, 2, 102, 2, 104, 2, 106, 2, 108, 2, 110, 2, 112, 2, 114, 2, 116, 2, 118, 2, 120, 2, 122, 2, 124, 2, 126, 2, 128, 2, 130, 2, 132, 2, 134, 2, 136, 2, 138, 2, 140, 2, 142, 2, 144, 2, 146, 2, 148, 2, 150, 2, 152, 2, 154, 2, 156, 2, 158, 2, 160, 2, 162, 2, 164, 2, 166, 2, 168, 2, 170, 2, 172, 2, 174, 2, 176, 2, 178, 2, 180, 2, 2, 8, 3, 2, 92, 104, 3, 2, 57, 58, 3, 2, 72, 73, 3, 2, 74, 75, 5, 2, 59, 59, 76, 78, 90, 90, 4, 2, 74, 75, 79, 79, 2, 1309, 2, 186, 3, 2, 2, 2, 4, 196, 3, 2, 2, 2, 6, 198, 3, 2, 2, 2, 8, 207, 3, 2, 2, 2, 10, 219, 3, 2, 2, 2, 12, 223, 3, 2, 2, 2, 14, 229, 3, 2, 2, 2, 16, 232, 3, 2, 2, 2, 18, 242, 3, 2, 2, 2, 20, 329, 3, 2, 2, 2, 22, 331, 3, 2, 2, 2, 24, 417, 3, 2, 2, 2, 26, 419, 3, 2, 2, 2, 28, 423, 3, 2, 2, 2, 30, 425, 3, 2, 2, 2, 32, 446, 3, 2, 2, 2, 34, 448, 3, 2, 2, 2, 36, 467, 3, 2, 2, 2, 38, 475, 3, 2, 2, 2, 40, 490, 3, 2, 2, 2, 42, 492, 3, 2, 2, 2, 44, 495, 3, 2, 2, 2, 46, 502, 3, 2, 2, 2, 48, 504, 3, 2, 2, 2, 50, 506, 3, 2, 2, 2, 52, 508, 3, 2, 2, 2, 54, 512, 3, 2, 2, 2, 56, 514, 3, 2, 2, 2, 58, 524, 3, 2, 2, 2, 60, 526, 3, 2, 2, 2, 62, 529, 3, 2, 2, 2, 64, 553, 3, 2, 2, 2, 66, 558, 3, 2, 2, 2, 68, 563, 3, 2, 2, 2, 70, 574, 3, 2, 2, 2, 72, 582, 3, 2, 2, 2, 74, 590, 3, 2, 2, 2, 76, 599, 3, 2, 2, 2, 78, 608, 3, 2, 2, 2, 80, 623, 3, 2, 2, 2, 82, 625, 3, 2, 2, 2, 84, 631, 3, 2, 2, 2, 86, 650, 3, 2, 2, 2, 88, 659, 3, 2, 2, 2, 90, 670, 3, 2, 2, 2, 92, 696, 3, 2, 2, 2, 94, 708, 3, 2, 2, 2, 96, 713, 3, 2, 2, 2, 98, 731, 3, 2, 2, 2, 100, 742, 3, 2, 2, 2, 102, 746, 3, 2, 2, 2, 104, 748, 3, 2, 2, 2, 106, 755, 3, 2, 2, 2, 108, 762, 3, 2, 2, 2, 110, 770, 3, 2, 2, 2, 112, 781, 3, 2, 2, 2, 114, 783, 3, 2, 2, 2, 116, 805, 3, 2, 2, 2, 118, 807, 3, 2, 2, 2, 120, 810, 3, 2, 2, 2, 122, 818, 3, 2, 2, 2, 124, 826, 3, 2, 2, 2, 126, 834, 3, 2, 2, 2, 128, 842, 3, 2, 2, 2, 130, 850, 3, 2, 2, 2, 132, 861, 3, 2, 2, 2, 134, 863, 3, 2, 2, 2, 136, 869, 3, 2, 2, 2, 138, 910, 3, 2, 2, 2, 140, 914, 3, 2, 2, 2, 142, 939, 3, 2, 2, 2, 144, 941, 3, 2, 2, 2, 146, 963, 3, 2, 2, 2, 148, 965, 3, 2, 2, 2, 150, 971, 3, 2, 2, 2, 152, 986, 3, 2, 2, 2, 154, 1045, 3, 2, 2, 2, 156, 1047, 3, 2, 2, 2, 158, 1059, 3, 2, 2, 2, 160, 1065, 3, 2, 2, 2, 162, 1088, 3, 2, 2, 2, 164, 1092, 3, 2, 2, 2, 166, 1095, 3, 2, 2, 2, 168, 1104, 3, 2, 2, 2, 170, 1109, 3, 2, 2, 2, 172, 1111, 3, 2, 2, 2, 174, 1118, 3, 2, 2, 2, 176, 1152, 3, 2, 2, 2, 178, 1162, 3, 2, 2, 2, 180, 1172, 3, 2, 2, 2, 182, 185, 7, 47, 2, 2, 183, 185, 5, 28, 15, 2, 184, 182, 3, 2, 2, 2, 184, 183, 3, 2, 2, 2, 185, 188, 3, 2, 2, 2, 186, 184, 3, 2, 2, 2, 186, 187, 3, 2, 2, 2, 187, 189, 3, 2, 2, 2, 188, 186, 3, 2, 2, 2, 189, 190, 7, 2, 2, 3, 190, 3, 3, 2, 2, 2, 191, 197, 7, 47, 2, 2, 192, 197, 5, 30, 16, 2, 193, 194, 5, 80, 41, 2, 194, 195, 7, 47, 2, 2, 195, 197, 3, 2, 2, 2, 196, 191, 3, 2, 2, 2, 196, 192, 3, 2, 2, 2, 196, 193, 3, 2, 2, 2, 197, 5, 3, 2, 2, 2, 198, 202, 5, 152, 77, 2, 199, 201, 7, 47, 2, 2, 200, 199, 3, 2, 2, 2, 201, 204, 3, 2, 2, 2, 202, 200, 3, 2, 2, 2, 202, 203, 3, 2, 2, 2, 203, 205, 3, 2, 2, 2, 204, 202, 3, 2, 2, 2, 205, 206, 7, 2, 2, 3, 206, 7, 3, 2, 2, 2, 207, 208, 7, 90, 2, 2, 208, 214, 5, 72, 37, 2, 209, 211, 7, 60, 2, 2, 210, 212, 5, 160, 81, 2, 211, 210, 3, 2, 2, 2, 211, 212, 3, 2, 2, 2, 212, 213, 3, 2, 2, 2, 213, 215, 7, 61, 2, 2, 214, 209, 3, 2, 2, 2, 214, 215, 3, 2, 2, 2, 215, 216, 3, 2, 2, 2, 216, 217, 7, 47, 2, 2, 217, 9, 3, 2, 2, 2, 218, 220, 5, 8, 5, 2, 219, 218, 3, 2, 2, 2, 220, 221, 3, 2, 2, 2, 221, 219, 3, 2, 2, 2, 221, 222, 3, 2, 2, 2, 222, 11, 3, 2, 2, 2, 223, 227, 5, 10, 6, 2, 224, 228, 5, 156, 79, 2, 225, 228, 5, 16, 9, 2, 226, 228, 5, 14, 8, 2, 227, 224, 3, 2, 2, 2, 227, 225, 3, 2, 2, 2, 227, 226, 3, 2, 2, 2, 228, 13, 3, 2, 2, 2, 229, 230, 7, 45, 2, 2, 230, 231, 5, 16, 9, 2, 231, 15, 3, 2, 2, 2, 232, 233, 7, 12, 2, 2, 233, 234, 7, 48, 2, 2, 234, 237, 5, 18, 10, 2, 235, 236, 7, 91, 2, 2, 236, 238, 5, 100, 51, 2, 237, 235, 3, 2, 2, 2, 237, 238, 3, 2, 2, 2, 238, 239, 3, 2, 2, 2, 239, 240, 7, 63, 2, 2, 240, 241, 5, 98, 50, 2, 241, 17, 3, 2, 2, 2, 242, 244, 7, 60, 2, 2, 243, 245, 5, 20, 11, 2, 244, 243, 3, 2, 2, 2, 244, 245, 3, 2, 2, 2, 245, 246, 3, 2, 2, 2, 246, 247, 7, 61, 2, 2, 247, 19, 3, 2, 2, 2, 248, 251, 5, 22, 12, 2, 249, 250, 7, 66, 2, 2, 250, 252, 5, 100, 51, 2, 251, 249, 3, 2, 2, 2, 251, 252, 3, 2, 2, 2, 252, 261, 3, 2, 2, 2, 253, 254, 7, 62, 2, 2, 254, 257, 5, 22, 12, 2, 255, 256, 7, 66, 2, 2, 256, 258, 5, 100, 51, 2, 257, 255, 3, 2, 2, 2, 257, 258, 3, 2, 2, 2, 258, 260, 3, 2, 2, 2, 259, 253, 3, 2, 2, 2, 260, 263, 3, 2, 2, 2, 261, 259, 3, 2, 2, 2, 261, 262, 3, 2, 2, 2, 262, 297, 3, 2, 2, 2, 263, 261, 3, 2, 2, 2, 264, 295, 7, 62, 2, 2, 265, 267, 7, 59, 2, 2, 266, 268, 5, 22, 12, 2, 267, 266, 3, 2, 2, 2, 267, 268, 3, 2, 2, 2, 268, 277, 3, 2, 2, 2, 269, 270, 7, 62, 2, 2, 270, 273, 5, 22, 12, 2, 271, 272, 7, 66, 2, 2, 272, 274, 5, 100, 51, 2, 273, 271, 3, 2, 2, 2, 273, 274, 3, 2, 2, 2, 274, 276, 3, 2, 2, 2, 275, 269, 3, 2, 2, 2, 276, 279, 3, 2, 2, 2, 277, 275, 3, 2, 2, 2, 277, 278, 3, 2, 2, 2, 278, 288, 3, 2, 2, 2, 279, 277, 3, 2, 2, 2, 280, 286, 7, 62, 2, 2, 281, 282, 7, 65, 2, 2, 282, 284, 5, 22, 12, 2, 283, 285, 7, 62, 2, 2, 284, 283, 3, 2, 2, 2, 284, 285, 3, 2, 2, 2, 285, 287, 3, 2, 2, 2, 286, 281, 3, 2, 2, 2, 286, 287, 3, 2, 2, 2, 287, 289, 3, 2, 2, 2, 288, 280, 3, 2, 2, 2, 288, 289, 3, 2, 2, 2, 289, 296, 3, 2, 2, 2, 290, 291, 7, 65, 2, 2, 291, 293, 5, 22, 12, 2, 292, 294, 7, 62, 2, 2, 293, 292, 3, 2, 2, 2, 293, 294, 3, 2, 2, 2, 294, 296, 3, 2, 2, 2, 295, 265, 3, 2, 2, 2, 295, 290, 3, 2, 2, 2, 295, 296, 3, 2, 2, 2, 296, 298, 3, 2, 2, 2, 297, 264, 3, 2, 2, 2, 297, 298, 3, 2, 2, 2, 298, 330, 3, 2, 2, 2, 299, 301, 7, 59, 2, 2, 300, 302, 5, 22, 12, 2, 301, 300, 3, 2, 2, 2, 301, 302, 3, 2, 2, 2, 302, 311, 3, 2, 2, 2, 303, 304, 7, 62, 2, 2, 304, 307, 5, 22, 12, 2, 305, 306, 7, 66, 2, 2, 306, 308, 5, 100, 51, 2, 307, 305, 3, 2, 2, 2, 307, 308, 3, 2, 2, 2, 308, 310, 3, 2, 2, 2, 309, 303, 3, 2, 2, 2, 310, 313, 3, 2, 2, 2, 311, 309, 3, 2, 2, 2, 311, 312, 3, 2, 2, 2, 312, 322, 3, 2, 2, 2, 313, 311, 3, 2, 2, 2, 314, 320, 7, 62, 2, 2, 315, 316, 7, 65, 2, 2, 316, 318, 5, 22, 12, 2, 317, 319, 7, 62, 2, 2, 318, 317, 3, 2, 2, 2, 318, 319, 3, 2, 2, 2, 319, 321, 3, 2, 2, 2, 320, 315, 3, 2, 2, 2, 320, 321, 3, 2, 2, 2, 321, 323, 3, 2, 2, 2, 322, 314, 3, 2, 2, 2, 322, 323, 3, 2, 2, 2, 323, 330, 3, 2, 2, 2, 324, 325, 7, 65, 2, 2, 325, 327, 5, 22, 12, 2, 326, 328, 7, 62, 2, 2, 327, 326, 3, 2, 2, 2, 327, 328, 3, 2, 2, 2, 328, 330, 3, 2, 2, 2, 329, 248, 3, 2, 2, 2, 329, 299, 3, 2, 2, 2, 329, 324, 3, 2, 2, 2, 330, 21, 3, 2, 2, 2, 331, 334, 7, 48, 2, 2, 332, 333, 7, 63, 2, 2, 333, 335, 5, 100, 51, 2, 334, 332, 3, 2, 2, 2, 334, 335, 3, 2, 2, 2, 335, 23, 3, 2, 2, 2, 336, 339, 5, 26, 14, 2, 337, 338, 7, 66, 2, 2, 338, 340, 5, 100, 51, 2, 339, 337, 3, 2, 2, 2, 339, 340, 3, 2, 2, 2, 340, 349, 3, 2, 2, 2, 341, 342, 7, 62, 2, 2, 342, 345, 5, 26, 14, 2, 343, 344, 7, 66, 2, 2, 344, 346, 5, 100, 51, 2, 345, 343, 3, 2, 2, 2, 345, 346, 3, 2, 2, 2, 346, 348, 3, 2, 2, 2, 347, 341, 3, 2, 2, 2, 348, 351, 3, 2, 2, 2, 349, 347, 3, 2, 2, 2, 349, 350, 3, 2, 2, 2, 350, 385, 3, 2, 2, 2, 351, 349, 3, 2, 2, 2, 352, 383, 7, 62, 2, 2, 353, 355, 7, 59, 2, 2, 354, 356, 5, 26, 14, 2, 355, 354, 3, 2, 2, 2, 355, 356, 3, 2, 2, 2, 356, 365, 3, 2, 2, 2, 357, 358, 7, 62, 2, 2, 358, 361, 5, 26, 14, 2, 359, 360, 7, 66, 2, 2, 360, 362, 5, 100, 51, 2, 361, 359, 3, 2, 2, 2, 361, 362, 3, 2, 2, 2, 362, 364, 3, 2, 2, 2, 363, 357, 3, 2, 2, 2, 364, 367, 3, 2, 2, 2, 365, 363, 3, 2, 2, 2, 365, 366, 3, 2, 2, 2, 366, 376, 3, 2, 2, 2, 367, 365, 3, 2, 2, 2, 368, 374, 7, 62, 2, 2, 369, 370, 7, 65, 2, 2, 370, 372, 5, 26, 14, 2, 371, 373, 7, 62, 2, 2, 372, 371, 3, 2, 2, 2, 372, 373, 3, 2, 2, 2, 373, 375, 3, 2, 2, 2, 374, 369, 3, 2, 2, 2, 374, 375, 3, 2, 2, 2, 375, 377, 3, 2, 2, 2, 376, 368, 3, 2, 2, 2, 376, 377, 3, 2, 2, 2, 377, 384, 3, 2, 2, 2, 378, 379, 7, 65, 2, 2, 379, 381, 5, 26, 14, 2, 380, 382, 7, 62, 2, 2, 381, 380, 3, 2, 2, 2, 381, 382, 3, 2, 2, 2, 382, 384, 3, 2, 2, 2, 383, 353, 3, 2, 2, 2, 383, 378, 3, 2, 2, 2, 383, 384, 3, 2, 2, 2, 384, 386, 3, 2, 2, 2, 385, 352, 3, 2, 2, 2, 385, 386, 3, 2, 2, 2, 386, 418, 3, 2, 2, 2, 387, 389, 7, 59, 2, 2, 388, 390, 5, 26, 14, 2, 389, 388, 3, 2, 2, 2, 389, 390, 3, 2, 2, 2, 390, 399, 3, 2, 2, 2, 391, 392, 7, 62, 2, 2, 392, 395, 5, 26, 14, 2, 393, 394, 7, 66, 2, 2, 394, 396, 5, 100, 51, 2, 395, 393, 3, 2, 2, 2, 395, 396, 3, 2, 2, 2, 396, 398, 3, 2, 2, 2, 397, 391, 3, 2, 2, 2, 398, 401, 3, 2, 2, 2, 399, 397, 3, 2, 2, 2, 399, 400, 3, 2, 2, 2, 400, 410, 3, 2, 2, 2, 401, 399, 3, 2, 2, 2, 402, 408, 7, 62, 2, 2, 403, 404, 7, 65, 2, 2, 404, 406, 5, 26, 14, 2, 405, 407, 7, 62, 2, 2, 406, 405, 3, 2, 2, 2, 406, 407, 3, 2, 2, 2, 407, 409, 3, 2, 2, 2, 408, 403, 3, 2, 2, 2, 408, 409, 3, 2, 2, 2, 409, 411, 3, 2, 2, 2, 410, 402, 3, 2, 2, 2, 410, 411, 3, 2, 2, 2, 411, 418, 3, 2, 2, 2, 412, 413, 7, 65, 2, 2, 413, 415, 5, 26, 14, 2, 414, 416, 7, 62, 2, 2, 415, 414, 3, 2, 2, 2, 415, 416, 3, 2, 2, 2, 416, 418, 3, 2, 2, 2, 417, 336, 3, 2, 2, 2, 417, 387, 3, 2, 2, 2, 417, 412, 3, 2, 2, 2, 418, 25, 3, 2, 2, 2, 419, 420, 7, 48, 2, 2, 420, 27, 3, 2, 2, 2, 421, 424, 5, 30, 16, 2, 422, 424, 5, 80, 41, 2, 423, 421, 3, 2, 2, 2, 423, 422, 3, 2, 2, 2, 424, 29, 3, 2, 2, 2, 425, 430, 5, 32, 17, 2, 426, 427, 7, 64, 2, 2, 427, 429, 5, 32, 17, 2, 428, 426, 3, 2, 2, 2, 429, 432, 3, 2, 2, 2, 430, 428, 3, 2, 2, 2, 430, 431, 3, 2, 2, 2, 431, 434, 3, 2, 2, 2, 432, 430, 3, 2, 2, 2, 433, 435, 7, 64, 2, 2, 434, 433, 3, 2, 2, 2, 434, 435, 3, 2, 2, 2, 435, 436, 3, 2, 2, 2, 436, 437, 7, 47, 2, 2, 437, 31, 3, 2, 2, 2, 438, 447, 5, 34, 18, 2, 439, 447, 5, 42, 22, 2, 440, 447, 5, 44, 23, 2, 441, 447, 5, 46, 24, 2, 442, 447, 5, 58, 30, 2, 443, 447, 5, 74, 38, 2, 444, 447, 5, 76, 39, 2, 445, 447, 5, 78, 40, 2, 446, 438, 3, 2, 2, 2, 446, 439, 3, 2, 2, 2, 446, 440, 3, 2, 2, 2, 446, 441, 3, 2, 2, 2, 446, 442, 3, 2, 2, 2, 446, 443, 3, 2, 2, 2, 446, 444, 3, 2, 2, 2, 446, 445, 3, 2, 2, 2, 447, 33, 3, 2, 2, 2, 448, 465, 5, 38, 20, 2, 449, 466, 5, 36, 19, 2, 450, 453, 5, 40, 21, 2, 451, 454, 5, 172, 87, 2, 452, 454, 5, 152, 77, 2, 453, 451, 3, 2, 2, 2, 453, 452, 3, 2, 2, 2, 454, 466, 3, 2, 2, 2, 455, 458, 7, 66, 2, 2, 456, 459, 5, 172, 87, 2, 457, 459, 5, 38, 20, 2, 458, 456, 3, 2, 2, 2, 458, 457, 3, 2, 2, 2, 459, 461, 3, 2, 2, 2, 460, 455, 3, 2, 2, 2, 461, 464, 3, 2, 2, 2, 462, 460, 3, 2, 2, 2, 462, 463, 3, 2, 2, 2, 463, 466, 3, 2, 2, 2, 464, 462, 3, 2, 2, 2, 465, 449, 3, 2, 2, 2, 465, 450, 3, 2, 2, 2, 465, 462, 3, 2, 2, 2, 466, 35, 3, 2, 2, 2, 467, 468, 7, 63, 2, 2, 468, 471, 5, 100, 51, 2, 469, 470, 7, 66, 2, 2, 470, 472, 5, 100, 51, 2, 471, 469, 3, 2, 2, 2, 471, 472, 3, 2, 2, 2, 472, 37, 3, 2, 2, 2, 473, 476, 5, 100, 51, 2, 474, 476, 5, 118, 60, 2, 475, 473, 3, 2, 2, 2, 475, 474, 3, 2, 2, 2, 476, 484, 3, 2, 2, 2, 477, 480, 7, 62, 2, 2, 478, 481, 5, 100, 51, 2, 479, 481, 5, 118, 60, 2, 480, 478, 3, 2, 2, 2, 480, 479, 3, 2, 2, 2, 481, 483, 3, 2, 2, 2, 482, 477, 3, 2, 2, 2, 483, 486, 3, 2, 2, 2, 484, 482, 3, 2, 2, 2, 484, 485, 3, 2, 2, 2, 485, 488, 3, 2, 2, 2, 486, 484, 3, 2, 2, 2, 487, 489, 7, 62, 2, 2, 488, 487, 3, 2, 2, 2, 488, 489, 3, 2, 2, 2, 489, 39, 3, 2, 2, 2, 490, 491, 9, 2, 2, 2, 491, 41, 3, 2, 2, 2, 492, 493, 7, 41, 2, 2, 493, 494, 5, 150, 76, 2, 494, 43, 3, 2, 2, 2, 495, 496, 7, 42, 2, 2, 496, 45, 3, 2, 2, 2, 497, 503, 5, 48, 25, 2, 498, 503, 5, 50, 26, 2, 499, 503, 5, 52, 27, 2, 500, 503, 5, 56, 29, 2, 501, 503, 5, 54, 28, 2, 502, 497, 3, 2, 2, 2, 502, 498, 3, 2, 2, 2, 502, 499, 3, 2, 2, 2, 502, 500, 3, 2, 2, 2, 502, 501, 3, 2, 2, 2, 503, 47, 3, 2, 2, 2, 504, 505, 7, 44, 2, 2, 505, 49, 3, 2, 2, 2, 506, 507, 7, 43, 2, 2, 507, 51, 3, 2, 2, 2, 508, 510, 7, 13, 2, 2, 509, 511, 5, 152, 77, 2, 510, 509, 3, 2, 2, 2, 510, 511, 3, 2, 2, 2, 511, 53, 3, 2, 2, 2, 512, 513, 5, 172, 87, 2, 513, 55, 3, 2, 2, 2, 514, 520, 7, 14, 2, 2, 515, 518, 5, 100, 51, 2, 516, 517, 7, 15, 2, 2, 517, 519, 5, 100, 51, 2, 518, 516, 3, 2, 2, 2, 518, 519, 3, 2, 2, 2, 519, 521, 3, 2, 2, 2, 520, 515, 3, 2, 2, 2, 520, 521, 3, 2, 2, 2, 521, 57, 3, 2, 2, 2, 522, 525, 5, 60, 31, 2, 523, 525, 5, 62, 32, 2, 524, 522, 3, 2, 2, 2, 524, 523, 3, 2, 2, 2, 525, 59, 3, 2, 2, 2, 526, 527, 7, 16, 2, 2, 527, 528, 5, 70, 36, 2, 528, 61, 3, 2, 2, 2, 529, 542, 7, 15, 2, 2, 530, 532, 9, 3, 2, 2, 531, 530, 3, 2, 2, 2, 532, 535, 3, 2, 2, 2, 533, 531, 3, 2, 2, 2, 533, 534, 3, 2, 2, 2, 534, 536, 3, 2, 2, 2, 535, 533, 3, 2, 2, 2, 536, 543, 5, 72, 37, 2, 537, 539, 9, 3, 2, 2, 538, 537, 3, 2, 2, 2, 539, 540, 3, 2, 2, 2, 540, 538, 3, 2, 2, 2, 540, 541, 3, 2, 2, 2, 541, 543, 3, 2, 2, 2, 542, 533, 3, 2, 2, 2, 542, 538, 3, 2, 2, 2, 543, 544, 3, 2, 2, 2, 544, 551, 7, 16, 2, 2, 545, 552, 7, 59, 2, 2, 546, 547, 7, 60, 2, 2, 547, 548, 5, 68, 35, 2, 548, 549, 7, 61, 2, 2, 549, 552, 3, 2, 2, 2, 550, 552, 5, 68, 35, 2, 551, 545, 3, 2, 2, 2, 551, 546, 3, 2, 2, 2, 551, 550, 3, 2, 2, 2, 552, 63, 3, 2, 2, 2, 553, 556, 7, 48, 2, 2, 554, 555, 7, 17, 2, 2, 555, 557, 7, 48, 2, 2, 556, 554, 3, 2, 2, 2, 556, 557, 3, 2, 2, 2, 557, 65, 3, 2, 2, 2, 558, 561, 5, 72, 37, 2, 559, 560, 7, 17, 2, 2, 560, 562, 7, 48, 2, 2, 561, 559, 3, 2, 2, 2, 561, 562, 3, 2, 2, 2, 562, 67, 3, 2, 2, 2, 563, 568, 5, 64, 33, 2, 564, 565, 7, 62, 2, 2, 565, 567, 5, 64, 33, 2, 566, 564, 3, 2, 2, 2, 567, 570, 3, 2, 2, 2, 568, 566, 3, 2, 2, 2, 568, 569, 3, 2, 2, 2, 569, 572, 3, 2, 2, 2, 570, 568, 3, 2, 2, 2, 571, 573, 7, 62, 2, 2, 572, 571, 3, 2, 2, 2, 572, 573, 3, 2, 2, 2, 573, 69, 3, 2, 2, 2, 574, 579, 5, 66, 34, 2, 575, 576, 7, 62, 2, 2, 576, 578, 5, 66, 34, 2, 577, 575, 3, 2, 2, 2, 578, 581, 3, 2, 2, 2, 579, 577, 3, 2, 2, 2, 579, 580, 3, 2, 2, 2, 580, 71, 3, 2, 2, 2, 581, 579, 3, 2, 2, 2, 582, 587, 7, 48, 2, 2, 583, 584, 7, 57, 2, 2, 584, 586, 7, 48, 2, 2, 585, 583, 3, 2, 2, 2, 586, 589, 3, 2, 2, 2, 587, 585, 3, 2, 2, 2, 587, 588, 3, 2, 2, 2, 588, 73, 3, 2, 2, 2, 589, 587, 3, 2, 2, 2, 590, 591, 7, 18, 2, 2, 591, 596, 7, 48, 2, 2, 592, 593, 7, 62, 2, 2, 593, 595, 7, 48, 2, 2, 594, 592, 3, 2, 2, 2, 595, 598, 3, 2, 2, 2, 596, 594, 3, 2, 2, 2, 596, 597, 3, 2, 2, 2, 597, 75, 3, 2, 2, 2, 598, 596, 3, 2, 2, 2, 599, 600, 7, 19, 2, 2, 600, 605, 7, 48, 2, 2, 601, 602, 7, 62, 2, 2, 602, 604, 7, 48, 2, 2, 603, 601, 3, 2, 2, 2, 604, 607, 3, 2, 2, 2, 605, 603, 3, 2, 2, 2, 605, 606, 3, 2, 2, 2, 606, 77, 3, 2, 2, 2, 607, 605, 3, 2, 2, 2, 608, 609, 7, 20, 2, 2, 609, 612, 5, 100, 51, 2, 610, 611, 7, 62, 2, 2, 611, 613, 5, 100, 51, 2, 612, 610, 3, 2, 2, 2, 612, 613, 3, 2, 2, 2, 613, 79, 3, 2, 2, 2, 614, 624, 5, 84, 43, 2, 615, 624, 5, 86, 44, 2, 616, 624, 5, 88, 45, 2, 617, 624, 5, 90, 46, 2, 618, 624, 5, 92, 47, 2, 619, 624, 5, 16, 9, 2, 620, 624, 5, 156, 79, 2, 621, 624, 5, 12, 7, 2, 622, 624, 5, 82, 42, 2, 623, 614, 3, 2, 2, 2, 623, 615, 3, 2, 2, 2, 623, 616, 3, 2, 2, 2, 623, 617, 3, 2, 2, 2, 623, 618, 3, 2, 2, 2, 623, 619, 3, 2, 2, 2, 623, 620, 3, 2, 2, 2, 623, 621, 3, 2, 2, 2, 623, 622, 3, 2, 2, 2, 624, 81, 3, 2, 2, 2, 625, 629, 7, 45, 2, 2, 626, 630, 5, 16, 9, 2, 627, 630, 5, 92, 47, 2, 628, 630, 5, 88, 45, 2, 629, 626, 3, 2, 2, 2, 629, 627, 3, 2, 2, 2, 629, 628, 3, 2, 2, 2, 630, 83, 3, 2, 2, 2, 631, 632, 7, 21, 2, 2, 632, 633, 5, 100, 51, 2, 633, 634, 7, 63, 2, 2, 634, 642, 5, 98, 50, 2, 635, 636, 7, 22, 2, 2, 636, 637, 5, 100, 51, 2, 637, 638, 7, 63, 2, 2, 638, 639, 5, 98, 50, 2, 639, 641, 3, 2, 2, 2, 640, 635, 3, 2, 2, 2, 641, 644, 3, 2, 2, 2, 642, 640, 3, 2, 2, 2, 642, 643, 3, 2, 2, 2, 643, 648, 3, 2, 2, 2, 644, 642, 3, 2, 2, 2, 645, 646, 7, 23, 2, 2, 646, 647, 7, 63, 2, 2, 647, 649, 5, 98, 50, 2, 648, 645, 3, 2, 2, 2, 648, 649, 3, 2, 2, 2, 649, 85, 3, 2, 2, 2, 650, 651, 7, 24, 2, 2, 651, 652, 5, 100, 51, 2, 652, 653, 7, 63, 2, 2, 653, 657, 5, 98, 50, 2, 654, 655, 7, 23, 2, 2, 655, 656, 7, 63, 2, 2, 656, 658, 5, 98, 50, 2, 657, 654, 3, 2, 2, 2, 657, 658, 3, 2, 2, 2, 658, 87, 3, 2, 2, 2, 659, 660, 7, 25, 2, 2, 660, 661, 5, 150, 76, 2, 661, 662, 7, 26, 2, 2, 662, 663, 5, 152, 77, 2, 663, 664, 7, 63, 2, 2, 664, 668, 5, 98, 50, 2, 665, 666, 7, 23, 2, 2, 666, 667, 7, 63, 2, 2, 667, 669, 5, 98, 50, 2, 668, 665, 3, 2, 2, 2, 668, 669, 3, 2, 2, 2, 669, 89, 3, 2, 2, 2, 670, 671, 7, 27, 2, 2, 671, 672, 7, 63, 2, 2, 672, 694, 5, 98, 50, 2, 673, 674, 5, 96, 49, 2, 674, 675, 7, 63, 2, 2, 675, 676, 5, 98, 50, 2, 676, 678, 3, 2, 2, 2, 677, 673, 3, 2, 2, 2, 678, 679, 3, 2, 2, 2, 679, 677, 3, 2, 2, 2, 679, 680, 3, 2, 2, 2, 680, 684, 3, 2, 2, 2, 681, 682, 7, 23, 2, 2, 682, 683, 7, 63, 2, 2, 683, 685, 5, 98, 50, 2, 684, 681, 3, 2, 2, 2, 684, 685, 3, 2, 2, 2, 685, 689, 3, 2, 2, 2, 686, 687, 7, 28, 2, 2, 687, 688, 7, 63, 2, 2, 688, 690, 5, 98, 50, 2, 689, 686, 3, 2, 2, 2, 689, 690, 3, 2, 2, 2, 690, 695, 3, 2, 2, 2, 691, 692, 7, 28, 2, 2, 692, 693, 7, 63, 2, 2, 693, 695, 5, 98, 50, 2, 694, 677, 3, 2, 2, 2, 694, 691, 3, 2, 2, 2, 695, 91, 3, 2, 2, 2, 696, 697, 7, 29, 2, 2, 697, 702, 5, 94, 48, 2, 698, 699, 7, 62, 2, 2, 699, 701, 5, 94, 48, 2, 700, 698, 3, 2, 2, 2, 701, 704, 3, 2, 2, 2, 702, 700, 3, 2, 2, 2, 702, 703, 3, 2, 2, 2, 703, 705, 3, 2, 2, 2, 704, 702, 3, 2, 2, 2, 705, 706, 7, 63, 2, 2, 706, 707, 5, 98, 50, 2, 707, 93, 3, 2, 2, 2, 708, 711, 5, 100, 51, 2, 709, 710, 7, 17, 2, 2, 710, 712, 5, 120, 61, 2, 711, 709, 3, 2, 2, 2, 711, 712, 3, 2, 2, 2, 712, 95, 3, 2, 2, 2, 713, 719, 7, 30, 2, 2, 714, 717, 5, 100, 51, 2, 715, 716, 7, 17, 2, 2, 716, 718, 7, 48, 2, 2, 717, 715, 3, 2, 2, 2, 717, 718, 3, 2, 2, 2, 718, 720, 3, 2, 2, 2, 719, 714, 3, 2, 2, 2, 719, 720, 3, 2, 2, 2, 720, 97, 3, 2, 2, 2, 721, 732, 5, 30, 16, 2, 722, 723, 7, 47, 2, 2, 723, 725, 7, 3, 2, 2, 724, 726, 5, 28, 15, 2, 725, 724, 3, 2, 2, 2, 726, 727, 3, 2, 2, 2, 727, 725, 3, 2, 2, 2, 727, 728, 3, 2, 2, 2, 728, 729, 3, 2, 2, 2, 729, 730, 7, 4, 2, 2, 730, 732, 3, 2, 2, 2, 731, 721, 3, 2, 2, 2, 731, 722, 3, 2, 2, 2, 732, 99, 3, 2, 2, 2, 733, 739, 5, 108, 55, 2, 734, 735, 7, 21, 2, 2, 735, 736, 5, 108, 55, 2, 736, 737, 7, 23, 2, 2, 737, 738, 5, 100, 51, 2, 738, 740, 3, 2, 2, 2, 739, 734, 3, 2, 2, 2, 739, 740, 3, 2, 2, 2, 740, 743, 3, 2, 2, 2, 741, 743, 5, 104, 53, 2, 742, 733, 3, 2, 2, 2, 742, 741, 3, 2, 2, 2, 743, 101, 3, 2, 2, 2, 744, 747, 5, 108, 55, 2, 745, 747, 5, 106, 54, 2, 746, 744, 3, 2, 2, 2, 746, 745, 3, 2, 2, 2, 747, 103, 3, 2, 2, 2, 748, 750, 7, 31, 2, 2, 749, 751, 5, 24, 13, 2, 750, 749, 3, 2, 2, 2, 750, 751, 3, 2, 2, 2, 751, 752, 3, 2, 2, 2, 752, 753, 7, 63, 2, 2, 753, 754, 5, 100, 51, 2, 754, 105, 3, 2, 2, 2, 755, 757, 7, 31, 2, 2, 756, 758, 5, 24, 13, 2, 757, 756, 3, 2, 2, 2, 757, 758, 3, 2, 2, 2, 758, 759, 3, 2, 2, 2, 759, 760, 7, 63, 2, 2, 760, 761, 5, 102, 52, 2, 761, 107, 3, 2, 2, 2, 762, 767, 5, 110, 56, 2, 763, 764, 7, 32, 2, 2, 764, 766, 5, 110, 56, 2, 765, 763, 3, 2, 2, 2, 766, 769, 3, 2, 2, 2, 767, 765, 3, 2, 2, 2, 767, 768, 3, 2, 2, 2, 768, 109, 3, 2, 2, 2, 769, 767, 3, 2, 2, 2, 770, 775, 5, 112, 57, 2, 771, 772, 7, 33, 2, 2, 772, 774, 5, 112, 57, 2, 773, 771, 3, 2, 2, 2, 774, 777, 3, 2, 2, 2, 775, 773, 3, 2, 2, 2, 775, 776, 3, 2, 2, 2, 776, 111, 3, 2, 2, 2, 777, 775, 3, 2, 2, 2, 778, 779, 7, 34, 2, 2, 779, 782, 5, 112, 57, 2, 780, 782, 5, 114, 58, 2, 781, 778, 3, 2, 2, 2, 781, 780, 3, 2, 2, 2, 782, 113, 3, 2, 2, 2, 783, 789, 5, 120, 61, 2, 784, 785, 5, 116, 59, 2, 785, 786, 5, 120, 61, 2, 786, 788, 3, 2, 2, 2, 787, 784, 3, 2, 2, 2, 788, 791, 3, 2, 2, 2, 789, 787, 3, 2, 2, 2, 789, 790, 3, 2, 2, 2, 790, 115, 3, 2, 2, 2, 791, 789, 3, 2, 2, 2, 792, 806, 7, 83, 2, 2, 793, 806, 7, 84, 2, 2, 794, 806, 7, 85, 2, 2, 795, 806, 7, 86, 2, 2, 796, 806, 7, 87, 2, 2, 797, 806, 7, 88, 2, 2, 798, 806, 7, 89, 2, 2, 799, 806, 7, 26, 2, 2, 800, 801, 7, 34, 2, 2, 801, 806, 7, 26, 2, 2, 802, 806, 7, 35, 2, 2, 803, 804, 7, 35, 2, 2, 804, 806, 7, 34, 2, 2, 805, 792, 3, 2, 2, 2, 805, 793, 3, 2, 2, 2, 805, 794, 3, 2, 2, 2, 805, 795, 3, 2, 2, 2, 805, 796, 3, 2, 2, 2, 805, 797, 3, 2, 2, 2, 805, 798, 3, 2, 2, 2, 805, 799, 3, 2, 2, 2, 805, 800, 3, 2, 2, 2, 805, 802, 3, 2, 2, 2, 805, 803, 3, 2, 2, 2, 806, 117, 3, 2, 2, 2, 807, 808, 7, 59, 2, 2, 808, 809, 5, 120, 61, 2, 809, 119, 3, 2, 2, 2, 810, 815, 5, 122, 62, 2, 811, 812, 7, 69, 2, 2, 812, 814, 5, 122, 62, 2, 813, 811, 3, 2, 2, 2, 814, 817, 3, 2, 2, 2, 815, 813, 3, 2, 2, 2, 815, 816, 3, 2, 2, 2, 816, 121, 3, 2, 2, 2, 817, 815, 3, 2, 2, 2, 818, 823, 5, 124, 63, 2, 819, 820, 7, 70, 2, 2, 820, 822, 5, 124, 63, 2, 821, 819, 3, 2, 2, 2, 822, 825, 3, 2, 2, 2, 823, 821, 3, 2, 2, 2, 823, 824, 3, 2, 2, 2, 824, 123, 3, 2, 2, 2, 825, 823, 3, 2, 2, 2, 826, 831, 5, 126, 64, 2, 827, 828, 7, 71, 2, 2, 828, 830, 5, 126, 64, 2, 829, 827, 3, 2, 2, 2, 830, 833, 3, 2, 2, 2, 831, 829, 3, 2, 2, 2, 831, 832, 3, 2, 2, 2, 832, 125, 3, 2, 2, 2, 833, 831, 3, 2, 2, 2, 834, 839, 5, 128, 65, 2, 835, 836, 9, 4, 2, 2, 836, 838, 5, 128, 65, 2, 837, 835, 3, 2, 2, 2, 838, 841, 3, 2, 2, 2, 839, 837, 3, 2, 2, 2, 839, 840, 3, 2, 2, 2, 840, 127, 3, 2, 2, 2, 841, 839, 3, 2, 2, 2, 842, 847, 5, 130, 66, 2, 843, 844, 9, 5, 2, 2, 844, 846, 5, 130, 66, 2, 845, 843, 3, 2, 2, 2, 846, 849, 3, 2, 2, 2, 847, 845, 3, 2, 2, 2, 847, 848, 3, 2, 2, 2, 848, 129, 3, 2, 2, 2, 849, 847, 3, 2, 2, 2, 850, 855, 5, 132, 67, 2, 851, 852, 9, 6, 2, 2, 852, 854, 5, 132, 67, 2, 853, 851, 3, 2, 2, 2, 854, 857, 3, 2, 2, 2, 855, 853, 3, 2, 2, 2, 855, 856, 3, 2, 2, 2, 856, 131, 3, 2, 2, 2, 857, 855, 3, 2, 2, 2, 858, 859, 9, 7, 2, 2, 859, 862, 5, 132, 67, 2, 860, 862, 5, 134, 68, 2, 861, 858, 3, 2, 2, 2, 861, 860, 3, 2, 2, 2, 862, 133, 3, 2, 2, 2, 863, 866, 5, 136, 69, 2, 864, 865, 7, 65, 2, 2, 865, 867, 5, 132, 67, 2, 866, 864, 3, 2, 2, 2, 866, 867, 3, 2, 2, 2, 867, 135, 3, 2, 2, 2, 868, 870, 7, 46, 2, 2, 869, 868, 3, 2, 2, 2, 869, 870, 3, 2, 2, 2, 870, 871, 3, 2, 2, 2, 871, 875, 5, 138, 70, 2, 872, 874, 5, 142, 72, 2, 873, 872, 3, 2, 2, 2, 874, 877, 3, 2, 2, 2, 875, 873, 3, 2, 2, 2, 875, 876, 3, 2, 2, 2, 876, 137, 3, 2, 2, 2, 877, 875, 3, 2, 2, 2, 878, 881, 7, 60, 2, 2, 879, 882, 5, 172, 87, 2, 880, 882, 5, 140, 71, 2, 881, 879, 3, 2, 2, 2, 881, 880, 3, 2, 2, 2, 881, 882, 3, 2, 2, 2, 882, 883, 3, 2, 2, 2, 883, 911, 7, 61, 2, 2, 884, 886, 7, 67, 2, 2, 885, 887, 5, 140, 71, 2, 886, 885, 3, 2, 2, 2, 886, 887, 3, 2, 2, 2, 887, 888, 3, 2, 2, 2, 888, 911, 7, 68, 2, 2, 889, 891, 7, 80, 2, 2, 890, 892, 5, 154, 78, 2, 891, 890, 3, 2, 2, 2, 891, 892, 3, 2, 2, 2, 892, 893, 3, 2, 2, 2, 893, 911, 7, 82, 2, 2, 894, 911, 7, 48, 2, 2, 895, 911, 7, 10, 2, 2, 896, 898, 5, 176, 89, 2, 897, 896, 3, 2, 2, 2, 898, 899, 3, 2, 2, 2, 899, 897, 3, 2, 2, 2, 899, 900, 3, 2, 2, 2, 900, 911, 3, 2, 2, 2, 901, 903, 7, 9, 2, 2, 902, 901, 3, 2, 2, 2, 903, 904, 3, 2, 2, 2, 904, 902, 3, 2, 2, 2, 904, 905, 3, 2, 2, 2, 905, 911, 3, 2, 2, 2, 906, 911, 7, 58, 2, 2, 907, 911, 7, 36, 2, 2, 908, 911, 7, 37, 2, 2, 909, 911, 7, 38, 2, 2, 910, 878, 3, 2, 2, 2, 910, 884, 3, 2, 2, 2, 910, 889, 3, 2, 2, 2, 910, 894, 3, 2, 2, 2, 910, 895, 3, 2, 2, 2, 910, 897, 3, 2, 2, 2, 910, 902, 3, 2, 2, 2, 910, 906, 3, 2, 2, 2, 910, 907, 3, 2, 2, 2, 910, 908, 3, 2, 2, 2, 910, 909, 3, 2, 2, 2, 911, 139, 3, 2, 2, 2, 912, 915, 5, 100, 51, 2, 913, 915, 5, 118, 60, 2, 914, 912, 3, 2, 2, 2, 914, 913, 3, 2, 2, 2, 915, 930, 3, 2, 2, 2, 916, 931, 5, 166, 84, 2, 917, 920, 7, 62, 2, 2, 918, 921, 5, 100, 51, 2, 919, 921, 5, 118, 60, 2, 920, 918, 3, 2, 2, 2, 920, 919, 3, 2, 2, 2, 921, 923, 3, 2, 2, 2, 922, 917, 3, 2, 2, 2, 923, 926, 3, 2, 2, 2, 924, 922, 3, 2, 2, 2, 924, 925, 3, 2, 2, 2, 925, 928, 3, 2, 2, 2, 926, 924, 3, 2, 2, 2, 927, 929, 7, 62, 2, 2, 928, 927, 3, 2, 2, 2, 928, 929, 3, 2, 2, 2, 929, 931, 3, 2, 2, 2, 930, 916, 3, 2, 2, 2, 930, 924, 3, 2, 2, 2, 931, 141, 3, 2, 2, 2, 932, 940, 5, 158, 80, 2, 933, 934, 7, 67, 2, 2, 934, 935, 5, 144, 73, 2, 935, 936, 7, 68, 2, 2, 936, 940, 3, 2, 2, 2, 937, 938, 7, 57, 2, 2, 938, 940, 7, 48, 2, 2, 939, 932, 3, 2, 2, 2, 939, 933, 3, 2, 2, 2, 939, 937, 3, 2, 2, 2, 940, 143, 3, 2, 2, 2, 941, 946, 5, 146, 74, 2, 942, 943, 7, 62, 2, 2, 943, 945, 5, 146, 74, 2, 944, 942, 3, 2, 2, 2, 945, 948, 3, 2, 2, 2, 946, 944, 3, 2, 2, 2, 946, 947, 3, 2, 2, 2, 947, 950, 3, 2, 2, 2, 948, 946, 3, 2, 2, 2, 949, 951, 7, 62, 2, 2, 950, 949, 3, 2, 2, 2, 950, 951, 3, 2, 2, 2, 951, 145, 3, 2, 2, 2, 952, 964, 5, 100, 51, 2, 953, 955, 5, 100, 51, 2, 954, 953, 3, 2, 2, 2, 954, 955, 3, 2, 2, 2, 955, 956, 3, 2, 2, 2, 956, 958, 7, 63, 2, 2, 957, 959, 5, 100, 51, 2, 958, 957, 3, 2, 2, 2, 958, 959, 3, 2, 2, 2, 959, 961, 3, 2, 2, 2, 960, 962, 5, 148, 75, 2, 961, 960, 3, 2, 2, 2, 961, 962, 3, 2, 2, 2, 962, 964, 3, 2, 2, 2, 963, 952, 3, 2, 2, 2, 963, 954, 3, 2, 2, 2, 964, 147, 3, 2, 2, 2, 965, 967, 7, 63, 2, 2, 966, 968, 5, 100, 51, 2, 967, 966, 3, 2, 2, 2, 967, 968, 3, 2, 2, 2, 968, 149, 3, 2, 2, 2, 969, 972, 5, 120, 61, 2, 970, 972, 5, 118, 60, 2, 971, 969, 3, 2, 2, 2, 971, 970, 3, 2, 2, 2, 972, 980, 3, 2, 2, 2, 973, 976, 7, 62, 2, 2, 974, 977, 5, 120, 61, 2, 975, 977, 5, 118, 60, 2, 976, 974, 3, 2, 2, 2, 976, 975, 3, 2, 2, 2, 977, 979, 3, 2, 2, 2, 978, 973, 3, 2, 2, 2, 979, 982, 3, 2, 2, 2, 980, 978, 3, 2, 2, 2, 980, 981, 3, 2, 2, 2, 981, 984, 3, 2, 2, 2, 982, 980, 3, 2, 2, 2, 983, 985, 7, 62, 2, 2, 984, 983, 3, 2, 2, 2, 984, 985, 3, 2, 2, 2, 985, 151, 3, 2, 2, 2, 986, 991, 5, 100, 51, 2, 987, 988, 7, 62, 2, 2, 988, 990, 5, 100, 51, 2, 989, 987, 3, 2, 2, 2, 990, 993, 3, 2, 2, 2, 991, 989, 3, 2, 2, 2, 991, 992, 3, 2, 2, 2, 992, 995, 3, 2, 2, 2, 993, 991, 3, 2, 2, 2, 994, 996, 7, 62, 2, 2, 995, 994, 3, 2, 2, 2, 995, 996, 3, 2, 2, 2, 996, 153, 3, 2, 2, 2, 997, 998, 5, 100, 51, 2, 998, 999, 7, 63, 2, 2, 999, 1000, 5, 100, 51, 2, 1000, 1004, 3, 2, 2, 2, 1001, 1002, 7, 65, 2, 2, 1002, 1004, 5, 120, 61, 2, 1003, 997, 3, 2, 2, 2, 1003, 1001, 3, 2, 2, 2, 1004, 1023, 3, 2, 2, 2, 1005, 1024, 5, 166, 84, 2, 1006, 1013, 7, 62, 2, 2, 1007, 1008, 5, 100, 51, 2, 1008, 1009, 7, 63, 2, 2, 1009, 1010, 5, 100, 51, 2, 1010, 1014, 3, 2, 2, 2, 1011, 1012, 7, 65, 2, 2, 1012, 1014, 5, 120, 61, 2, 1013, 1007, 3, 2, 2, 2, 1013, 1011, 3, 2, 2, 2, 1014, 1016, 3, 2, 2, 2, 1015, 1006, 3, 2, 2, 2, 1016, 1019, 3, 2, 2, 2, 1017, 1015, 3, 2, 2, 2, 1017, 1018, 3, 2, 2, 2, 1018, 1021, 3, 2, 2, 2, 1019, 1017, 3, 2, 2, 2, 1020, 1022, 7, 62, 2, 2, 1021, 1020, 3, 2, 2, 2, 1021, 1022, 3, 2, 2, 2, 1022, 1024, 3, 2, 2, 2, 1023, 1005, 3, 2, 2, 2, 1023, 1017, 3, 2, 2, 2, 1024, 1046, 3, 2, 2, 2, 1025, 1028, 5, 100, 51, 2, 1026, 1028, 5, 118, 60, 2, 1027, 1025, 3, 2, 2, 2, 1027, 1026, 3, 2, 2, 2, 1028, 1043, 3, 2, 2, 2, 1029, 1044, 5, 166, 84, 2, 1030, 1033, 7, 62, 2, 2, 1031, 1034, 5, 100, 51, 2, 1032, 1034, 5, 118, 60, 2, 1033, 1031, 3, 2, 2, 2, 1033, 1032, 3, 2, 2, 2, 1034, 1036, 3, 2, 2, 2, 1035, 1030, 3, 2, 2, 2, 1036, 1039, 3, 2, 2, 2, 1037, 1035, 3, 2, 2, 2, 1037, 1038, 3, 2, 2, 2, 1038, 1041, 3, 2, 2, 2, 1039, 1037, 3, 2, 2, 2, 1040, 1042, 7, 62, 2, 2, 1041, 1040, 3, 2, 2, 2, 1041, 1042, 3, 2, 2, 2, 1042, 1044, 3, 2, 2, 2, 1043, 1029, 3, 2, 2, 2, 1043, 1037, 3, 2, 2, 2, 1044, 1046, 3, 2, 2, 2, 1045, 1003, 3, 2, 2, 2, 1045, 1027, 3, 2, 2, 2, 1046, 155, 3, 2, 2, 2, 1047, 1048, 7, 39, 2, 2, 1048, 1054, 7, 48, 2, 2, 1049, 1051, 7, 60, 2, 2, 1050, 1052, 5, 160, 81, 2, 1051, 1050, 3, 2, 2, 2, 1051, 1052, 3, 2, 2, 2, 1052, 1053, 3, 2, 2, 2, 1053, 1055, 7, 61, 2, 2, 1054, 1049, 3, 2, 2, 2, 1054, 1055, 3, 2, 2, 2, 1055, 1056, 3, 2, 2, 2, 1056, 1057, 7, 63, 2, 2, 1057, 1058, 5, 98, 50, 2, 1058, 157, 3, 2, 2, 2, 1059, 1061, 7, 60, 2, 2, 1060, 1062, 5, 160, 81, 2, 1061, 1060, 3, 2, 2, 2, 1061, 1062, 3, 2, 2, 2, 1062, 1063, 3, 2, 2, 2, 1063, 1064, 7, 61, 2, 2, 1064, 159, 3, 2, 2, 2, 1065, 1070, 5, 162, 82, 2, 1066, 1067, 7, 62, 2, 2, 1067, 1069, 5, 162, 82, 2, 1068, 1066, 3, 2, 2, 2, 1069, 1072, 3, 2, 2, 2, 1070, 1068, 3, 2, 2, 2, 1070, 1071, 3, 2, 2, 2, 1071, 1074, 3, 2, 2, 2, 1072, 1070, 3, 2, 2, 2, 1073, 1075, 7, 62, 2, 2, 1074, 1073, 3, 2, 2, 2, 1074, 1075, 3, 2, 2, 2, 1075, 161, 3, 2, 2, 2, 1076, 1078, 5, 100, 51, 2, 1077, 1079, 5, 166, 84, 2, 1078, 1077, 3, 2, 2, 2, 1078, 1079, 3, 2, 2, 2, 1079, 1089, 3, 2, 2, 2, 1080, 1081, 5, 100, 51, 2, 1081, 1082, 7, 66, 2, 2, 1082, 1083, 5, 100, 51, 2, 1083, 1089, 3, 2, 2, 2, 1084, 1085, 7, 65, 2, 2, 1085, 1089, 5, 100, 51, 2, 1086, 1087, 7, 59, 2, 2, 1087, 1089, 5, 100, 51, 2, 1088, 1076, 3, 2, 2, 2, 1088, 1080, 3, 2, 2, 2, 1088, 1084, 3, 2, 2, 2, 1088, 1086, 3, 2, 2, 2, 1089, 163, 3, 2, 2, 2, 1090, 1093, 5, 166, 84, 2, 1091, 1093, 5, 168, 85, 2, 1092, 1090, 3, 2, 2, 2, 1092, 1091, 3, 2, 2, 2, 1093, 165, 3, 2, 2, 2, 1094, 1096, 7, 45, 2, 2, 1095, 1094, 3, 2, 2, 2, 1095, 1096, 3, 2, 2, 2, 1096, 1097, 3, 2, 2, 2, 1097, 1098, 7, 25, 2, 2, 1098, 1099, 5, 150, 76, 2, 1099, 1100, 7, 26, 2, 2, 1100, 1102, 5, 108, 55, 2, 1101, 1103, 5, 164, 83, 2, 1102, 1101, 3, 2, 2, 2, 1102, 1103, 3, 2, 2, 2, 1103, 167, 3, 2, 2, 2, 1104, 1105, 7, 21, 2, 2, 1105, 1107, 5, 102, 52, 2, 1106, 1108, 5, 164, 83, 2, 1107, 1106, 3, 2, 2, 2, 1107, 1108, 3, 2, 2, 2, 1108, 169, 3, 2, 2, 2, 1109, 1110, 7, 48, 2, 2, 1110, 171, 3, 2, 2, 2, 1111, 1113, 7, 40, 2, 2, 1112, 1114, 5, 174, 88, 2, 1113, 1112, 3, 2, 2, 2, 1113, 1114, 3, 2, 2, 2, 1114, 173, 3, 2, 2, 2, 1115, 1116, 7, 15, 2, 2, 1116, 1119, 5, 100, 51, 2, 1117, 1119, 5, 152, 77, 2, 1118, 1115, 3, 2, 2, 2, 1118, 1117, 3, 2, 2, 2, 1119, 175, 3, 2, 2, 2, 1120, 1124, 7, 5, 2, 2, 1121, 1123, 5, 178, 90, 2, 1122, 1121, 3, 2, 2, 2, 1123, 1126, 3, 2, 2, 2, 1124, 1122, 3, 2, 2, 2, 1124, 1125, 3, 2, 2, 2, 1125, 1127, 3, 2, 2, 2, 1126, 1124, 3, 2, 2, 2, 1127, 1153, 7, 109, 2, 2, 1128, 1132, 7, 7, 2, 2, 1129, 1131, 5, 178, 90, 2, 1130, 1129, 3, 2, 2, 2, 1131, 1134, 3, 2, 2, 2, 1132, 1130, 3, 2, 2, 2, 1132, 1133, 3, 2, 2, 2, 1133, 1135, 3, 2, 2, 2, 1134, 1132, 3, 2, 2, 2, 1135, 1153, 7, 110, 2, 2, 1136, 1140, 7, 6, 2, 2, 1137, 1139, 5, 180, 91, 2, 1138, 1137, 3, 2, 2, 2, 1139, 1142, 3, 2, 2, 2, 1140, 1138, 3, 2, 2, 2, 1140, 1141, 3, 2, 2, 2, 1141, 1143, 3, 2, 2, 2, 1142, 1140, 3, 2, 2, 2, 1143, 1153, 7, 112, 2, 2, 1144, 1148, 7, 8, 2, 2, 1145, 1147, 5, 180, 91, 2, 1146, 1145, 3, 2, 2, 2, 1147, 1150, 3, 2, 2, 2, 1148, 1146, 3, 2, 2, 2, 1148, 1149, 3, 2, 2, 2, 1149, 1151, 3, 2, 2, 2, 1150, 1148, 3, 2, 2, 2, 1151, 1153, 7, 113, 2, 2, 1152, 1120, 3, 2, 2, 2, 1152, 1128, 3, 2, 2, 2, 1152, 1136, 3, 2, 2, 2, 1152, 1144, 3, 2, 2, 2, 1153, 177, 3, 2, 2, 2, 1154, 1163, 7, 111, 2, 2, 1155, 1158, 7, 80, 2, 2, 1156, 1159, 5, 100, 51, 2, 1157, 1159, 5, 118, 60, 2, 1158, 1156, 3, 2, 2, 2, 1158, 1157, 3, 2, 2, 2, 1159, 1160, 3, 2, 2, 2, 1160, 1161, 7, 81, 2, 2, 1161, 1163, 3, 2, 2, 2, 1162, 1154, 3, 2, 2, 2, 1162, 1155, 3, 2, 2, 2, 1163, 179, 3, 2, 2, 2, 1164, 1173, 7, 114, 2, 2, 1165, 1168, 7, 80, 2, 2, 1166, 1169, 5, 100, 51, 2, 1167, 1169, 5, 118, 60, 2, 1168, 1166, 3, 2, 2, 2, 1168, 1167, 3, 2, 2, 2, 1169, 1170, 3, 2, 2, 2, 1170, 1171, 7, 81, 2, 2, 1171, 1173, 3, 2, 2, 2, 1172, 1164, 3, 2, 2, 2, 1172, 1165, 3, 2, 2, 2, 1173, 181, 3, 2, 2, 2, 178, 184, 186, 196, 202, 211, 214, 221, 227, 237, 244, 251, 257, 261, 267, 273, 277, 284, 286, 288, 293, 295, 297, 301, 307, 311, 318, 320, 322, 327, 329, 334, 339, 345, 349, 355, 361, 365, 372, 374, 376, 381, 383, 385, 389, 395, 399, 406, 408, 410, 415, 417, 423, 430, 434, 446, 453, 458, 462, 465, 471, 475, 480, 484, 488, 502, 510, 518, 520, 524, 533, 540, 542, 551, 556, 561, 568, 572, 579, 587, 596, 605, 612, 623, 629, 642, 648, 657, 668, 679, 684, 689, 694, 702, 711, 717, 719, 727, 731, 739, 742, 746, 750, 757, 767, 775, 781, 789, 805, 815, 823, 831, 839, 847, 855, 861, 866, 869, 875, 881, 886, 891, 899, 904, 910, 914, 920, 924, 928, 930, 939, 946, 950, 954, 958, 961, 963, 967, 971, 976, 980, 984, 991, 995, 1003, 1013, 1017, 1021, 1023, 1027, 1033, 1037, 1041, 1043, 1045, 1051, 1054, 1061, 1070, 1074, 1078, 1088, 1092, 1095, 1102, 1107, 1113, 1118, 1124, 1132, 1140, 1148, 1152, 1158, 1162, 1168, 1172]
\ No newline at end of file
diff --git a/packages/cubejs-schema-compiler/src/parser/Python3Parser.ts b/packages/cubejs-schema-compiler/src/parser/Python3Parser.ts
index 43192c6854581..448c4fe1732ab 100644
--- a/packages/cubejs-schema-compiler/src/parser/Python3Parser.ts
+++ b/packages/cubejs-schema-compiler/src/parser/Python3Parser.ts
@@ -218,17 +218,18 @@ export class Python3Parser extends Parser {
public static readonly RULE_testlist = 75;
public static readonly RULE_dictorsetmaker = 76;
public static readonly RULE_classdef = 77;
- public static readonly RULE_arglist = 78;
- public static readonly RULE_argument = 79;
- public static readonly RULE_comp_iter = 80;
- public static readonly RULE_comp_for = 81;
- public static readonly RULE_comp_if = 82;
- public static readonly RULE_encoding_decl = 83;
- public static readonly RULE_yield_expr = 84;
- public static readonly RULE_yield_arg = 85;
- public static readonly RULE_string_template = 86;
- public static readonly RULE_single_string_template_atom = 87;
- public static readonly RULE_double_string_template_atom = 88;
+ public static readonly RULE_callArguments = 78;
+ public static readonly RULE_arglist = 79;
+ public static readonly RULE_argument = 80;
+ public static readonly RULE_comp_iter = 81;
+ public static readonly RULE_comp_for = 82;
+ public static readonly RULE_comp_if = 83;
+ public static readonly RULE_encoding_decl = 84;
+ public static readonly RULE_yield_expr = 85;
+ public static readonly RULE_yield_arg = 86;
+ public static readonly RULE_string_template = 87;
+ public static readonly RULE_single_string_template_atom = 88;
+ public static readonly RULE_double_string_template_atom = 89;
// tslint:disable:no-trailing-whitespace
public static readonly ruleNames: string[] = [
"file_input", "single_input", "eval_input", "decorator", "decorators",
@@ -245,9 +246,9 @@ export class Python3Parser extends Parser {
"star_expr", "expr", "xor_expr", "and_expr", "shift_expr", "arith_expr",
"term", "factor", "power", "atom_expr", "atom", "testlist_comp", "trailer",
"subscriptlist", "subscript", "sliceop", "exprlist", "testlist", "dictorsetmaker",
- "classdef", "arglist", "argument", "comp_iter", "comp_for", "comp_if",
- "encoding_decl", "yield_expr", "yield_arg", "string_template", "single_string_template_atom",
- "double_string_template_atom",
+ "classdef", "callArguments", "arglist", "argument", "comp_iter", "comp_for",
+ "comp_if", "encoding_decl", "yield_expr", "yield_arg", "string_template",
+ "single_string_template_atom", "double_string_template_atom",
];
private static readonly _LITERAL_NAMES: Array = [
@@ -322,17 +323,17 @@ export class Python3Parser extends Parser {
try {
this.enterOuterAlt(_localctx, 1);
{
- this.state = 182;
+ this.state = 184;
this._errHandler.sync(this);
_la = this._input.LA(1);
while ((((_la) & ~0x1F) === 0 && ((1 << _la) & ((1 << Python3Parser.SINGLE_QUOTE_SHORT_TEMPLATE_STRING_START) | (1 << Python3Parser.DOUBLE_QUOTE_SHORT_TEMPLATE_STRING_START) | (1 << Python3Parser.SINGLE_QUOTE_LONG_TEMPLATE_STRING_START) | (1 << Python3Parser.DOUBLE_QUOTE_LONG_TEMPLATE_STRING_START) | (1 << Python3Parser.STRING) | (1 << Python3Parser.NUMBER) | (1 << Python3Parser.DEF) | (1 << Python3Parser.RETURN) | (1 << Python3Parser.RAISE) | (1 << Python3Parser.FROM) | (1 << Python3Parser.IMPORT) | (1 << Python3Parser.GLOBAL) | (1 << Python3Parser.NONLOCAL) | (1 << Python3Parser.ASSERT) | (1 << Python3Parser.IF) | (1 << Python3Parser.WHILE) | (1 << Python3Parser.FOR) | (1 << Python3Parser.TRY) | (1 << Python3Parser.WITH) | (1 << Python3Parser.LAMBDA))) !== 0) || ((((_la - 32)) & ~0x1F) === 0 && ((1 << (_la - 32)) & ((1 << (Python3Parser.NOT - 32)) | (1 << (Python3Parser.NONE - 32)) | (1 << (Python3Parser.TRUE - 32)) | (1 << (Python3Parser.FALSE - 32)) | (1 << (Python3Parser.CLASS - 32)) | (1 << (Python3Parser.YIELD - 32)) | (1 << (Python3Parser.DEL - 32)) | (1 << (Python3Parser.PASS - 32)) | (1 << (Python3Parser.CONTINUE - 32)) | (1 << (Python3Parser.BREAK - 32)) | (1 << (Python3Parser.ASYNC - 32)) | (1 << (Python3Parser.AWAIT - 32)) | (1 << (Python3Parser.NEWLINE - 32)) | (1 << (Python3Parser.NAME - 32)) | (1 << (Python3Parser.ELLIPSIS - 32)) | (1 << (Python3Parser.STAR - 32)) | (1 << (Python3Parser.OPEN_PAREN - 32)))) !== 0) || ((((_la - 65)) & ~0x1F) === 0 && ((1 << (_la - 65)) & ((1 << (Python3Parser.OPEN_BRACK - 65)) | (1 << (Python3Parser.ADD - 65)) | (1 << (Python3Parser.MINUS - 65)) | (1 << (Python3Parser.NOT_OP - 65)) | (1 << (Python3Parser.OPEN_BRACE - 65)) | (1 << (Python3Parser.AT - 65)))) !== 0)) {
{
- this.state = 180;
+ this.state = 182;
this._errHandler.sync(this);
switch (this._input.LA(1)) {
case Python3Parser.NEWLINE:
{
- this.state = 178;
+ this.state = 180;
this.match(Python3Parser.NEWLINE);
}
break;
@@ -379,7 +380,7 @@ export class Python3Parser extends Parser {
case Python3Parser.OPEN_BRACE:
case Python3Parser.AT:
{
- this.state = 179;
+ this.state = 181;
this.stmt();
}
break;
@@ -387,11 +388,11 @@ export class Python3Parser extends Parser {
throw new NoViableAltException(this);
}
}
- this.state = 184;
+ this.state = 186;
this._errHandler.sync(this);
_la = this._input.LA(1);
}
- this.state = 185;
+ this.state = 187;
this.match(Python3Parser.EOF);
}
}
@@ -414,13 +415,13 @@ export class Python3Parser extends Parser {
let _localctx: Single_inputContext = new Single_inputContext(this._ctx, this.state);
this.enterRule(_localctx, 2, Python3Parser.RULE_single_input);
try {
- this.state = 192;
+ this.state = 194;
this._errHandler.sync(this);
switch (this._input.LA(1)) {
case Python3Parser.NEWLINE:
this.enterOuterAlt(_localctx, 1);
{
- this.state = 187;
+ this.state = 189;
this.match(Python3Parser.NEWLINE);
}
break;
@@ -459,7 +460,7 @@ export class Python3Parser extends Parser {
case Python3Parser.OPEN_BRACE:
this.enterOuterAlt(_localctx, 2);
{
- this.state = 188;
+ this.state = 190;
this.simple_stmt();
}
break;
@@ -474,9 +475,9 @@ export class Python3Parser extends Parser {
case Python3Parser.AT:
this.enterOuterAlt(_localctx, 3);
{
- this.state = 189;
+ this.state = 191;
this.compound_stmt();
- this.state = 190;
+ this.state = 192;
this.match(Python3Parser.NEWLINE);
}
break;
@@ -506,23 +507,23 @@ export class Python3Parser extends Parser {
try {
this.enterOuterAlt(_localctx, 1);
{
- this.state = 194;
+ this.state = 196;
this.testlist();
- this.state = 198;
+ this.state = 200;
this._errHandler.sync(this);
_la = this._input.LA(1);
while (_la === Python3Parser.NEWLINE) {
{
{
- this.state = 195;
+ this.state = 197;
this.match(Python3Parser.NEWLINE);
}
}
- this.state = 200;
+ this.state = 202;
this._errHandler.sync(this);
_la = this._input.LA(1);
}
- this.state = 201;
+ this.state = 203;
this.match(Python3Parser.EOF);
}
}
@@ -548,33 +549,33 @@ export class Python3Parser extends Parser {
try {
this.enterOuterAlt(_localctx, 1);
{
- this.state = 203;
+ this.state = 205;
this.match(Python3Parser.AT);
- this.state = 204;
+ this.state = 206;
this.dotted_name();
- this.state = 210;
+ this.state = 212;
this._errHandler.sync(this);
_la = this._input.LA(1);
if (_la === Python3Parser.OPEN_PAREN) {
{
- this.state = 205;
- this.match(Python3Parser.OPEN_PAREN);
this.state = 207;
+ this.match(Python3Parser.OPEN_PAREN);
+ this.state = 209;
this._errHandler.sync(this);
_la = this._input.LA(1);
if ((((_la) & ~0x1F) === 0 && ((1 << _la) & ((1 << Python3Parser.SINGLE_QUOTE_SHORT_TEMPLATE_STRING_START) | (1 << Python3Parser.DOUBLE_QUOTE_SHORT_TEMPLATE_STRING_START) | (1 << Python3Parser.SINGLE_QUOTE_LONG_TEMPLATE_STRING_START) | (1 << Python3Parser.DOUBLE_QUOTE_LONG_TEMPLATE_STRING_START) | (1 << Python3Parser.STRING) | (1 << Python3Parser.NUMBER) | (1 << Python3Parser.LAMBDA))) !== 0) || ((((_la - 32)) & ~0x1F) === 0 && ((1 << (_la - 32)) & ((1 << (Python3Parser.NOT - 32)) | (1 << (Python3Parser.NONE - 32)) | (1 << (Python3Parser.TRUE - 32)) | (1 << (Python3Parser.FALSE - 32)) | (1 << (Python3Parser.AWAIT - 32)) | (1 << (Python3Parser.NAME - 32)) | (1 << (Python3Parser.ELLIPSIS - 32)) | (1 << (Python3Parser.STAR - 32)) | (1 << (Python3Parser.OPEN_PAREN - 32)) | (1 << (Python3Parser.POWER - 32)))) !== 0) || ((((_la - 65)) & ~0x1F) === 0 && ((1 << (_la - 65)) & ((1 << (Python3Parser.OPEN_BRACK - 65)) | (1 << (Python3Parser.ADD - 65)) | (1 << (Python3Parser.MINUS - 65)) | (1 << (Python3Parser.NOT_OP - 65)) | (1 << (Python3Parser.OPEN_BRACE - 65)))) !== 0)) {
{
- this.state = 206;
+ this.state = 208;
this.arglist();
}
}
- this.state = 209;
+ this.state = 211;
this.match(Python3Parser.CLOSE_PAREN);
}
}
- this.state = 212;
+ this.state = 214;
this.match(Python3Parser.NEWLINE);
}
}
@@ -600,17 +601,17 @@ export class Python3Parser extends Parser {
try {
this.enterOuterAlt(_localctx, 1);
{
- this.state = 215;
+ this.state = 217;
this._errHandler.sync(this);
_la = this._input.LA(1);
do {
{
{
- this.state = 214;
+ this.state = 216;
this.decorator();
}
}
- this.state = 217;
+ this.state = 219;
this._errHandler.sync(this);
_la = this._input.LA(1);
} while (_la === Python3Parser.AT);
@@ -637,26 +638,26 @@ export class Python3Parser extends Parser {
try {
this.enterOuterAlt(_localctx, 1);
{
- this.state = 219;
+ this.state = 221;
this.decorators();
- this.state = 223;
+ this.state = 225;
this._errHandler.sync(this);
switch (this._input.LA(1)) {
case Python3Parser.CLASS:
{
- this.state = 220;
+ this.state = 222;
this.classdef();
}
break;
case Python3Parser.DEF:
{
- this.state = 221;
+ this.state = 223;
this.funcdef();
}
break;
case Python3Parser.ASYNC:
{
- this.state = 222;
+ this.state = 224;
this.async_funcdef();
}
break;
@@ -686,9 +687,9 @@ export class Python3Parser extends Parser {
try {
this.enterOuterAlt(_localctx, 1);
{
- this.state = 225;
+ this.state = 227;
this.match(Python3Parser.ASYNC);
- this.state = 226;
+ this.state = 228;
this.funcdef();
}
}
@@ -714,27 +715,27 @@ export class Python3Parser extends Parser {
try {
this.enterOuterAlt(_localctx, 1);
{
- this.state = 228;
+ this.state = 230;
this.match(Python3Parser.DEF);
- this.state = 229;
+ this.state = 231;
this.match(Python3Parser.NAME);
- this.state = 230;
+ this.state = 232;
this.parameters();
- this.state = 233;
+ this.state = 235;
this._errHandler.sync(this);
_la = this._input.LA(1);
if (_la === Python3Parser.ARROW) {
{
- this.state = 231;
+ this.state = 233;
this.match(Python3Parser.ARROW);
- this.state = 232;
+ this.state = 234;
this.test();
}
}
- this.state = 235;
+ this.state = 237;
this.match(Python3Parser.COLON);
- this.state = 236;
+ this.state = 238;
this.suite();
}
}
@@ -760,19 +761,19 @@ export class Python3Parser extends Parser {
try {
this.enterOuterAlt(_localctx, 1);
{
- this.state = 238;
- this.match(Python3Parser.OPEN_PAREN);
this.state = 240;
+ this.match(Python3Parser.OPEN_PAREN);
+ this.state = 242;
this._errHandler.sync(this);
_la = this._input.LA(1);
if (((((_la - 46)) & ~0x1F) === 0 && ((1 << (_la - 46)) & ((1 << (Python3Parser.NAME - 46)) | (1 << (Python3Parser.STAR - 46)) | (1 << (Python3Parser.POWER - 46)))) !== 0)) {
{
- this.state = 239;
+ this.state = 241;
this.typedargslist();
}
}
- this.state = 242;
+ this.state = 244;
this.match(Python3Parser.CLOSE_PAREN);
}
}
@@ -799,44 +800,44 @@ export class Python3Parser extends Parser {
let _alt: number;
this.enterOuterAlt(_localctx, 1);
{
- this.state = 325;
+ this.state = 327;
this._errHandler.sync(this);
switch (this._input.LA(1)) {
case Python3Parser.NAME:
{
- this.state = 244;
+ this.state = 246;
this.tfpdef();
- this.state = 247;
+ this.state = 249;
this._errHandler.sync(this);
_la = this._input.LA(1);
if (_la === Python3Parser.ASSIGN) {
{
- this.state = 245;
+ this.state = 247;
this.match(Python3Parser.ASSIGN);
- this.state = 246;
+ this.state = 248;
this.test();
}
}
- this.state = 257;
+ this.state = 259;
this._errHandler.sync(this);
_alt = this.interpreter.adaptivePredict(this._input, 12, this._ctx);
while (_alt !== 2 && _alt !== ATN.INVALID_ALT_NUMBER) {
if (_alt === 1) {
{
{
- this.state = 249;
+ this.state = 251;
this.match(Python3Parser.COMMA);
- this.state = 250;
+ this.state = 252;
this.tfpdef();
- this.state = 253;
+ this.state = 255;
this._errHandler.sync(this);
_la = this._input.LA(1);
if (_la === Python3Parser.ASSIGN) {
{
- this.state = 251;
+ this.state = 253;
this.match(Python3Parser.ASSIGN);
- this.state = 252;
+ this.state = 254;
this.test();
}
}
@@ -844,53 +845,53 @@ export class Python3Parser extends Parser {
}
}
}
- this.state = 259;
+ this.state = 261;
this._errHandler.sync(this);
_alt = this.interpreter.adaptivePredict(this._input, 12, this._ctx);
}
- this.state = 293;
+ this.state = 295;
this._errHandler.sync(this);
_la = this._input.LA(1);
if (_la === Python3Parser.COMMA) {
{
- this.state = 260;
+ this.state = 262;
this.match(Python3Parser.COMMA);
- this.state = 291;
+ this.state = 293;
this._errHandler.sync(this);
switch (this._input.LA(1)) {
case Python3Parser.STAR:
{
- this.state = 261;
- this.match(Python3Parser.STAR);
this.state = 263;
+ this.match(Python3Parser.STAR);
+ this.state = 265;
this._errHandler.sync(this);
_la = this._input.LA(1);
if (_la === Python3Parser.NAME) {
{
- this.state = 262;
+ this.state = 264;
this.tfpdef();
}
}
- this.state = 273;
+ this.state = 275;
this._errHandler.sync(this);
_alt = this.interpreter.adaptivePredict(this._input, 15, this._ctx);
while (_alt !== 2 && _alt !== ATN.INVALID_ALT_NUMBER) {
if (_alt === 1) {
{
{
- this.state = 265;
+ this.state = 267;
this.match(Python3Parser.COMMA);
- this.state = 266;
+ this.state = 268;
this.tfpdef();
- this.state = 269;
+ this.state = 271;
this._errHandler.sync(this);
_la = this._input.LA(1);
if (_la === Python3Parser.ASSIGN) {
{
- this.state = 267;
+ this.state = 269;
this.match(Python3Parser.ASSIGN);
- this.state = 268;
+ this.state = 270;
this.test();
}
}
@@ -898,32 +899,32 @@ export class Python3Parser extends Parser {
}
}
}
- this.state = 275;
+ this.state = 277;
this._errHandler.sync(this);
_alt = this.interpreter.adaptivePredict(this._input, 15, this._ctx);
}
- this.state = 284;
+ this.state = 286;
this._errHandler.sync(this);
_la = this._input.LA(1);
if (_la === Python3Parser.COMMA) {
{
- this.state = 276;
+ this.state = 278;
this.match(Python3Parser.COMMA);
- this.state = 282;
+ this.state = 284;
this._errHandler.sync(this);
_la = this._input.LA(1);
if (_la === Python3Parser.POWER) {
{
- this.state = 277;
+ this.state = 279;
this.match(Python3Parser.POWER);
- this.state = 278;
- this.tfpdef();
this.state = 280;
+ this.tfpdef();
+ this.state = 282;
this._errHandler.sync(this);
_la = this._input.LA(1);
if (_la === Python3Parser.COMMA) {
{
- this.state = 279;
+ this.state = 281;
this.match(Python3Parser.COMMA);
}
}
@@ -938,16 +939,16 @@ export class Python3Parser extends Parser {
break;
case Python3Parser.POWER:
{
- this.state = 286;
+ this.state = 288;
this.match(Python3Parser.POWER);
- this.state = 287;
- this.tfpdef();
this.state = 289;
+ this.tfpdef();
+ this.state = 291;
this._errHandler.sync(this);
_la = this._input.LA(1);
if (_la === Python3Parser.COMMA) {
{
- this.state = 288;
+ this.state = 290;
this.match(Python3Parser.COMMA);
}
}
@@ -966,37 +967,37 @@ export class Python3Parser extends Parser {
break;
case Python3Parser.STAR:
{
- this.state = 295;
- this.match(Python3Parser.STAR);
this.state = 297;
+ this.match(Python3Parser.STAR);
+ this.state = 299;
this._errHandler.sync(this);
_la = this._input.LA(1);
if (_la === Python3Parser.NAME) {
{
- this.state = 296;
+ this.state = 298;
this.tfpdef();
}
}
- this.state = 307;
+ this.state = 309;
this._errHandler.sync(this);
_alt = this.interpreter.adaptivePredict(this._input, 24, this._ctx);
while (_alt !== 2 && _alt !== ATN.INVALID_ALT_NUMBER) {
if (_alt === 1) {
{
{
- this.state = 299;
+ this.state = 301;
this.match(Python3Parser.COMMA);
- this.state = 300;
+ this.state = 302;
this.tfpdef();
- this.state = 303;
+ this.state = 305;
this._errHandler.sync(this);
_la = this._input.LA(1);
if (_la === Python3Parser.ASSIGN) {
{
- this.state = 301;
+ this.state = 303;
this.match(Python3Parser.ASSIGN);
- this.state = 302;
+ this.state = 304;
this.test();
}
}
@@ -1004,32 +1005,32 @@ export class Python3Parser extends Parser {
}
}
}
- this.state = 309;
+ this.state = 311;
this._errHandler.sync(this);
_alt = this.interpreter.adaptivePredict(this._input, 24, this._ctx);
}
- this.state = 318;
+ this.state = 320;
this._errHandler.sync(this);
_la = this._input.LA(1);
if (_la === Python3Parser.COMMA) {
{
- this.state = 310;
+ this.state = 312;
this.match(Python3Parser.COMMA);
- this.state = 316;
+ this.state = 318;
this._errHandler.sync(this);
_la = this._input.LA(1);
if (_la === Python3Parser.POWER) {
{
- this.state = 311;
+ this.state = 313;
this.match(Python3Parser.POWER);
- this.state = 312;
- this.tfpdef();
this.state = 314;
+ this.tfpdef();
+ this.state = 316;
this._errHandler.sync(this);
_la = this._input.LA(1);
if (_la === Python3Parser.COMMA) {
{
- this.state = 313;
+ this.state = 315;
this.match(Python3Parser.COMMA);
}
}
@@ -1044,16 +1045,16 @@ export class Python3Parser extends Parser {
break;
case Python3Parser.POWER:
{
- this.state = 320;
+ this.state = 322;
this.match(Python3Parser.POWER);
- this.state = 321;
- this.tfpdef();
this.state = 323;
+ this.tfpdef();
+ this.state = 325;
this._errHandler.sync(this);
_la = this._input.LA(1);
if (_la === Python3Parser.COMMA) {
{
- this.state = 322;
+ this.state = 324;
this.match(Python3Parser.COMMA);
}
}
@@ -1087,16 +1088,16 @@ export class Python3Parser extends Parser {
try {
this.enterOuterAlt(_localctx, 1);
{
- this.state = 327;
+ this.state = 329;
this.match(Python3Parser.NAME);
- this.state = 330;
+ this.state = 332;
this._errHandler.sync(this);
_la = this._input.LA(1);
if (_la === Python3Parser.COLON) {
{
- this.state = 328;
+ this.state = 330;
this.match(Python3Parser.COLON);
- this.state = 329;
+ this.state = 331;
this.test();
}
}
@@ -1126,44 +1127,44 @@ export class Python3Parser extends Parser {
let _alt: number;
this.enterOuterAlt(_localctx, 1);
{
- this.state = 413;
+ this.state = 415;
this._errHandler.sync(this);
switch (this._input.LA(1)) {
case Python3Parser.NAME:
{
- this.state = 332;
+ this.state = 334;
this.vfpdef();
- this.state = 335;
+ this.state = 337;
this._errHandler.sync(this);
_la = this._input.LA(1);
if (_la === Python3Parser.ASSIGN) {
{
- this.state = 333;
+ this.state = 335;
this.match(Python3Parser.ASSIGN);
- this.state = 334;
+ this.state = 336;
this.test();
}
}
- this.state = 345;
+ this.state = 347;
this._errHandler.sync(this);
_alt = this.interpreter.adaptivePredict(this._input, 33, this._ctx);
while (_alt !== 2 && _alt !== ATN.INVALID_ALT_NUMBER) {
if (_alt === 1) {
{
{
- this.state = 337;
+ this.state = 339;
this.match(Python3Parser.COMMA);
- this.state = 338;
+ this.state = 340;
this.vfpdef();
- this.state = 341;
+ this.state = 343;
this._errHandler.sync(this);
_la = this._input.LA(1);
if (_la === Python3Parser.ASSIGN) {
{
- this.state = 339;
+ this.state = 341;
this.match(Python3Parser.ASSIGN);
- this.state = 340;
+ this.state = 342;
this.test();
}
}
@@ -1171,53 +1172,53 @@ export class Python3Parser extends Parser {
}
}
}
- this.state = 347;
+ this.state = 349;
this._errHandler.sync(this);
_alt = this.interpreter.adaptivePredict(this._input, 33, this._ctx);
}
- this.state = 381;
+ this.state = 383;
this._errHandler.sync(this);
_la = this._input.LA(1);
if (_la === Python3Parser.COMMA) {
{
- this.state = 348;
+ this.state = 350;
this.match(Python3Parser.COMMA);
- this.state = 379;
+ this.state = 381;
this._errHandler.sync(this);
switch (this._input.LA(1)) {
case Python3Parser.STAR:
{
- this.state = 349;
- this.match(Python3Parser.STAR);
this.state = 351;
+ this.match(Python3Parser.STAR);
+ this.state = 353;
this._errHandler.sync(this);
_la = this._input.LA(1);
if (_la === Python3Parser.NAME) {
{
- this.state = 350;
+ this.state = 352;
this.vfpdef();
}
}
- this.state = 361;
+ this.state = 363;
this._errHandler.sync(this);
_alt = this.interpreter.adaptivePredict(this._input, 36, this._ctx);
while (_alt !== 2 && _alt !== ATN.INVALID_ALT_NUMBER) {
if (_alt === 1) {
{
{
- this.state = 353;
+ this.state = 355;
this.match(Python3Parser.COMMA);
- this.state = 354;
+ this.state = 356;
this.vfpdef();
- this.state = 357;
+ this.state = 359;
this._errHandler.sync(this);
_la = this._input.LA(1);
if (_la === Python3Parser.ASSIGN) {
{
- this.state = 355;
+ this.state = 357;
this.match(Python3Parser.ASSIGN);
- this.state = 356;
+ this.state = 358;
this.test();
}
}
@@ -1225,32 +1226,32 @@ export class Python3Parser extends Parser {
}
}
}
- this.state = 363;
+ this.state = 365;
this._errHandler.sync(this);
_alt = this.interpreter.adaptivePredict(this._input, 36, this._ctx);
}
- this.state = 372;
+ this.state = 374;
this._errHandler.sync(this);
_la = this._input.LA(1);
if (_la === Python3Parser.COMMA) {
{
- this.state = 364;
+ this.state = 366;
this.match(Python3Parser.COMMA);
- this.state = 370;
+ this.state = 372;
this._errHandler.sync(this);
_la = this._input.LA(1);
if (_la === Python3Parser.POWER) {
{
- this.state = 365;
+ this.state = 367;
this.match(Python3Parser.POWER);
- this.state = 366;
- this.vfpdef();
this.state = 368;
+ this.vfpdef();
+ this.state = 370;
this._errHandler.sync(this);
_la = this._input.LA(1);
if (_la === Python3Parser.COMMA) {
{
- this.state = 367;
+ this.state = 369;
this.match(Python3Parser.COMMA);
}
}
@@ -1265,16 +1266,16 @@ export class Python3Parser extends Parser {
break;
case Python3Parser.POWER:
{
- this.state = 374;
+ this.state = 376;
this.match(Python3Parser.POWER);
- this.state = 375;
- this.vfpdef();
this.state = 377;
+ this.vfpdef();
+ this.state = 379;
this._errHandler.sync(this);
_la = this._input.LA(1);
if (_la === Python3Parser.COMMA) {
{
- this.state = 376;
+ this.state = 378;
this.match(Python3Parser.COMMA);
}
}
@@ -1293,37 +1294,37 @@ export class Python3Parser extends Parser {
break;
case Python3Parser.STAR:
{
- this.state = 383;
- this.match(Python3Parser.STAR);
this.state = 385;
+ this.match(Python3Parser.STAR);
+ this.state = 387;
this._errHandler.sync(this);
_la = this._input.LA(1);
if (_la === Python3Parser.NAME) {
{
- this.state = 384;
+ this.state = 386;
this.vfpdef();
}
}
- this.state = 395;
+ this.state = 397;
this._errHandler.sync(this);
_alt = this.interpreter.adaptivePredict(this._input, 45, this._ctx);
while (_alt !== 2 && _alt !== ATN.INVALID_ALT_NUMBER) {
if (_alt === 1) {
{
{
- this.state = 387;
+ this.state = 389;
this.match(Python3Parser.COMMA);
- this.state = 388;
+ this.state = 390;
this.vfpdef();
- this.state = 391;
+ this.state = 393;
this._errHandler.sync(this);
_la = this._input.LA(1);
if (_la === Python3Parser.ASSIGN) {
{
- this.state = 389;
+ this.state = 391;
this.match(Python3Parser.ASSIGN);
- this.state = 390;
+ this.state = 392;
this.test();
}
}
@@ -1331,32 +1332,32 @@ export class Python3Parser extends Parser {
}
}
}
- this.state = 397;
+ this.state = 399;
this._errHandler.sync(this);
_alt = this.interpreter.adaptivePredict(this._input, 45, this._ctx);
}
- this.state = 406;
+ this.state = 408;
this._errHandler.sync(this);
_la = this._input.LA(1);
if (_la === Python3Parser.COMMA) {
{
- this.state = 398;
+ this.state = 400;
this.match(Python3Parser.COMMA);
- this.state = 404;
+ this.state = 406;
this._errHandler.sync(this);
_la = this._input.LA(1);
if (_la === Python3Parser.POWER) {
{
- this.state = 399;
+ this.state = 401;
this.match(Python3Parser.POWER);
- this.state = 400;
- this.vfpdef();
this.state = 402;
+ this.vfpdef();
+ this.state = 404;
this._errHandler.sync(this);
_la = this._input.LA(1);
if (_la === Python3Parser.COMMA) {
{
- this.state = 401;
+ this.state = 403;
this.match(Python3Parser.COMMA);
}
}
@@ -1371,16 +1372,16 @@ export class Python3Parser extends Parser {
break;
case Python3Parser.POWER:
{
- this.state = 408;
+ this.state = 410;
this.match(Python3Parser.POWER);
- this.state = 409;
- this.vfpdef();
this.state = 411;
+ this.vfpdef();
+ this.state = 413;
this._errHandler.sync(this);
_la = this._input.LA(1);
if (_la === Python3Parser.COMMA) {
{
- this.state = 410;
+ this.state = 412;
this.match(Python3Parser.COMMA);
}
}
@@ -1413,7 +1414,7 @@ export class Python3Parser extends Parser {
try {
this.enterOuterAlt(_localctx, 1);
{
- this.state = 415;
+ this.state = 417;
this.match(Python3Parser.NAME);
}
}
@@ -1436,7 +1437,7 @@ export class Python3Parser extends Parser {
let _localctx: StmtContext = new StmtContext(this._ctx, this.state);
this.enterRule(_localctx, 26, Python3Parser.RULE_stmt);
try {
- this.state = 419;
+ this.state = 421;
this._errHandler.sync(this);
switch (this._input.LA(1)) {
case Python3Parser.SINGLE_QUOTE_SHORT_TEMPLATE_STRING_START:
@@ -1474,7 +1475,7 @@ export class Python3Parser extends Parser {
case Python3Parser.OPEN_BRACE:
this.enterOuterAlt(_localctx, 1);
{
- this.state = 417;
+ this.state = 419;
this.simple_stmt();
}
break;
@@ -1489,7 +1490,7 @@ export class Python3Parser extends Parser {
case Python3Parser.AT:
this.enterOuterAlt(_localctx, 2);
{
- this.state = 418;
+ this.state = 420;
this.compound_stmt();
}
break;
@@ -1520,37 +1521,37 @@ export class Python3Parser extends Parser {
let _alt: number;
this.enterOuterAlt(_localctx, 1);
{
- this.state = 421;
+ this.state = 423;
this.small_stmt();
- this.state = 426;
+ this.state = 428;
this._errHandler.sync(this);
_alt = this.interpreter.adaptivePredict(this._input, 52, this._ctx);
while (_alt !== 2 && _alt !== ATN.INVALID_ALT_NUMBER) {
if (_alt === 1) {
{
{
- this.state = 422;
+ this.state = 424;
this.match(Python3Parser.SEMI_COLON);
- this.state = 423;
+ this.state = 425;
this.small_stmt();
}
}
}
- this.state = 428;
+ this.state = 430;
this._errHandler.sync(this);
_alt = this.interpreter.adaptivePredict(this._input, 52, this._ctx);
}
- this.state = 430;
+ this.state = 432;
this._errHandler.sync(this);
_la = this._input.LA(1);
if (_la === Python3Parser.SEMI_COLON) {
{
- this.state = 429;
+ this.state = 431;
this.match(Python3Parser.SEMI_COLON);
}
}
- this.state = 432;
+ this.state = 434;
this.match(Python3Parser.NEWLINE);
}
}
@@ -1575,7 +1576,7 @@ export class Python3Parser extends Parser {
try {
this.enterOuterAlt(_localctx, 1);
{
- this.state = 442;
+ this.state = 444;
this._errHandler.sync(this);
switch (this._input.LA(1)) {
case Python3Parser.SINGLE_QUOTE_SHORT_TEMPLATE_STRING_START:
@@ -1600,19 +1601,19 @@ export class Python3Parser extends Parser {
case Python3Parser.NOT_OP:
case Python3Parser.OPEN_BRACE:
{
- this.state = 434;
+ this.state = 436;
this.expr_stmt();
}
break;
case Python3Parser.DEL:
{
- this.state = 435;
+ this.state = 437;
this.del_stmt();
}
break;
case Python3Parser.PASS:
{
- this.state = 436;
+ this.state = 438;
this.pass_stmt();
}
break;
@@ -1622,32 +1623,32 @@ export class Python3Parser extends Parser {
case Python3Parser.CONTINUE:
case Python3Parser.BREAK:
{
- this.state = 437;
+ this.state = 439;
this.flow_stmt();
}
break;
case Python3Parser.FROM:
case Python3Parser.IMPORT:
{
- this.state = 438;
+ this.state = 440;
this.import_stmt();
}
break;
case Python3Parser.GLOBAL:
{
- this.state = 439;
+ this.state = 441;
this.global_stmt();
}
break;
case Python3Parser.NONLOCAL:
{
- this.state = 440;
+ this.state = 442;
this.nonlocal_stmt();
}
break;
case Python3Parser.ASSERT:
{
- this.state = 441;
+ this.state = 443;
this.assert_stmt();
}
break;
@@ -1678,14 +1679,14 @@ export class Python3Parser extends Parser {
try {
this.enterOuterAlt(_localctx, 1);
{
- this.state = 444;
+ this.state = 446;
this.testlist_star_expr();
- this.state = 461;
+ this.state = 463;
this._errHandler.sync(this);
switch (this._input.LA(1)) {
case Python3Parser.COLON:
{
- this.state = 445;
+ this.state = 447;
this.annassign();
}
break;
@@ -1703,14 +1704,14 @@ export class Python3Parser extends Parser {
case Python3Parser.POWER_ASSIGN:
case Python3Parser.IDIV_ASSIGN:
{
- this.state = 446;
+ this.state = 448;
this.augassign();
- this.state = 449;
+ this.state = 451;
this._errHandler.sync(this);
switch (this._input.LA(1)) {
case Python3Parser.YIELD:
{
- this.state = 447;
+ this.state = 449;
this.yield_expr();
}
break;
@@ -1735,7 +1736,7 @@ export class Python3Parser extends Parser {
case Python3Parser.NOT_OP:
case Python3Parser.OPEN_BRACE:
{
- this.state = 448;
+ this.state = 450;
this.testlist();
}
break;
@@ -1748,20 +1749,20 @@ export class Python3Parser extends Parser {
case Python3Parser.SEMI_COLON:
case Python3Parser.ASSIGN:
{
- this.state = 458;
+ this.state = 460;
this._errHandler.sync(this);
_la = this._input.LA(1);
while (_la === Python3Parser.ASSIGN) {
{
{
- this.state = 451;
+ this.state = 453;
this.match(Python3Parser.ASSIGN);
- this.state = 454;
+ this.state = 456;
this._errHandler.sync(this);
switch (this._input.LA(1)) {
case Python3Parser.YIELD:
{
- this.state = 452;
+ this.state = 454;
this.yield_expr();
}
break;
@@ -1787,7 +1788,7 @@ export class Python3Parser extends Parser {
case Python3Parser.NOT_OP:
case Python3Parser.OPEN_BRACE:
{
- this.state = 453;
+ this.state = 455;
this.testlist_star_expr();
}
break;
@@ -1796,7 +1797,7 @@ export class Python3Parser extends Parser {
}
}
}
- this.state = 460;
+ this.state = 462;
this._errHandler.sync(this);
_la = this._input.LA(1);
}
@@ -1829,18 +1830,18 @@ export class Python3Parser extends Parser {
try {
this.enterOuterAlt(_localctx, 1);
{
- this.state = 463;
+ this.state = 465;
this.match(Python3Parser.COLON);
- this.state = 464;
+ this.state = 466;
this.test();
- this.state = 467;
+ this.state = 469;
this._errHandler.sync(this);
_la = this._input.LA(1);
if (_la === Python3Parser.ASSIGN) {
{
- this.state = 465;
+ this.state = 467;
this.match(Python3Parser.ASSIGN);
- this.state = 466;
+ this.state = 468;
this.test();
}
}
@@ -1870,7 +1871,7 @@ export class Python3Parser extends Parser {
let _alt: number;
this.enterOuterAlt(_localctx, 1);
{
- this.state = 471;
+ this.state = 473;
this._errHandler.sync(this);
switch (this._input.LA(1)) {
case Python3Parser.SINGLE_QUOTE_SHORT_TEMPLATE_STRING_START:
@@ -1894,29 +1895,29 @@ export class Python3Parser extends Parser {
case Python3Parser.NOT_OP:
case Python3Parser.OPEN_BRACE:
{
- this.state = 469;
+ this.state = 471;
this.test();
}
break;
case Python3Parser.STAR:
{
- this.state = 470;
+ this.state = 472;
this.star_expr();
}
break;
default:
throw new NoViableAltException(this);
}
- this.state = 480;
+ this.state = 482;
this._errHandler.sync(this);
_alt = this.interpreter.adaptivePredict(this._input, 62, this._ctx);
while (_alt !== 2 && _alt !== ATN.INVALID_ALT_NUMBER) {
if (_alt === 1) {
{
{
- this.state = 473;
+ this.state = 475;
this.match(Python3Parser.COMMA);
- this.state = 476;
+ this.state = 478;
this._errHandler.sync(this);
switch (this._input.LA(1)) {
case Python3Parser.SINGLE_QUOTE_SHORT_TEMPLATE_STRING_START:
@@ -1940,13 +1941,13 @@ export class Python3Parser extends Parser {
case Python3Parser.NOT_OP:
case Python3Parser.OPEN_BRACE:
{
- this.state = 474;
+ this.state = 476;
this.test();
}
break;
case Python3Parser.STAR:
{
- this.state = 475;
+ this.state = 477;
this.star_expr();
}
break;
@@ -1956,16 +1957,16 @@ export class Python3Parser extends Parser {
}
}
}
- this.state = 482;
+ this.state = 484;
this._errHandler.sync(this);
_alt = this.interpreter.adaptivePredict(this._input, 62, this._ctx);
}
- this.state = 484;
+ this.state = 486;
this._errHandler.sync(this);
_la = this._input.LA(1);
if (_la === Python3Parser.COMMA) {
{
- this.state = 483;
+ this.state = 485;
this.match(Python3Parser.COMMA);
}
}
@@ -1994,7 +1995,7 @@ export class Python3Parser extends Parser {
try {
this.enterOuterAlt(_localctx, 1);
{
- this.state = 486;
+ this.state = 488;
_la = this._input.LA(1);
if (!(((((_la - 90)) & ~0x1F) === 0 && ((1 << (_la - 90)) & ((1 << (Python3Parser.ADD_ASSIGN - 90)) | (1 << (Python3Parser.SUB_ASSIGN - 90)) | (1 << (Python3Parser.MULT_ASSIGN - 90)) | (1 << (Python3Parser.AT_ASSIGN - 90)) | (1 << (Python3Parser.DIV_ASSIGN - 90)) | (1 << (Python3Parser.MOD_ASSIGN - 90)) | (1 << (Python3Parser.AND_ASSIGN - 90)) | (1 << (Python3Parser.OR_ASSIGN - 90)) | (1 << (Python3Parser.XOR_ASSIGN - 90)) | (1 << (Python3Parser.LEFT_SHIFT_ASSIGN - 90)) | (1 << (Python3Parser.RIGHT_SHIFT_ASSIGN - 90)) | (1 << (Python3Parser.POWER_ASSIGN - 90)) | (1 << (Python3Parser.IDIV_ASSIGN - 90)))) !== 0))) {
this._errHandler.recoverInline(this);
@@ -2029,9 +2030,9 @@ export class Python3Parser extends Parser {
try {
this.enterOuterAlt(_localctx, 1);
{
- this.state = 488;
+ this.state = 490;
this.match(Python3Parser.DEL);
- this.state = 489;
+ this.state = 491;
this.exprlist();
}
}
@@ -2056,7 +2057,7 @@ export class Python3Parser extends Parser {
try {
this.enterOuterAlt(_localctx, 1);
{
- this.state = 491;
+ this.state = 493;
this.match(Python3Parser.PASS);
}
}
@@ -2079,41 +2080,41 @@ export class Python3Parser extends Parser {
let _localctx: Flow_stmtContext = new Flow_stmtContext(this._ctx, this.state);
this.enterRule(_localctx, 44, Python3Parser.RULE_flow_stmt);
try {
- this.state = 498;
+ this.state = 500;
this._errHandler.sync(this);
switch (this._input.LA(1)) {
case Python3Parser.BREAK:
this.enterOuterAlt(_localctx, 1);
{
- this.state = 493;
+ this.state = 495;
this.break_stmt();
}
break;
case Python3Parser.CONTINUE:
this.enterOuterAlt(_localctx, 2);
{
- this.state = 494;
+ this.state = 496;
this.continue_stmt();
}
break;
case Python3Parser.RETURN:
this.enterOuterAlt(_localctx, 3);
{
- this.state = 495;
+ this.state = 497;
this.return_stmt();
}
break;
case Python3Parser.RAISE:
this.enterOuterAlt(_localctx, 4);
{
- this.state = 496;
+ this.state = 498;
this.raise_stmt();
}
break;
case Python3Parser.YIELD:
this.enterOuterAlt(_localctx, 5);
{
- this.state = 497;
+ this.state = 499;
this.yield_stmt();
}
break;
@@ -2142,7 +2143,7 @@ export class Python3Parser extends Parser {
try {
this.enterOuterAlt(_localctx, 1);
{
- this.state = 500;
+ this.state = 502;
this.match(Python3Parser.BREAK);
}
}
@@ -2167,7 +2168,7 @@ export class Python3Parser extends Parser {
try {
this.enterOuterAlt(_localctx, 1);
{
- this.state = 502;
+ this.state = 504;
this.match(Python3Parser.CONTINUE);
}
}
@@ -2193,14 +2194,14 @@ export class Python3Parser extends Parser {
try {
this.enterOuterAlt(_localctx, 1);
{
- this.state = 504;
- this.match(Python3Parser.RETURN);
this.state = 506;
+ this.match(Python3Parser.RETURN);
+ this.state = 508;
this._errHandler.sync(this);
_la = this._input.LA(1);
if ((((_la) & ~0x1F) === 0 && ((1 << _la) & ((1 << Python3Parser.SINGLE_QUOTE_SHORT_TEMPLATE_STRING_START) | (1 << Python3Parser.DOUBLE_QUOTE_SHORT_TEMPLATE_STRING_START) | (1 << Python3Parser.SINGLE_QUOTE_LONG_TEMPLATE_STRING_START) | (1 << Python3Parser.DOUBLE_QUOTE_LONG_TEMPLATE_STRING_START) | (1 << Python3Parser.STRING) | (1 << Python3Parser.NUMBER) | (1 << Python3Parser.LAMBDA))) !== 0) || ((((_la - 32)) & ~0x1F) === 0 && ((1 << (_la - 32)) & ((1 << (Python3Parser.NOT - 32)) | (1 << (Python3Parser.NONE - 32)) | (1 << (Python3Parser.TRUE - 32)) | (1 << (Python3Parser.FALSE - 32)) | (1 << (Python3Parser.AWAIT - 32)) | (1 << (Python3Parser.NAME - 32)) | (1 << (Python3Parser.ELLIPSIS - 32)) | (1 << (Python3Parser.OPEN_PAREN - 32)))) !== 0) || ((((_la - 65)) & ~0x1F) === 0 && ((1 << (_la - 65)) & ((1 << (Python3Parser.OPEN_BRACK - 65)) | (1 << (Python3Parser.ADD - 65)) | (1 << (Python3Parser.MINUS - 65)) | (1 << (Python3Parser.NOT_OP - 65)) | (1 << (Python3Parser.OPEN_BRACE - 65)))) !== 0)) {
{
- this.state = 505;
+ this.state = 507;
this.testlist();
}
}
@@ -2228,7 +2229,7 @@ export class Python3Parser extends Parser {
try {
this.enterOuterAlt(_localctx, 1);
{
- this.state = 508;
+ this.state = 510;
this.yield_expr();
}
}
@@ -2254,23 +2255,23 @@ export class Python3Parser extends Parser {
try {
this.enterOuterAlt(_localctx, 1);
{
- this.state = 510;
+ this.state = 512;
this.match(Python3Parser.RAISE);
- this.state = 516;
+ this.state = 518;
this._errHandler.sync(this);
_la = this._input.LA(1);
if ((((_la) & ~0x1F) === 0 && ((1 << _la) & ((1 << Python3Parser.SINGLE_QUOTE_SHORT_TEMPLATE_STRING_START) | (1 << Python3Parser.DOUBLE_QUOTE_SHORT_TEMPLATE_STRING_START) | (1 << Python3Parser.SINGLE_QUOTE_LONG_TEMPLATE_STRING_START) | (1 << Python3Parser.DOUBLE_QUOTE_LONG_TEMPLATE_STRING_START) | (1 << Python3Parser.STRING) | (1 << Python3Parser.NUMBER) | (1 << Python3Parser.LAMBDA))) !== 0) || ((((_la - 32)) & ~0x1F) === 0 && ((1 << (_la - 32)) & ((1 << (Python3Parser.NOT - 32)) | (1 << (Python3Parser.NONE - 32)) | (1 << (Python3Parser.TRUE - 32)) | (1 << (Python3Parser.FALSE - 32)) | (1 << (Python3Parser.AWAIT - 32)) | (1 << (Python3Parser.NAME - 32)) | (1 << (Python3Parser.ELLIPSIS - 32)) | (1 << (Python3Parser.OPEN_PAREN - 32)))) !== 0) || ((((_la - 65)) & ~0x1F) === 0 && ((1 << (_la - 65)) & ((1 << (Python3Parser.OPEN_BRACK - 65)) | (1 << (Python3Parser.ADD - 65)) | (1 << (Python3Parser.MINUS - 65)) | (1 << (Python3Parser.NOT_OP - 65)) | (1 << (Python3Parser.OPEN_BRACE - 65)))) !== 0)) {
{
- this.state = 511;
+ this.state = 513;
this.test();
- this.state = 514;
+ this.state = 516;
this._errHandler.sync(this);
_la = this._input.LA(1);
if (_la === Python3Parser.FROM) {
{
- this.state = 512;
+ this.state = 514;
this.match(Python3Parser.FROM);
- this.state = 513;
+ this.state = 515;
this.test();
}
}
@@ -2299,20 +2300,20 @@ export class Python3Parser extends Parser {
let _localctx: Import_stmtContext = new Import_stmtContext(this._ctx, this.state);
this.enterRule(_localctx, 56, Python3Parser.RULE_import_stmt);
try {
- this.state = 520;
+ this.state = 522;
this._errHandler.sync(this);
switch (this._input.LA(1)) {
case Python3Parser.IMPORT:
this.enterOuterAlt(_localctx, 1);
{
- this.state = 518;
+ this.state = 520;
this.import_name();
}
break;
case Python3Parser.FROM:
this.enterOuterAlt(_localctx, 2);
{
- this.state = 519;
+ this.state = 521;
this.import_from();
}
break;
@@ -2341,9 +2342,9 @@ export class Python3Parser extends Parser {
try {
this.enterOuterAlt(_localctx, 1);
{
- this.state = 522;
+ this.state = 524;
this.match(Python3Parser.IMPORT);
- this.state = 523;
+ this.state = 525;
this.dotted_as_names();
}
}
@@ -2370,20 +2371,20 @@ export class Python3Parser extends Parser {
this.enterOuterAlt(_localctx, 1);
{
{
- this.state = 525;
+ this.state = 527;
this.match(Python3Parser.FROM);
- this.state = 538;
+ this.state = 540;
this._errHandler.sync(this);
switch ( this.interpreter.adaptivePredict(this._input, 71, this._ctx) ) {
case 1:
{
- this.state = 529;
+ this.state = 531;
this._errHandler.sync(this);
_la = this._input.LA(1);
while (_la === Python3Parser.DOT || _la === Python3Parser.ELLIPSIS) {
{
{
- this.state = 526;
+ this.state = 528;
_la = this._input.LA(1);
if (!(_la === Python3Parser.DOT || _la === Python3Parser.ELLIPSIS)) {
this._errHandler.recoverInline(this);
@@ -2397,24 +2398,24 @@ export class Python3Parser extends Parser {
}
}
}
- this.state = 531;
+ this.state = 533;
this._errHandler.sync(this);
_la = this._input.LA(1);
}
- this.state = 532;
+ this.state = 534;
this.dotted_name();
}
break;
case 2:
{
- this.state = 534;
+ this.state = 536;
this._errHandler.sync(this);
_la = this._input.LA(1);
do {
{
{
- this.state = 533;
+ this.state = 535;
_la = this._input.LA(1);
if (!(_la === Python3Parser.DOT || _la === Python3Parser.ELLIPSIS)) {
this._errHandler.recoverInline(this);
@@ -2428,37 +2429,37 @@ export class Python3Parser extends Parser {
}
}
}
- this.state = 536;
+ this.state = 538;
this._errHandler.sync(this);
_la = this._input.LA(1);
} while (_la === Python3Parser.DOT || _la === Python3Parser.ELLIPSIS);
}
break;
}
- this.state = 540;
+ this.state = 542;
this.match(Python3Parser.IMPORT);
- this.state = 547;
+ this.state = 549;
this._errHandler.sync(this);
switch (this._input.LA(1)) {
case Python3Parser.STAR:
{
- this.state = 541;
+ this.state = 543;
this.match(Python3Parser.STAR);
}
break;
case Python3Parser.OPEN_PAREN:
{
- this.state = 542;
+ this.state = 544;
this.match(Python3Parser.OPEN_PAREN);
- this.state = 543;
+ this.state = 545;
this.import_as_names();
- this.state = 544;
+ this.state = 546;
this.match(Python3Parser.CLOSE_PAREN);
}
break;
case Python3Parser.NAME:
{
- this.state = 546;
+ this.state = 548;
this.import_as_names();
}
break;
@@ -2490,16 +2491,16 @@ export class Python3Parser extends Parser {
try {
this.enterOuterAlt(_localctx, 1);
{
- this.state = 549;
+ this.state = 551;
this.match(Python3Parser.NAME);
- this.state = 552;
+ this.state = 554;
this._errHandler.sync(this);
_la = this._input.LA(1);
if (_la === Python3Parser.AS) {
{
- this.state = 550;
+ this.state = 552;
this.match(Python3Parser.AS);
- this.state = 551;
+ this.state = 553;
this.match(Python3Parser.NAME);
}
}
@@ -2528,16 +2529,16 @@ export class Python3Parser extends Parser {
try {
this.enterOuterAlt(_localctx, 1);
{
- this.state = 554;
+ this.state = 556;
this.dotted_name();
- this.state = 557;
+ this.state = 559;
this._errHandler.sync(this);
_la = this._input.LA(1);
if (_la === Python3Parser.AS) {
{
- this.state = 555;
+ this.state = 557;
this.match(Python3Parser.AS);
- this.state = 556;
+ this.state = 558;
this.match(Python3Parser.NAME);
}
}
@@ -2567,32 +2568,32 @@ export class Python3Parser extends Parser {
let _alt: number;
this.enterOuterAlt(_localctx, 1);
{
- this.state = 559;
+ this.state = 561;
this.import_as_name();
- this.state = 564;
+ this.state = 566;
this._errHandler.sync(this);
_alt = this.interpreter.adaptivePredict(this._input, 75, this._ctx);
while (_alt !== 2 && _alt !== ATN.INVALID_ALT_NUMBER) {
if (_alt === 1) {
{
{
- this.state = 560;
+ this.state = 562;
this.match(Python3Parser.COMMA);
- this.state = 561;
+ this.state = 563;
this.import_as_name();
}
}
}
- this.state = 566;
+ this.state = 568;
this._errHandler.sync(this);
_alt = this.interpreter.adaptivePredict(this._input, 75, this._ctx);
}
- this.state = 568;
+ this.state = 570;
this._errHandler.sync(this);
_la = this._input.LA(1);
if (_la === Python3Parser.COMMA) {
{
- this.state = 567;
+ this.state = 569;
this.match(Python3Parser.COMMA);
}
}
@@ -2621,21 +2622,21 @@ export class Python3Parser extends Parser {
try {
this.enterOuterAlt(_localctx, 1);
{
- this.state = 570;
+ this.state = 572;
this.dotted_as_name();
- this.state = 575;
+ this.state = 577;
this._errHandler.sync(this);
_la = this._input.LA(1);
while (_la === Python3Parser.COMMA) {
{
{
- this.state = 571;
+ this.state = 573;
this.match(Python3Parser.COMMA);
- this.state = 572;
+ this.state = 574;
this.dotted_as_name();
}
}
- this.state = 577;
+ this.state = 579;
this._errHandler.sync(this);
_la = this._input.LA(1);
}
@@ -2663,21 +2664,21 @@ export class Python3Parser extends Parser {
try {
this.enterOuterAlt(_localctx, 1);
{
- this.state = 578;
+ this.state = 580;
this.match(Python3Parser.NAME);
- this.state = 583;
+ this.state = 585;
this._errHandler.sync(this);
_la = this._input.LA(1);
while (_la === Python3Parser.DOT) {
{
{
- this.state = 579;
+ this.state = 581;
this.match(Python3Parser.DOT);
- this.state = 580;
+ this.state = 582;
this.match(Python3Parser.NAME);
}
}
- this.state = 585;
+ this.state = 587;
this._errHandler.sync(this);
_la = this._input.LA(1);
}
@@ -2705,23 +2706,23 @@ export class Python3Parser extends Parser {
try {
this.enterOuterAlt(_localctx, 1);
{
- this.state = 586;
+ this.state = 588;
this.match(Python3Parser.GLOBAL);
- this.state = 587;
+ this.state = 589;
this.match(Python3Parser.NAME);
- this.state = 592;
+ this.state = 594;
this._errHandler.sync(this);
_la = this._input.LA(1);
while (_la === Python3Parser.COMMA) {
{
{
- this.state = 588;
+ this.state = 590;
this.match(Python3Parser.COMMA);
- this.state = 589;
+ this.state = 591;
this.match(Python3Parser.NAME);
}
}
- this.state = 594;
+ this.state = 596;
this._errHandler.sync(this);
_la = this._input.LA(1);
}
@@ -2749,23 +2750,23 @@ export class Python3Parser extends Parser {
try {
this.enterOuterAlt(_localctx, 1);
{
- this.state = 595;
+ this.state = 597;
this.match(Python3Parser.NONLOCAL);
- this.state = 596;
+ this.state = 598;
this.match(Python3Parser.NAME);
- this.state = 601;
+ this.state = 603;
this._errHandler.sync(this);
_la = this._input.LA(1);
while (_la === Python3Parser.COMMA) {
{
{
- this.state = 597;
+ this.state = 599;
this.match(Python3Parser.COMMA);
- this.state = 598;
+ this.state = 600;
this.match(Python3Parser.NAME);
}
}
- this.state = 603;
+ this.state = 605;
this._errHandler.sync(this);
_la = this._input.LA(1);
}
@@ -2793,18 +2794,18 @@ export class Python3Parser extends Parser {
try {
this.enterOuterAlt(_localctx, 1);
{
- this.state = 604;
+ this.state = 606;
this.match(Python3Parser.ASSERT);
- this.state = 605;
+ this.state = 607;
this.test();
- this.state = 608;
+ this.state = 610;
this._errHandler.sync(this);
_la = this._input.LA(1);
if (_la === Python3Parser.COMMA) {
{
- this.state = 606;
+ this.state = 608;
this.match(Python3Parser.COMMA);
- this.state = 607;
+ this.state = 609;
this.test();
}
}
@@ -2830,69 +2831,69 @@ export class Python3Parser extends Parser {
let _localctx: Compound_stmtContext = new Compound_stmtContext(this._ctx, this.state);
this.enterRule(_localctx, 78, Python3Parser.RULE_compound_stmt);
try {
- this.state = 619;
+ this.state = 621;
this._errHandler.sync(this);
switch (this._input.LA(1)) {
case Python3Parser.IF:
this.enterOuterAlt(_localctx, 1);
{
- this.state = 610;
+ this.state = 612;
this.if_stmt();
}
break;
case Python3Parser.WHILE:
this.enterOuterAlt(_localctx, 2);
{
- this.state = 611;
+ this.state = 613;
this.while_stmt();
}
break;
case Python3Parser.FOR:
this.enterOuterAlt(_localctx, 3);
{
- this.state = 612;
+ this.state = 614;
this.for_stmt();
}
break;
case Python3Parser.TRY:
this.enterOuterAlt(_localctx, 4);
{
- this.state = 613;
+ this.state = 615;
this.try_stmt();
}
break;
case Python3Parser.WITH:
this.enterOuterAlt(_localctx, 5);
{
- this.state = 614;
+ this.state = 616;
this.with_stmt();
}
break;
case Python3Parser.DEF:
this.enterOuterAlt(_localctx, 6);
{
- this.state = 615;
+ this.state = 617;
this.funcdef();
}
break;
case Python3Parser.CLASS:
this.enterOuterAlt(_localctx, 7);
{
- this.state = 616;
+ this.state = 618;
this.classdef();
}
break;
case Python3Parser.AT:
this.enterOuterAlt(_localctx, 8);
{
- this.state = 617;
+ this.state = 619;
this.decorated();
}
break;
case Python3Parser.ASYNC:
this.enterOuterAlt(_localctx, 9);
{
- this.state = 618;
+ this.state = 620;
this.async_stmt();
}
break;
@@ -2921,26 +2922,26 @@ export class Python3Parser extends Parser {
try {
this.enterOuterAlt(_localctx, 1);
{
- this.state = 621;
+ this.state = 623;
this.match(Python3Parser.ASYNC);
- this.state = 625;
+ this.state = 627;
this._errHandler.sync(this);
switch (this._input.LA(1)) {
case Python3Parser.DEF:
{
- this.state = 622;
+ this.state = 624;
this.funcdef();
}
break;
case Python3Parser.WITH:
{
- this.state = 623;
+ this.state = 625;
this.with_stmt();
}
break;
case Python3Parser.FOR:
{
- this.state = 624;
+ this.state = 626;
this.for_stmt();
}
break;
@@ -2971,44 +2972,44 @@ export class Python3Parser extends Parser {
try {
this.enterOuterAlt(_localctx, 1);
{
- this.state = 627;
+ this.state = 629;
this.match(Python3Parser.IF);
- this.state = 628;
+ this.state = 630;
this.test();
- this.state = 629;
+ this.state = 631;
this.match(Python3Parser.COLON);
- this.state = 630;
+ this.state = 632;
this.suite();
- this.state = 638;
+ this.state = 640;
this._errHandler.sync(this);
_la = this._input.LA(1);
while (_la === Python3Parser.ELIF) {
{
{
- this.state = 631;
+ this.state = 633;
this.match(Python3Parser.ELIF);
- this.state = 632;
+ this.state = 634;
this.test();
- this.state = 633;
+ this.state = 635;
this.match(Python3Parser.COLON);
- this.state = 634;
+ this.state = 636;
this.suite();
}
}
- this.state = 640;
+ this.state = 642;
this._errHandler.sync(this);
_la = this._input.LA(1);
}
- this.state = 644;
+ this.state = 646;
this._errHandler.sync(this);
_la = this._input.LA(1);
if (_la === Python3Parser.ELSE) {
{
- this.state = 641;
+ this.state = 643;
this.match(Python3Parser.ELSE);
- this.state = 642;
+ this.state = 644;
this.match(Python3Parser.COLON);
- this.state = 643;
+ this.state = 645;
this.suite();
}
}
@@ -3037,24 +3038,24 @@ export class Python3Parser extends Parser {
try {
this.enterOuterAlt(_localctx, 1);
{
- this.state = 646;
+ this.state = 648;
this.match(Python3Parser.WHILE);
- this.state = 647;
+ this.state = 649;
this.test();
- this.state = 648;
+ this.state = 650;
this.match(Python3Parser.COLON);
- this.state = 649;
+ this.state = 651;
this.suite();
- this.state = 653;
+ this.state = 655;
this._errHandler.sync(this);
_la = this._input.LA(1);
if (_la === Python3Parser.ELSE) {
{
- this.state = 650;
+ this.state = 652;
this.match(Python3Parser.ELSE);
- this.state = 651;
+ this.state = 653;
this.match(Python3Parser.COLON);
- this.state = 652;
+ this.state = 654;
this.suite();
}
}
@@ -3083,28 +3084,28 @@ export class Python3Parser extends Parser {
try {
this.enterOuterAlt(_localctx, 1);
{
- this.state = 655;
+ this.state = 657;
this.match(Python3Parser.FOR);
- this.state = 656;
+ this.state = 658;
this.exprlist();
- this.state = 657;
+ this.state = 659;
this.match(Python3Parser.IN);
- this.state = 658;
+ this.state = 660;
this.testlist();
- this.state = 659;
+ this.state = 661;
this.match(Python3Parser.COLON);
- this.state = 660;
+ this.state = 662;
this.suite();
- this.state = 664;
+ this.state = 666;
this._errHandler.sync(this);
_la = this._input.LA(1);
if (_la === Python3Parser.ELSE) {
{
- this.state = 661;
+ this.state = 663;
this.match(Python3Parser.ELSE);
- this.state = 662;
+ this.state = 664;
this.match(Python3Parser.COLON);
- this.state = 663;
+ this.state = 665;
this.suite();
}
}
@@ -3134,59 +3135,59 @@ export class Python3Parser extends Parser {
this.enterOuterAlt(_localctx, 1);
{
{
- this.state = 666;
+ this.state = 668;
this.match(Python3Parser.TRY);
- this.state = 667;
+ this.state = 669;
this.match(Python3Parser.COLON);
- this.state = 668;
+ this.state = 670;
this.suite();
- this.state = 690;
+ this.state = 692;
this._errHandler.sync(this);
switch (this._input.LA(1)) {
case Python3Parser.EXCEPT:
{
- this.state = 673;
+ this.state = 675;
this._errHandler.sync(this);
_la = this._input.LA(1);
do {
{
{
- this.state = 669;
+ this.state = 671;
this.except_clause();
- this.state = 670;
+ this.state = 672;
this.match(Python3Parser.COLON);
- this.state = 671;
+ this.state = 673;
this.suite();
}
}
- this.state = 675;
+ this.state = 677;
this._errHandler.sync(this);
_la = this._input.LA(1);
} while (_la === Python3Parser.EXCEPT);
- this.state = 680;
+ this.state = 682;
this._errHandler.sync(this);
_la = this._input.LA(1);
if (_la === Python3Parser.ELSE) {
{
- this.state = 677;
+ this.state = 679;
this.match(Python3Parser.ELSE);
- this.state = 678;
+ this.state = 680;
this.match(Python3Parser.COLON);
- this.state = 679;
+ this.state = 681;
this.suite();
}
}
- this.state = 685;
+ this.state = 687;
this._errHandler.sync(this);
_la = this._input.LA(1);
if (_la === Python3Parser.FINALLY) {
{
- this.state = 682;
+ this.state = 684;
this.match(Python3Parser.FINALLY);
- this.state = 683;
+ this.state = 685;
this.match(Python3Parser.COLON);
- this.state = 684;
+ this.state = 686;
this.suite();
}
}
@@ -3195,11 +3196,11 @@ export class Python3Parser extends Parser {
break;
case Python3Parser.FINALLY:
{
- this.state = 687;
+ this.state = 689;
this.match(Python3Parser.FINALLY);
- this.state = 688;
+ this.state = 690;
this.match(Python3Parser.COLON);
- this.state = 689;
+ this.state = 691;
this.suite();
}
break;
@@ -3231,29 +3232,29 @@ export class Python3Parser extends Parser {
try {
this.enterOuterAlt(_localctx, 1);
{
- this.state = 692;
+ this.state = 694;
this.match(Python3Parser.WITH);
- this.state = 693;
+ this.state = 695;
this.with_item();
- this.state = 698;
+ this.state = 700;
this._errHandler.sync(this);
_la = this._input.LA(1);
while (_la === Python3Parser.COMMA) {
{
{
- this.state = 694;
+ this.state = 696;
this.match(Python3Parser.COMMA);
- this.state = 695;
+ this.state = 697;
this.with_item();
}
}
- this.state = 700;
+ this.state = 702;
this._errHandler.sync(this);
_la = this._input.LA(1);
}
- this.state = 701;
+ this.state = 703;
this.match(Python3Parser.COLON);
- this.state = 702;
+ this.state = 704;
this.suite();
}
}
@@ -3279,16 +3280,16 @@ export class Python3Parser extends Parser {
try {
this.enterOuterAlt(_localctx, 1);
{
- this.state = 704;
+ this.state = 706;
this.test();
- this.state = 707;
+ this.state = 709;
this._errHandler.sync(this);
_la = this._input.LA(1);
if (_la === Python3Parser.AS) {
{
- this.state = 705;
+ this.state = 707;
this.match(Python3Parser.AS);
- this.state = 706;
+ this.state = 708;
this.expr();
}
}
@@ -3317,23 +3318,23 @@ export class Python3Parser extends Parser {
try {
this.enterOuterAlt(_localctx, 1);
{
- this.state = 709;
+ this.state = 711;
this.match(Python3Parser.EXCEPT);
- this.state = 715;
+ this.state = 717;
this._errHandler.sync(this);
_la = this._input.LA(1);
if ((((_la) & ~0x1F) === 0 && ((1 << _la) & ((1 << Python3Parser.SINGLE_QUOTE_SHORT_TEMPLATE_STRING_START) | (1 << Python3Parser.DOUBLE_QUOTE_SHORT_TEMPLATE_STRING_START) | (1 << Python3Parser.SINGLE_QUOTE_LONG_TEMPLATE_STRING_START) | (1 << Python3Parser.DOUBLE_QUOTE_LONG_TEMPLATE_STRING_START) | (1 << Python3Parser.STRING) | (1 << Python3Parser.NUMBER) | (1 << Python3Parser.LAMBDA))) !== 0) || ((((_la - 32)) & ~0x1F) === 0 && ((1 << (_la - 32)) & ((1 << (Python3Parser.NOT - 32)) | (1 << (Python3Parser.NONE - 32)) | (1 << (Python3Parser.TRUE - 32)) | (1 << (Python3Parser.FALSE - 32)) | (1 << (Python3Parser.AWAIT - 32)) | (1 << (Python3Parser.NAME - 32)) | (1 << (Python3Parser.ELLIPSIS - 32)) | (1 << (Python3Parser.OPEN_PAREN - 32)))) !== 0) || ((((_la - 65)) & ~0x1F) === 0 && ((1 << (_la - 65)) & ((1 << (Python3Parser.OPEN_BRACK - 65)) | (1 << (Python3Parser.ADD - 65)) | (1 << (Python3Parser.MINUS - 65)) | (1 << (Python3Parser.NOT_OP - 65)) | (1 << (Python3Parser.OPEN_BRACE - 65)))) !== 0)) {
{
- this.state = 710;
+ this.state = 712;
this.test();
- this.state = 713;
+ this.state = 715;
this._errHandler.sync(this);
_la = this._input.LA(1);
if (_la === Python3Parser.AS) {
{
- this.state = 711;
+ this.state = 713;
this.match(Python3Parser.AS);
- this.state = 712;
+ this.state = 714;
this.match(Python3Parser.NAME);
}
}
@@ -3363,7 +3364,7 @@ export class Python3Parser extends Parser {
this.enterRule(_localctx, 96, Python3Parser.RULE_suite);
let _la: number;
try {
- this.state = 727;
+ this.state = 729;
this._errHandler.sync(this);
switch (this._input.LA(1)) {
case Python3Parser.SINGLE_QUOTE_SHORT_TEMPLATE_STRING_START:
@@ -3401,32 +3402,32 @@ export class Python3Parser extends Parser {
case Python3Parser.OPEN_BRACE:
this.enterOuterAlt(_localctx, 1);
{
- this.state = 717;
+ this.state = 719;
this.simple_stmt();
}
break;
case Python3Parser.NEWLINE:
this.enterOuterAlt(_localctx, 2);
{
- this.state = 718;
+ this.state = 720;
this.match(Python3Parser.NEWLINE);
- this.state = 719;
- this.match(Python3Parser.INDENT);
this.state = 721;
+ this.match(Python3Parser.INDENT);
+ this.state = 723;
this._errHandler.sync(this);
_la = this._input.LA(1);
do {
{
{
- this.state = 720;
+ this.state = 722;
this.stmt();
}
}
- this.state = 723;
+ this.state = 725;
this._errHandler.sync(this);
_la = this._input.LA(1);
} while ((((_la) & ~0x1F) === 0 && ((1 << _la) & ((1 << Python3Parser.SINGLE_QUOTE_SHORT_TEMPLATE_STRING_START) | (1 << Python3Parser.DOUBLE_QUOTE_SHORT_TEMPLATE_STRING_START) | (1 << Python3Parser.SINGLE_QUOTE_LONG_TEMPLATE_STRING_START) | (1 << Python3Parser.DOUBLE_QUOTE_LONG_TEMPLATE_STRING_START) | (1 << Python3Parser.STRING) | (1 << Python3Parser.NUMBER) | (1 << Python3Parser.DEF) | (1 << Python3Parser.RETURN) | (1 << Python3Parser.RAISE) | (1 << Python3Parser.FROM) | (1 << Python3Parser.IMPORT) | (1 << Python3Parser.GLOBAL) | (1 << Python3Parser.NONLOCAL) | (1 << Python3Parser.ASSERT) | (1 << Python3Parser.IF) | (1 << Python3Parser.WHILE) | (1 << Python3Parser.FOR) | (1 << Python3Parser.TRY) | (1 << Python3Parser.WITH) | (1 << Python3Parser.LAMBDA))) !== 0) || ((((_la - 32)) & ~0x1F) === 0 && ((1 << (_la - 32)) & ((1 << (Python3Parser.NOT - 32)) | (1 << (Python3Parser.NONE - 32)) | (1 << (Python3Parser.TRUE - 32)) | (1 << (Python3Parser.FALSE - 32)) | (1 << (Python3Parser.CLASS - 32)) | (1 << (Python3Parser.YIELD - 32)) | (1 << (Python3Parser.DEL - 32)) | (1 << (Python3Parser.PASS - 32)) | (1 << (Python3Parser.CONTINUE - 32)) | (1 << (Python3Parser.BREAK - 32)) | (1 << (Python3Parser.ASYNC - 32)) | (1 << (Python3Parser.AWAIT - 32)) | (1 << (Python3Parser.NAME - 32)) | (1 << (Python3Parser.ELLIPSIS - 32)) | (1 << (Python3Parser.STAR - 32)) | (1 << (Python3Parser.OPEN_PAREN - 32)))) !== 0) || ((((_la - 65)) & ~0x1F) === 0 && ((1 << (_la - 65)) & ((1 << (Python3Parser.OPEN_BRACK - 65)) | (1 << (Python3Parser.ADD - 65)) | (1 << (Python3Parser.MINUS - 65)) | (1 << (Python3Parser.NOT_OP - 65)) | (1 << (Python3Parser.OPEN_BRACE - 65)) | (1 << (Python3Parser.AT - 65)))) !== 0));
- this.state = 725;
+ this.state = 727;
this.match(Python3Parser.DEDENT);
}
break;
@@ -3454,7 +3455,7 @@ export class Python3Parser extends Parser {
this.enterRule(_localctx, 98, Python3Parser.RULE_test);
let _la: number;
try {
- this.state = 738;
+ this.state = 740;
this._errHandler.sync(this);
switch (this._input.LA(1)) {
case Python3Parser.SINGLE_QUOTE_SHORT_TEMPLATE_STRING_START:
@@ -3478,20 +3479,20 @@ export class Python3Parser extends Parser {
case Python3Parser.OPEN_BRACE:
this.enterOuterAlt(_localctx, 1);
{
- this.state = 729;
+ this.state = 731;
this.or_test();
- this.state = 735;
+ this.state = 737;
this._errHandler.sync(this);
_la = this._input.LA(1);
if (_la === Python3Parser.IF) {
{
- this.state = 730;
+ this.state = 732;
this.match(Python3Parser.IF);
- this.state = 731;
+ this.state = 733;
this.or_test();
- this.state = 732;
+ this.state = 734;
this.match(Python3Parser.ELSE);
- this.state = 733;
+ this.state = 735;
this.test();
}
}
@@ -3501,7 +3502,7 @@ export class Python3Parser extends Parser {
case Python3Parser.LAMBDA:
this.enterOuterAlt(_localctx, 2);
{
- this.state = 737;
+ this.state = 739;
this.lambdef();
}
break;
@@ -3528,7 +3529,7 @@ export class Python3Parser extends Parser {
let _localctx: Test_nocondContext = new Test_nocondContext(this._ctx, this.state);
this.enterRule(_localctx, 100, Python3Parser.RULE_test_nocond);
try {
- this.state = 742;
+ this.state = 744;
this._errHandler.sync(this);
switch (this._input.LA(1)) {
case Python3Parser.SINGLE_QUOTE_SHORT_TEMPLATE_STRING_START:
@@ -3552,14 +3553,14 @@ export class Python3Parser extends Parser {
case Python3Parser.OPEN_BRACE:
this.enterOuterAlt(_localctx, 1);
{
- this.state = 740;
+ this.state = 742;
this.or_test();
}
break;
case Python3Parser.LAMBDA:
this.enterOuterAlt(_localctx, 2);
{
- this.state = 741;
+ this.state = 743;
this.lambdef_nocond();
}
break;
@@ -3589,21 +3590,21 @@ export class Python3Parser extends Parser {
try {
this.enterOuterAlt(_localctx, 1);
{
- this.state = 744;
- this.match(Python3Parser.LAMBDA);
this.state = 746;
+ this.match(Python3Parser.LAMBDA);
+ this.state = 748;
this._errHandler.sync(this);
_la = this._input.LA(1);
if (((((_la - 46)) & ~0x1F) === 0 && ((1 << (_la - 46)) & ((1 << (Python3Parser.NAME - 46)) | (1 << (Python3Parser.STAR - 46)) | (1 << (Python3Parser.POWER - 46)))) !== 0)) {
{
- this.state = 745;
+ this.state = 747;
this.varargslist();
}
}
- this.state = 748;
+ this.state = 750;
this.match(Python3Parser.COLON);
- this.state = 749;
+ this.state = 751;
this.test();
}
}
@@ -3629,21 +3630,21 @@ export class Python3Parser extends Parser {
try {
this.enterOuterAlt(_localctx, 1);
{
- this.state = 751;
- this.match(Python3Parser.LAMBDA);
this.state = 753;
+ this.match(Python3Parser.LAMBDA);
+ this.state = 755;
this._errHandler.sync(this);
_la = this._input.LA(1);
if (((((_la - 46)) & ~0x1F) === 0 && ((1 << (_la - 46)) & ((1 << (Python3Parser.NAME - 46)) | (1 << (Python3Parser.STAR - 46)) | (1 << (Python3Parser.POWER - 46)))) !== 0)) {
{
- this.state = 752;
+ this.state = 754;
this.varargslist();
}
}
- this.state = 755;
+ this.state = 757;
this.match(Python3Parser.COLON);
- this.state = 756;
+ this.state = 758;
this.test_nocond();
}
}
@@ -3669,21 +3670,21 @@ export class Python3Parser extends Parser {
try {
this.enterOuterAlt(_localctx, 1);
{
- this.state = 758;
+ this.state = 760;
this.and_test();
- this.state = 763;
+ this.state = 765;
this._errHandler.sync(this);
_la = this._input.LA(1);
while (_la === Python3Parser.OR) {
{
{
- this.state = 759;
+ this.state = 761;
this.match(Python3Parser.OR);
- this.state = 760;
+ this.state = 762;
this.and_test();
}
}
- this.state = 765;
+ this.state = 767;
this._errHandler.sync(this);
_la = this._input.LA(1);
}
@@ -3711,21 +3712,21 @@ export class Python3Parser extends Parser {
try {
this.enterOuterAlt(_localctx, 1);
{
- this.state = 766;
+ this.state = 768;
this.not_test();
- this.state = 771;
+ this.state = 773;
this._errHandler.sync(this);
_la = this._input.LA(1);
while (_la === Python3Parser.AND) {
{
{
- this.state = 767;
+ this.state = 769;
this.match(Python3Parser.AND);
- this.state = 768;
+ this.state = 770;
this.not_test();
}
}
- this.state = 773;
+ this.state = 775;
this._errHandler.sync(this);
_la = this._input.LA(1);
}
@@ -3750,15 +3751,15 @@ export class Python3Parser extends Parser {
let _localctx: Not_testContext = new Not_testContext(this._ctx, this.state);
this.enterRule(_localctx, 110, Python3Parser.RULE_not_test);
try {
- this.state = 777;
+ this.state = 779;
this._errHandler.sync(this);
switch (this._input.LA(1)) {
case Python3Parser.NOT:
this.enterOuterAlt(_localctx, 1);
{
- this.state = 774;
+ this.state = 776;
this.match(Python3Parser.NOT);
- this.state = 775;
+ this.state = 777;
this.not_test();
}
break;
@@ -3782,7 +3783,7 @@ export class Python3Parser extends Parser {
case Python3Parser.OPEN_BRACE:
this.enterOuterAlt(_localctx, 2);
{
- this.state = 776;
+ this.state = 778;
this.comparison();
}
break;
@@ -3812,21 +3813,21 @@ export class Python3Parser extends Parser {
try {
this.enterOuterAlt(_localctx, 1);
{
- this.state = 779;
+ this.state = 781;
this.expr();
- this.state = 785;
+ this.state = 787;
this._errHandler.sync(this);
_la = this._input.LA(1);
while (((((_la - 24)) & ~0x1F) === 0 && ((1 << (_la - 24)) & ((1 << (Python3Parser.IN - 24)) | (1 << (Python3Parser.NOT - 24)) | (1 << (Python3Parser.IS - 24)))) !== 0) || ((((_la - 81)) & ~0x1F) === 0 && ((1 << (_la - 81)) & ((1 << (Python3Parser.LESS_THAN - 81)) | (1 << (Python3Parser.GREATER_THAN - 81)) | (1 << (Python3Parser.EQUALS - 81)) | (1 << (Python3Parser.GT_EQ - 81)) | (1 << (Python3Parser.LT_EQ - 81)) | (1 << (Python3Parser.NOT_EQ_1 - 81)) | (1 << (Python3Parser.NOT_EQ_2 - 81)))) !== 0)) {
{
{
- this.state = 780;
+ this.state = 782;
this.comp_op();
- this.state = 781;
+ this.state = 783;
this.expr();
}
}
- this.state = 787;
+ this.state = 789;
this._errHandler.sync(this);
_la = this._input.LA(1);
}
@@ -3851,13 +3852,13 @@ export class Python3Parser extends Parser {
let _localctx: Comp_opContext = new Comp_opContext(this._ctx, this.state);
this.enterRule(_localctx, 114, Python3Parser.RULE_comp_op);
try {
- this.state = 801;
+ this.state = 803;
this._errHandler.sync(this);
switch ( this.interpreter.adaptivePredict(this._input, 107, this._ctx) ) {
case 1:
this.enterOuterAlt(_localctx, 1);
{
- this.state = 788;
+ this.state = 790;
this.match(Python3Parser.LESS_THAN);
}
break;
@@ -3865,7 +3866,7 @@ export class Python3Parser extends Parser {
case 2:
this.enterOuterAlt(_localctx, 2);
{
- this.state = 789;
+ this.state = 791;
this.match(Python3Parser.GREATER_THAN);
}
break;
@@ -3873,7 +3874,7 @@ export class Python3Parser extends Parser {
case 3:
this.enterOuterAlt(_localctx, 3);
{
- this.state = 790;
+ this.state = 792;
this.match(Python3Parser.EQUALS);
}
break;
@@ -3881,7 +3882,7 @@ export class Python3Parser extends Parser {
case 4:
this.enterOuterAlt(_localctx, 4);
{
- this.state = 791;
+ this.state = 793;
this.match(Python3Parser.GT_EQ);
}
break;
@@ -3889,7 +3890,7 @@ export class Python3Parser extends Parser {
case 5:
this.enterOuterAlt(_localctx, 5);
{
- this.state = 792;
+ this.state = 794;
this.match(Python3Parser.LT_EQ);
}
break;
@@ -3897,7 +3898,7 @@ export class Python3Parser extends Parser {
case 6:
this.enterOuterAlt(_localctx, 6);
{
- this.state = 793;
+ this.state = 795;
this.match(Python3Parser.NOT_EQ_1);
}
break;
@@ -3905,7 +3906,7 @@ export class Python3Parser extends Parser {
case 7:
this.enterOuterAlt(_localctx, 7);
{
- this.state = 794;
+ this.state = 796;
this.match(Python3Parser.NOT_EQ_2);
}
break;
@@ -3913,7 +3914,7 @@ export class Python3Parser extends Parser {
case 8:
this.enterOuterAlt(_localctx, 8);
{
- this.state = 795;
+ this.state = 797;
this.match(Python3Parser.IN);
}
break;
@@ -3921,9 +3922,9 @@ export class Python3Parser extends Parser {
case 9:
this.enterOuterAlt(_localctx, 9);
{
- this.state = 796;
+ this.state = 798;
this.match(Python3Parser.NOT);
- this.state = 797;
+ this.state = 799;
this.match(Python3Parser.IN);
}
break;
@@ -3931,7 +3932,7 @@ export class Python3Parser extends Parser {
case 10:
this.enterOuterAlt(_localctx, 10);
{
- this.state = 798;
+ this.state = 800;
this.match(Python3Parser.IS);
}
break;
@@ -3939,9 +3940,9 @@ export class Python3Parser extends Parser {
case 11:
this.enterOuterAlt(_localctx, 11);
{
- this.state = 799;
+ this.state = 801;
this.match(Python3Parser.IS);
- this.state = 800;
+ this.state = 802;
this.match(Python3Parser.NOT);
}
break;
@@ -3968,9 +3969,9 @@ export class Python3Parser extends Parser {
try {
this.enterOuterAlt(_localctx, 1);
{
- this.state = 803;
+ this.state = 805;
this.match(Python3Parser.STAR);
- this.state = 804;
+ this.state = 806;
this.expr();
}
}
@@ -3996,21 +3997,21 @@ export class Python3Parser extends Parser {
try {
this.enterOuterAlt(_localctx, 1);
{
- this.state = 806;
+ this.state = 808;
this.xor_expr();
- this.state = 811;
+ this.state = 813;
this._errHandler.sync(this);
_la = this._input.LA(1);
while (_la === Python3Parser.OR_OP) {
{
{
- this.state = 807;
+ this.state = 809;
this.match(Python3Parser.OR_OP);
- this.state = 808;
+ this.state = 810;
this.xor_expr();
}
}
- this.state = 813;
+ this.state = 815;
this._errHandler.sync(this);
_la = this._input.LA(1);
}
@@ -4038,21 +4039,21 @@ export class Python3Parser extends Parser {
try {
this.enterOuterAlt(_localctx, 1);
{
- this.state = 814;
+ this.state = 816;
this.and_expr();
- this.state = 819;
+ this.state = 821;
this._errHandler.sync(this);
_la = this._input.LA(1);
while (_la === Python3Parser.XOR) {
{
{
- this.state = 815;
+ this.state = 817;
this.match(Python3Parser.XOR);
- this.state = 816;
+ this.state = 818;
this.and_expr();
}
}
- this.state = 821;
+ this.state = 823;
this._errHandler.sync(this);
_la = this._input.LA(1);
}
@@ -4080,21 +4081,21 @@ export class Python3Parser extends Parser {
try {
this.enterOuterAlt(_localctx, 1);
{
- this.state = 822;
+ this.state = 824;
this.shift_expr();
- this.state = 827;
+ this.state = 829;
this._errHandler.sync(this);
_la = this._input.LA(1);
while (_la === Python3Parser.AND_OP) {
{
{
- this.state = 823;
+ this.state = 825;
this.match(Python3Parser.AND_OP);
- this.state = 824;
+ this.state = 826;
this.shift_expr();
}
}
- this.state = 829;
+ this.state = 831;
this._errHandler.sync(this);
_la = this._input.LA(1);
}
@@ -4122,15 +4123,15 @@ export class Python3Parser extends Parser {
try {
this.enterOuterAlt(_localctx, 1);
{
- this.state = 830;
+ this.state = 832;
this.arith_expr();
- this.state = 835;
+ this.state = 837;
this._errHandler.sync(this);
_la = this._input.LA(1);
while (_la === Python3Parser.LEFT_SHIFT || _la === Python3Parser.RIGHT_SHIFT) {
{
{
- this.state = 831;
+ this.state = 833;
_la = this._input.LA(1);
if (!(_la === Python3Parser.LEFT_SHIFT || _la === Python3Parser.RIGHT_SHIFT)) {
this._errHandler.recoverInline(this);
@@ -4142,11 +4143,11 @@ export class Python3Parser extends Parser {
this._errHandler.reportMatch(this);
this.consume();
}
- this.state = 832;
+ this.state = 834;
this.arith_expr();
}
}
- this.state = 837;
+ this.state = 839;
this._errHandler.sync(this);
_la = this._input.LA(1);
}
@@ -4174,15 +4175,15 @@ export class Python3Parser extends Parser {
try {
this.enterOuterAlt(_localctx, 1);
{
- this.state = 838;
+ this.state = 840;
this.term();
- this.state = 843;
+ this.state = 845;
this._errHandler.sync(this);
_la = this._input.LA(1);
while (_la === Python3Parser.ADD || _la === Python3Parser.MINUS) {
{
{
- this.state = 839;
+ this.state = 841;
_la = this._input.LA(1);
if (!(_la === Python3Parser.ADD || _la === Python3Parser.MINUS)) {
this._errHandler.recoverInline(this);
@@ -4194,11 +4195,11 @@ export class Python3Parser extends Parser {
this._errHandler.reportMatch(this);
this.consume();
}
- this.state = 840;
+ this.state = 842;
this.term();
}
}
- this.state = 845;
+ this.state = 847;
this._errHandler.sync(this);
_la = this._input.LA(1);
}
@@ -4226,15 +4227,15 @@ export class Python3Parser extends Parser {
try {
this.enterOuterAlt(_localctx, 1);
{
- this.state = 846;
+ this.state = 848;
this.factor();
- this.state = 851;
+ this.state = 853;
this._errHandler.sync(this);
_la = this._input.LA(1);
while (((((_la - 57)) & ~0x1F) === 0 && ((1 << (_la - 57)) & ((1 << (Python3Parser.STAR - 57)) | (1 << (Python3Parser.DIV - 57)) | (1 << (Python3Parser.MOD - 57)) | (1 << (Python3Parser.IDIV - 57)) | (1 << (Python3Parser.AT - 57)))) !== 0)) {
{
{
- this.state = 847;
+ this.state = 849;
_la = this._input.LA(1);
if (!(((((_la - 57)) & ~0x1F) === 0 && ((1 << (_la - 57)) & ((1 << (Python3Parser.STAR - 57)) | (1 << (Python3Parser.DIV - 57)) | (1 << (Python3Parser.MOD - 57)) | (1 << (Python3Parser.IDIV - 57)) | (1 << (Python3Parser.AT - 57)))) !== 0))) {
this._errHandler.recoverInline(this);
@@ -4246,11 +4247,11 @@ export class Python3Parser extends Parser {
this._errHandler.reportMatch(this);
this.consume();
}
- this.state = 848;
+ this.state = 850;
this.factor();
}
}
- this.state = 853;
+ this.state = 855;
this._errHandler.sync(this);
_la = this._input.LA(1);
}
@@ -4276,7 +4277,7 @@ export class Python3Parser extends Parser {
this.enterRule(_localctx, 130, Python3Parser.RULE_factor);
let _la: number;
try {
- this.state = 857;
+ this.state = 859;
this._errHandler.sync(this);
switch (this._input.LA(1)) {
case Python3Parser.ADD:
@@ -4284,7 +4285,7 @@ export class Python3Parser extends Parser {
case Python3Parser.NOT_OP:
this.enterOuterAlt(_localctx, 1);
{
- this.state = 854;
+ this.state = 856;
_la = this._input.LA(1);
if (!(((((_la - 72)) & ~0x1F) === 0 && ((1 << (_la - 72)) & ((1 << (Python3Parser.ADD - 72)) | (1 << (Python3Parser.MINUS - 72)) | (1 << (Python3Parser.NOT_OP - 72)))) !== 0))) {
this._errHandler.recoverInline(this);
@@ -4296,7 +4297,7 @@ export class Python3Parser extends Parser {
this._errHandler.reportMatch(this);
this.consume();
}
- this.state = 855;
+ this.state = 857;
this.factor();
}
break;
@@ -4317,7 +4318,7 @@ export class Python3Parser extends Parser {
case Python3Parser.OPEN_BRACE:
this.enterOuterAlt(_localctx, 2);
{
- this.state = 856;
+ this.state = 858;
this.power();
}
break;
@@ -4347,16 +4348,16 @@ export class Python3Parser extends Parser {
try {
this.enterOuterAlt(_localctx, 1);
{
- this.state = 859;
+ this.state = 861;
this.atom_expr();
- this.state = 862;
+ this.state = 864;
this._errHandler.sync(this);
_la = this._input.LA(1);
if (_la === Python3Parser.POWER) {
{
- this.state = 860;
+ this.state = 862;
this.match(Python3Parser.POWER);
- this.state = 861;
+ this.state = 863;
this.factor();
}
}
@@ -4385,29 +4386,29 @@ export class Python3Parser extends Parser {
try {
this.enterOuterAlt(_localctx, 1);
{
- this.state = 865;
+ this.state = 867;
this._errHandler.sync(this);
_la = this._input.LA(1);
if (_la === Python3Parser.AWAIT) {
{
- this.state = 864;
+ this.state = 866;
this.match(Python3Parser.AWAIT);
}
}
- this.state = 867;
+ this.state = 869;
this.atom();
- this.state = 871;
+ this.state = 873;
this._errHandler.sync(this);
_la = this._input.LA(1);
while (((((_la - 55)) & ~0x1F) === 0 && ((1 << (_la - 55)) & ((1 << (Python3Parser.DOT - 55)) | (1 << (Python3Parser.OPEN_PAREN - 55)) | (1 << (Python3Parser.OPEN_BRACK - 55)))) !== 0)) {
{
{
- this.state = 868;
+ this.state = 870;
this.trailer();
}
}
- this.state = 873;
+ this.state = 875;
this._errHandler.sync(this);
_la = this._input.LA(1);
}
@@ -4435,19 +4436,19 @@ export class Python3Parser extends Parser {
try {
this.enterOuterAlt(_localctx, 1);
{
- this.state = 906;
+ this.state = 908;
this._errHandler.sync(this);
switch (this._input.LA(1)) {
case Python3Parser.OPEN_PAREN:
{
- this.state = 874;
+ this.state = 876;
this.match(Python3Parser.OPEN_PAREN);
- this.state = 877;
+ this.state = 879;
this._errHandler.sync(this);
switch (this._input.LA(1)) {
case Python3Parser.YIELD:
{
- this.state = 875;
+ this.state = 877;
this.yield_expr();
}
break;
@@ -4473,7 +4474,7 @@ export class Python3Parser extends Parser {
case Python3Parser.NOT_OP:
case Python3Parser.OPEN_BRACE:
{
- this.state = 876;
+ this.state = 878;
this.testlist_comp();
}
break;
@@ -4482,55 +4483,55 @@ export class Python3Parser extends Parser {
default:
break;
}
- this.state = 879;
+ this.state = 881;
this.match(Python3Parser.CLOSE_PAREN);
}
break;
case Python3Parser.OPEN_BRACK:
{
- this.state = 880;
- this.match(Python3Parser.OPEN_BRACK);
this.state = 882;
+ this.match(Python3Parser.OPEN_BRACK);
+ this.state = 884;
this._errHandler.sync(this);
_la = this._input.LA(1);
if ((((_la) & ~0x1F) === 0 && ((1 << _la) & ((1 << Python3Parser.SINGLE_QUOTE_SHORT_TEMPLATE_STRING_START) | (1 << Python3Parser.DOUBLE_QUOTE_SHORT_TEMPLATE_STRING_START) | (1 << Python3Parser.SINGLE_QUOTE_LONG_TEMPLATE_STRING_START) | (1 << Python3Parser.DOUBLE_QUOTE_LONG_TEMPLATE_STRING_START) | (1 << Python3Parser.STRING) | (1 << Python3Parser.NUMBER) | (1 << Python3Parser.LAMBDA))) !== 0) || ((((_la - 32)) & ~0x1F) === 0 && ((1 << (_la - 32)) & ((1 << (Python3Parser.NOT - 32)) | (1 << (Python3Parser.NONE - 32)) | (1 << (Python3Parser.TRUE - 32)) | (1 << (Python3Parser.FALSE - 32)) | (1 << (Python3Parser.AWAIT - 32)) | (1 << (Python3Parser.NAME - 32)) | (1 << (Python3Parser.ELLIPSIS - 32)) | (1 << (Python3Parser.STAR - 32)) | (1 << (Python3Parser.OPEN_PAREN - 32)))) !== 0) || ((((_la - 65)) & ~0x1F) === 0 && ((1 << (_la - 65)) & ((1 << (Python3Parser.OPEN_BRACK - 65)) | (1 << (Python3Parser.ADD - 65)) | (1 << (Python3Parser.MINUS - 65)) | (1 << (Python3Parser.NOT_OP - 65)) | (1 << (Python3Parser.OPEN_BRACE - 65)))) !== 0)) {
{
- this.state = 881;
+ this.state = 883;
this.testlist_comp();
}
}
- this.state = 884;
+ this.state = 886;
this.match(Python3Parser.CLOSE_BRACK);
}
break;
case Python3Parser.OPEN_BRACE:
{
- this.state = 885;
- this.match(Python3Parser.OPEN_BRACE);
this.state = 887;
+ this.match(Python3Parser.OPEN_BRACE);
+ this.state = 889;
this._errHandler.sync(this);
_la = this._input.LA(1);
if ((((_la) & ~0x1F) === 0 && ((1 << _la) & ((1 << Python3Parser.SINGLE_QUOTE_SHORT_TEMPLATE_STRING_START) | (1 << Python3Parser.DOUBLE_QUOTE_SHORT_TEMPLATE_STRING_START) | (1 << Python3Parser.SINGLE_QUOTE_LONG_TEMPLATE_STRING_START) | (1 << Python3Parser.DOUBLE_QUOTE_LONG_TEMPLATE_STRING_START) | (1 << Python3Parser.STRING) | (1 << Python3Parser.NUMBER) | (1 << Python3Parser.LAMBDA))) !== 0) || ((((_la - 32)) & ~0x1F) === 0 && ((1 << (_la - 32)) & ((1 << (Python3Parser.NOT - 32)) | (1 << (Python3Parser.NONE - 32)) | (1 << (Python3Parser.TRUE - 32)) | (1 << (Python3Parser.FALSE - 32)) | (1 << (Python3Parser.AWAIT - 32)) | (1 << (Python3Parser.NAME - 32)) | (1 << (Python3Parser.ELLIPSIS - 32)) | (1 << (Python3Parser.STAR - 32)) | (1 << (Python3Parser.OPEN_PAREN - 32)) | (1 << (Python3Parser.POWER - 32)))) !== 0) || ((((_la - 65)) & ~0x1F) === 0 && ((1 << (_la - 65)) & ((1 << (Python3Parser.OPEN_BRACK - 65)) | (1 << (Python3Parser.ADD - 65)) | (1 << (Python3Parser.MINUS - 65)) | (1 << (Python3Parser.NOT_OP - 65)) | (1 << (Python3Parser.OPEN_BRACE - 65)))) !== 0)) {
{
- this.state = 886;
+ this.state = 888;
this.dictorsetmaker();
}
}
- this.state = 889;
+ this.state = 891;
this.match(Python3Parser.CLOSE_BRACE);
}
break;
case Python3Parser.NAME:
{
- this.state = 890;
+ this.state = 892;
this.match(Python3Parser.NAME);
}
break;
case Python3Parser.NUMBER:
{
- this.state = 891;
+ this.state = 893;
this.match(Python3Parser.NUMBER);
}
break;
@@ -4539,17 +4540,17 @@ export class Python3Parser extends Parser {
case Python3Parser.SINGLE_QUOTE_LONG_TEMPLATE_STRING_START:
case Python3Parser.DOUBLE_QUOTE_LONG_TEMPLATE_STRING_START:
{
- this.state = 893;
+ this.state = 895;
this._errHandler.sync(this);
_la = this._input.LA(1);
do {
{
{
- this.state = 892;
+ this.state = 894;
this.string_template();
}
}
- this.state = 895;
+ this.state = 897;
this._errHandler.sync(this);
_la = this._input.LA(1);
} while ((((_la) & ~0x1F) === 0 && ((1 << _la) & ((1 << Python3Parser.SINGLE_QUOTE_SHORT_TEMPLATE_STRING_START) | (1 << Python3Parser.DOUBLE_QUOTE_SHORT_TEMPLATE_STRING_START) | (1 << Python3Parser.SINGLE_QUOTE_LONG_TEMPLATE_STRING_START) | (1 << Python3Parser.DOUBLE_QUOTE_LONG_TEMPLATE_STRING_START))) !== 0));
@@ -4557,17 +4558,17 @@ export class Python3Parser extends Parser {
break;
case Python3Parser.STRING:
{
- this.state = 898;
+ this.state = 900;
this._errHandler.sync(this);
_la = this._input.LA(1);
do {
{
{
- this.state = 897;
+ this.state = 899;
this.match(Python3Parser.STRING);
}
}
- this.state = 900;
+ this.state = 902;
this._errHandler.sync(this);
_la = this._input.LA(1);
} while (_la === Python3Parser.STRING);
@@ -4575,25 +4576,25 @@ export class Python3Parser extends Parser {
break;
case Python3Parser.ELLIPSIS:
{
- this.state = 902;
+ this.state = 904;
this.match(Python3Parser.ELLIPSIS);
}
break;
case Python3Parser.NONE:
{
- this.state = 903;
+ this.state = 905;
this.match(Python3Parser.NONE);
}
break;
case Python3Parser.TRUE:
{
- this.state = 904;
+ this.state = 906;
this.match(Python3Parser.TRUE);
}
break;
case Python3Parser.FALSE:
{
- this.state = 905;
+ this.state = 907;
this.match(Python3Parser.FALSE);
}
break;
@@ -4625,7 +4626,7 @@ export class Python3Parser extends Parser {
let _alt: number;
this.enterOuterAlt(_localctx, 1);
{
- this.state = 910;
+ this.state = 912;
this._errHandler.sync(this);
switch (this._input.LA(1)) {
case Python3Parser.SINGLE_QUOTE_SHORT_TEMPLATE_STRING_START:
@@ -4649,26 +4650,26 @@ export class Python3Parser extends Parser {
case Python3Parser.NOT_OP:
case Python3Parser.OPEN_BRACE:
{
- this.state = 908;
+ this.state = 910;
this.test();
}
break;
case Python3Parser.STAR:
{
- this.state = 909;
+ this.state = 911;
this.star_expr();
}
break;
default:
throw new NoViableAltException(this);
}
- this.state = 926;
+ this.state = 928;
this._errHandler.sync(this);
switch (this._input.LA(1)) {
case Python3Parser.FOR:
case Python3Parser.ASYNC:
{
- this.state = 912;
+ this.state = 914;
this.comp_for();
}
break;
@@ -4676,16 +4677,16 @@ export class Python3Parser extends Parser {
case Python3Parser.COMMA:
case Python3Parser.CLOSE_BRACK:
{
- this.state = 920;
+ this.state = 922;
this._errHandler.sync(this);
_alt = this.interpreter.adaptivePredict(this._input, 126, this._ctx);
while (_alt !== 2 && _alt !== ATN.INVALID_ALT_NUMBER) {
if (_alt === 1) {
{
{
- this.state = 913;
+ this.state = 915;
this.match(Python3Parser.COMMA);
- this.state = 916;
+ this.state = 918;
this._errHandler.sync(this);
switch (this._input.LA(1)) {
case Python3Parser.SINGLE_QUOTE_SHORT_TEMPLATE_STRING_START:
@@ -4709,13 +4710,13 @@ export class Python3Parser extends Parser {
case Python3Parser.NOT_OP:
case Python3Parser.OPEN_BRACE:
{
- this.state = 914;
+ this.state = 916;
this.test();
}
break;
case Python3Parser.STAR:
{
- this.state = 915;
+ this.state = 917;
this.star_expr();
}
break;
@@ -4725,16 +4726,16 @@ export class Python3Parser extends Parser {
}
}
}
- this.state = 922;
+ this.state = 924;
this._errHandler.sync(this);
_alt = this.interpreter.adaptivePredict(this._input, 126, this._ctx);
}
- this.state = 924;
+ this.state = 926;
this._errHandler.sync(this);
_la = this._input.LA(1);
if (_la === Python3Parser.COMMA) {
{
- this.state = 923;
+ this.state = 925;
this.match(Python3Parser.COMMA);
}
}
@@ -4764,47 +4765,34 @@ export class Python3Parser extends Parser {
public trailer(): TrailerContext {
let _localctx: TrailerContext = new TrailerContext(this._ctx, this.state);
this.enterRule(_localctx, 140, Python3Parser.RULE_trailer);
- let _la: number;
try {
- this.state = 939;
+ this.state = 937;
this._errHandler.sync(this);
switch (this._input.LA(1)) {
case Python3Parser.OPEN_PAREN:
this.enterOuterAlt(_localctx, 1);
{
- this.state = 928;
- this.match(Python3Parser.OPEN_PAREN);
this.state = 930;
- this._errHandler.sync(this);
- _la = this._input.LA(1);
- if ((((_la) & ~0x1F) === 0 && ((1 << _la) & ((1 << Python3Parser.SINGLE_QUOTE_SHORT_TEMPLATE_STRING_START) | (1 << Python3Parser.DOUBLE_QUOTE_SHORT_TEMPLATE_STRING_START) | (1 << Python3Parser.SINGLE_QUOTE_LONG_TEMPLATE_STRING_START) | (1 << Python3Parser.DOUBLE_QUOTE_LONG_TEMPLATE_STRING_START) | (1 << Python3Parser.STRING) | (1 << Python3Parser.NUMBER) | (1 << Python3Parser.LAMBDA))) !== 0) || ((((_la - 32)) & ~0x1F) === 0 && ((1 << (_la - 32)) & ((1 << (Python3Parser.NOT - 32)) | (1 << (Python3Parser.NONE - 32)) | (1 << (Python3Parser.TRUE - 32)) | (1 << (Python3Parser.FALSE - 32)) | (1 << (Python3Parser.AWAIT - 32)) | (1 << (Python3Parser.NAME - 32)) | (1 << (Python3Parser.ELLIPSIS - 32)) | (1 << (Python3Parser.STAR - 32)) | (1 << (Python3Parser.OPEN_PAREN - 32)) | (1 << (Python3Parser.POWER - 32)))) !== 0) || ((((_la - 65)) & ~0x1F) === 0 && ((1 << (_la - 65)) & ((1 << (Python3Parser.OPEN_BRACK - 65)) | (1 << (Python3Parser.ADD - 65)) | (1 << (Python3Parser.MINUS - 65)) | (1 << (Python3Parser.NOT_OP - 65)) | (1 << (Python3Parser.OPEN_BRACE - 65)))) !== 0)) {
- {
- this.state = 929;
- this.arglist();
- }
- }
-
- this.state = 932;
- this.match(Python3Parser.CLOSE_PAREN);
+ this.callArguments();
}
break;
case Python3Parser.OPEN_BRACK:
this.enterOuterAlt(_localctx, 2);
{
- this.state = 933;
+ this.state = 931;
this.match(Python3Parser.OPEN_BRACK);
- this.state = 934;
+ this.state = 932;
this.subscriptlist();
- this.state = 935;
+ this.state = 933;
this.match(Python3Parser.CLOSE_BRACK);
}
break;
case Python3Parser.DOT:
this.enterOuterAlt(_localctx, 3);
{
- this.state = 937;
+ this.state = 935;
this.match(Python3Parser.DOT);
- this.state = 938;
+ this.state = 936;
this.match(Python3Parser.NAME);
}
break;
@@ -4835,32 +4823,32 @@ export class Python3Parser extends Parser {
let _alt: number;
this.enterOuterAlt(_localctx, 1);
{
- this.state = 941;
+ this.state = 939;
this.subscript();
- this.state = 946;
+ this.state = 944;
this._errHandler.sync(this);
- _alt = this.interpreter.adaptivePredict(this._input, 131, this._ctx);
+ _alt = this.interpreter.adaptivePredict(this._input, 130, this._ctx);
while (_alt !== 2 && _alt !== ATN.INVALID_ALT_NUMBER) {
if (_alt === 1) {
{
{
- this.state = 942;
+ this.state = 940;
this.match(Python3Parser.COMMA);
- this.state = 943;
+ this.state = 941;
this.subscript();
}
}
}
- this.state = 948;
+ this.state = 946;
this._errHandler.sync(this);
- _alt = this.interpreter.adaptivePredict(this._input, 131, this._ctx);
+ _alt = this.interpreter.adaptivePredict(this._input, 130, this._ctx);
}
- this.state = 950;
+ this.state = 948;
this._errHandler.sync(this);
_la = this._input.LA(1);
if (_la === Python3Parser.COMMA) {
{
- this.state = 949;
+ this.state = 947;
this.match(Python3Parser.COMMA);
}
}
@@ -4887,13 +4875,13 @@ export class Python3Parser extends Parser {
this.enterRule(_localctx, 144, Python3Parser.RULE_subscript);
let _la: number;
try {
- this.state = 963;
+ this.state = 961;
this._errHandler.sync(this);
- switch ( this.interpreter.adaptivePredict(this._input, 136, this._ctx) ) {
+ switch ( this.interpreter.adaptivePredict(this._input, 135, this._ctx) ) {
case 1:
this.enterOuterAlt(_localctx, 1);
{
- this.state = 952;
+ this.state = 950;
this.test();
}
break;
@@ -4901,34 +4889,34 @@ export class Python3Parser extends Parser {
case 2:
this.enterOuterAlt(_localctx, 2);
{
- this.state = 954;
+ this.state = 952;
this._errHandler.sync(this);
_la = this._input.LA(1);
if ((((_la) & ~0x1F) === 0 && ((1 << _la) & ((1 << Python3Parser.SINGLE_QUOTE_SHORT_TEMPLATE_STRING_START) | (1 << Python3Parser.DOUBLE_QUOTE_SHORT_TEMPLATE_STRING_START) | (1 << Python3Parser.SINGLE_QUOTE_LONG_TEMPLATE_STRING_START) | (1 << Python3Parser.DOUBLE_QUOTE_LONG_TEMPLATE_STRING_START) | (1 << Python3Parser.STRING) | (1 << Python3Parser.NUMBER) | (1 << Python3Parser.LAMBDA))) !== 0) || ((((_la - 32)) & ~0x1F) === 0 && ((1 << (_la - 32)) & ((1 << (Python3Parser.NOT - 32)) | (1 << (Python3Parser.NONE - 32)) | (1 << (Python3Parser.TRUE - 32)) | (1 << (Python3Parser.FALSE - 32)) | (1 << (Python3Parser.AWAIT - 32)) | (1 << (Python3Parser.NAME - 32)) | (1 << (Python3Parser.ELLIPSIS - 32)) | (1 << (Python3Parser.OPEN_PAREN - 32)))) !== 0) || ((((_la - 65)) & ~0x1F) === 0 && ((1 << (_la - 65)) & ((1 << (Python3Parser.OPEN_BRACK - 65)) | (1 << (Python3Parser.ADD - 65)) | (1 << (Python3Parser.MINUS - 65)) | (1 << (Python3Parser.NOT_OP - 65)) | (1 << (Python3Parser.OPEN_BRACE - 65)))) !== 0)) {
{
- this.state = 953;
+ this.state = 951;
this.test();
}
}
- this.state = 956;
+ this.state = 954;
this.match(Python3Parser.COLON);
- this.state = 958;
+ this.state = 956;
this._errHandler.sync(this);
_la = this._input.LA(1);
if ((((_la) & ~0x1F) === 0 && ((1 << _la) & ((1 << Python3Parser.SINGLE_QUOTE_SHORT_TEMPLATE_STRING_START) | (1 << Python3Parser.DOUBLE_QUOTE_SHORT_TEMPLATE_STRING_START) | (1 << Python3Parser.SINGLE_QUOTE_LONG_TEMPLATE_STRING_START) | (1 << Python3Parser.DOUBLE_QUOTE_LONG_TEMPLATE_STRING_START) | (1 << Python3Parser.STRING) | (1 << Python3Parser.NUMBER) | (1 << Python3Parser.LAMBDA))) !== 0) || ((((_la - 32)) & ~0x1F) === 0 && ((1 << (_la - 32)) & ((1 << (Python3Parser.NOT - 32)) | (1 << (Python3Parser.NONE - 32)) | (1 << (Python3Parser.TRUE - 32)) | (1 << (Python3Parser.FALSE - 32)) | (1 << (Python3Parser.AWAIT - 32)) | (1 << (Python3Parser.NAME - 32)) | (1 << (Python3Parser.ELLIPSIS - 32)) | (1 << (Python3Parser.OPEN_PAREN - 32)))) !== 0) || ((((_la - 65)) & ~0x1F) === 0 && ((1 << (_la - 65)) & ((1 << (Python3Parser.OPEN_BRACK - 65)) | (1 << (Python3Parser.ADD - 65)) | (1 << (Python3Parser.MINUS - 65)) | (1 << (Python3Parser.NOT_OP - 65)) | (1 << (Python3Parser.OPEN_BRACE - 65)))) !== 0)) {
{
- this.state = 957;
+ this.state = 955;
this.test();
}
}
- this.state = 961;
+ this.state = 959;
this._errHandler.sync(this);
_la = this._input.LA(1);
if (_la === Python3Parser.COLON) {
{
- this.state = 960;
+ this.state = 958;
this.sliceop();
}
}
@@ -4959,14 +4947,14 @@ export class Python3Parser extends Parser {
try {
this.enterOuterAlt(_localctx, 1);
{
- this.state = 965;
+ this.state = 963;
this.match(Python3Parser.COLON);
- this.state = 967;
+ this.state = 965;
this._errHandler.sync(this);
_la = this._input.LA(1);
if ((((_la) & ~0x1F) === 0 && ((1 << _la) & ((1 << Python3Parser.SINGLE_QUOTE_SHORT_TEMPLATE_STRING_START) | (1 << Python3Parser.DOUBLE_QUOTE_SHORT_TEMPLATE_STRING_START) | (1 << Python3Parser.SINGLE_QUOTE_LONG_TEMPLATE_STRING_START) | (1 << Python3Parser.DOUBLE_QUOTE_LONG_TEMPLATE_STRING_START) | (1 << Python3Parser.STRING) | (1 << Python3Parser.NUMBER) | (1 << Python3Parser.LAMBDA))) !== 0) || ((((_la - 32)) & ~0x1F) === 0 && ((1 << (_la - 32)) & ((1 << (Python3Parser.NOT - 32)) | (1 << (Python3Parser.NONE - 32)) | (1 << (Python3Parser.TRUE - 32)) | (1 << (Python3Parser.FALSE - 32)) | (1 << (Python3Parser.AWAIT - 32)) | (1 << (Python3Parser.NAME - 32)) | (1 << (Python3Parser.ELLIPSIS - 32)) | (1 << (Python3Parser.OPEN_PAREN - 32)))) !== 0) || ((((_la - 65)) & ~0x1F) === 0 && ((1 << (_la - 65)) & ((1 << (Python3Parser.OPEN_BRACK - 65)) | (1 << (Python3Parser.ADD - 65)) | (1 << (Python3Parser.MINUS - 65)) | (1 << (Python3Parser.NOT_OP - 65)) | (1 << (Python3Parser.OPEN_BRACE - 65)))) !== 0)) {
{
- this.state = 966;
+ this.state = 964;
this.test();
}
}
@@ -4996,7 +4984,7 @@ export class Python3Parser extends Parser {
let _alt: number;
this.enterOuterAlt(_localctx, 1);
{
- this.state = 971;
+ this.state = 969;
this._errHandler.sync(this);
switch (this._input.LA(1)) {
case Python3Parser.SINGLE_QUOTE_SHORT_TEMPLATE_STRING_START:
@@ -5018,29 +5006,29 @@ export class Python3Parser extends Parser {
case Python3Parser.NOT_OP:
case Python3Parser.OPEN_BRACE:
{
- this.state = 969;
+ this.state = 967;
this.expr();
}
break;
case Python3Parser.STAR:
{
- this.state = 970;
+ this.state = 968;
this.star_expr();
}
break;
default:
throw new NoViableAltException(this);
}
- this.state = 980;
+ this.state = 978;
this._errHandler.sync(this);
- _alt = this.interpreter.adaptivePredict(this._input, 140, this._ctx);
+ _alt = this.interpreter.adaptivePredict(this._input, 139, this._ctx);
while (_alt !== 2 && _alt !== ATN.INVALID_ALT_NUMBER) {
if (_alt === 1) {
{
{
- this.state = 973;
+ this.state = 971;
this.match(Python3Parser.COMMA);
- this.state = 976;
+ this.state = 974;
this._errHandler.sync(this);
switch (this._input.LA(1)) {
case Python3Parser.SINGLE_QUOTE_SHORT_TEMPLATE_STRING_START:
@@ -5062,13 +5050,13 @@ export class Python3Parser extends Parser {
case Python3Parser.NOT_OP:
case Python3Parser.OPEN_BRACE:
{
- this.state = 974;
+ this.state = 972;
this.expr();
}
break;
case Python3Parser.STAR:
{
- this.state = 975;
+ this.state = 973;
this.star_expr();
}
break;
@@ -5078,16 +5066,16 @@ export class Python3Parser extends Parser {
}
}
}
- this.state = 982;
+ this.state = 980;
this._errHandler.sync(this);
- _alt = this.interpreter.adaptivePredict(this._input, 140, this._ctx);
+ _alt = this.interpreter.adaptivePredict(this._input, 139, this._ctx);
}
- this.state = 984;
+ this.state = 982;
this._errHandler.sync(this);
_la = this._input.LA(1);
if (_la === Python3Parser.COMMA) {
{
- this.state = 983;
+ this.state = 981;
this.match(Python3Parser.COMMA);
}
}
@@ -5117,32 +5105,32 @@ export class Python3Parser extends Parser {
let _alt: number;
this.enterOuterAlt(_localctx, 1);
{
- this.state = 986;
+ this.state = 984;
this.test();
- this.state = 991;
+ this.state = 989;
this._errHandler.sync(this);
- _alt = this.interpreter.adaptivePredict(this._input, 142, this._ctx);
+ _alt = this.interpreter.adaptivePredict(this._input, 141, this._ctx);
while (_alt !== 2 && _alt !== ATN.INVALID_ALT_NUMBER) {
if (_alt === 1) {
{
{
- this.state = 987;
+ this.state = 985;
this.match(Python3Parser.COMMA);
- this.state = 988;
+ this.state = 986;
this.test();
}
}
}
- this.state = 993;
+ this.state = 991;
this._errHandler.sync(this);
- _alt = this.interpreter.adaptivePredict(this._input, 142, this._ctx);
+ _alt = this.interpreter.adaptivePredict(this._input, 141, this._ctx);
}
- this.state = 995;
+ this.state = 993;
this._errHandler.sync(this);
_la = this._input.LA(1);
if (_la === Python3Parser.COMMA) {
{
- this.state = 994;
+ this.state = 992;
this.match(Python3Parser.COMMA);
}
}
@@ -5172,13 +5160,13 @@ export class Python3Parser extends Parser {
let _alt: number;
this.enterOuterAlt(_localctx, 1);
{
- this.state = 1045;
+ this.state = 1043;
this._errHandler.sync(this);
- switch ( this.interpreter.adaptivePredict(this._input, 154, this._ctx) ) {
+ switch ( this.interpreter.adaptivePredict(this._input, 153, this._ctx) ) {
case 1:
{
{
- this.state = 1003;
+ this.state = 1001;
this._errHandler.sync(this);
switch (this._input.LA(1)) {
case Python3Parser.SINGLE_QUOTE_SHORT_TEMPLATE_STRING_START:
@@ -5202,48 +5190,48 @@ export class Python3Parser extends Parser {
case Python3Parser.NOT_OP:
case Python3Parser.OPEN_BRACE:
{
- this.state = 997;
+ this.state = 995;
this.test();
- this.state = 998;
+ this.state = 996;
this.match(Python3Parser.COLON);
- this.state = 999;
+ this.state = 997;
this.test();
}
break;
case Python3Parser.POWER:
{
- this.state = 1001;
+ this.state = 999;
this.match(Python3Parser.POWER);
- this.state = 1002;
+ this.state = 1000;
this.expr();
}
break;
default:
throw new NoViableAltException(this);
}
- this.state = 1023;
+ this.state = 1021;
this._errHandler.sync(this);
switch (this._input.LA(1)) {
case Python3Parser.FOR:
case Python3Parser.ASYNC:
{
- this.state = 1005;
+ this.state = 1003;
this.comp_for();
}
break;
case Python3Parser.COMMA:
case Python3Parser.CLOSE_BRACE:
{
- this.state = 1017;
+ this.state = 1015;
this._errHandler.sync(this);
- _alt = this.interpreter.adaptivePredict(this._input, 146, this._ctx);
+ _alt = this.interpreter.adaptivePredict(this._input, 145, this._ctx);
while (_alt !== 2 && _alt !== ATN.INVALID_ALT_NUMBER) {
if (_alt === 1) {
{
{
- this.state = 1006;
+ this.state = 1004;
this.match(Python3Parser.COMMA);
- this.state = 1013;
+ this.state = 1011;
this._errHandler.sync(this);
switch (this._input.LA(1)) {
case Python3Parser.SINGLE_QUOTE_SHORT_TEMPLATE_STRING_START:
@@ -5267,19 +5255,19 @@ export class Python3Parser extends Parser {
case Python3Parser.NOT_OP:
case Python3Parser.OPEN_BRACE:
{
- this.state = 1007;
+ this.state = 1005;
this.test();
- this.state = 1008;
+ this.state = 1006;
this.match(Python3Parser.COLON);
- this.state = 1009;
+ this.state = 1007;
this.test();
}
break;
case Python3Parser.POWER:
{
- this.state = 1011;
+ this.state = 1009;
this.match(Python3Parser.POWER);
- this.state = 1012;
+ this.state = 1010;
this.expr();
}
break;
@@ -5289,16 +5277,16 @@ export class Python3Parser extends Parser {
}
}
}
- this.state = 1019;
+ this.state = 1017;
this._errHandler.sync(this);
- _alt = this.interpreter.adaptivePredict(this._input, 146, this._ctx);
+ _alt = this.interpreter.adaptivePredict(this._input, 145, this._ctx);
}
- this.state = 1021;
+ this.state = 1019;
this._errHandler.sync(this);
_la = this._input.LA(1);
if (_la === Python3Parser.COMMA) {
{
- this.state = 1020;
+ this.state = 1018;
this.match(Python3Parser.COMMA);
}
}
@@ -5315,7 +5303,7 @@ export class Python3Parser extends Parser {
case 2:
{
{
- this.state = 1027;
+ this.state = 1025;
this._errHandler.sync(this);
switch (this._input.LA(1)) {
case Python3Parser.SINGLE_QUOTE_SHORT_TEMPLATE_STRING_START:
@@ -5339,42 +5327,42 @@ export class Python3Parser extends Parser {
case Python3Parser.NOT_OP:
case Python3Parser.OPEN_BRACE:
{
- this.state = 1025;
+ this.state = 1023;
this.test();
}
break;
case Python3Parser.STAR:
{
- this.state = 1026;
+ this.state = 1024;
this.star_expr();
}
break;
default:
throw new NoViableAltException(this);
}
- this.state = 1043;
+ this.state = 1041;
this._errHandler.sync(this);
switch (this._input.LA(1)) {
case Python3Parser.FOR:
case Python3Parser.ASYNC:
{
- this.state = 1029;
+ this.state = 1027;
this.comp_for();
}
break;
case Python3Parser.COMMA:
case Python3Parser.CLOSE_BRACE:
{
- this.state = 1037;
+ this.state = 1035;
this._errHandler.sync(this);
- _alt = this.interpreter.adaptivePredict(this._input, 151, this._ctx);
+ _alt = this.interpreter.adaptivePredict(this._input, 150, this._ctx);
while (_alt !== 2 && _alt !== ATN.INVALID_ALT_NUMBER) {
if (_alt === 1) {
{
{
- this.state = 1030;
+ this.state = 1028;
this.match(Python3Parser.COMMA);
- this.state = 1033;
+ this.state = 1031;
this._errHandler.sync(this);
switch (this._input.LA(1)) {
case Python3Parser.SINGLE_QUOTE_SHORT_TEMPLATE_STRING_START:
@@ -5398,13 +5386,13 @@ export class Python3Parser extends Parser {
case Python3Parser.NOT_OP:
case Python3Parser.OPEN_BRACE:
{
- this.state = 1031;
+ this.state = 1029;
this.test();
}
break;
case Python3Parser.STAR:
{
- this.state = 1032;
+ this.state = 1030;
this.star_expr();
}
break;
@@ -5414,16 +5402,16 @@ export class Python3Parser extends Parser {
}
}
}
- this.state = 1039;
+ this.state = 1037;
this._errHandler.sync(this);
- _alt = this.interpreter.adaptivePredict(this._input, 151, this._ctx);
+ _alt = this.interpreter.adaptivePredict(this._input, 150, this._ctx);
}
- this.state = 1041;
+ this.state = 1039;
this._errHandler.sync(this);
_la = this._input.LA(1);
if (_la === Python3Parser.COMMA) {
{
- this.state = 1040;
+ this.state = 1038;
this.match(Python3Parser.COMMA);
}
}
@@ -5461,35 +5449,35 @@ export class Python3Parser extends Parser {
try {
this.enterOuterAlt(_localctx, 1);
{
- this.state = 1047;
+ this.state = 1045;
this.match(Python3Parser.CLASS);
- this.state = 1048;
+ this.state = 1046;
this.match(Python3Parser.NAME);
- this.state = 1054;
+ this.state = 1052;
this._errHandler.sync(this);
_la = this._input.LA(1);
if (_la === Python3Parser.OPEN_PAREN) {
{
- this.state = 1049;
+ this.state = 1047;
this.match(Python3Parser.OPEN_PAREN);
- this.state = 1051;
+ this.state = 1049;
this._errHandler.sync(this);
_la = this._input.LA(1);
if ((((_la) & ~0x1F) === 0 && ((1 << _la) & ((1 << Python3Parser.SINGLE_QUOTE_SHORT_TEMPLATE_STRING_START) | (1 << Python3Parser.DOUBLE_QUOTE_SHORT_TEMPLATE_STRING_START) | (1 << Python3Parser.SINGLE_QUOTE_LONG_TEMPLATE_STRING_START) | (1 << Python3Parser.DOUBLE_QUOTE_LONG_TEMPLATE_STRING_START) | (1 << Python3Parser.STRING) | (1 << Python3Parser.NUMBER) | (1 << Python3Parser.LAMBDA))) !== 0) || ((((_la - 32)) & ~0x1F) === 0 && ((1 << (_la - 32)) & ((1 << (Python3Parser.NOT - 32)) | (1 << (Python3Parser.NONE - 32)) | (1 << (Python3Parser.TRUE - 32)) | (1 << (Python3Parser.FALSE - 32)) | (1 << (Python3Parser.AWAIT - 32)) | (1 << (Python3Parser.NAME - 32)) | (1 << (Python3Parser.ELLIPSIS - 32)) | (1 << (Python3Parser.STAR - 32)) | (1 << (Python3Parser.OPEN_PAREN - 32)) | (1 << (Python3Parser.POWER - 32)))) !== 0) || ((((_la - 65)) & ~0x1F) === 0 && ((1 << (_la - 65)) & ((1 << (Python3Parser.OPEN_BRACK - 65)) | (1 << (Python3Parser.ADD - 65)) | (1 << (Python3Parser.MINUS - 65)) | (1 << (Python3Parser.NOT_OP - 65)) | (1 << (Python3Parser.OPEN_BRACE - 65)))) !== 0)) {
{
- this.state = 1050;
+ this.state = 1048;
this.arglist();
}
}
- this.state = 1053;
+ this.state = 1051;
this.match(Python3Parser.CLOSE_PAREN);
}
}
- this.state = 1056;
+ this.state = 1054;
this.match(Python3Parser.COLON);
- this.state = 1057;
+ this.state = 1055;
this.suite();
}
}
@@ -5508,40 +5496,78 @@ export class Python3Parser extends Parser {
return _localctx;
}
// @RuleVersion(0)
+ public callArguments(): CallArgumentsContext {
+ let _localctx: CallArgumentsContext = new CallArgumentsContext(this._ctx, this.state);
+ this.enterRule(_localctx, 156, Python3Parser.RULE_callArguments);
+ let _la: number;
+ try {
+ this.enterOuterAlt(_localctx, 1);
+ {
+ this.state = 1057;
+ this.match(Python3Parser.OPEN_PAREN);
+ this.state = 1059;
+ this._errHandler.sync(this);
+ _la = this._input.LA(1);
+ if ((((_la) & ~0x1F) === 0 && ((1 << _la) & ((1 << Python3Parser.SINGLE_QUOTE_SHORT_TEMPLATE_STRING_START) | (1 << Python3Parser.DOUBLE_QUOTE_SHORT_TEMPLATE_STRING_START) | (1 << Python3Parser.SINGLE_QUOTE_LONG_TEMPLATE_STRING_START) | (1 << Python3Parser.DOUBLE_QUOTE_LONG_TEMPLATE_STRING_START) | (1 << Python3Parser.STRING) | (1 << Python3Parser.NUMBER) | (1 << Python3Parser.LAMBDA))) !== 0) || ((((_la - 32)) & ~0x1F) === 0 && ((1 << (_la - 32)) & ((1 << (Python3Parser.NOT - 32)) | (1 << (Python3Parser.NONE - 32)) | (1 << (Python3Parser.TRUE - 32)) | (1 << (Python3Parser.FALSE - 32)) | (1 << (Python3Parser.AWAIT - 32)) | (1 << (Python3Parser.NAME - 32)) | (1 << (Python3Parser.ELLIPSIS - 32)) | (1 << (Python3Parser.STAR - 32)) | (1 << (Python3Parser.OPEN_PAREN - 32)) | (1 << (Python3Parser.POWER - 32)))) !== 0) || ((((_la - 65)) & ~0x1F) === 0 && ((1 << (_la - 65)) & ((1 << (Python3Parser.OPEN_BRACK - 65)) | (1 << (Python3Parser.ADD - 65)) | (1 << (Python3Parser.MINUS - 65)) | (1 << (Python3Parser.NOT_OP - 65)) | (1 << (Python3Parser.OPEN_BRACE - 65)))) !== 0)) {
+ {
+ this.state = 1058;
+ this.arglist();
+ }
+ }
+
+ this.state = 1061;
+ this.match(Python3Parser.CLOSE_PAREN);
+ }
+ }
+ catch (re) {
+ if (re instanceof RecognitionException) {
+ _localctx.exception = re;
+ this._errHandler.reportError(this, re);
+ this._errHandler.recover(this, re);
+ } else {
+ throw re;
+ }
+ }
+ finally {
+ this.exitRule();
+ }
+ return _localctx;
+ }
+ // @RuleVersion(0)
public arglist(): ArglistContext {
let _localctx: ArglistContext = new ArglistContext(this._ctx, this.state);
- this.enterRule(_localctx, 156, Python3Parser.RULE_arglist);
+ this.enterRule(_localctx, 158, Python3Parser.RULE_arglist);
let _la: number;
try {
let _alt: number;
this.enterOuterAlt(_localctx, 1);
{
- this.state = 1059;
+ this.state = 1063;
this.argument();
- this.state = 1064;
+ this.state = 1068;
this._errHandler.sync(this);
_alt = this.interpreter.adaptivePredict(this._input, 157, this._ctx);
while (_alt !== 2 && _alt !== ATN.INVALID_ALT_NUMBER) {
if (_alt === 1) {
{
{
- this.state = 1060;
+ this.state = 1064;
this.match(Python3Parser.COMMA);
- this.state = 1061;
+ this.state = 1065;
this.argument();
}
}
}
- this.state = 1066;
+ this.state = 1070;
this._errHandler.sync(this);
_alt = this.interpreter.adaptivePredict(this._input, 157, this._ctx);
}
- this.state = 1068;
+ this.state = 1072;
this._errHandler.sync(this);
_la = this._input.LA(1);
if (_la === Python3Parser.COMMA) {
{
- this.state = 1067;
+ this.state = 1071;
this.match(Python3Parser.COMMA);
}
}
@@ -5565,24 +5591,24 @@ export class Python3Parser extends Parser {
// @RuleVersion(0)
public argument(): ArgumentContext {
let _localctx: ArgumentContext = new ArgumentContext(this._ctx, this.state);
- this.enterRule(_localctx, 158, Python3Parser.RULE_argument);
+ this.enterRule(_localctx, 160, Python3Parser.RULE_argument);
let _la: number;
try {
this.enterOuterAlt(_localctx, 1);
{
- this.state = 1082;
+ this.state = 1086;
this._errHandler.sync(this);
switch ( this.interpreter.adaptivePredict(this._input, 160, this._ctx) ) {
case 1:
{
- this.state = 1070;
+ this.state = 1074;
this.test();
- this.state = 1072;
+ this.state = 1076;
this._errHandler.sync(this);
_la = this._input.LA(1);
if (_la === Python3Parser.FOR || _la === Python3Parser.ASYNC) {
{
- this.state = 1071;
+ this.state = 1075;
this.comp_for();
}
}
@@ -5592,29 +5618,29 @@ export class Python3Parser extends Parser {
case 2:
{
- this.state = 1074;
+ this.state = 1078;
this.test();
- this.state = 1075;
+ this.state = 1079;
this.match(Python3Parser.ASSIGN);
- this.state = 1076;
+ this.state = 1080;
this.test();
}
break;
case 3:
{
- this.state = 1078;
+ this.state = 1082;
this.match(Python3Parser.POWER);
- this.state = 1079;
+ this.state = 1083;
this.test();
}
break;
case 4:
{
- this.state = 1080;
+ this.state = 1084;
this.match(Python3Parser.STAR);
- this.state = 1081;
+ this.state = 1085;
this.test();
}
break;
@@ -5638,23 +5664,23 @@ export class Python3Parser extends Parser {
// @RuleVersion(0)
public comp_iter(): Comp_iterContext {
let _localctx: Comp_iterContext = new Comp_iterContext(this._ctx, this.state);
- this.enterRule(_localctx, 160, Python3Parser.RULE_comp_iter);
+ this.enterRule(_localctx, 162, Python3Parser.RULE_comp_iter);
try {
- this.state = 1086;
+ this.state = 1090;
this._errHandler.sync(this);
switch (this._input.LA(1)) {
case Python3Parser.FOR:
case Python3Parser.ASYNC:
this.enterOuterAlt(_localctx, 1);
{
- this.state = 1084;
+ this.state = 1088;
this.comp_for();
}
break;
case Python3Parser.IF:
this.enterOuterAlt(_localctx, 2);
{
- this.state = 1085;
+ this.state = 1089;
this.comp_if();
}
break;
@@ -5679,35 +5705,35 @@ export class Python3Parser extends Parser {
// @RuleVersion(0)
public comp_for(): Comp_forContext {
let _localctx: Comp_forContext = new Comp_forContext(this._ctx, this.state);
- this.enterRule(_localctx, 162, Python3Parser.RULE_comp_for);
+ this.enterRule(_localctx, 164, Python3Parser.RULE_comp_for);
let _la: number;
try {
this.enterOuterAlt(_localctx, 1);
{
- this.state = 1089;
+ this.state = 1093;
this._errHandler.sync(this);
_la = this._input.LA(1);
if (_la === Python3Parser.ASYNC) {
{
- this.state = 1088;
+ this.state = 1092;
this.match(Python3Parser.ASYNC);
}
}
- this.state = 1091;
+ this.state = 1095;
this.match(Python3Parser.FOR);
- this.state = 1092;
+ this.state = 1096;
this.exprlist();
- this.state = 1093;
+ this.state = 1097;
this.match(Python3Parser.IN);
- this.state = 1094;
+ this.state = 1098;
this.or_test();
- this.state = 1096;
+ this.state = 1100;
this._errHandler.sync(this);
_la = this._input.LA(1);
if (((((_la - 19)) & ~0x1F) === 0 && ((1 << (_la - 19)) & ((1 << (Python3Parser.IF - 19)) | (1 << (Python3Parser.FOR - 19)) | (1 << (Python3Parser.ASYNC - 19)))) !== 0)) {
{
- this.state = 1095;
+ this.state = 1099;
this.comp_iter();
}
}
@@ -5731,21 +5757,21 @@ export class Python3Parser extends Parser {
// @RuleVersion(0)
public comp_if(): Comp_ifContext {
let _localctx: Comp_ifContext = new Comp_ifContext(this._ctx, this.state);
- this.enterRule(_localctx, 164, Python3Parser.RULE_comp_if);
+ this.enterRule(_localctx, 166, Python3Parser.RULE_comp_if);
let _la: number;
try {
this.enterOuterAlt(_localctx, 1);
{
- this.state = 1098;
+ this.state = 1102;
this.match(Python3Parser.IF);
- this.state = 1099;
+ this.state = 1103;
this.test_nocond();
- this.state = 1101;
+ this.state = 1105;
this._errHandler.sync(this);
_la = this._input.LA(1);
if (((((_la - 19)) & ~0x1F) === 0 && ((1 << (_la - 19)) & ((1 << (Python3Parser.IF - 19)) | (1 << (Python3Parser.FOR - 19)) | (1 << (Python3Parser.ASYNC - 19)))) !== 0)) {
{
- this.state = 1100;
+ this.state = 1104;
this.comp_iter();
}
}
@@ -5769,11 +5795,11 @@ export class Python3Parser extends Parser {
// @RuleVersion(0)
public encoding_decl(): Encoding_declContext {
let _localctx: Encoding_declContext = new Encoding_declContext(this._ctx, this.state);
- this.enterRule(_localctx, 166, Python3Parser.RULE_encoding_decl);
+ this.enterRule(_localctx, 168, Python3Parser.RULE_encoding_decl);
try {
this.enterOuterAlt(_localctx, 1);
{
- this.state = 1103;
+ this.state = 1107;
this.match(Python3Parser.NAME);
}
}
@@ -5794,19 +5820,19 @@ export class Python3Parser extends Parser {
// @RuleVersion(0)
public yield_expr(): Yield_exprContext {
let _localctx: Yield_exprContext = new Yield_exprContext(this._ctx, this.state);
- this.enterRule(_localctx, 168, Python3Parser.RULE_yield_expr);
+ this.enterRule(_localctx, 170, Python3Parser.RULE_yield_expr);
let _la: number;
try {
this.enterOuterAlt(_localctx, 1);
{
- this.state = 1105;
+ this.state = 1109;
this.match(Python3Parser.YIELD);
- this.state = 1107;
+ this.state = 1111;
this._errHandler.sync(this);
_la = this._input.LA(1);
if ((((_la) & ~0x1F) === 0 && ((1 << _la) & ((1 << Python3Parser.SINGLE_QUOTE_SHORT_TEMPLATE_STRING_START) | (1 << Python3Parser.DOUBLE_QUOTE_SHORT_TEMPLATE_STRING_START) | (1 << Python3Parser.SINGLE_QUOTE_LONG_TEMPLATE_STRING_START) | (1 << Python3Parser.DOUBLE_QUOTE_LONG_TEMPLATE_STRING_START) | (1 << Python3Parser.STRING) | (1 << Python3Parser.NUMBER) | (1 << Python3Parser.FROM) | (1 << Python3Parser.LAMBDA))) !== 0) || ((((_la - 32)) & ~0x1F) === 0 && ((1 << (_la - 32)) & ((1 << (Python3Parser.NOT - 32)) | (1 << (Python3Parser.NONE - 32)) | (1 << (Python3Parser.TRUE - 32)) | (1 << (Python3Parser.FALSE - 32)) | (1 << (Python3Parser.AWAIT - 32)) | (1 << (Python3Parser.NAME - 32)) | (1 << (Python3Parser.ELLIPSIS - 32)) | (1 << (Python3Parser.OPEN_PAREN - 32)))) !== 0) || ((((_la - 65)) & ~0x1F) === 0 && ((1 << (_la - 65)) & ((1 << (Python3Parser.OPEN_BRACK - 65)) | (1 << (Python3Parser.ADD - 65)) | (1 << (Python3Parser.MINUS - 65)) | (1 << (Python3Parser.NOT_OP - 65)) | (1 << (Python3Parser.OPEN_BRACE - 65)))) !== 0)) {
{
- this.state = 1106;
+ this.state = 1110;
this.yield_arg();
}
}
@@ -5830,17 +5856,17 @@ export class Python3Parser extends Parser {
// @RuleVersion(0)
public yield_arg(): Yield_argContext {
let _localctx: Yield_argContext = new Yield_argContext(this._ctx, this.state);
- this.enterRule(_localctx, 170, Python3Parser.RULE_yield_arg);
+ this.enterRule(_localctx, 172, Python3Parser.RULE_yield_arg);
try {
- this.state = 1112;
+ this.state = 1116;
this._errHandler.sync(this);
switch (this._input.LA(1)) {
case Python3Parser.FROM:
this.enterOuterAlt(_localctx, 1);
{
- this.state = 1109;
+ this.state = 1113;
this.match(Python3Parser.FROM);
- this.state = 1110;
+ this.state = 1114;
this.test();
}
break;
@@ -5866,7 +5892,7 @@ export class Python3Parser extends Parser {
case Python3Parser.OPEN_BRACE:
this.enterOuterAlt(_localctx, 2);
{
- this.state = 1111;
+ this.state = 1115;
this.testlist();
}
break;
@@ -5891,101 +5917,101 @@ export class Python3Parser extends Parser {
// @RuleVersion(0)
public string_template(): String_templateContext {
let _localctx: String_templateContext = new String_templateContext(this._ctx, this.state);
- this.enterRule(_localctx, 172, Python3Parser.RULE_string_template);
+ this.enterRule(_localctx, 174, Python3Parser.RULE_string_template);
let _la: number;
try {
- this.state = 1146;
+ this.state = 1150;
this._errHandler.sync(this);
switch (this._input.LA(1)) {
case Python3Parser.SINGLE_QUOTE_SHORT_TEMPLATE_STRING_START:
this.enterOuterAlt(_localctx, 1);
{
- this.state = 1114;
- this.match(Python3Parser.SINGLE_QUOTE_SHORT_TEMPLATE_STRING_START);
this.state = 1118;
+ this.match(Python3Parser.SINGLE_QUOTE_SHORT_TEMPLATE_STRING_START);
+ this.state = 1122;
this._errHandler.sync(this);
_la = this._input.LA(1);
while (_la === Python3Parser.OPEN_BRACE || _la === Python3Parser.SINGLE_QUOTE_STRING_ATOM) {
{
{
- this.state = 1115;
+ this.state = 1119;
this.single_string_template_atom();
}
}
- this.state = 1120;
+ this.state = 1124;
this._errHandler.sync(this);
_la = this._input.LA(1);
}
- this.state = 1121;
+ this.state = 1125;
this.match(Python3Parser.SINGLE_QUOTE_SHORT_TEMPLATE_STRING_END);
}
break;
case Python3Parser.SINGLE_QUOTE_LONG_TEMPLATE_STRING_START:
this.enterOuterAlt(_localctx, 2);
{
- this.state = 1122;
- this.match(Python3Parser.SINGLE_QUOTE_LONG_TEMPLATE_STRING_START);
this.state = 1126;
+ this.match(Python3Parser.SINGLE_QUOTE_LONG_TEMPLATE_STRING_START);
+ this.state = 1130;
this._errHandler.sync(this);
_la = this._input.LA(1);
while (_la === Python3Parser.OPEN_BRACE || _la === Python3Parser.SINGLE_QUOTE_STRING_ATOM) {
{
{
- this.state = 1123;
+ this.state = 1127;
this.single_string_template_atom();
}
}
- this.state = 1128;
+ this.state = 1132;
this._errHandler.sync(this);
_la = this._input.LA(1);
}
- this.state = 1129;
+ this.state = 1133;
this.match(Python3Parser.SINGLE_QUOTE_LONG_TEMPLATE_STRING_END);
}
break;
case Python3Parser.DOUBLE_QUOTE_SHORT_TEMPLATE_STRING_START:
this.enterOuterAlt(_localctx, 3);
{
- this.state = 1130;
- this.match(Python3Parser.DOUBLE_QUOTE_SHORT_TEMPLATE_STRING_START);
this.state = 1134;
+ this.match(Python3Parser.DOUBLE_QUOTE_SHORT_TEMPLATE_STRING_START);
+ this.state = 1138;
this._errHandler.sync(this);
_la = this._input.LA(1);
while (_la === Python3Parser.OPEN_BRACE || _la === Python3Parser.DOUBLE_QUOTE_STRING_ATOM) {
{
{
- this.state = 1131;
+ this.state = 1135;
this.double_string_template_atom();
}
}
- this.state = 1136;
+ this.state = 1140;
this._errHandler.sync(this);
_la = this._input.LA(1);
}
- this.state = 1137;
+ this.state = 1141;
this.match(Python3Parser.DOUBLE_QUOTE_SHORT_TEMPLATE_STRING_END);
}
break;
case Python3Parser.DOUBLE_QUOTE_LONG_TEMPLATE_STRING_START:
this.enterOuterAlt(_localctx, 4);
{
- this.state = 1138;
- this.match(Python3Parser.DOUBLE_QUOTE_LONG_TEMPLATE_STRING_START);
this.state = 1142;
+ this.match(Python3Parser.DOUBLE_QUOTE_LONG_TEMPLATE_STRING_START);
+ this.state = 1146;
this._errHandler.sync(this);
_la = this._input.LA(1);
while (_la === Python3Parser.OPEN_BRACE || _la === Python3Parser.DOUBLE_QUOTE_STRING_ATOM) {
{
{
- this.state = 1139;
+ this.state = 1143;
this.double_string_template_atom();
}
}
- this.state = 1144;
+ this.state = 1148;
this._errHandler.sync(this);
_la = this._input.LA(1);
}
- this.state = 1145;
+ this.state = 1149;
this.match(Python3Parser.DOUBLE_QUOTE_LONG_TEMPLATE_STRING_END);
}
break;
@@ -6010,24 +6036,24 @@ export class Python3Parser extends Parser {
// @RuleVersion(0)
public single_string_template_atom(): Single_string_template_atomContext {
let _localctx: Single_string_template_atomContext = new Single_string_template_atomContext(this._ctx, this.state);
- this.enterRule(_localctx, 174, Python3Parser.RULE_single_string_template_atom);
+ this.enterRule(_localctx, 176, Python3Parser.RULE_single_string_template_atom);
try {
- this.state = 1156;
+ this.state = 1160;
this._errHandler.sync(this);
switch (this._input.LA(1)) {
case Python3Parser.SINGLE_QUOTE_STRING_ATOM:
this.enterOuterAlt(_localctx, 1);
{
- this.state = 1148;
+ this.state = 1152;
this.match(Python3Parser.SINGLE_QUOTE_STRING_ATOM);
}
break;
case Python3Parser.OPEN_BRACE:
this.enterOuterAlt(_localctx, 2);
{
- this.state = 1149;
+ this.state = 1153;
this.match(Python3Parser.OPEN_BRACE);
- this.state = 1152;
+ this.state = 1156;
this._errHandler.sync(this);
switch (this._input.LA(1)) {
case Python3Parser.SINGLE_QUOTE_SHORT_TEMPLATE_STRING_START:
@@ -6051,20 +6077,20 @@ export class Python3Parser extends Parser {
case Python3Parser.NOT_OP:
case Python3Parser.OPEN_BRACE:
{
- this.state = 1150;
+ this.state = 1154;
this.test();
}
break;
case Python3Parser.STAR:
{
- this.state = 1151;
+ this.state = 1155;
this.star_expr();
}
break;
default:
throw new NoViableAltException(this);
}
- this.state = 1154;
+ this.state = 1158;
this.match(Python3Parser.TEMPLATE_CLOSE_BRACE);
}
break;
@@ -6089,24 +6115,24 @@ export class Python3Parser extends Parser {
// @RuleVersion(0)
public double_string_template_atom(): Double_string_template_atomContext {
let _localctx: Double_string_template_atomContext = new Double_string_template_atomContext(this._ctx, this.state);
- this.enterRule(_localctx, 176, Python3Parser.RULE_double_string_template_atom);
+ this.enterRule(_localctx, 178, Python3Parser.RULE_double_string_template_atom);
try {
- this.state = 1166;
+ this.state = 1170;
this._errHandler.sync(this);
switch (this._input.LA(1)) {
case Python3Parser.DOUBLE_QUOTE_STRING_ATOM:
this.enterOuterAlt(_localctx, 1);
{
- this.state = 1158;
+ this.state = 1162;
this.match(Python3Parser.DOUBLE_QUOTE_STRING_ATOM);
}
break;
case Python3Parser.OPEN_BRACE:
this.enterOuterAlt(_localctx, 2);
{
- this.state = 1159;
+ this.state = 1163;
this.match(Python3Parser.OPEN_BRACE);
- this.state = 1162;
+ this.state = 1166;
this._errHandler.sync(this);
switch (this._input.LA(1)) {
case Python3Parser.SINGLE_QUOTE_SHORT_TEMPLATE_STRING_START:
@@ -6130,20 +6156,20 @@ export class Python3Parser extends Parser {
case Python3Parser.NOT_OP:
case Python3Parser.OPEN_BRACE:
{
- this.state = 1160;
+ this.state = 1164;
this.test();
}
break;
case Python3Parser.STAR:
{
- this.state = 1161;
+ this.state = 1165;
this.star_expr();
}
break;
default:
throw new NoViableAltException(this);
}
- this.state = 1164;
+ this.state = 1168;
this.match(Python3Parser.TEMPLATE_CLOSE_BRACE);
}
break;
@@ -6168,7 +6194,7 @@ export class Python3Parser extends Parser {
private static readonly _serializedATNSegments: number = 3;
private static readonly _serializedATNSegment0: string =
- "\x03\uC91D\uCABA\u058D\uAFBA\u4F53\u0607\uEA8B\uC241\x03r\u0493\x04\x02" +
+ "\x03\uC91D\uCABA\u058D\uAFBA\u4F53\u0607\uEA8B\uC241\x03r\u0497\x04\x02" +
"\t\x02\x04\x03\t\x03\x04\x04\t\x04\x04\x05\t\x05\x04\x06\t\x06\x04\x07" +
"\t\x07\x04\b\t\b\x04\t\t\t\x04\n\t\n\x04\v\t\v\x04\f\t\f\x04\r\t\r\x04" +
"\x0E\t\x0E\x04\x0F\t\x0F\x04\x10\t\x10\x04\x11\t\x11\x04\x12\t\x12\x04" +
@@ -6181,602 +6207,605 @@ export class Python3Parser extends Parser {
"=\t=\x04>\t>\x04?\t?\x04@\t@\x04A\tA\x04B\tB\x04C\tC\x04D\tD\x04E\tE\x04" +
"F\tF\x04G\tG\x04H\tH\x04I\tI\x04J\tJ\x04K\tK\x04L\tL\x04M\tM\x04N\tN\x04" +
"O\tO\x04P\tP\x04Q\tQ\x04R\tR\x04S\tS\x04T\tT\x04U\tU\x04V\tV\x04W\tW\x04" +
- "X\tX\x04Y\tY\x04Z\tZ\x03\x02\x03\x02\x07\x02\xB7\n\x02\f\x02\x0E\x02\xBA" +
- "\v\x02\x03\x02\x03\x02\x03\x03\x03\x03\x03\x03\x03\x03\x03\x03\x05\x03" +
- "\xC3\n\x03\x03\x04\x03\x04\x07\x04\xC7\n\x04\f\x04\x0E\x04\xCA\v\x04\x03" +
- "\x04\x03\x04\x03\x05\x03\x05\x03\x05\x03\x05\x05\x05\xD2\n\x05\x03\x05" +
- "\x05\x05\xD5\n\x05\x03\x05\x03\x05\x03\x06\x06\x06\xDA\n\x06\r\x06\x0E" +
- "\x06\xDB\x03\x07\x03\x07\x03\x07\x03\x07\x05\x07\xE2\n\x07\x03\b\x03\b" +
- "\x03\b\x03\t\x03\t\x03\t\x03\t\x03\t\x05\t\xEC\n\t\x03\t\x03\t\x03\t\x03" +
- "\n\x03\n\x05\n\xF3\n\n\x03\n\x03\n\x03\v\x03\v\x03\v\x05\v\xFA\n\v\x03" +
- "\v\x03\v\x03\v\x03\v\x05\v\u0100\n\v\x07\v\u0102\n\v\f\v\x0E\v\u0105\v" +
- "\v\x03\v\x03\v\x03\v\x05\v\u010A\n\v\x03\v\x03\v\x03\v\x03\v\x05\v\u0110" +
- "\n\v\x07\v\u0112\n\v\f\v\x0E\v\u0115\v\v\x03\v\x03\v\x03\v\x03\v\x05\v" +
- "\u011B\n\v\x05\v\u011D\n\v\x05\v\u011F\n\v\x03\v\x03\v\x03\v\x05\v\u0124" +
- "\n\v\x05\v\u0126\n\v\x05\v\u0128\n\v\x03\v\x03\v\x05\v\u012C\n\v\x03\v" +
- "\x03\v\x03\v\x03\v\x05\v\u0132\n\v\x07\v\u0134\n\v\f\v\x0E\v\u0137\v\v" +
- "\x03\v\x03\v\x03\v\x03\v\x05\v\u013D\n\v\x05\v\u013F\n\v\x05\v\u0141\n" +
- "\v\x03\v\x03\v\x03\v\x05\v\u0146\n\v\x05\v\u0148\n\v\x03\f\x03\f\x03\f" +
- "\x05\f\u014D\n\f\x03\r\x03\r\x03\r\x05\r\u0152\n\r\x03\r\x03\r\x03\r\x03" +
- "\r\x05\r\u0158\n\r\x07\r\u015A\n\r\f\r\x0E\r\u015D\v\r\x03\r\x03\r\x03" +
- "\r\x05\r\u0162\n\r\x03\r\x03\r\x03\r\x03\r\x05\r\u0168\n\r\x07\r\u016A" +
- "\n\r\f\r\x0E\r\u016D\v\r\x03\r\x03\r\x03\r\x03\r\x05\r\u0173\n\r\x05\r" +
- "\u0175\n\r\x05\r\u0177\n\r\x03\r\x03\r\x03\r\x05\r\u017C\n\r\x05\r\u017E" +
- "\n\r\x05\r\u0180\n\r\x03\r\x03\r\x05\r\u0184\n\r\x03\r\x03\r\x03\r\x03" +
- "\r\x05\r\u018A\n\r\x07\r\u018C\n\r\f\r\x0E\r\u018F\v\r\x03\r\x03\r\x03" +
- "\r\x03\r\x05\r\u0195\n\r\x05\r\u0197\n\r\x05\r\u0199\n\r\x03\r\x03\r\x03" +
- "\r\x05\r\u019E\n\r\x05\r\u01A0\n\r\x03\x0E\x03\x0E\x03\x0F\x03\x0F\x05" +
- "\x0F\u01A6\n\x0F\x03\x10\x03\x10\x03\x10\x07\x10\u01AB\n\x10\f\x10\x0E" +
- "\x10\u01AE\v\x10\x03\x10\x05\x10\u01B1\n\x10\x03\x10\x03\x10\x03\x11\x03" +
- "\x11\x03\x11\x03\x11\x03\x11\x03\x11\x03\x11\x03\x11\x05\x11\u01BD\n\x11" +
- "\x03\x12\x03\x12\x03\x12\x03\x12\x03\x12\x05\x12\u01C4\n\x12\x03\x12\x03" +
- "\x12\x03\x12\x05\x12\u01C9\n\x12\x07\x12\u01CB\n\x12\f\x12\x0E\x12\u01CE" +
- "\v\x12\x05\x12\u01D0\n\x12\x03\x13\x03\x13\x03\x13\x03\x13\x05\x13\u01D6" +
- "\n\x13\x03\x14\x03\x14\x05\x14\u01DA\n\x14\x03\x14\x03\x14\x03\x14\x05" +
- "\x14\u01DF\n\x14\x07\x14\u01E1\n\x14\f\x14\x0E\x14\u01E4\v\x14\x03\x14" +
- "\x05\x14\u01E7\n\x14\x03\x15\x03\x15\x03\x16\x03\x16\x03\x16\x03\x17\x03" +
- "\x17\x03\x18\x03\x18\x03\x18\x03\x18\x03\x18\x05\x18\u01F5\n\x18\x03\x19" +
- "\x03\x19\x03\x1A\x03\x1A\x03\x1B\x03\x1B\x05\x1B\u01FD\n\x1B\x03\x1C\x03" +
- "\x1C\x03\x1D\x03\x1D\x03\x1D\x03\x1D\x05\x1D\u0205\n\x1D\x05\x1D\u0207" +
- "\n\x1D\x03\x1E\x03\x1E\x05\x1E\u020B\n\x1E\x03\x1F\x03\x1F\x03\x1F\x03" +
- " \x03 \x07 \u0212\n \f \x0E \u0215\v \x03 \x03 \x06 \u0219\n \r \x0E " +
- "\u021A\x05 \u021D\n \x03 \x03 \x03 \x03 \x03 \x03 \x03 \x05 \u0226\n " +
- "\x03!\x03!\x03!\x05!\u022B\n!\x03\"\x03\"\x03\"\x05\"\u0230\n\"\x03#\x03" +
- "#\x03#\x07#\u0235\n#\f#\x0E#\u0238\v#\x03#\x05#\u023B\n#\x03$\x03$\x03" +
- "$\x07$\u0240\n$\f$\x0E$\u0243\v$\x03%\x03%\x03%\x07%\u0248\n%\f%\x0E%" +
- "\u024B\v%\x03&\x03&\x03&\x03&\x07&\u0251\n&\f&\x0E&\u0254\v&\x03\'\x03" +
- "\'\x03\'\x03\'\x07\'\u025A\n\'\f\'\x0E\'\u025D\v\'\x03(\x03(\x03(\x03" +
- "(\x05(\u0263\n(\x03)\x03)\x03)\x03)\x03)\x03)\x03)\x03)\x03)\x05)\u026E" +
- "\n)\x03*\x03*\x03*\x03*\x05*\u0274\n*\x03+\x03+\x03+\x03+\x03+\x03+\x03" +
- "+\x03+\x03+\x07+\u027F\n+\f+\x0E+\u0282\v+\x03+\x03+\x03+\x05+\u0287\n" +
- "+\x03,\x03,\x03,\x03,\x03,\x03,\x03,\x05,\u0290\n,\x03-\x03-\x03-\x03" +
- "-\x03-\x03-\x03-\x03-\x03-\x05-\u029B\n-\x03.\x03.\x03.\x03.\x03.\x03" +
- ".\x03.\x06.\u02A4\n.\r.\x0E.\u02A5\x03.\x03.\x03.\x05.\u02AB\n.\x03.\x03" +
- ".\x03.\x05.\u02B0\n.\x03.\x03.\x03.\x05.\u02B5\n.\x03/\x03/\x03/\x03/" +
- "\x07/\u02BB\n/\f/\x0E/\u02BE\v/\x03/\x03/\x03/\x030\x030\x030\x050\u02C6" +
- "\n0\x031\x031\x031\x031\x051\u02CC\n1\x051\u02CE\n1\x032\x032\x032\x03" +
- "2\x062\u02D4\n2\r2\x0E2\u02D5\x032\x032\x052\u02DA\n2\x033\x033\x033\x03" +
- "3\x033\x033\x053\u02E2\n3\x033\x053\u02E5\n3\x034\x034\x054\u02E9\n4\x03" +
- "5\x035\x055\u02ED\n5\x035\x035\x035\x036\x036\x056\u02F4\n6\x036\x036" +
- "\x036\x037\x037\x037\x077\u02FC\n7\f7\x0E7\u02FF\v7\x038\x038\x038\x07" +
- "8\u0304\n8\f8\x0E8\u0307\v8\x039\x039\x039\x059\u030C\n9\x03:\x03:\x03" +
- ":\x03:\x07:\u0312\n:\f:\x0E:\u0315\v:\x03;\x03;\x03;\x03;\x03;\x03;\x03" +
- ";\x03;\x03;\x03;\x03;\x03;\x03;\x05;\u0324\n;\x03<\x03<\x03<\x03=\x03" +
- "=\x03=\x07=\u032C\n=\f=\x0E=\u032F\v=\x03>\x03>\x03>\x07>\u0334\n>\f>" +
- "\x0E>\u0337\v>\x03?\x03?\x03?\x07?\u033C\n?\f?\x0E?\u033F\v?\x03@\x03" +
- "@\x03@\x07@\u0344\n@\f@\x0E@\u0347\v@\x03A\x03A\x03A\x07A\u034C\nA\fA" +
- "\x0EA\u034F\vA\x03B\x03B\x03B\x07B\u0354\nB\fB\x0EB\u0357\vB\x03C\x03" +
- "C\x03C\x05C\u035C\nC\x03D\x03D\x03D\x05D\u0361\nD\x03E\x05E\u0364\nE\x03" +
- "E\x03E\x07E\u0368\nE\fE\x0EE\u036B\vE\x03F\x03F\x03F\x05F\u0370\nF\x03" +
- "F\x03F\x03F\x05F\u0375\nF\x03F\x03F\x03F\x05F\u037A\nF\x03F\x03F\x03F" +
- "\x03F\x06F\u0380\nF\rF\x0EF\u0381\x03F\x06F\u0385\nF\rF\x0EF\u0386\x03" +
- "F\x03F\x03F\x03F\x05F\u038D\nF\x03G\x03G\x05G\u0391\nG\x03G\x03G\x03G" +
- "\x03G\x05G\u0397\nG\x07G\u0399\nG\fG\x0EG\u039C\vG\x03G\x05G\u039F\nG" +
- "\x05G\u03A1\nG\x03H\x03H\x05H\u03A5\nH\x03H\x03H\x03H\x03H\x03H\x03H\x03" +
- "H\x05H\u03AE\nH\x03I\x03I\x03I\x07I\u03B3\nI\fI\x0EI\u03B6\vI\x03I\x05" +
- "I\u03B9\nI\x03J\x03J\x05J\u03BD\nJ\x03J\x03J\x05J\u03C1\nJ\x03J\x05J\u03C4" +
- "\nJ\x05J\u03C6\nJ\x03K\x03K\x05K\u03CA\nK\x03L\x03L\x05L\u03CE\nL\x03" +
- "L\x03L\x03L\x05L\u03D3\nL\x07L\u03D5\nL\fL\x0EL\u03D8\vL\x03L\x05L\u03DB" +
- "\nL\x03M\x03M\x03M\x07M\u03E0\nM\fM\x0EM\u03E3\vM\x03M\x05M\u03E6\nM\x03" +
- "N\x03N\x03N\x03N\x03N\x03N\x05N\u03EE\nN\x03N\x03N\x03N\x03N\x03N\x03" +
- "N\x03N\x03N\x05N\u03F8\nN\x07N\u03FA\nN\fN\x0EN\u03FD\vN\x03N\x05N\u0400" +
- "\nN\x05N\u0402\nN\x03N\x03N\x05N\u0406\nN\x03N\x03N\x03N\x03N\x05N\u040C" +
- "\nN\x07N\u040E\nN\fN\x0EN\u0411\vN\x03N\x05N\u0414\nN\x05N\u0416\nN\x05" +
- "N\u0418\nN\x03O\x03O\x03O\x03O\x05O\u041E\nO\x03O\x05O\u0421\nO\x03O\x03" +
- "O\x03O\x03P\x03P\x03P\x07P\u0429\nP\fP\x0EP\u042C\vP\x03P\x05P\u042F\n" +
- "P\x03Q\x03Q\x05Q\u0433\nQ\x03Q\x03Q\x03Q\x03Q\x03Q\x03Q\x03Q\x03Q\x05" +
- "Q\u043D\nQ\x03R\x03R\x05R\u0441\nR\x03S\x05S\u0444\nS\x03S\x03S\x03S\x03" +
- "S\x03S\x05S\u044B\nS\x03T\x03T\x03T\x05T\u0450\nT\x03U\x03U\x03V\x03V" +
- "\x05V\u0456\nV\x03W\x03W\x03W\x05W\u045B\nW\x03X\x03X\x07X\u045F\nX\f" +
- "X\x0EX\u0462\vX\x03X\x03X\x03X\x07X\u0467\nX\fX\x0EX\u046A\vX\x03X\x03" +
- "X\x03X\x07X\u046F\nX\fX\x0EX\u0472\vX\x03X\x03X\x03X\x07X\u0477\nX\fX" +
- "\x0EX\u047A\vX\x03X\x05X\u047D\nX\x03Y\x03Y\x03Y\x03Y\x05Y\u0483\nY\x03" +
- "Y\x03Y\x05Y\u0487\nY\x03Z\x03Z\x03Z\x03Z\x05Z\u048D\nZ\x03Z\x03Z\x05Z" +
- "\u0491\nZ\x03Z\x02\x02\x02[\x02\x02\x04\x02\x06\x02\b\x02\n\x02\f\x02" +
- "\x0E\x02\x10\x02\x12\x02\x14\x02\x16\x02\x18\x02\x1A\x02\x1C\x02\x1E\x02" +
- " \x02\"\x02$\x02&\x02(\x02*\x02,\x02.\x020\x022\x024\x026\x028\x02:\x02" +
- "<\x02>\x02@\x02B\x02D\x02F\x02H\x02J\x02L\x02N\x02P\x02R\x02T\x02V\x02" +
- "X\x02Z\x02\\\x02^\x02`\x02b\x02d\x02f\x02h\x02j\x02l\x02n\x02p\x02r\x02" +
- "t\x02v\x02x\x02z\x02|\x02~\x02\x80\x02\x82\x02\x84\x02\x86\x02\x88\x02" +
- "\x8A\x02\x8C\x02\x8E\x02\x90\x02\x92\x02\x94\x02\x96\x02\x98\x02\x9A\x02" +
- "\x9C\x02\x9E\x02\xA0\x02\xA2\x02\xA4\x02\xA6\x02\xA8\x02\xAA\x02\xAC\x02" +
- "\xAE\x02\xB0\x02\xB2\x02\x02\b\x03\x02\\h\x03\x029:\x03\x02HI\x03\x02" +
- "JK\x05\x02;;LNZZ\x04\x02JKOO\x02\u051A\x02\xB8\x03\x02\x02\x02\x04\xC2" +
- "\x03\x02\x02\x02\x06\xC4\x03\x02\x02\x02\b\xCD\x03\x02\x02\x02\n\xD9\x03" +
- "\x02\x02\x02\f\xDD\x03\x02\x02\x02\x0E\xE3\x03\x02\x02\x02\x10\xE6\x03" +
- "\x02\x02\x02\x12\xF0\x03\x02\x02\x02\x14\u0147\x03\x02\x02\x02\x16\u0149" +
- "\x03\x02\x02\x02\x18\u019F\x03\x02\x02\x02\x1A\u01A1\x03\x02\x02\x02\x1C" +
- "\u01A5\x03\x02\x02\x02\x1E\u01A7\x03\x02\x02\x02 \u01BC\x03\x02\x02\x02" +
- "\"\u01BE\x03\x02\x02\x02$\u01D1\x03\x02\x02\x02&\u01D9\x03\x02\x02\x02" +
- "(\u01E8\x03\x02\x02\x02*\u01EA\x03\x02\x02\x02,\u01ED\x03\x02\x02\x02" +
- ".\u01F4\x03\x02\x02\x020\u01F6\x03\x02\x02\x022\u01F8\x03\x02\x02\x02" +
- "4\u01FA\x03\x02\x02\x026\u01FE\x03\x02\x02\x028\u0200\x03\x02\x02\x02" +
- ":\u020A\x03\x02\x02\x02<\u020C\x03\x02\x02\x02>\u020F\x03\x02\x02\x02" +
- "@\u0227\x03\x02\x02\x02B\u022C\x03\x02\x02\x02D\u0231\x03\x02\x02\x02" +
- "F\u023C\x03\x02\x02\x02H\u0244\x03\x02\x02\x02J\u024C\x03\x02\x02\x02" +
- "L\u0255\x03\x02\x02\x02N\u025E\x03\x02\x02\x02P\u026D\x03\x02\x02\x02" +
- "R\u026F\x03\x02\x02\x02T\u0275\x03\x02\x02\x02V\u0288\x03\x02\x02\x02" +
- "X\u0291\x03\x02\x02\x02Z\u029C\x03\x02\x02\x02\\\u02B6\x03\x02\x02\x02" +
- "^\u02C2\x03\x02\x02\x02`\u02C7\x03\x02\x02\x02b\u02D9\x03\x02\x02\x02" +
- "d\u02E4\x03\x02\x02\x02f\u02E8\x03\x02\x02\x02h\u02EA\x03\x02\x02\x02" +
- "j\u02F1\x03\x02\x02\x02l\u02F8\x03\x02\x02\x02n\u0300\x03\x02\x02\x02" +
- "p\u030B\x03\x02\x02\x02r\u030D\x03\x02\x02\x02t\u0323\x03\x02\x02\x02" +
- "v\u0325\x03\x02\x02\x02x\u0328\x03\x02\x02\x02z\u0330\x03\x02\x02\x02" +
- "|\u0338\x03\x02\x02\x02~\u0340\x03\x02\x02\x02\x80\u0348\x03\x02\x02\x02" +
- "\x82\u0350\x03\x02\x02\x02\x84\u035B\x03\x02\x02\x02\x86\u035D\x03\x02" +
- "\x02\x02\x88\u0363\x03\x02\x02\x02\x8A\u038C\x03\x02\x02\x02\x8C\u0390" +
- "\x03\x02\x02\x02\x8E\u03AD\x03\x02\x02\x02\x90\u03AF\x03\x02\x02\x02\x92" +
- "\u03C5\x03\x02\x02\x02\x94\u03C7\x03\x02\x02\x02\x96\u03CD\x03\x02\x02" +
- "\x02\x98\u03DC\x03\x02\x02\x02\x9A\u0417\x03\x02\x02\x02\x9C\u0419\x03" +
- "\x02\x02\x02\x9E\u0425\x03\x02\x02\x02\xA0\u043C\x03\x02\x02\x02\xA2\u0440" +
- "\x03\x02\x02\x02\xA4\u0443\x03\x02\x02\x02\xA6\u044C\x03\x02\x02\x02\xA8" +
- "\u0451\x03\x02\x02\x02\xAA\u0453\x03\x02\x02\x02\xAC\u045A\x03\x02\x02" +
- "\x02\xAE\u047C\x03\x02\x02\x02\xB0\u0486\x03\x02\x02\x02\xB2\u0490\x03" +
- "\x02\x02\x02\xB4\xB7\x07/\x02\x02\xB5\xB7\x05\x1C\x0F\x02\xB6\xB4\x03" +
- "\x02\x02\x02\xB6\xB5\x03\x02\x02\x02\xB7\xBA\x03\x02\x02\x02\xB8\xB6\x03" +
- "\x02\x02\x02\xB8\xB9\x03\x02\x02\x02\xB9\xBB\x03\x02\x02\x02\xBA\xB8\x03" +
- "\x02\x02\x02\xBB\xBC\x07\x02\x02\x03\xBC\x03\x03\x02\x02\x02\xBD\xC3\x07" +
- "/\x02\x02\xBE\xC3\x05\x1E\x10\x02\xBF\xC0\x05P)\x02\xC0\xC1\x07/\x02\x02" +
- "\xC1\xC3\x03\x02\x02\x02\xC2\xBD\x03\x02\x02\x02\xC2\xBE\x03\x02\x02\x02" +
- "\xC2\xBF\x03\x02\x02\x02\xC3\x05\x03\x02\x02\x02\xC4\xC8\x05\x98M\x02" +
- "\xC5\xC7\x07/\x02\x02\xC6\xC5\x03\x02\x02\x02\xC7\xCA\x03\x02\x02\x02" +
- "\xC8\xC6\x03\x02\x02\x02\xC8\xC9\x03\x02\x02\x02\xC9\xCB\x03\x02\x02\x02" +
- "\xCA\xC8\x03\x02\x02\x02\xCB\xCC\x07\x02\x02\x03\xCC\x07\x03\x02\x02\x02" +
- "\xCD\xCE\x07Z\x02\x02\xCE\xD4\x05H%\x02\xCF\xD1\x07<\x02\x02\xD0\xD2\x05" +
- "\x9EP\x02\xD1\xD0\x03\x02\x02\x02\xD1\xD2\x03\x02\x02\x02\xD2\xD3\x03" +
- "\x02\x02\x02\xD3\xD5\x07=\x02\x02\xD4\xCF\x03\x02\x02\x02\xD4\xD5\x03" +
- "\x02\x02\x02\xD5\xD6\x03\x02\x02\x02\xD6\xD7\x07/\x02\x02\xD7\t\x03\x02" +
- "\x02\x02\xD8\xDA\x05\b\x05\x02\xD9\xD8\x03\x02\x02\x02\xDA\xDB\x03\x02" +
- "\x02\x02\xDB\xD9\x03\x02\x02\x02\xDB\xDC\x03\x02\x02\x02\xDC\v\x03\x02" +
- "\x02\x02\xDD\xE1\x05\n\x06\x02\xDE\xE2\x05\x9CO\x02\xDF\xE2\x05\x10\t" +
- "\x02\xE0\xE2\x05\x0E\b\x02\xE1\xDE\x03\x02\x02\x02\xE1\xDF\x03\x02\x02" +
- "\x02\xE1\xE0\x03\x02\x02\x02\xE2\r\x03\x02\x02\x02\xE3\xE4\x07-\x02\x02" +
- "\xE4\xE5\x05\x10\t\x02\xE5\x0F\x03\x02\x02\x02\xE6\xE7\x07\f\x02\x02\xE7" +
- "\xE8\x070\x02\x02\xE8\xEB\x05\x12\n\x02\xE9\xEA\x07[\x02\x02\xEA\xEC\x05" +
- "d3\x02\xEB\xE9\x03\x02\x02\x02\xEB\xEC\x03\x02\x02\x02\xEC\xED\x03\x02" +
- "\x02\x02\xED\xEE\x07?\x02\x02\xEE\xEF\x05b2\x02\xEF\x11\x03\x02\x02\x02" +
- "\xF0\xF2\x07<\x02\x02\xF1\xF3\x05\x14\v\x02\xF2\xF1\x03\x02\x02\x02\xF2" +
- "\xF3\x03\x02\x02\x02\xF3\xF4\x03\x02\x02\x02\xF4\xF5\x07=\x02\x02\xF5" +
- "\x13\x03\x02\x02\x02\xF6\xF9\x05\x16\f\x02\xF7\xF8\x07B\x02\x02\xF8\xFA" +
- "\x05d3\x02\xF9\xF7\x03\x02\x02\x02\xF9\xFA\x03\x02\x02\x02\xFA\u0103\x03" +
- "\x02\x02\x02\xFB\xFC\x07>\x02\x02\xFC\xFF\x05\x16\f\x02\xFD\xFE\x07B\x02" +
- "\x02\xFE\u0100\x05d3\x02\xFF\xFD\x03\x02\x02\x02\xFF\u0100\x03\x02\x02" +
- "\x02\u0100\u0102\x03\x02\x02\x02\u0101\xFB\x03\x02\x02\x02\u0102\u0105" +
- "\x03\x02\x02\x02\u0103\u0101\x03\x02\x02\x02\u0103\u0104\x03\x02\x02\x02" +
- "\u0104\u0127\x03\x02\x02\x02\u0105\u0103\x03\x02\x02\x02\u0106\u0125\x07" +
- ">\x02\x02\u0107\u0109\x07;\x02\x02\u0108\u010A\x05\x16\f\x02\u0109\u0108" +
- "\x03\x02\x02\x02\u0109\u010A\x03\x02\x02\x02\u010A\u0113\x03\x02\x02\x02" +
- "\u010B\u010C\x07>\x02\x02\u010C\u010F\x05\x16\f\x02\u010D\u010E\x07B\x02" +
- "\x02\u010E\u0110\x05d3\x02\u010F\u010D\x03\x02\x02\x02\u010F\u0110\x03" +
- "\x02\x02\x02\u0110\u0112\x03\x02\x02\x02\u0111\u010B\x03\x02\x02\x02\u0112" +
- "\u0115\x03\x02\x02\x02\u0113\u0111\x03\x02\x02\x02\u0113\u0114\x03\x02" +
- "\x02\x02\u0114\u011E\x03\x02\x02\x02\u0115\u0113\x03\x02\x02\x02\u0116" +
- "\u011C\x07>\x02\x02\u0117\u0118\x07A\x02\x02\u0118\u011A\x05\x16\f\x02" +
- "\u0119\u011B\x07>\x02\x02\u011A\u0119\x03\x02\x02\x02\u011A\u011B\x03" +
- "\x02\x02\x02\u011B\u011D\x03\x02\x02\x02\u011C\u0117\x03\x02\x02\x02\u011C" +
- "\u011D\x03\x02\x02\x02\u011D\u011F\x03\x02\x02\x02\u011E\u0116\x03\x02" +
- "\x02\x02\u011E\u011F\x03\x02\x02\x02\u011F\u0126\x03\x02\x02\x02\u0120" +
- "\u0121\x07A\x02\x02\u0121\u0123\x05\x16\f\x02\u0122\u0124\x07>\x02\x02" +
- "\u0123\u0122\x03\x02\x02\x02\u0123\u0124\x03\x02\x02\x02\u0124\u0126\x03" +
- "\x02\x02\x02\u0125\u0107\x03\x02\x02\x02\u0125\u0120\x03\x02\x02\x02\u0125" +
- "\u0126\x03\x02\x02\x02\u0126\u0128\x03\x02\x02\x02\u0127\u0106\x03\x02" +
- "\x02\x02\u0127\u0128\x03\x02\x02\x02\u0128\u0148\x03\x02\x02\x02\u0129" +
- "\u012B\x07;\x02\x02\u012A\u012C\x05\x16\f\x02\u012B\u012A\x03\x02\x02" +
- "\x02\u012B\u012C\x03\x02\x02\x02\u012C\u0135\x03\x02\x02\x02\u012D\u012E" +
- "\x07>\x02\x02\u012E\u0131\x05\x16\f\x02\u012F\u0130\x07B\x02\x02\u0130" +
- "\u0132\x05d3\x02\u0131\u012F\x03\x02\x02\x02\u0131\u0132\x03\x02\x02\x02" +
- "\u0132\u0134\x03\x02\x02\x02\u0133\u012D\x03\x02\x02\x02\u0134\u0137\x03" +
- "\x02\x02\x02\u0135\u0133\x03\x02\x02\x02\u0135\u0136\x03\x02\x02\x02\u0136" +
- "\u0140\x03\x02\x02\x02\u0137\u0135\x03\x02\x02\x02\u0138\u013E\x07>\x02" +
- "\x02\u0139\u013A\x07A\x02\x02\u013A\u013C\x05\x16\f\x02\u013B\u013D\x07" +
- ">\x02\x02\u013C\u013B\x03\x02\x02\x02\u013C\u013D\x03\x02\x02\x02\u013D" +
- "\u013F\x03\x02\x02\x02\u013E\u0139\x03\x02\x02\x02\u013E\u013F\x03\x02" +
- "\x02\x02\u013F\u0141\x03\x02\x02\x02\u0140\u0138\x03\x02\x02\x02\u0140" +
- "\u0141\x03\x02\x02\x02\u0141\u0148\x03\x02\x02\x02\u0142\u0143\x07A\x02" +
- "\x02\u0143\u0145\x05\x16\f\x02\u0144\u0146\x07>\x02\x02\u0145\u0144\x03" +
- "\x02\x02\x02\u0145\u0146\x03\x02\x02\x02\u0146\u0148\x03\x02\x02\x02\u0147" +
- "\xF6\x03\x02\x02\x02\u0147\u0129\x03\x02\x02\x02\u0147\u0142\x03\x02\x02" +
- "\x02\u0148\x15\x03\x02\x02\x02\u0149\u014C\x070\x02\x02\u014A\u014B\x07" +
- "?\x02\x02\u014B\u014D\x05d3\x02\u014C\u014A\x03\x02\x02\x02\u014C\u014D" +
- "\x03\x02\x02\x02\u014D\x17\x03\x02\x02\x02\u014E\u0151\x05\x1A\x0E\x02" +
- "\u014F\u0150\x07B\x02\x02\u0150\u0152\x05d3\x02\u0151\u014F\x03\x02\x02" +
- "\x02\u0151\u0152\x03\x02\x02\x02\u0152\u015B\x03\x02\x02\x02\u0153\u0154" +
- "\x07>\x02\x02\u0154\u0157\x05\x1A\x0E\x02\u0155\u0156\x07B\x02\x02\u0156" +
- "\u0158\x05d3\x02\u0157\u0155\x03\x02\x02\x02\u0157\u0158\x03\x02\x02\x02" +
- "\u0158\u015A\x03\x02\x02\x02\u0159\u0153\x03\x02\x02\x02\u015A\u015D\x03" +
- "\x02\x02\x02\u015B\u0159\x03\x02\x02\x02\u015B\u015C\x03\x02\x02\x02\u015C" +
- "\u017F\x03\x02\x02\x02\u015D\u015B\x03\x02\x02\x02\u015E\u017D\x07>\x02" +
- "\x02\u015F\u0161\x07;\x02\x02\u0160\u0162\x05\x1A\x0E\x02\u0161\u0160" +
- "\x03\x02\x02\x02\u0161\u0162\x03\x02\x02\x02\u0162\u016B\x03\x02\x02\x02" +
- "\u0163\u0164\x07>\x02\x02\u0164\u0167\x05\x1A\x0E\x02\u0165\u0166\x07" +
- "B\x02\x02\u0166\u0168\x05d3\x02\u0167\u0165\x03\x02\x02\x02\u0167\u0168" +
- "\x03\x02\x02\x02\u0168\u016A\x03\x02\x02\x02\u0169\u0163\x03\x02\x02\x02" +
- "\u016A\u016D\x03\x02\x02\x02\u016B\u0169\x03\x02\x02\x02\u016B\u016C\x03" +
- "\x02\x02\x02\u016C\u0176\x03\x02\x02\x02\u016D\u016B\x03\x02\x02\x02\u016E" +
- "\u0174\x07>\x02\x02\u016F\u0170\x07A\x02\x02\u0170\u0172\x05\x1A\x0E\x02" +
- "\u0171\u0173\x07>\x02\x02\u0172\u0171\x03\x02\x02\x02\u0172\u0173\x03" +
- "\x02\x02\x02\u0173\u0175\x03\x02\x02\x02\u0174\u016F\x03\x02\x02\x02\u0174" +
- "\u0175\x03\x02\x02\x02\u0175\u0177\x03\x02\x02\x02\u0176\u016E\x03\x02" +
- "\x02\x02\u0176\u0177\x03\x02\x02\x02\u0177\u017E\x03\x02\x02\x02\u0178" +
- "\u0179\x07A\x02\x02\u0179\u017B\x05\x1A\x0E\x02\u017A\u017C\x07>\x02\x02" +
- "\u017B\u017A\x03\x02\x02\x02\u017B\u017C\x03\x02\x02\x02\u017C\u017E\x03" +
- "\x02\x02\x02\u017D\u015F\x03\x02\x02\x02\u017D\u0178\x03\x02\x02\x02\u017D" +
- "\u017E\x03\x02\x02\x02\u017E\u0180\x03\x02\x02\x02\u017F\u015E\x03\x02" +
- "\x02\x02\u017F\u0180\x03\x02\x02\x02\u0180\u01A0\x03\x02\x02\x02\u0181" +
- "\u0183\x07;\x02\x02\u0182\u0184\x05\x1A\x0E\x02\u0183\u0182\x03\x02\x02" +
- "\x02\u0183\u0184\x03\x02\x02\x02\u0184\u018D\x03\x02\x02\x02\u0185\u0186" +
- "\x07>\x02\x02\u0186\u0189\x05\x1A\x0E\x02\u0187\u0188\x07B\x02\x02\u0188" +
- "\u018A\x05d3\x02\u0189\u0187\x03\x02\x02\x02\u0189\u018A\x03\x02\x02\x02" +
- "\u018A\u018C\x03\x02\x02\x02\u018B\u0185\x03\x02\x02\x02\u018C\u018F\x03" +
- "\x02\x02\x02\u018D\u018B\x03\x02\x02\x02\u018D\u018E\x03\x02\x02\x02\u018E" +
- "\u0198\x03\x02\x02\x02\u018F\u018D\x03\x02\x02\x02\u0190\u0196\x07>\x02" +
- "\x02\u0191\u0192\x07A\x02\x02\u0192\u0194\x05\x1A\x0E\x02\u0193\u0195" +
- "\x07>\x02\x02\u0194\u0193\x03\x02\x02\x02\u0194\u0195\x03\x02\x02\x02" +
- "\u0195\u0197\x03\x02\x02\x02\u0196\u0191\x03\x02\x02\x02\u0196\u0197\x03" +
- "\x02\x02";
+ "X\tX\x04Y\tY\x04Z\tZ\x04[\t[\x03\x02\x03\x02\x07\x02\xB9\n\x02\f\x02\x0E" +
+ "\x02\xBC\v\x02\x03\x02\x03\x02\x03\x03\x03\x03\x03\x03\x03\x03\x03\x03" +
+ "\x05\x03\xC5\n\x03\x03\x04\x03\x04\x07\x04\xC9\n\x04\f\x04\x0E\x04\xCC" +
+ "\v\x04\x03\x04\x03\x04\x03\x05\x03\x05\x03\x05\x03\x05\x05\x05\xD4\n\x05" +
+ "\x03\x05\x05\x05\xD7\n\x05\x03\x05\x03\x05\x03\x06\x06\x06\xDC\n\x06\r" +
+ "\x06\x0E\x06\xDD\x03\x07\x03\x07\x03\x07\x03\x07\x05\x07\xE4\n\x07\x03" +
+ "\b\x03\b\x03\b\x03\t\x03\t\x03\t\x03\t\x03\t\x05\t\xEE\n\t\x03\t\x03\t" +
+ "\x03\t\x03\n\x03\n\x05\n\xF5\n\n\x03\n\x03\n\x03\v\x03\v\x03\v\x05\v\xFC" +
+ "\n\v\x03\v\x03\v\x03\v\x03\v\x05\v\u0102\n\v\x07\v\u0104\n\v\f\v\x0E\v" +
+ "\u0107\v\v\x03\v\x03\v\x03\v\x05\v\u010C\n\v\x03\v\x03\v\x03\v\x03\v\x05" +
+ "\v\u0112\n\v\x07\v\u0114\n\v\f\v\x0E\v\u0117\v\v\x03\v\x03\v\x03\v\x03" +
+ "\v\x05\v\u011D\n\v\x05\v\u011F\n\v\x05\v\u0121\n\v\x03\v\x03\v\x03\v\x05" +
+ "\v\u0126\n\v\x05\v\u0128\n\v\x05\v\u012A\n\v\x03\v\x03\v\x05\v\u012E\n" +
+ "\v\x03\v\x03\v\x03\v\x03\v\x05\v\u0134\n\v\x07\v\u0136\n\v\f\v\x0E\v\u0139" +
+ "\v\v\x03\v\x03\v\x03\v\x03\v\x05\v\u013F\n\v\x05\v\u0141\n\v\x05\v\u0143" +
+ "\n\v\x03\v\x03\v\x03\v\x05\v\u0148\n\v\x05\v\u014A\n\v\x03\f\x03\f\x03" +
+ "\f\x05\f\u014F\n\f\x03\r\x03\r\x03\r\x05\r\u0154\n\r\x03\r\x03\r\x03\r" +
+ "\x03\r\x05\r\u015A\n\r\x07\r\u015C\n\r\f\r\x0E\r\u015F\v\r\x03\r\x03\r" +
+ "\x03\r\x05\r\u0164\n\r\x03\r\x03\r\x03\r\x03\r\x05\r\u016A\n\r\x07\r\u016C" +
+ "\n\r\f\r\x0E\r\u016F\v\r\x03\r\x03\r\x03\r\x03\r\x05\r\u0175\n\r\x05\r" +
+ "\u0177\n\r\x05\r\u0179\n\r\x03\r\x03\r\x03\r\x05\r\u017E\n\r\x05\r\u0180" +
+ "\n\r\x05\r\u0182\n\r\x03\r\x03\r\x05\r\u0186\n\r\x03\r\x03\r\x03\r\x03" +
+ "\r\x05\r\u018C\n\r\x07\r\u018E\n\r\f\r\x0E\r\u0191\v\r\x03\r\x03\r\x03" +
+ "\r\x03\r\x05\r\u0197\n\r\x05\r\u0199\n\r\x05\r\u019B\n\r\x03\r\x03\r\x03" +
+ "\r\x05\r\u01A0\n\r\x05\r\u01A2\n\r\x03\x0E\x03\x0E\x03\x0F\x03\x0F\x05" +
+ "\x0F\u01A8\n\x0F\x03\x10\x03\x10\x03\x10\x07\x10\u01AD\n\x10\f\x10\x0E" +
+ "\x10\u01B0\v\x10\x03\x10\x05\x10\u01B3\n\x10\x03\x10\x03\x10\x03\x11\x03" +
+ "\x11\x03\x11\x03\x11\x03\x11\x03\x11\x03\x11\x03\x11\x05\x11\u01BF\n\x11" +
+ "\x03\x12\x03\x12\x03\x12\x03\x12\x03\x12\x05\x12\u01C6\n\x12\x03\x12\x03" +
+ "\x12\x03\x12\x05\x12\u01CB\n\x12\x07\x12\u01CD\n\x12\f\x12\x0E\x12\u01D0" +
+ "\v\x12\x05\x12\u01D2\n\x12\x03\x13\x03\x13\x03\x13\x03\x13\x05\x13\u01D8" +
+ "\n\x13\x03\x14\x03\x14\x05\x14\u01DC\n\x14\x03\x14\x03\x14\x03\x14\x05" +
+ "\x14\u01E1\n\x14\x07\x14\u01E3\n\x14\f\x14\x0E\x14\u01E6\v\x14\x03\x14" +
+ "\x05\x14\u01E9\n\x14\x03\x15\x03\x15\x03\x16\x03\x16\x03\x16\x03\x17\x03" +
+ "\x17\x03\x18\x03\x18\x03\x18\x03\x18\x03\x18\x05\x18\u01F7\n\x18\x03\x19" +
+ "\x03\x19\x03\x1A\x03\x1A\x03\x1B\x03\x1B\x05\x1B\u01FF\n\x1B\x03\x1C\x03" +
+ "\x1C\x03\x1D\x03\x1D\x03\x1D\x03\x1D\x05\x1D\u0207\n\x1D\x05\x1D\u0209" +
+ "\n\x1D\x03\x1E\x03\x1E\x05\x1E\u020D\n\x1E\x03\x1F\x03\x1F\x03\x1F\x03" +
+ " \x03 \x07 \u0214\n \f \x0E \u0217\v \x03 \x03 \x06 \u021B\n \r \x0E " +
+ "\u021C\x05 \u021F\n \x03 \x03 \x03 \x03 \x03 \x03 \x03 \x05 \u0228\n " +
+ "\x03!\x03!\x03!\x05!\u022D\n!\x03\"\x03\"\x03\"\x05\"\u0232\n\"\x03#\x03" +
+ "#\x03#\x07#\u0237\n#\f#\x0E#\u023A\v#\x03#\x05#\u023D\n#\x03$\x03$\x03" +
+ "$\x07$\u0242\n$\f$\x0E$\u0245\v$\x03%\x03%\x03%\x07%\u024A\n%\f%\x0E%" +
+ "\u024D\v%\x03&\x03&\x03&\x03&\x07&\u0253\n&\f&\x0E&\u0256\v&\x03\'\x03" +
+ "\'\x03\'\x03\'\x07\'\u025C\n\'\f\'\x0E\'\u025F\v\'\x03(\x03(\x03(\x03" +
+ "(\x05(\u0265\n(\x03)\x03)\x03)\x03)\x03)\x03)\x03)\x03)\x03)\x05)\u0270" +
+ "\n)\x03*\x03*\x03*\x03*\x05*\u0276\n*\x03+\x03+\x03+\x03+\x03+\x03+\x03" +
+ "+\x03+\x03+\x07+\u0281\n+\f+\x0E+\u0284\v+\x03+\x03+\x03+\x05+\u0289\n" +
+ "+\x03,\x03,\x03,\x03,\x03,\x03,\x03,\x05,\u0292\n,\x03-\x03-\x03-\x03" +
+ "-\x03-\x03-\x03-\x03-\x03-\x05-\u029D\n-\x03.\x03.\x03.\x03.\x03.\x03" +
+ ".\x03.\x06.\u02A6\n.\r.\x0E.\u02A7\x03.\x03.\x03.\x05.\u02AD\n.\x03.\x03" +
+ ".\x03.\x05.\u02B2\n.\x03.\x03.\x03.\x05.\u02B7\n.\x03/\x03/\x03/\x03/" +
+ "\x07/\u02BD\n/\f/\x0E/\u02C0\v/\x03/\x03/\x03/\x030\x030\x030\x050\u02C8" +
+ "\n0\x031\x031\x031\x031\x051\u02CE\n1\x051\u02D0\n1\x032\x032\x032\x03" +
+ "2\x062\u02D6\n2\r2\x0E2\u02D7\x032\x032\x052\u02DC\n2\x033\x033\x033\x03" +
+ "3\x033\x033\x053\u02E4\n3\x033\x053\u02E7\n3\x034\x034\x054\u02EB\n4\x03" +
+ "5\x035\x055\u02EF\n5\x035\x035\x035\x036\x036\x056\u02F6\n6\x036\x036" +
+ "\x036\x037\x037\x037\x077\u02FE\n7\f7\x0E7\u0301\v7\x038\x038\x038\x07" +
+ "8\u0306\n8\f8\x0E8\u0309\v8\x039\x039\x039\x059\u030E\n9\x03:\x03:\x03" +
+ ":\x03:\x07:\u0314\n:\f:\x0E:\u0317\v:\x03;\x03;\x03;\x03;\x03;\x03;\x03" +
+ ";\x03;\x03;\x03;\x03;\x03;\x03;\x05;\u0326\n;\x03<\x03<\x03<\x03=\x03" +
+ "=\x03=\x07=\u032E\n=\f=\x0E=\u0331\v=\x03>\x03>\x03>\x07>\u0336\n>\f>" +
+ "\x0E>\u0339\v>\x03?\x03?\x03?\x07?\u033E\n?\f?\x0E?\u0341\v?\x03@\x03" +
+ "@\x03@\x07@\u0346\n@\f@\x0E@\u0349\v@\x03A\x03A\x03A\x07A\u034E\nA\fA" +
+ "\x0EA\u0351\vA\x03B\x03B\x03B\x07B\u0356\nB\fB\x0EB\u0359\vB\x03C\x03" +
+ "C\x03C\x05C\u035E\nC\x03D\x03D\x03D\x05D\u0363\nD\x03E\x05E\u0366\nE\x03" +
+ "E\x03E\x07E\u036A\nE\fE\x0EE\u036D\vE\x03F\x03F\x03F\x05F\u0372\nF\x03" +
+ "F\x03F\x03F\x05F\u0377\nF\x03F\x03F\x03F\x05F\u037C\nF\x03F\x03F\x03F" +
+ "\x03F\x06F\u0382\nF\rF\x0EF\u0383\x03F\x06F\u0387\nF\rF\x0EF\u0388\x03" +
+ "F\x03F\x03F\x03F\x05F\u038F\nF\x03G\x03G\x05G\u0393\nG\x03G\x03G\x03G" +
+ "\x03G\x05G\u0399\nG\x07G\u039B\nG\fG\x0EG\u039E\vG\x03G\x05G\u03A1\nG" +
+ "\x05G\u03A3\nG\x03H\x03H\x03H\x03H\x03H\x03H\x03H\x05H\u03AC\nH\x03I\x03" +
+ "I\x03I\x07I\u03B1\nI\fI\x0EI\u03B4\vI\x03I\x05I\u03B7\nI\x03J\x03J\x05" +
+ "J\u03BB\nJ\x03J\x03J\x05J\u03BF\nJ\x03J\x05J\u03C2\nJ\x05J\u03C4\nJ\x03" +
+ "K\x03K\x05K\u03C8\nK\x03L\x03L\x05L\u03CC\nL\x03L\x03L\x03L\x05L\u03D1" +
+ "\nL\x07L\u03D3\nL\fL\x0EL\u03D6\vL\x03L\x05L\u03D9\nL\x03M\x03M\x03M\x07" +
+ "M\u03DE\nM\fM\x0EM\u03E1\vM\x03M\x05M\u03E4\nM\x03N\x03N\x03N\x03N\x03" +
+ "N\x03N\x05N\u03EC\nN\x03N\x03N\x03N\x03N\x03N\x03N\x03N\x03N\x05N\u03F6" +
+ "\nN\x07N\u03F8\nN\fN\x0EN\u03FB\vN\x03N\x05N\u03FE\nN\x05N\u0400\nN\x03" +
+ "N\x03N\x05N\u0404\nN\x03N\x03N\x03N\x03N\x05N\u040A\nN\x07N\u040C\nN\f" +
+ "N\x0EN\u040F\vN\x03N\x05N\u0412\nN\x05N\u0414\nN\x05N\u0416\nN\x03O\x03" +
+ "O\x03O\x03O\x05O\u041C\nO\x03O\x05O\u041F\nO\x03O\x03O\x03O\x03P\x03P" +
+ "\x05P\u0426\nP\x03P\x03P\x03Q\x03Q\x03Q\x07Q\u042D\nQ\fQ\x0EQ\u0430\v" +
+ "Q\x03Q\x05Q\u0433\nQ\x03R\x03R\x05R\u0437\nR\x03R\x03R\x03R\x03R\x03R" +
+ "\x03R\x03R\x03R\x05R\u0441\nR\x03S\x03S\x05S\u0445\nS\x03T\x05T\u0448" +
+ "\nT\x03T\x03T\x03T\x03T\x03T\x05T\u044F\nT\x03U\x03U\x03U\x05U\u0454\n" +
+ "U\x03V\x03V\x03W\x03W\x05W\u045A\nW\x03X\x03X\x03X\x05X\u045F\nX\x03Y" +
+ "\x03Y\x07Y\u0463\nY\fY\x0EY\u0466\vY\x03Y\x03Y\x03Y\x07Y\u046B\nY\fY\x0E" +
+ "Y\u046E\vY\x03Y\x03Y\x03Y\x07Y\u0473\nY\fY\x0EY\u0476\vY\x03Y\x03Y\x03" +
+ "Y\x07Y\u047B\nY\fY\x0EY\u047E\vY\x03Y\x05Y\u0481\nY\x03Z\x03Z\x03Z\x03" +
+ "Z\x05Z\u0487\nZ\x03Z\x03Z\x05Z\u048B\nZ\x03[\x03[\x03[\x03[\x05[\u0491" +
+ "\n[\x03[\x03[\x05[\u0495\n[\x03[\x02\x02\x02\\\x02\x02\x04\x02\x06\x02" +
+ "\b\x02\n\x02\f\x02\x0E\x02\x10\x02\x12\x02\x14\x02\x16\x02\x18\x02\x1A" +
+ "\x02\x1C\x02\x1E\x02 \x02\"\x02$\x02&\x02(\x02*\x02,\x02.\x020\x022\x02" +
+ "4\x026\x028\x02:\x02<\x02>\x02@\x02B\x02D\x02F\x02H\x02J\x02L\x02N\x02" +
+ "P\x02R\x02T\x02V\x02X\x02Z\x02\\\x02^\x02`\x02b\x02d\x02f\x02h\x02j\x02" +
+ "l\x02n\x02p\x02r\x02t\x02v\x02x\x02z\x02|\x02~\x02\x80\x02\x82\x02\x84" +
+ "\x02\x86\x02\x88\x02\x8A\x02\x8C\x02\x8E\x02\x90\x02\x92\x02\x94\x02\x96" +
+ "\x02\x98\x02\x9A\x02\x9C\x02\x9E\x02\xA0\x02\xA2\x02\xA4\x02\xA6\x02\xA8" +
+ "\x02\xAA\x02\xAC\x02\xAE\x02\xB0\x02\xB2\x02\xB4\x02\x02\b\x03\x02\\h" +
+ "\x03\x029:\x03\x02HI\x03\x02JK\x05\x02;;LNZZ\x04\x02JKOO\x02\u051D\x02" +
+ "\xBA\x03\x02\x02\x02\x04\xC4\x03\x02\x02\x02\x06\xC6\x03\x02\x02\x02\b" +
+ "\xCF\x03\x02\x02\x02\n\xDB\x03\x02\x02\x02\f\xDF\x03\x02\x02\x02\x0E\xE5" +
+ "\x03\x02\x02\x02\x10\xE8\x03\x02\x02\x02\x12\xF2\x03\x02\x02\x02\x14\u0149" +
+ "\x03\x02\x02\x02\x16\u014B\x03\x02\x02\x02\x18\u01A1\x03\x02\x02\x02\x1A" +
+ "\u01A3\x03\x02\x02\x02\x1C\u01A7\x03\x02\x02\x02\x1E\u01A9\x03\x02\x02" +
+ "\x02 \u01BE\x03\x02\x02\x02\"\u01C0\x03\x02\x02\x02$\u01D3\x03\x02\x02" +
+ "\x02&\u01DB\x03\x02\x02\x02(\u01EA\x03\x02\x02\x02*\u01EC\x03\x02\x02" +
+ "\x02,\u01EF\x03\x02\x02\x02.\u01F6\x03\x02\x02\x020\u01F8\x03\x02\x02" +
+ "\x022\u01FA\x03\x02\x02\x024\u01FC\x03\x02\x02\x026\u0200\x03\x02\x02" +
+ "\x028\u0202\x03\x02\x02\x02:\u020C\x03\x02\x02\x02<\u020E\x03\x02\x02" +
+ "\x02>\u0211\x03\x02\x02\x02@\u0229\x03\x02\x02\x02B\u022E\x03\x02\x02" +
+ "\x02D\u0233\x03\x02\x02\x02F\u023E\x03\x02\x02\x02H\u0246\x03\x02\x02" +
+ "\x02J\u024E\x03\x02\x02\x02L\u0257\x03\x02\x02\x02N\u0260\x03\x02\x02" +
+ "\x02P\u026F\x03\x02\x02\x02R\u0271\x03\x02\x02\x02T\u0277\x03\x02\x02" +
+ "\x02V\u028A\x03\x02\x02\x02X\u0293\x03\x02\x02\x02Z\u029E\x03\x02\x02" +
+ "\x02\\\u02B8\x03\x02\x02\x02^\u02C4\x03\x02\x02\x02`\u02C9\x03\x02\x02" +
+ "\x02b\u02DB\x03\x02\x02\x02d\u02E6\x03\x02\x02\x02f\u02EA\x03\x02\x02" +
+ "\x02h\u02EC\x03\x02\x02\x02j\u02F3\x03\x02\x02\x02l\u02FA\x03\x02\x02" +
+ "\x02n\u0302\x03\x02\x02\x02p\u030D\x03\x02\x02\x02r\u030F\x03\x02\x02" +
+ "\x02t\u0325\x03\x02\x02\x02v\u0327\x03\x02\x02\x02x\u032A\x03\x02\x02" +
+ "\x02z\u0332\x03\x02\x02\x02|\u033A\x03\x02\x02\x02~\u0342\x03\x02\x02" +
+ "\x02\x80\u034A\x03\x02\x02\x02\x82\u0352\x03\x02\x02\x02\x84\u035D\x03" +
+ "\x02\x02\x02\x86\u035F\x03\x02\x02\x02\x88\u0365\x03\x02\x02\x02\x8A\u038E" +
+ "\x03\x02\x02\x02\x8C\u0392\x03\x02\x02\x02\x8E\u03AB\x03\x02\x02\x02\x90" +
+ "\u03AD\x03\x02\x02\x02\x92\u03C3\x03\x02\x02\x02\x94\u03C5\x03\x02\x02" +
+ "\x02\x96\u03CB\x03\x02\x02\x02\x98\u03DA\x03\x02\x02\x02\x9A\u0415\x03" +
+ "\x02\x02\x02\x9C\u0417\x03\x02\x02\x02\x9E\u0423\x03\x02\x02\x02\xA0\u0429" +
+ "\x03\x02\x02\x02\xA2\u0440\x03\x02\x02\x02\xA4\u0444\x03\x02\x02\x02\xA6" +
+ "\u0447\x03\x02\x02\x02\xA8\u0450\x03\x02\x02\x02\xAA\u0455\x03\x02\x02" +
+ "\x02\xAC\u0457\x03\x02\x02\x02\xAE\u045E\x03\x02\x02\x02\xB0\u0480\x03" +
+ "\x02\x02\x02\xB2\u048A\x03\x02\x02\x02\xB4\u0494\x03\x02\x02\x02\xB6\xB9" +
+ "\x07/\x02\x02\xB7\xB9\x05\x1C\x0F\x02\xB8\xB6\x03\x02\x02\x02\xB8\xB7" +
+ "\x03\x02\x02\x02\xB9\xBC\x03\x02\x02\x02\xBA\xB8\x03\x02\x02\x02\xBA\xBB" +
+ "\x03\x02\x02\x02\xBB\xBD\x03\x02\x02\x02\xBC\xBA\x03\x02\x02\x02\xBD\xBE" +
+ "\x07\x02\x02\x03\xBE\x03\x03\x02\x02\x02\xBF\xC5\x07/\x02\x02\xC0\xC5" +
+ "\x05\x1E\x10\x02\xC1\xC2\x05P)\x02\xC2\xC3\x07/\x02\x02\xC3\xC5\x03\x02" +
+ "\x02\x02\xC4\xBF\x03\x02\x02\x02\xC4\xC0\x03\x02\x02\x02\xC4\xC1\x03\x02" +
+ "\x02\x02\xC5\x05\x03\x02\x02\x02\xC6\xCA\x05\x98M\x02\xC7\xC9\x07/\x02" +
+ "\x02\xC8\xC7\x03\x02\x02\x02\xC9\xCC\x03\x02\x02\x02\xCA\xC8\x03\x02\x02" +
+ "\x02\xCA\xCB\x03\x02\x02\x02\xCB\xCD\x03\x02\x02\x02\xCC\xCA\x03\x02\x02" +
+ "\x02\xCD\xCE\x07\x02\x02\x03\xCE\x07\x03\x02\x02\x02\xCF\xD0\x07Z\x02" +
+ "\x02\xD0\xD6\x05H%\x02\xD1\xD3\x07<\x02\x02\xD2\xD4\x05\xA0Q\x02\xD3\xD2" +
+ "\x03\x02\x02\x02\xD3\xD4\x03\x02\x02\x02\xD4\xD5\x03\x02\x02\x02\xD5\xD7" +
+ "\x07=\x02\x02\xD6\xD1\x03\x02\x02\x02\xD6\xD7\x03\x02\x02\x02\xD7\xD8" +
+ "\x03\x02\x02\x02\xD8\xD9\x07/\x02\x02\xD9\t\x03\x02\x02\x02\xDA\xDC\x05" +
+ "\b\x05\x02\xDB\xDA\x03\x02\x02\x02\xDC\xDD\x03\x02\x02\x02\xDD\xDB\x03" +
+ "\x02\x02\x02\xDD\xDE\x03\x02\x02\x02\xDE\v\x03\x02\x02\x02\xDF\xE3\x05" +
+ "\n\x06\x02\xE0\xE4\x05\x9CO\x02\xE1\xE4\x05\x10\t\x02\xE2\xE4\x05\x0E" +
+ "\b\x02\xE3\xE0\x03\x02\x02\x02\xE3\xE1\x03\x02\x02\x02\xE3\xE2\x03\x02" +
+ "\x02\x02\xE4\r\x03\x02\x02\x02\xE5\xE6\x07-\x02\x02\xE6\xE7\x05\x10\t" +
+ "\x02\xE7\x0F\x03\x02\x02\x02\xE8\xE9\x07\f\x02\x02\xE9\xEA\x070\x02\x02" +
+ "\xEA\xED\x05\x12\n\x02\xEB\xEC\x07[\x02\x02\xEC\xEE\x05d3\x02\xED\xEB" +
+ "\x03\x02\x02\x02\xED\xEE\x03\x02\x02\x02\xEE\xEF\x03\x02\x02\x02\xEF\xF0" +
+ "\x07?\x02\x02\xF0\xF1\x05b2\x02\xF1\x11\x03\x02\x02\x02\xF2\xF4\x07<\x02" +
+ "\x02\xF3\xF5\x05\x14\v\x02\xF4\xF3\x03\x02\x02\x02\xF4\xF5\x03\x02\x02" +
+ "\x02\xF5\xF6\x03\x02\x02\x02\xF6\xF7\x07=\x02\x02\xF7\x13\x03\x02\x02" +
+ "\x02\xF8\xFB\x05\x16\f\x02\xF9\xFA\x07B\x02\x02\xFA\xFC\x05d3\x02\xFB" +
+ "\xF9\x03\x02\x02\x02\xFB\xFC\x03\x02\x02\x02\xFC\u0105\x03\x02\x02\x02" +
+ "\xFD\xFE\x07>\x02\x02\xFE\u0101\x05\x16\f\x02\xFF\u0100\x07B\x02\x02\u0100" +
+ "\u0102\x05d3\x02\u0101\xFF\x03\x02\x02\x02\u0101\u0102\x03\x02\x02\x02" +
+ "\u0102\u0104\x03\x02\x02\x02\u0103\xFD\x03\x02\x02\x02\u0104\u0107\x03" +
+ "\x02\x02\x02\u0105\u0103\x03\x02\x02\x02\u0105\u0106\x03\x02\x02\x02\u0106" +
+ "\u0129\x03\x02\x02\x02\u0107\u0105\x03\x02\x02\x02\u0108\u0127\x07>\x02" +
+ "\x02\u0109\u010B\x07;\x02\x02\u010A\u010C\x05\x16\f\x02\u010B\u010A\x03" +
+ "\x02\x02\x02\u010B\u010C\x03\x02\x02\x02\u010C\u0115\x03\x02\x02\x02\u010D" +
+ "\u010E\x07>\x02\x02\u010E\u0111\x05\x16\f\x02\u010F\u0110\x07B\x02\x02" +
+ "\u0110\u0112\x05d3\x02\u0111\u010F\x03\x02\x02\x02\u0111\u0112\x03\x02" +
+ "\x02\x02\u0112\u0114\x03\x02\x02\x02\u0113\u010D\x03\x02\x02\x02\u0114" +
+ "\u0117\x03\x02\x02\x02\u0115\u0113\x03\x02\x02\x02\u0115\u0116\x03\x02" +
+ "\x02\x02\u0116\u0120\x03\x02\x02\x02\u0117\u0115\x03\x02\x02\x02\u0118" +
+ "\u011E\x07>\x02\x02\u0119\u011A\x07A\x02\x02\u011A\u011C\x05\x16\f\x02" +
+ "\u011B\u011D\x07>\x02\x02\u011C\u011B\x03\x02\x02\x02\u011C\u011D\x03" +
+ "\x02\x02\x02\u011D\u011F\x03\x02\x02\x02\u011E\u0119\x03\x02\x02\x02\u011E" +
+ "\u011F\x03\x02\x02\x02\u011F\u0121\x03\x02\x02\x02\u0120\u0118\x03\x02" +
+ "\x02\x02\u0120\u0121\x03\x02\x02\x02\u0121\u0128\x03\x02\x02\x02\u0122" +
+ "\u0123\x07A\x02\x02\u0123\u0125\x05\x16\f\x02\u0124\u0126\x07>\x02\x02" +
+ "\u0125\u0124\x03\x02\x02\x02\u0125\u0126\x03\x02\x02\x02\u0126\u0128\x03" +
+ "\x02\x02\x02\u0127\u0109\x03\x02\x02\x02\u0127\u0122\x03\x02\x02\x02\u0127" +
+ "\u0128\x03\x02\x02\x02\u0128\u012A\x03\x02\x02\x02\u0129\u0108\x03\x02" +
+ "\x02\x02\u0129\u012A\x03\x02\x02\x02\u012A\u014A\x03\x02\x02\x02\u012B" +
+ "\u012D\x07;\x02\x02\u012C\u012E\x05\x16\f\x02\u012D\u012C\x03\x02\x02" +
+ "\x02\u012D\u012E\x03\x02\x02\x02\u012E\u0137\x03\x02\x02\x02\u012F\u0130" +
+ "\x07>\x02\x02\u0130\u0133\x05\x16\f\x02\u0131\u0132\x07B\x02\x02\u0132" +
+ "\u0134\x05d3\x02\u0133\u0131\x03\x02\x02\x02\u0133\u0134\x03\x02\x02\x02" +
+ "\u0134\u0136\x03\x02\x02\x02\u0135\u012F\x03\x02\x02\x02\u0136\u0139\x03" +
+ "\x02\x02\x02\u0137\u0135\x03\x02\x02\x02\u0137\u0138\x03\x02\x02\x02\u0138" +
+ "\u0142\x03\x02\x02\x02\u0139\u0137\x03\x02\x02\x02\u013A\u0140\x07>\x02" +
+ "\x02\u013B\u013C\x07A\x02\x02\u013C\u013E\x05\x16\f\x02\u013D\u013F\x07" +
+ ">\x02\x02\u013E\u013D\x03\x02\x02\x02\u013E\u013F\x03\x02\x02\x02\u013F" +
+ "\u0141\x03\x02\x02\x02\u0140\u013B\x03\x02\x02\x02\u0140\u0141\x03\x02" +
+ "\x02\x02\u0141\u0143\x03\x02\x02\x02\u0142\u013A\x03\x02\x02\x02\u0142" +
+ "\u0143\x03\x02\x02\x02\u0143\u014A\x03\x02\x02\x02\u0144\u0145\x07A\x02" +
+ "\x02\u0145\u0147\x05\x16\f\x02\u0146\u0148\x07>\x02\x02\u0147\u0146\x03" +
+ "\x02\x02\x02\u0147\u0148\x03\x02\x02\x02\u0148\u014A\x03\x02\x02\x02\u0149" +
+ "\xF8\x03\x02\x02\x02\u0149\u012B\x03\x02\x02\x02\u0149\u0144\x03\x02\x02" +
+ "\x02\u014A\x15\x03\x02\x02\x02\u014B\u014E\x070\x02\x02\u014C\u014D\x07" +
+ "?\x02\x02\u014D\u014F\x05d3\x02\u014E\u014C\x03\x02\x02\x02\u014E\u014F" +
+ "\x03\x02\x02\x02\u014F\x17\x03\x02\x02\x02\u0150\u0153\x05\x1A\x0E\x02" +
+ "\u0151\u0152\x07B\x02\x02\u0152\u0154\x05d3\x02\u0153\u0151\x03\x02\x02" +
+ "\x02\u0153\u0154\x03\x02\x02\x02\u0154\u015D\x03\x02\x02\x02\u0155\u0156" +
+ "\x07>\x02\x02\u0156\u0159\x05\x1A\x0E\x02\u0157\u0158\x07B\x02\x02\u0158" +
+ "\u015A\x05d3\x02\u0159\u0157\x03\x02\x02\x02\u0159\u015A\x03\x02\x02\x02" +
+ "\u015A\u015C\x03\x02\x02\x02\u015B\u0155\x03\x02\x02\x02\u015C\u015F\x03" +
+ "\x02\x02\x02\u015D\u015B\x03\x02\x02\x02\u015D\u015E\x03\x02\x02\x02\u015E" +
+ "\u0181\x03\x02\x02\x02\u015F\u015D\x03\x02\x02\x02\u0160\u017F\x07>\x02" +
+ "\x02\u0161\u0163\x07;\x02\x02\u0162\u0164\x05\x1A\x0E\x02\u0163\u0162" +
+ "\x03\x02\x02\x02\u0163\u0164\x03\x02\x02\x02\u0164\u016D\x03\x02\x02\x02" +
+ "\u0165\u0166\x07>\x02\x02\u0166\u0169\x05\x1A\x0E\x02\u0167\u0168\x07" +
+ "B\x02\x02\u0168\u016A\x05d3\x02\u0169\u0167\x03\x02\x02\x02\u0169\u016A" +
+ "\x03\x02\x02\x02\u016A\u016C\x03\x02\x02\x02\u016B\u0165\x03\x02\x02\x02" +
+ "\u016C\u016F\x03\x02\x02\x02\u016D\u016B\x03\x02\x02\x02\u016D\u016E\x03" +
+ "\x02\x02\x02\u016E\u0178\x03\x02\x02\x02\u016F\u016D\x03\x02\x02\x02\u0170" +
+ "\u0176\x07>\x02\x02\u0171\u0172\x07A\x02\x02\u0172\u0174\x05\x1A\x0E\x02" +
+ "\u0173\u0175\x07>\x02\x02\u0174\u0173\x03\x02\x02\x02\u0174\u0175\x03" +
+ "\x02\x02\x02\u0175\u0177\x03\x02\x02\x02\u0176\u0171\x03\x02\x02\x02\u0176" +
+ "\u0177\x03\x02\x02\x02\u0177\u0179\x03\x02\x02\x02\u0178\u0170\x03\x02" +
+ "\x02\x02\u0178\u0179\x03\x02\x02\x02\u0179\u0180\x03\x02\x02\x02\u017A" +
+ "\u017B\x07A\x02\x02\u017B\u017D\x05\x1A\x0E\x02\u017C\u017E\x07>\x02\x02" +
+ "\u017D\u017C\x03\x02\x02\x02\u017D\u017E\x03\x02\x02\x02\u017E\u0180\x03" +
+ "\x02\x02\x02\u017F\u0161\x03\x02\x02\x02\u017F\u017A\x03\x02\x02\x02\u017F" +
+ "\u0180\x03\x02\x02\x02\u0180\u0182\x03\x02\x02\x02\u0181\u0160\x03\x02" +
+ "\x02\x02\u0181\u0182\x03\x02\x02\x02\u0182\u01A2\x03\x02\x02\x02\u0183" +
+ "\u0185\x07;\x02\x02\u0184\u0186\x05\x1A\x0E\x02\u0185\u0184\x03\x02\x02" +
+ "\x02\u0185\u0186\x03\x02\x02\x02\u0186\u018F\x03\x02\x02\x02\u0187\u0188" +
+ "\x07>\x02\x02\u0188\u018B\x05\x1A\x0E\x02\u0189\u018A\x07B\x02\x02\u018A" +
+ "\u018C\x05d3\x02\u018B\u0189\x03\x02\x02\x02\u018B\u018C\x03\x02\x02\x02" +
+ "\u018C\u018E\x03\x02\x02\x02\u018D\u0187\x03\x02\x02\x02\u018E\u0191\x03" +
+ "\x02\x02\x02\u018F\u018D\x03\x02\x02\x02\u018F\u0190\x03\x02\x02\x02\u0190" +
+ "\u019A\x03\x02\x02\x02\u0191\u018F\x03\x02\x02\x02\u0192\u0198\x07>\x02" +
+ "\x02\u0193\u0194\x07A\x02\x02\u0194\u0196\x05\x1A\x0E\x02\u0195\u0197" +
+ "\x07>\x02\x02\u0196\u0195\x03\x02\x02\x02\u0196\u0197\x03\x02\x02\x02" +
+ "\u0197";
private static readonly _serializedATNSegment1: string =
- "\x02\u0197\u0199\x03\x02\x02\x02\u0198\u0190\x03\x02\x02\x02\u0198\u0199" +
- "\x03\x02\x02\x02\u0199\u01A0\x03\x02\x02\x02\u019A\u019B\x07A\x02\x02" +
- "\u019B\u019D\x05\x1A\x0E\x02\u019C\u019E\x07>\x02\x02\u019D\u019C\x03" +
- "\x02\x02\x02\u019D\u019E\x03\x02\x02\x02\u019E\u01A0\x03\x02\x02\x02\u019F" +
- "\u014E\x03\x02\x02\x02\u019F\u0181\x03\x02\x02\x02\u019F\u019A\x03\x02" +
- "\x02\x02\u01A0\x19\x03\x02\x02\x02\u01A1\u01A2\x070\x02\x02\u01A2\x1B" +
- "\x03\x02\x02\x02\u01A3\u01A6\x05\x1E\x10\x02\u01A4\u01A6\x05P)\x02\u01A5" +
- "\u01A3\x03\x02\x02\x02\u01A5\u01A4\x03\x02\x02\x02\u01A6\x1D\x03\x02\x02" +
- "\x02\u01A7\u01AC\x05 \x11\x02\u01A8\u01A9\x07@\x02\x02\u01A9\u01AB\x05" +
- " \x11\x02\u01AA\u01A8\x03\x02\x02\x02\u01AB\u01AE\x03\x02\x02\x02\u01AC" +
- "\u01AA\x03\x02\x02\x02\u01AC\u01AD\x03\x02\x02\x02\u01AD\u01B0\x03\x02" +
- "\x02\x02\u01AE\u01AC\x03\x02\x02\x02\u01AF\u01B1\x07@\x02\x02\u01B0\u01AF" +
- "\x03\x02\x02\x02\u01B0\u01B1\x03\x02\x02\x02\u01B1\u01B2\x03\x02\x02\x02" +
- "\u01B2\u01B3\x07/\x02\x02\u01B3\x1F\x03\x02\x02\x02\u01B4\u01BD\x05\"" +
- "\x12\x02\u01B5\u01BD\x05*\x16\x02\u01B6\u01BD\x05,\x17\x02\u01B7\u01BD" +
- "\x05.\x18\x02\u01B8\u01BD\x05:\x1E\x02\u01B9\u01BD\x05J&\x02\u01BA\u01BD" +
- "\x05L\'\x02\u01BB\u01BD\x05N(\x02\u01BC\u01B4\x03\x02\x02\x02\u01BC\u01B5" +
- "\x03\x02\x02\x02\u01BC\u01B6\x03\x02\x02\x02\u01BC\u01B7\x03\x02\x02\x02" +
- "\u01BC\u01B8\x03\x02\x02\x02\u01BC\u01B9\x03\x02\x02\x02\u01BC\u01BA\x03" +
- "\x02\x02\x02\u01BC\u01BB\x03\x02\x02\x02\u01BD!\x03\x02\x02\x02\u01BE" +
- "\u01CF\x05&\x14\x02\u01BF\u01D0\x05$\x13\x02\u01C0\u01C3\x05(\x15\x02" +
- "\u01C1\u01C4\x05\xAAV\x02\u01C2\u01C4\x05\x98M\x02\u01C3\u01C1\x03\x02" +
- "\x02\x02\u01C3\u01C2\x03\x02\x02\x02\u01C4\u01D0\x03\x02\x02\x02\u01C5" +
- "\u01C8\x07B\x02\x02\u01C6\u01C9\x05\xAAV\x02\u01C7\u01C9\x05&\x14\x02" +
- "\u01C8\u01C6\x03\x02\x02\x02\u01C8\u01C7\x03\x02\x02\x02\u01C9\u01CB\x03" +
- "\x02\x02\x02\u01CA\u01C5\x03\x02\x02\x02\u01CB\u01CE\x03\x02\x02\x02\u01CC" +
- "\u01CA\x03\x02\x02\x02\u01CC\u01CD\x03\x02\x02\x02\u01CD\u01D0\x03\x02" +
- "\x02\x02\u01CE\u01CC\x03\x02\x02\x02\u01CF\u01BF\x03\x02\x02\x02\u01CF" +
- "\u01C0\x03\x02\x02\x02\u01CF\u01CC\x03\x02\x02\x02\u01D0#\x03\x02\x02" +
- "\x02\u01D1\u01D2\x07?\x02\x02\u01D2\u01D5\x05d3\x02\u01D3\u01D4\x07B\x02" +
- "\x02\u01D4\u01D6\x05d3\x02\u01D5\u01D3\x03\x02\x02\x02\u01D5\u01D6\x03" +
- "\x02\x02\x02\u01D6%\x03\x02\x02\x02\u01D7\u01DA\x05d3\x02\u01D8\u01DA" +
- "\x05v<\x02\u01D9\u01D7\x03\x02\x02\x02\u01D9\u01D8\x03\x02\x02\x02\u01DA" +
- "\u01E2\x03\x02\x02\x02\u01DB\u01DE\x07>\x02\x02\u01DC\u01DF\x05d3\x02" +
- "\u01DD\u01DF\x05v<\x02\u01DE\u01DC\x03\x02\x02\x02\u01DE\u01DD\x03\x02" +
- "\x02\x02\u01DF\u01E1\x03\x02\x02\x02\u01E0\u01DB\x03\x02\x02\x02\u01E1" +
- "\u01E4\x03\x02\x02\x02\u01E2\u01E0\x03\x02\x02\x02\u01E2\u01E3\x03\x02" +
- "\x02\x02\u01E3\u01E6\x03\x02\x02\x02\u01E4\u01E2\x03\x02\x02\x02\u01E5" +
- "\u01E7\x07>\x02\x02\u01E6\u01E5\x03\x02\x02\x02\u01E6\u01E7\x03\x02\x02" +
- "\x02\u01E7\'\x03\x02\x02\x02\u01E8\u01E9\t\x02\x02\x02\u01E9)\x03\x02" +
- "\x02\x02\u01EA\u01EB\x07)\x02\x02\u01EB\u01EC\x05\x96L\x02\u01EC+\x03" +
- "\x02\x02\x02\u01ED\u01EE\x07*\x02\x02\u01EE-\x03\x02\x02\x02\u01EF\u01F5" +
- "\x050\x19\x02\u01F0\u01F5\x052\x1A\x02\u01F1\u01F5\x054\x1B\x02\u01F2" +
- "\u01F5\x058\x1D\x02\u01F3\u01F5\x056\x1C\x02\u01F4\u01EF\x03\x02\x02\x02" +
- "\u01F4\u01F0\x03\x02\x02\x02\u01F4\u01F1\x03\x02\x02\x02\u01F4\u01F2\x03" +
- "\x02\x02\x02\u01F4\u01F3\x03\x02\x02\x02\u01F5/\x03\x02\x02\x02\u01F6" +
- "\u01F7\x07,\x02\x02\u01F71\x03\x02\x02\x02\u01F8\u01F9\x07+\x02\x02\u01F9" +
- "3\x03\x02\x02\x02\u01FA\u01FC\x07\r\x02\x02\u01FB\u01FD\x05\x98M\x02\u01FC" +
- "\u01FB\x03\x02\x02\x02\u01FC\u01FD\x03\x02\x02\x02\u01FD5\x03\x02\x02" +
- "\x02\u01FE\u01FF\x05\xAAV\x02\u01FF7\x03\x02\x02\x02\u0200\u0206\x07\x0E" +
- "\x02\x02\u0201\u0204\x05d3\x02\u0202\u0203\x07\x0F\x02\x02\u0203\u0205" +
- "\x05d3\x02\u0204\u0202\x03\x02\x02\x02\u0204\u0205\x03\x02\x02\x02\u0205" +
- "\u0207\x03\x02\x02\x02\u0206\u0201\x03\x02\x02\x02\u0206\u0207\x03\x02" +
- "\x02\x02\u02079\x03\x02\x02\x02\u0208\u020B\x05<\x1F\x02\u0209\u020B\x05" +
- "> \x02\u020A\u0208\x03\x02\x02\x02\u020A\u0209\x03\x02\x02\x02\u020B;" +
- "\x03\x02\x02\x02\u020C\u020D\x07\x10\x02\x02\u020D\u020E\x05F$\x02\u020E" +
- "=\x03\x02\x02\x02\u020F\u021C\x07\x0F\x02\x02\u0210\u0212\t\x03\x02\x02" +
- "\u0211\u0210\x03\x02\x02\x02\u0212\u0215\x03\x02\x02\x02\u0213\u0211\x03" +
- "\x02\x02\x02\u0213\u0214\x03\x02\x02\x02\u0214\u0216\x03\x02\x02\x02\u0215" +
- "\u0213\x03\x02\x02\x02\u0216\u021D\x05H%\x02\u0217\u0219\t\x03\x02\x02" +
- "\u0218\u0217\x03\x02\x02\x02\u0219\u021A\x03\x02\x02\x02\u021A\u0218\x03" +
- "\x02\x02\x02\u021A\u021B\x03\x02\x02\x02\u021B\u021D\x03\x02\x02\x02\u021C" +
- "\u0213\x03\x02\x02\x02\u021C\u0218\x03\x02\x02\x02\u021D\u021E\x03\x02" +
- "\x02\x02\u021E\u0225\x07\x10\x02\x02\u021F\u0226\x07;\x02\x02\u0220\u0221" +
- "\x07<\x02\x02\u0221\u0222\x05D#\x02\u0222\u0223\x07=\x02\x02\u0223\u0226" +
- "\x03\x02\x02\x02\u0224\u0226\x05D#\x02\u0225\u021F\x03\x02\x02\x02\u0225" +
- "\u0220\x03\x02\x02\x02\u0225\u0224\x03\x02\x02\x02\u0226?\x03\x02\x02" +
- "\x02\u0227\u022A\x070\x02\x02\u0228\u0229\x07\x11\x02\x02\u0229\u022B" +
- "\x070\x02\x02\u022A\u0228\x03\x02\x02\x02\u022A\u022B\x03\x02\x02\x02" +
- "\u022BA\x03\x02\x02\x02\u022C\u022F\x05H%\x02\u022D\u022E\x07\x11\x02" +
- "\x02\u022E\u0230\x070\x02\x02\u022F\u022D\x03\x02\x02\x02\u022F\u0230" +
- "\x03\x02\x02\x02\u0230C\x03\x02\x02\x02\u0231\u0236\x05@!\x02\u0232\u0233" +
- "\x07>\x02\x02\u0233\u0235\x05@!\x02\u0234\u0232\x03\x02\x02\x02\u0235" +
- "\u0238\x03\x02\x02\x02\u0236\u0234\x03\x02\x02\x02\u0236\u0237\x03\x02" +
- "\x02\x02\u0237\u023A\x03\x02\x02\x02\u0238\u0236\x03\x02\x02\x02\u0239" +
- "\u023B\x07>\x02\x02\u023A\u0239\x03\x02\x02\x02\u023A\u023B\x03\x02\x02" +
- "\x02\u023BE\x03\x02\x02\x02\u023C\u0241\x05B\"\x02\u023D\u023E\x07>\x02" +
- "\x02\u023E\u0240\x05B\"\x02\u023F\u023D\x03\x02\x02\x02\u0240\u0243\x03" +
- "\x02\x02\x02\u0241\u023F\x03\x02\x02\x02\u0241\u0242\x03\x02\x02\x02\u0242" +
- "G\x03\x02\x02\x02\u0243\u0241\x03\x02\x02\x02\u0244\u0249\x070\x02\x02" +
- "\u0245\u0246\x079\x02\x02\u0246\u0248\x070\x02\x02\u0247\u0245\x03\x02" +
- "\x02\x02\u0248\u024B\x03\x02\x02\x02\u0249\u0247\x03\x02\x02\x02\u0249" +
- "\u024A\x03\x02\x02\x02\u024AI\x03\x02\x02\x02\u024B\u0249\x03\x02\x02" +
- "\x02\u024C\u024D\x07\x12\x02\x02\u024D\u0252\x070\x02\x02\u024E\u024F" +
- "\x07>\x02\x02\u024F\u0251\x070\x02\x02\u0250\u024E\x03\x02\x02\x02\u0251" +
- "\u0254\x03\x02\x02\x02\u0252\u0250\x03\x02\x02\x02\u0252\u0253\x03\x02" +
- "\x02\x02\u0253K\x03\x02\x02\x02\u0254\u0252\x03\x02\x02\x02\u0255\u0256" +
- "\x07\x13\x02\x02\u0256\u025B\x070\x02\x02\u0257\u0258\x07>\x02\x02\u0258" +
- "\u025A\x070\x02\x02\u0259\u0257\x03\x02\x02\x02\u025A\u025D\x03\x02\x02" +
- "\x02\u025B\u0259\x03\x02\x02\x02\u025B\u025C\x03\x02\x02\x02\u025CM\x03" +
- "\x02\x02\x02\u025D\u025B\x03\x02\x02\x02\u025E\u025F\x07\x14\x02\x02\u025F" +
- "\u0262\x05d3\x02\u0260\u0261\x07>\x02\x02\u0261\u0263\x05d3\x02\u0262" +
- "\u0260\x03\x02\x02\x02\u0262\u0263\x03\x02\x02\x02\u0263O\x03\x02\x02" +
- "\x02\u0264\u026E\x05T+\x02\u0265\u026E\x05V,\x02\u0266\u026E\x05X-\x02" +
- "\u0267\u026E\x05Z.\x02\u0268\u026E\x05\\/\x02\u0269\u026E\x05\x10\t\x02" +
- "\u026A\u026E\x05\x9CO\x02\u026B\u026E\x05\f\x07\x02\u026C\u026E\x05R*" +
- "\x02\u026D\u0264\x03\x02\x02\x02\u026D\u0265\x03\x02\x02\x02\u026D\u0266" +
- "\x03\x02\x02\x02\u026D\u0267\x03\x02\x02\x02\u026D\u0268\x03\x02\x02\x02" +
- "\u026D\u0269\x03\x02\x02\x02\u026D\u026A\x03\x02\x02\x02\u026D\u026B\x03" +
- "\x02\x02\x02\u026D\u026C\x03\x02\x02\x02\u026EQ\x03\x02\x02\x02\u026F" +
- "\u0273\x07-\x02\x02\u0270\u0274\x05\x10\t\x02\u0271\u0274\x05\\/\x02\u0272" +
- "\u0274\x05X-\x02\u0273\u0270\x03\x02\x02\x02\u0273\u0271\x03\x02\x02\x02" +
- "\u0273\u0272\x03\x02\x02\x02\u0274S\x03\x02\x02\x02\u0275\u0276\x07\x15" +
- "\x02\x02\u0276\u0277\x05d3\x02\u0277\u0278\x07?\x02\x02\u0278\u0280\x05" +
- "b2\x02\u0279\u027A\x07\x16\x02\x02\u027A\u027B\x05d3\x02\u027B\u027C\x07" +
- "?\x02\x02\u027C\u027D\x05b2\x02\u027D\u027F\x03\x02\x02\x02\u027E\u0279" +
- "\x03\x02\x02\x02\u027F\u0282\x03\x02\x02\x02\u0280\u027E\x03\x02\x02\x02" +
- "\u0280\u0281\x03\x02\x02\x02\u0281\u0286\x03\x02\x02\x02\u0282\u0280\x03" +
- "\x02\x02\x02\u0283\u0284\x07\x17\x02\x02\u0284\u0285\x07?\x02\x02\u0285" +
- "\u0287\x05b2\x02\u0286\u0283\x03\x02\x02\x02\u0286\u0287\x03\x02\x02\x02" +
- "\u0287U\x03\x02\x02\x02\u0288\u0289\x07\x18\x02\x02\u0289\u028A\x05d3" +
- "\x02\u028A\u028B\x07?\x02\x02\u028B\u028F\x05b2\x02\u028C\u028D\x07\x17" +
- "\x02\x02\u028D\u028E\x07?\x02\x02\u028E\u0290\x05b2\x02\u028F\u028C\x03" +
- "\x02\x02\x02\u028F\u0290\x03\x02\x02\x02\u0290W\x03\x02\x02\x02\u0291" +
- "\u0292\x07\x19\x02\x02\u0292\u0293\x05\x96L\x02\u0293\u0294\x07\x1A\x02" +
- "\x02\u0294\u0295\x05\x98M\x02\u0295\u0296\x07?\x02\x02\u0296\u029A\x05" +
- "b2\x02\u0297\u0298\x07\x17\x02\x02\u0298\u0299\x07?\x02\x02\u0299\u029B" +
- "\x05b2\x02\u029A\u0297\x03\x02\x02\x02\u029A\u029B\x03\x02\x02\x02\u029B" +
- "Y\x03\x02\x02\x02\u029C\u029D\x07\x1B\x02\x02\u029D\u029E\x07?\x02\x02" +
- "\u029E\u02B4\x05b2\x02\u029F\u02A0\x05`1\x02\u02A0\u02A1\x07?\x02\x02" +
- "\u02A1\u02A2\x05b2\x02\u02A2\u02A4\x03\x02\x02\x02\u02A3\u029F\x03\x02" +
- "\x02\x02\u02A4\u02A5\x03\x02\x02\x02\u02A5\u02A3\x03\x02\x02\x02\u02A5" +
- "\u02A6\x03\x02\x02\x02\u02A6\u02AA\x03\x02\x02\x02\u02A7\u02A8\x07\x17" +
- "\x02\x02\u02A8\u02A9\x07?\x02\x02\u02A9\u02AB\x05b2\x02\u02AA\u02A7\x03" +
- "\x02\x02\x02\u02AA\u02AB\x03\x02\x02\x02\u02AB\u02AF\x03\x02\x02\x02\u02AC" +
- "\u02AD\x07\x1C\x02\x02\u02AD\u02AE\x07?\x02\x02\u02AE\u02B0\x05b2\x02" +
- "\u02AF\u02AC\x03\x02\x02\x02\u02AF\u02B0\x03\x02\x02\x02\u02B0\u02B5\x03" +
- "\x02\x02\x02\u02B1\u02B2\x07\x1C\x02\x02\u02B2\u02B3\x07?\x02\x02\u02B3" +
- "\u02B5\x05b2\x02\u02B4\u02A3\x03\x02\x02\x02\u02B4\u02B1\x03\x02\x02\x02" +
- "\u02B5[\x03\x02\x02\x02\u02B6\u02B7\x07\x1D\x02\x02\u02B7\u02BC\x05^0" +
- "\x02\u02B8\u02B9\x07>\x02\x02\u02B9\u02BB\x05^0\x02\u02BA\u02B8\x03\x02" +
- "\x02\x02\u02BB\u02BE\x03\x02\x02\x02\u02BC\u02BA\x03\x02\x02\x02\u02BC" +
- "\u02BD\x03\x02\x02\x02\u02BD\u02BF\x03\x02\x02\x02\u02BE\u02BC\x03\x02" +
- "\x02\x02\u02BF\u02C0\x07?\x02\x02\u02C0\u02C1\x05b2\x02\u02C1]\x03\x02" +
- "\x02\x02\u02C2\u02C5\x05d3\x02\u02C3\u02C4\x07\x11\x02\x02\u02C4\u02C6" +
- "\x05x=\x02\u02C5\u02C3\x03\x02\x02\x02\u02C5\u02C6\x03\x02\x02\x02\u02C6" +
- "_\x03\x02\x02\x02\u02C7\u02CD\x07\x1E\x02\x02\u02C8\u02CB\x05d3\x02\u02C9" +
- "\u02CA\x07\x11\x02\x02\u02CA\u02CC\x070\x02\x02\u02CB\u02C9\x03\x02\x02" +
- "\x02\u02CB\u02CC\x03\x02\x02\x02\u02CC\u02CE\x03\x02\x02\x02\u02CD\u02C8" +
- "\x03\x02\x02\x02\u02CD\u02CE\x03\x02\x02\x02\u02CEa\x03\x02\x02\x02\u02CF" +
- "\u02DA\x05\x1E\x10\x02\u02D0\u02D1\x07/\x02\x02\u02D1\u02D3\x07\x03\x02" +
- "\x02\u02D2\u02D4\x05\x1C\x0F\x02\u02D3\u02D2\x03\x02\x02\x02\u02D4\u02D5" +
- "\x03\x02\x02\x02\u02D5\u02D3\x03\x02\x02\x02\u02D5\u02D6\x03\x02\x02\x02" +
- "\u02D6\u02D7\x03\x02\x02\x02\u02D7\u02D8\x07\x04\x02\x02\u02D8\u02DA\x03" +
- "\x02\x02\x02\u02D9\u02CF\x03\x02\x02\x02\u02D9\u02D0\x03\x02\x02\x02\u02DA" +
- "c\x03\x02\x02\x02\u02DB\u02E1\x05l7\x02\u02DC\u02DD\x07\x15\x02\x02\u02DD" +
- "\u02DE\x05l7\x02\u02DE\u02DF\x07\x17\x02\x02\u02DF\u02E0\x05d3\x02\u02E0" +
- "\u02E2\x03\x02\x02\x02\u02E1\u02DC\x03\x02\x02\x02\u02E1\u02E2\x03\x02" +
- "\x02\x02\u02E2\u02E5\x03\x02\x02\x02\u02E3\u02E5\x05h5\x02\u02E4\u02DB" +
- "\x03\x02\x02\x02\u02E4\u02E3\x03\x02\x02\x02\u02E5e\x03\x02\x02\x02\u02E6" +
- "\u02E9\x05l7\x02\u02E7\u02E9\x05j6\x02\u02E8\u02E6\x03\x02\x02\x02\u02E8" +
- "\u02E7\x03\x02\x02\x02\u02E9g\x03\x02\x02\x02\u02EA\u02EC\x07\x1F\x02" +
- "\x02\u02EB\u02ED\x05\x18\r\x02\u02EC\u02EB\x03\x02\x02\x02\u02EC\u02ED" +
- "\x03\x02\x02\x02\u02ED\u02EE\x03\x02\x02\x02\u02EE\u02EF\x07?\x02\x02" +
- "\u02EF\u02F0\x05d3\x02\u02F0i\x03\x02\x02\x02\u02F1\u02F3\x07\x1F\x02" +
- "\x02\u02F2\u02F4\x05\x18\r\x02\u02F3\u02F2\x03\x02\x02\x02\u02F3\u02F4" +
- "\x03\x02\x02\x02\u02F4\u02F5\x03\x02\x02\x02\u02F5\u02F6\x07?\x02\x02" +
- "\u02F6\u02F7\x05f4\x02\u02F7k\x03\x02\x02\x02\u02F8\u02FD\x05n8\x02\u02F9" +
- "\u02FA\x07 \x02\x02\u02FA\u02FC\x05n8\x02\u02FB\u02F9\x03\x02\x02\x02" +
- "\u02FC\u02FF\x03\x02\x02\x02\u02FD\u02FB\x03\x02\x02\x02\u02FD\u02FE\x03" +
- "\x02\x02\x02\u02FEm\x03\x02\x02\x02\u02FF\u02FD\x03\x02\x02\x02\u0300" +
- "\u0305\x05p9\x02\u0301\u0302\x07!\x02\x02\u0302\u0304\x05p9\x02\u0303" +
- "\u0301\x03\x02\x02\x02\u0304\u0307\x03\x02\x02\x02\u0305\u0303\x03\x02" +
- "\x02\x02\u0305\u0306\x03\x02\x02\x02\u0306o\x03\x02\x02\x02\u0307\u0305" +
- "\x03\x02\x02\x02\u0308\u0309\x07\"\x02\x02\u0309\u030C\x05p9\x02\u030A" +
- "\u030C\x05r:\x02\u030B\u0308\x03\x02\x02\x02\u030B\u030A\x03\x02\x02\x02" +
- "\u030Cq\x03\x02\x02\x02\u030D\u0313\x05x=\x02\u030E\u030F\x05t;\x02\u030F" +
- "\u0310\x05x=\x02\u0310\u0312\x03\x02\x02\x02\u0311\u030E\x03\x02\x02\x02" +
- "\u0312\u0315\x03\x02\x02\x02\u0313\u0311\x03\x02\x02\x02\u0313\u0314\x03" +
- "\x02\x02\x02\u0314s\x03\x02\x02\x02\u0315\u0313\x03\x02\x02\x02\u0316" +
- "\u0324\x07S\x02\x02\u0317\u0324\x07T\x02\x02\u0318\u0324\x07U\x02\x02" +
- "\u0319\u0324\x07V\x02\x02\u031A\u0324\x07W\x02\x02\u031B\u0324\x07X\x02" +
- "\x02\u031C\u0324\x07Y\x02\x02\u031D\u0324\x07\x1A\x02\x02\u031E\u031F" +
- "\x07\"\x02\x02\u031F\u0324\x07\x1A\x02\x02\u0320\u0324\x07#\x02\x02\u0321" +
- "\u0322\x07#\x02\x02\u0322\u0324\x07\"\x02\x02\u0323\u0316\x03\x02\x02" +
- "\x02\u0323\u0317\x03\x02\x02\x02\u0323\u0318\x03\x02\x02\x02\u0323\u0319" +
- "\x03\x02\x02\x02\u0323\u031A\x03\x02\x02\x02\u0323\u031B\x03\x02\x02\x02" +
- "\u0323\u031C\x03\x02\x02\x02\u0323\u031D\x03\x02\x02\x02\u0323\u031E\x03" +
- "\x02\x02\x02\u0323\u0320\x03\x02\x02\x02\u0323\u0321\x03\x02\x02\x02\u0324" +
- "u\x03\x02\x02\x02\u0325\u0326\x07;\x02\x02\u0326\u0327\x05x=\x02\u0327" +
- "w\x03\x02\x02\x02\u0328\u032D\x05z>\x02\u0329\u032A\x07E\x02\x02\u032A" +
- "\u032C\x05z>\x02\u032B\u0329\x03\x02\x02\x02\u032C\u032F\x03\x02\x02\x02" +
- "\u032D\u032B\x03\x02\x02\x02\u032D\u032E\x03\x02\x02\x02\u032Ey\x03\x02" +
- "\x02\x02\u032F\u032D\x03\x02\x02\x02\u0330\u0335\x05|?\x02\u0331\u0332" +
- "\x07F\x02\x02\u0332\u0334\x05|?\x02\u0333\u0331\x03\x02\x02\x02\u0334" +
- "\u0337\x03\x02\x02\x02\u0335\u0333\x03\x02\x02\x02\u0335\u0336\x03\x02" +
- "\x02\x02\u0336{\x03\x02\x02\x02\u0337\u0335\x03\x02\x02\x02\u0338\u033D" +
- "\x05~@\x02\u0339\u033A\x07G\x02\x02\u033A\u033C\x05~@\x02\u033B\u0339" +
- "\x03\x02\x02\x02\u033C\u033F\x03\x02\x02\x02\u033D\u033B\x03\x02\x02\x02" +
- "\u033D\u033E\x03\x02\x02\x02\u033E}\x03\x02\x02\x02\u033F\u033D\x03\x02" +
- "\x02\x02\u0340\u0345\x05\x80A\x02\u0341\u0342\t\x04\x02\x02\u0342\u0344" +
- "\x05\x80A\x02\u0343\u0341\x03\x02\x02\x02\u0344\u0347\x03\x02\x02\x02" +
- "\u0345\u0343\x03\x02\x02\x02\u0345\u0346\x03\x02\x02\x02\u0346\x7F\x03" +
- "\x02\x02\x02\u0347\u0345\x03\x02\x02\x02\u0348\u034D\x05\x82B\x02\u0349" +
- "\u034A\t\x05\x02\x02\u034A\u034C\x05\x82B\x02\u034B\u0349\x03\x02\x02" +
- "\x02\u034C\u034F\x03\x02\x02\x02\u034D\u034B\x03\x02\x02\x02\u034D\u034E" +
- "\x03\x02\x02\x02\u034E\x81\x03\x02\x02\x02\u034F\u034D\x03\x02\x02\x02" +
- "\u0350\u0355\x05\x84C\x02\u0351\u0352\t\x06\x02\x02\u0352\u0354\x05\x84" +
- "C\x02\u0353\u0351\x03\x02\x02\x02\u0354\u0357\x03\x02\x02\x02\u0355\u0353" +
- "\x03\x02\x02\x02\u0355\u0356\x03\x02\x02\x02\u0356\x83\x03\x02\x02\x02" +
- "\u0357\u0355\x03\x02\x02\x02\u0358\u0359\t\x07\x02\x02\u0359\u035C\x05" +
- "\x84C\x02\u035A\u035C\x05\x86D\x02\u035B\u0358\x03\x02\x02\x02\u035B\u035A" +
- "\x03\x02\x02\x02\u035C\x85\x03\x02\x02\x02\u035D\u0360\x05\x88E\x02\u035E" +
- "\u035F\x07A\x02\x02\u035F\u0361\x05\x84C\x02\u0360\u035E\x03\x02\x02\x02" +
- "\u0360\u0361\x03\x02\x02\x02\u0361\x87\x03\x02\x02\x02\u0362\u0364\x07" +
- ".\x02\x02\u0363\u0362\x03\x02\x02\x02\u0363\u0364\x03\x02\x02\x02\u0364" +
- "\u0365\x03\x02\x02\x02\u0365\u0369\x05\x8AF\x02\u0366\u0368\x05\x8EH\x02" +
- "\u0367\u0366\x03\x02\x02\x02\u0368\u036B\x03\x02\x02\x02\u0369\u0367\x03" +
- "\x02\x02\x02\u0369\u036A\x03\x02\x02\x02\u036A\x89\x03\x02\x02\x02\u036B" +
- "\u0369\x03\x02\x02\x02\u036C\u036F\x07<\x02\x02\u036D\u0370\x05\xAAV\x02" +
- "\u036E\u0370\x05\x8CG\x02\u036F\u036D\x03\x02\x02\x02\u036F\u036E\x03" +
- "\x02\x02\x02\u036F\u0370\x03\x02\x02\x02\u0370\u0371\x03\x02\x02\x02\u0371" +
- "\u038D\x07=\x02\x02\u0372\u0374\x07C\x02\x02\u0373\u0375\x05\x8CG\x02" +
- "\u0374\u0373\x03\x02\x02\x02\u0374\u0375\x03\x02\x02\x02\u0375\u0376\x03" +
- "\x02\x02\x02\u0376\u038D\x07D\x02\x02\u0377\u0379\x07P\x02\x02\u0378\u037A" +
- "\x05\x9AN\x02\u0379\u0378\x03\x02\x02\x02\u0379\u037A\x03\x02\x02\x02" +
- "\u037A\u037B\x03\x02\x02\x02\u037B\u038D\x07R\x02\x02\u037C\u038D\x07" +
- "0\x02\x02\u037D\u038D\x07\n\x02\x02\u037E\u0380\x05\xAEX\x02\u037F\u037E" +
- "\x03\x02\x02\x02\u0380\u0381\x03\x02\x02\x02\u0381\u037F\x03\x02\x02\x02" +
- "\u0381\u0382\x03\x02\x02\x02\u0382\u038D\x03\x02\x02\x02\u0383\u0385\x07" +
- "\t\x02\x02\u0384\u0383\x03\x02\x02\x02\u0385\u0386\x03\x02\x02\x02\u0386" +
- "\u0384\x03\x02\x02\x02\u0386\u0387\x03\x02\x02\x02\u0387\u038D\x03\x02" +
- "\x02\x02\u0388\u038D\x07:\x02\x02\u0389\u038D\x07$\x02\x02\u038A\u038D" +
- "\x07%\x02\x02\u038B\u038D\x07&\x02\x02\u038C\u036C\x03\x02\x02\x02\u038C" +
- "\u0372\x03\x02\x02\x02\u038C\u0377\x03\x02\x02\x02\u038C\u037C\x03\x02" +
- "\x02\x02\u038C\u037D\x03\x02\x02\x02\u038C\u037F\x03\x02\x02\x02\u038C" +
- "\u0384\x03\x02\x02\x02\u038C\u0388\x03\x02\x02\x02\u038C\u0389\x03\x02" +
- "\x02\x02\u038C\u038A\x03\x02\x02\x02\u038C\u038B\x03\x02\x02\x02\u038D" +
- "\x8B\x03\x02\x02\x02\u038E\u0391\x05d3\x02\u038F\u0391\x05v<\x02\u0390" +
- "\u038E\x03\x02\x02\x02\u0390\u038F\x03\x02\x02\x02\u0391\u03A0\x03\x02" +
- "\x02\x02\u0392\u03A1\x05\xA4S\x02\u0393\u0396\x07>\x02\x02\u0394\u0397" +
- "\x05d3\x02\u0395\u0397\x05v<\x02\u0396\u0394\x03\x02\x02\x02\u0396\u0395" +
- "\x03\x02\x02\x02\u0397\u0399\x03\x02\x02\x02\u0398\u0393\x03\x02\x02\x02" +
- "\u0399\u039C\x03\x02\x02\x02\u039A\u0398\x03\x02\x02\x02\u039A\u039B\x03" +
- "\x02\x02\x02\u039B\u039E\x03\x02\x02\x02\u039C\u039A\x03\x02\x02\x02\u039D" +
- "\u039F\x07>\x02\x02\u039E\u039D\x03\x02\x02\x02\u039E\u039F\x03\x02\x02" +
- "\x02\u039F\u03A1\x03\x02\x02\x02\u03A0\u0392\x03\x02\x02\x02\u03A0\u039A" +
- "\x03\x02\x02\x02\u03A1\x8D\x03\x02\x02\x02\u03A2\u03A4\x07<\x02\x02\u03A3" +
- "\u03A5\x05\x9EP\x02\u03A4\u03A3\x03\x02\x02\x02\u03A4\u03A5\x03\x02\x02" +
- "\x02\u03A5\u03A6\x03\x02\x02\x02\u03A6\u03AE\x07=\x02\x02\u03A7\u03A8" +
- "\x07C\x02\x02\u03A8\u03A9\x05\x90I\x02\u03A9\u03AA\x07D\x02\x02\u03AA" +
- "\u03AE\x03\x02\x02\x02\u03AB\u03AC\x079\x02\x02\u03AC\u03AE\x070\x02\x02" +
- "\u03AD\u03A2\x03\x02\x02\x02\u03AD\u03A7\x03\x02\x02\x02\u03AD\u03AB\x03" +
- "\x02\x02\x02\u03AE\x8F\x03\x02\x02\x02\u03AF\u03B4\x05\x92J\x02\u03B0" +
- "\u03B1\x07>\x02\x02\u03B1\u03B3\x05\x92J\x02\u03B2\u03B0\x03\x02\x02\x02" +
- "\u03B3\u03B6\x03\x02\x02\x02\u03B4\u03B2\x03\x02\x02\x02\u03B4\u03B5\x03" +
- "\x02\x02\x02\u03B5\u03B8\x03\x02\x02\x02\u03B6\u03B4\x03\x02\x02\x02\u03B7" +
- "\u03B9\x07>\x02\x02\u03B8\u03B7\x03\x02\x02\x02\u03B8\u03B9\x03\x02\x02" +
- "\x02\u03B9\x91\x03\x02\x02\x02\u03BA\u03C6\x05d3\x02\u03BB\u03BD\x05d" +
- "3\x02\u03BC\u03BB\x03\x02\x02\x02\u03BC\u03BD\x03\x02\x02\x02\u03BD\u03BE" +
- "\x03\x02\x02\x02\u03BE\u03C0\x07?\x02\x02\u03BF\u03C1\x05d3\x02\u03C0" +
- "\u03BF\x03\x02\x02\x02\u03C0\u03C1\x03\x02\x02\x02\u03C1\u03C3\x03\x02" +
- "\x02\x02\u03C2\u03C4\x05\x94K\x02\u03C3\u03C2\x03\x02\x02\x02\u03C3\u03C4" +
- "\x03\x02\x02\x02\u03C4\u03C6\x03\x02\x02\x02\u03C5\u03BA\x03\x02\x02\x02" +
- "\u03C5\u03BC\x03\x02\x02\x02\u03C6\x93\x03\x02\x02\x02\u03C7\u03C9\x07" +
- "?\x02\x02\u03C8\u03CA\x05d3\x02\u03C9\u03C8\x03\x02\x02\x02\u03C9\u03CA" +
- "\x03\x02\x02\x02\u03CA\x95\x03\x02\x02\x02\u03CB\u03CE\x05x=\x02\u03CC" +
- "\u03CE\x05v<\x02\u03CD\u03CB\x03\x02\x02\x02\u03CD\u03CC\x03\x02\x02\x02" +
- "\u03CE\u03D6\x03\x02\x02\x02\u03CF\u03D2\x07>\x02\x02\u03D0\u03D3\x05" +
- "x=\x02\u03D1\u03D3\x05v<\x02\u03D2\u03D0\x03\x02\x02\x02\u03D2\u03D1\x03" +
- "\x02\x02\x02\u03D3\u03D5\x03\x02\x02\x02\u03D4\u03CF\x03\x02\x02\x02\u03D5" +
- "\u03D8\x03\x02\x02\x02\u03D6\u03D4\x03\x02\x02\x02\u03D6\u03D7\x03\x02" +
- "\x02\x02\u03D7\u03DA\x03\x02\x02\x02\u03D8\u03D6\x03\x02\x02\x02\u03D9" +
- "\u03DB\x07>\x02\x02\u03DA\u03D9\x03\x02\x02\x02\u03DA\u03DB\x03\x02\x02" +
- "\x02\u03DB\x97\x03\x02\x02\x02\u03DC\u03E1\x05d3\x02\u03DD\u03DE\x07>" +
- "\x02\x02\u03DE\u03E0\x05d3\x02\u03DF\u03DD\x03\x02\x02\x02\u03E0\u03E3" +
- "\x03\x02\x02\x02\u03E1\u03DF\x03\x02\x02\x02\u03E1\u03E2\x03\x02\x02\x02" +
- "\u03E2\u03E5\x03\x02\x02\x02\u03E3\u03E1\x03\x02\x02\x02\u03E4\u03E6\x07" +
- ">\x02\x02\u03E5\u03E4\x03\x02\x02\x02\u03E5\u03E6\x03\x02\x02\x02\u03E6" +
- "\x99\x03\x02\x02\x02\u03E7\u03E8\x05d3\x02\u03E8\u03E9\x07?\x02\x02\u03E9" +
- "\u03EA\x05d3\x02\u03EA\u03EE\x03\x02\x02\x02\u03EB\u03EC\x07A\x02\x02" +
- "\u03EC\u03EE\x05x=\x02\u03ED\u03E7\x03\x02\x02\x02\u03ED\u03EB\x03\x02" +
- "\x02\x02\u03EE\u0401\x03\x02\x02\x02\u03EF\u0402\x05\xA4S\x02\u03F0\u03F7" +
- "\x07>\x02\x02\u03F1\u03F2\x05d3\x02\u03F2\u03F3\x07?\x02\x02\u03F3\u03F4" +
- "\x05d3\x02\u03F4\u03F8\x03\x02\x02\x02\u03F5\u03F6\x07A\x02\x02\u03F6" +
- "\u03F8\x05x=\x02\u03F7\u03F1\x03\x02\x02\x02\u03F7\u03F5\x03\x02\x02\x02" +
- "\u03F8\u03FA\x03\x02\x02\x02\u03F9\u03F0\x03\x02\x02\x02\u03FA\u03FD\x03" +
- "\x02\x02\x02\u03FB\u03F9\x03\x02\x02\x02\u03FB\u03FC\x03\x02\x02\x02\u03FC" +
- "\u03FF\x03\x02\x02\x02\u03FD\u03FB\x03\x02\x02\x02\u03FE\u0400\x07>\x02" +
- "\x02\u03FF\u03FE\x03\x02\x02\x02\u03FF\u0400\x03\x02\x02\x02\u0400\u0402" +
- "\x03\x02\x02\x02\u0401\u03EF\x03\x02\x02\x02\u0401\u03FB\x03\x02\x02\x02" +
- "\u0402\u0418\x03\x02\x02\x02\u0403\u0406\x05d3\x02\u0404\u0406\x05v<\x02" +
- "\u0405\u0403\x03\x02\x02\x02\u0405\u0404\x03\x02\x02\x02\u0406\u0415\x03" +
- "\x02\x02\x02\u0407\u0416\x05\xA4S\x02\u0408\u040B\x07>\x02\x02\u0409\u040C" +
- "\x05d3\x02\u040A\u040C\x05v<\x02\u040B\u0409\x03\x02\x02\x02\u040B\u040A" +
- "\x03\x02\x02\x02\u040C\u040E\x03\x02\x02\x02\u040D\u0408\x03\x02\x02\x02" +
- "\u040E\u0411\x03\x02\x02\x02\u040F\u040D\x03\x02\x02\x02\u040F\u0410\x03" +
- "\x02\x02\x02\u0410\u0413\x03\x02\x02\x02\u0411\u040F\x03\x02\x02\x02\u0412" +
- "\u0414\x07>\x02\x02\u0413\u0412\x03\x02\x02\x02\u0413\u0414\x03\x02\x02" +
- "\x02\u0414\u0416\x03\x02\x02\x02\u0415\u0407\x03\x02\x02\x02\u0415\u040F" +
- "\x03\x02\x02\x02\u0416\u0418\x03\x02\x02\x02\u0417\u03ED\x03\x02\x02\x02" +
- "\u0417\u0405\x03\x02\x02\x02\u0418\x9B\x03\x02\x02\x02\u0419\u041A\x07" +
- "\'\x02\x02\u041A\u0420\x070\x02\x02\u041B\u041D\x07<\x02\x02\u041C\u041E" +
- "\x05\x9EP\x02\u041D\u041C\x03\x02\x02\x02\u041D\u041E\x03\x02\x02\x02" +
- "\u041E\u041F\x03\x02\x02\x02\u041F\u0421\x07=\x02\x02\u0420\u041B\x03" +
- "\x02\x02\x02\u0420\u0421\x03\x02\x02\x02\u0421\u0422\x03\x02\x02\x02\u0422" +
- "\u0423\x07?\x02\x02\u0423\u0424\x05b2\x02\u0424\x9D\x03\x02\x02\x02\u0425" +
- "\u042A\x05\xA0Q\x02\u0426\u0427\x07>\x02\x02\u0427\u0429\x05\xA0Q\x02" +
- "\u0428\u0426\x03\x02\x02\x02\u0429\u042C\x03\x02\x02\x02\u042A\u0428\x03" +
- "\x02\x02\x02\u042A\u042B\x03\x02\x02\x02\u042B\u042E\x03\x02\x02\x02\u042C" +
- "\u042A\x03\x02\x02\x02\u042D\u042F\x07>\x02\x02\u042E\u042D\x03\x02\x02" +
- "\x02\u042E\u042F\x03\x02\x02\x02\u042F\x9F\x03\x02\x02\x02\u0430\u0432" +
- "\x05d3\x02\u0431\u0433\x05\xA4S\x02\u0432\u0431\x03\x02\x02\x02\u0432" +
- "\u0433\x03\x02\x02\x02\u0433\u043D\x03\x02\x02\x02\u0434\u0435\x05d3\x02" +
- "\u0435\u0436\x07B\x02\x02\u0436\u0437\x05d3\x02\u0437\u043D\x03\x02\x02" +
- "\x02\u0438\u0439\x07A\x02\x02\u0439\u043D\x05d3\x02\u043A\u043B\x07;\x02" +
- "\x02\u043B\u043D\x05d3\x02\u043C\u0430\x03\x02\x02\x02\u043C\u0434\x03" +
- "\x02\x02\x02\u043C\u0438\x03\x02\x02\x02\u043C\u043A\x03\x02\x02\x02\u043D";
+ "\u0199\x03\x02\x02\x02\u0198\u0193\x03\x02\x02\x02\u0198\u0199\x03\x02" +
+ "\x02\x02\u0199\u019B\x03\x02\x02\x02\u019A\u0192\x03\x02\x02\x02\u019A" +
+ "\u019B\x03\x02\x02\x02\u019B\u01A2\x03\x02\x02\x02\u019C\u019D\x07A\x02" +
+ "\x02\u019D\u019F\x05\x1A\x0E\x02\u019E\u01A0\x07>\x02\x02\u019F\u019E" +
+ "\x03\x02\x02\x02\u019F\u01A0\x03\x02\x02\x02\u01A0\u01A2\x03\x02\x02\x02" +
+ "\u01A1\u0150\x03\x02\x02\x02\u01A1\u0183\x03\x02\x02\x02\u01A1\u019C\x03" +
+ "\x02\x02\x02\u01A2\x19\x03\x02\x02\x02\u01A3\u01A4\x070\x02\x02\u01A4" +
+ "\x1B\x03\x02\x02\x02\u01A5\u01A8\x05\x1E\x10\x02\u01A6\u01A8\x05P)\x02" +
+ "\u01A7\u01A5\x03\x02\x02\x02\u01A7\u01A6\x03\x02\x02\x02\u01A8\x1D\x03" +
+ "\x02\x02\x02\u01A9\u01AE\x05 \x11\x02\u01AA\u01AB\x07@\x02\x02\u01AB\u01AD" +
+ "\x05 \x11\x02\u01AC\u01AA\x03\x02\x02\x02\u01AD\u01B0\x03\x02\x02\x02" +
+ "\u01AE\u01AC\x03\x02\x02\x02\u01AE\u01AF\x03\x02\x02\x02\u01AF\u01B2\x03" +
+ "\x02\x02\x02\u01B0\u01AE\x03\x02\x02\x02\u01B1\u01B3\x07@\x02\x02\u01B2" +
+ "\u01B1\x03\x02\x02\x02\u01B2\u01B3\x03\x02\x02\x02\u01B3\u01B4\x03\x02" +
+ "\x02\x02\u01B4\u01B5\x07/\x02\x02\u01B5\x1F\x03\x02\x02\x02\u01B6\u01BF" +
+ "\x05\"\x12\x02\u01B7\u01BF\x05*\x16\x02\u01B8\u01BF\x05,\x17\x02\u01B9" +
+ "\u01BF\x05.\x18\x02\u01BA\u01BF\x05:\x1E\x02\u01BB\u01BF\x05J&\x02\u01BC" +
+ "\u01BF\x05L\'\x02\u01BD\u01BF\x05N(\x02\u01BE\u01B6\x03\x02\x02\x02\u01BE" +
+ "\u01B7\x03\x02\x02\x02\u01BE\u01B8\x03\x02\x02\x02\u01BE\u01B9\x03\x02" +
+ "\x02\x02\u01BE\u01BA\x03\x02\x02\x02\u01BE\u01BB\x03\x02\x02\x02\u01BE" +
+ "\u01BC\x03\x02\x02\x02\u01BE\u01BD\x03\x02\x02\x02\u01BF!\x03\x02\x02" +
+ "\x02\u01C0\u01D1\x05&\x14\x02\u01C1\u01D2\x05$\x13\x02\u01C2\u01C5\x05" +
+ "(\x15\x02\u01C3\u01C6\x05\xACW\x02\u01C4\u01C6\x05\x98M\x02\u01C5\u01C3" +
+ "\x03\x02\x02\x02\u01C5\u01C4\x03\x02\x02\x02\u01C6\u01D2\x03\x02\x02\x02" +
+ "\u01C7\u01CA\x07B\x02\x02\u01C8\u01CB\x05\xACW\x02\u01C9\u01CB\x05&\x14" +
+ "\x02\u01CA\u01C8\x03\x02\x02\x02\u01CA\u01C9\x03\x02\x02\x02\u01CB\u01CD" +
+ "\x03\x02\x02\x02\u01CC\u01C7\x03\x02\x02\x02\u01CD\u01D0\x03\x02\x02\x02" +
+ "\u01CE\u01CC\x03\x02\x02\x02\u01CE\u01CF\x03\x02\x02\x02\u01CF\u01D2\x03" +
+ "\x02\x02\x02\u01D0\u01CE\x03\x02\x02\x02\u01D1\u01C1\x03\x02\x02\x02\u01D1" +
+ "\u01C2\x03\x02\x02\x02\u01D1\u01CE\x03\x02\x02\x02\u01D2#\x03\x02\x02" +
+ "\x02\u01D3\u01D4\x07?\x02\x02\u01D4\u01D7\x05d3\x02\u01D5\u01D6\x07B\x02" +
+ "\x02\u01D6\u01D8\x05d3\x02\u01D7\u01D5\x03\x02\x02\x02\u01D7\u01D8\x03" +
+ "\x02\x02\x02\u01D8%\x03\x02\x02\x02\u01D9\u01DC\x05d3\x02\u01DA\u01DC" +
+ "\x05v<\x02\u01DB\u01D9\x03\x02\x02\x02\u01DB\u01DA\x03\x02\x02\x02\u01DC" +
+ "\u01E4\x03\x02\x02\x02\u01DD\u01E0\x07>\x02\x02\u01DE\u01E1\x05d3\x02" +
+ "\u01DF\u01E1\x05v<\x02\u01E0\u01DE\x03\x02\x02\x02\u01E0\u01DF\x03\x02" +
+ "\x02\x02\u01E1\u01E3\x03\x02\x02\x02\u01E2\u01DD\x03\x02\x02\x02\u01E3" +
+ "\u01E6\x03\x02\x02\x02\u01E4\u01E2\x03\x02\x02\x02\u01E4\u01E5\x03\x02" +
+ "\x02\x02\u01E5\u01E8\x03\x02\x02\x02\u01E6\u01E4\x03\x02\x02\x02\u01E7" +
+ "\u01E9\x07>\x02\x02\u01E8\u01E7\x03\x02\x02\x02\u01E8\u01E9\x03\x02\x02" +
+ "\x02\u01E9\'\x03\x02\x02\x02\u01EA\u01EB\t\x02\x02\x02\u01EB)\x03\x02" +
+ "\x02\x02\u01EC\u01ED\x07)\x02\x02\u01ED\u01EE\x05\x96L\x02\u01EE+\x03" +
+ "\x02\x02\x02\u01EF\u01F0\x07*\x02\x02\u01F0-\x03\x02\x02\x02\u01F1\u01F7" +
+ "\x050\x19\x02\u01F2\u01F7\x052\x1A\x02\u01F3\u01F7\x054\x1B\x02\u01F4" +
+ "\u01F7\x058\x1D\x02\u01F5\u01F7\x056\x1C\x02\u01F6\u01F1\x03\x02\x02\x02" +
+ "\u01F6\u01F2\x03\x02\x02\x02\u01F6\u01F3\x03\x02\x02\x02\u01F6\u01F4\x03" +
+ "\x02\x02\x02\u01F6\u01F5\x03\x02\x02\x02\u01F7/\x03\x02\x02\x02\u01F8" +
+ "\u01F9\x07,\x02\x02\u01F91\x03\x02\x02\x02\u01FA\u01FB\x07+\x02\x02\u01FB" +
+ "3\x03\x02\x02\x02\u01FC\u01FE\x07\r\x02\x02\u01FD\u01FF\x05\x98M\x02\u01FE" +
+ "\u01FD\x03\x02\x02\x02\u01FE\u01FF\x03\x02\x02\x02\u01FF5\x03\x02\x02" +
+ "\x02\u0200\u0201\x05\xACW\x02\u02017\x03\x02\x02\x02\u0202\u0208\x07\x0E" +
+ "\x02\x02\u0203\u0206\x05d3\x02\u0204\u0205\x07\x0F\x02\x02\u0205\u0207" +
+ "\x05d3\x02\u0206\u0204\x03\x02\x02\x02\u0206\u0207\x03\x02\x02\x02\u0207" +
+ "\u0209\x03\x02\x02\x02\u0208\u0203\x03\x02\x02\x02\u0208\u0209\x03\x02" +
+ "\x02\x02\u02099\x03\x02\x02\x02\u020A\u020D\x05<\x1F\x02\u020B\u020D\x05" +
+ "> \x02\u020C\u020A\x03\x02\x02\x02\u020C\u020B\x03\x02\x02\x02\u020D;" +
+ "\x03\x02\x02\x02\u020E\u020F\x07\x10\x02\x02\u020F\u0210\x05F$\x02\u0210" +
+ "=\x03\x02\x02\x02\u0211\u021E\x07\x0F\x02\x02\u0212\u0214\t\x03\x02\x02" +
+ "\u0213\u0212\x03\x02\x02\x02\u0214\u0217\x03\x02\x02\x02\u0215\u0213\x03" +
+ "\x02\x02\x02\u0215\u0216\x03\x02\x02\x02\u0216\u0218\x03\x02\x02\x02\u0217" +
+ "\u0215\x03\x02\x02\x02\u0218\u021F\x05H%\x02\u0219\u021B\t\x03\x02\x02" +
+ "\u021A\u0219\x03\x02\x02\x02\u021B\u021C\x03\x02\x02\x02\u021C\u021A\x03" +
+ "\x02\x02\x02\u021C\u021D\x03\x02\x02\x02\u021D\u021F\x03\x02\x02\x02\u021E" +
+ "\u0215\x03\x02\x02\x02\u021E\u021A\x03\x02\x02\x02\u021F\u0220\x03\x02" +
+ "\x02\x02\u0220\u0227\x07\x10\x02\x02\u0221\u0228\x07;\x02\x02\u0222\u0223" +
+ "\x07<\x02\x02\u0223\u0224\x05D#\x02\u0224\u0225\x07=\x02\x02\u0225\u0228" +
+ "\x03\x02\x02\x02\u0226\u0228\x05D#\x02\u0227\u0221\x03\x02\x02\x02\u0227" +
+ "\u0222\x03\x02\x02\x02\u0227\u0226\x03\x02\x02\x02\u0228?\x03\x02\x02" +
+ "\x02\u0229\u022C\x070\x02\x02\u022A\u022B\x07\x11\x02\x02\u022B\u022D" +
+ "\x070\x02\x02\u022C\u022A\x03\x02\x02\x02\u022C\u022D\x03\x02\x02\x02" +
+ "\u022DA\x03\x02\x02\x02\u022E\u0231\x05H%\x02\u022F\u0230\x07\x11\x02" +
+ "\x02\u0230\u0232\x070\x02\x02\u0231\u022F\x03\x02\x02\x02\u0231\u0232" +
+ "\x03\x02\x02\x02\u0232C\x03\x02\x02\x02\u0233\u0238\x05@!\x02\u0234\u0235" +
+ "\x07>\x02\x02\u0235\u0237\x05@!\x02\u0236\u0234\x03\x02\x02\x02\u0237" +
+ "\u023A\x03\x02\x02\x02\u0238\u0236\x03\x02\x02\x02\u0238\u0239\x03\x02" +
+ "\x02\x02\u0239\u023C\x03\x02\x02\x02\u023A\u0238\x03\x02\x02\x02\u023B" +
+ "\u023D\x07>\x02\x02\u023C\u023B\x03\x02\x02\x02\u023C\u023D\x03\x02\x02" +
+ "\x02\u023DE\x03\x02\x02\x02\u023E\u0243\x05B\"\x02\u023F\u0240\x07>\x02" +
+ "\x02\u0240\u0242\x05B\"\x02\u0241\u023F\x03\x02\x02\x02\u0242\u0245\x03" +
+ "\x02\x02\x02\u0243\u0241\x03\x02\x02\x02\u0243\u0244\x03\x02\x02\x02\u0244" +
+ "G\x03\x02\x02\x02\u0245\u0243\x03\x02\x02\x02\u0246\u024B\x070\x02\x02" +
+ "\u0247\u0248\x079\x02\x02\u0248\u024A\x070\x02\x02\u0249\u0247\x03\x02" +
+ "\x02\x02\u024A\u024D\x03\x02\x02\x02\u024B\u0249\x03\x02\x02\x02\u024B" +
+ "\u024C\x03\x02\x02\x02\u024CI\x03\x02\x02\x02\u024D\u024B\x03\x02\x02" +
+ "\x02\u024E\u024F\x07\x12\x02\x02\u024F\u0254\x070\x02\x02\u0250\u0251" +
+ "\x07>\x02\x02\u0251\u0253\x070\x02\x02\u0252\u0250\x03\x02\x02\x02\u0253" +
+ "\u0256\x03\x02\x02\x02\u0254\u0252\x03\x02\x02\x02\u0254\u0255\x03\x02" +
+ "\x02\x02\u0255K\x03\x02\x02\x02\u0256\u0254\x03\x02\x02\x02\u0257\u0258" +
+ "\x07\x13\x02\x02\u0258\u025D\x070\x02\x02\u0259\u025A\x07>\x02\x02\u025A" +
+ "\u025C\x070\x02\x02\u025B\u0259\x03\x02\x02\x02\u025C\u025F\x03\x02\x02" +
+ "\x02\u025D\u025B\x03\x02\x02\x02\u025D\u025E\x03\x02\x02\x02\u025EM\x03" +
+ "\x02\x02\x02\u025F\u025D\x03\x02\x02\x02\u0260\u0261\x07\x14\x02\x02\u0261" +
+ "\u0264\x05d3\x02\u0262\u0263\x07>\x02\x02\u0263\u0265\x05d3\x02\u0264" +
+ "\u0262\x03\x02\x02\x02\u0264\u0265\x03\x02\x02\x02\u0265O\x03\x02\x02" +
+ "\x02\u0266\u0270\x05T+\x02\u0267\u0270\x05V,\x02\u0268\u0270\x05X-\x02" +
+ "\u0269\u0270\x05Z.\x02\u026A\u0270\x05\\/\x02\u026B\u0270\x05\x10\t\x02" +
+ "\u026C\u0270\x05\x9CO\x02\u026D\u0270\x05\f\x07\x02\u026E\u0270\x05R*" +
+ "\x02\u026F\u0266\x03\x02\x02\x02\u026F\u0267\x03\x02\x02\x02\u026F\u0268" +
+ "\x03\x02\x02\x02\u026F\u0269\x03\x02\x02\x02\u026F\u026A\x03\x02\x02\x02" +
+ "\u026F\u026B\x03\x02\x02\x02\u026F\u026C\x03\x02\x02\x02\u026F\u026D\x03" +
+ "\x02\x02\x02\u026F\u026E\x03\x02\x02\x02\u0270Q\x03\x02\x02\x02\u0271" +
+ "\u0275\x07-\x02\x02\u0272\u0276\x05\x10\t\x02\u0273\u0276\x05\\/\x02\u0274" +
+ "\u0276\x05X-\x02\u0275\u0272\x03\x02\x02\x02\u0275\u0273\x03\x02\x02\x02" +
+ "\u0275\u0274\x03\x02\x02\x02\u0276S\x03\x02\x02\x02\u0277\u0278\x07\x15" +
+ "\x02\x02\u0278\u0279\x05d3\x02\u0279\u027A\x07?\x02\x02\u027A\u0282\x05" +
+ "b2\x02\u027B\u027C\x07\x16\x02\x02\u027C\u027D\x05d3\x02\u027D\u027E\x07" +
+ "?\x02\x02\u027E\u027F\x05b2\x02\u027F\u0281\x03\x02\x02\x02\u0280\u027B" +
+ "\x03\x02\x02\x02\u0281\u0284\x03\x02\x02\x02\u0282\u0280\x03\x02\x02\x02" +
+ "\u0282\u0283\x03\x02\x02\x02\u0283\u0288\x03\x02\x02\x02\u0284\u0282\x03" +
+ "\x02\x02\x02\u0285\u0286\x07\x17\x02\x02\u0286\u0287\x07?\x02\x02\u0287" +
+ "\u0289\x05b2\x02\u0288\u0285\x03\x02\x02\x02\u0288\u0289\x03\x02\x02\x02" +
+ "\u0289U\x03\x02\x02\x02\u028A\u028B\x07\x18\x02\x02\u028B\u028C\x05d3" +
+ "\x02\u028C\u028D\x07?\x02\x02\u028D\u0291\x05b2\x02\u028E\u028F\x07\x17" +
+ "\x02\x02\u028F\u0290\x07?\x02\x02\u0290\u0292\x05b2\x02\u0291\u028E\x03" +
+ "\x02\x02\x02\u0291\u0292\x03\x02\x02\x02\u0292W\x03\x02\x02\x02\u0293" +
+ "\u0294\x07\x19\x02\x02\u0294\u0295\x05\x96L\x02\u0295\u0296\x07\x1A\x02" +
+ "\x02\u0296\u0297\x05\x98M\x02\u0297\u0298\x07?\x02\x02\u0298\u029C\x05" +
+ "b2\x02\u0299\u029A\x07\x17\x02\x02\u029A\u029B\x07?\x02\x02\u029B\u029D" +
+ "\x05b2\x02\u029C\u0299\x03\x02\x02\x02\u029C\u029D\x03\x02\x02\x02\u029D" +
+ "Y\x03\x02\x02\x02\u029E\u029F\x07\x1B\x02\x02\u029F\u02A0\x07?\x02\x02" +
+ "\u02A0\u02B6\x05b2\x02\u02A1\u02A2\x05`1\x02\u02A2\u02A3\x07?\x02\x02" +
+ "\u02A3\u02A4\x05b2\x02\u02A4\u02A6\x03\x02\x02\x02\u02A5\u02A1\x03\x02" +
+ "\x02\x02\u02A6\u02A7\x03\x02\x02\x02\u02A7\u02A5\x03\x02\x02\x02\u02A7" +
+ "\u02A8\x03\x02\x02\x02\u02A8\u02AC\x03\x02\x02\x02\u02A9\u02AA\x07\x17" +
+ "\x02\x02\u02AA\u02AB\x07?\x02\x02\u02AB\u02AD\x05b2\x02\u02AC\u02A9\x03" +
+ "\x02\x02\x02\u02AC\u02AD\x03\x02\x02\x02\u02AD\u02B1\x03\x02\x02\x02\u02AE" +
+ "\u02AF\x07\x1C\x02\x02\u02AF\u02B0\x07?\x02\x02\u02B0\u02B2\x05b2\x02" +
+ "\u02B1\u02AE\x03\x02\x02\x02\u02B1\u02B2\x03\x02\x02\x02\u02B2\u02B7\x03" +
+ "\x02\x02\x02\u02B3\u02B4\x07\x1C\x02\x02\u02B4\u02B5\x07?\x02\x02\u02B5" +
+ "\u02B7\x05b2\x02\u02B6\u02A5\x03\x02\x02\x02\u02B6\u02B3\x03\x02\x02\x02" +
+ "\u02B7[\x03\x02\x02\x02\u02B8\u02B9\x07\x1D\x02\x02\u02B9\u02BE\x05^0" +
+ "\x02\u02BA\u02BB\x07>\x02\x02\u02BB\u02BD\x05^0\x02\u02BC\u02BA\x03\x02" +
+ "\x02\x02\u02BD\u02C0\x03\x02\x02\x02\u02BE\u02BC\x03\x02\x02\x02\u02BE" +
+ "\u02BF\x03\x02\x02\x02\u02BF\u02C1\x03\x02\x02\x02\u02C0\u02BE\x03\x02" +
+ "\x02\x02\u02C1\u02C2\x07?\x02\x02\u02C2\u02C3\x05b2\x02\u02C3]\x03\x02" +
+ "\x02\x02\u02C4\u02C7\x05d3\x02\u02C5\u02C6\x07\x11\x02\x02\u02C6\u02C8" +
+ "\x05x=\x02\u02C7\u02C5\x03\x02\x02\x02\u02C7\u02C8\x03\x02\x02\x02\u02C8" +
+ "_\x03\x02\x02\x02\u02C9\u02CF\x07\x1E\x02\x02\u02CA\u02CD\x05d3\x02\u02CB" +
+ "\u02CC\x07\x11\x02\x02\u02CC\u02CE\x070\x02\x02\u02CD\u02CB\x03\x02\x02" +
+ "\x02\u02CD\u02CE\x03\x02\x02\x02\u02CE\u02D0\x03\x02\x02\x02\u02CF\u02CA" +
+ "\x03\x02\x02\x02\u02CF\u02D0\x03\x02\x02\x02\u02D0a\x03\x02\x02\x02\u02D1" +
+ "\u02DC\x05\x1E\x10\x02\u02D2\u02D3\x07/\x02\x02\u02D3\u02D5\x07\x03\x02" +
+ "\x02\u02D4\u02D6\x05\x1C\x0F\x02\u02D5\u02D4\x03\x02\x02\x02\u02D6\u02D7" +
+ "\x03\x02\x02\x02\u02D7\u02D5\x03\x02\x02\x02\u02D7\u02D8\x03\x02\x02\x02" +
+ "\u02D8\u02D9\x03\x02\x02\x02\u02D9\u02DA\x07\x04\x02\x02\u02DA\u02DC\x03" +
+ "\x02\x02\x02\u02DB\u02D1\x03\x02\x02\x02\u02DB\u02D2\x03\x02\x02\x02\u02DC" +
+ "c\x03\x02\x02\x02\u02DD\u02E3\x05l7\x02\u02DE\u02DF\x07\x15\x02\x02\u02DF" +
+ "\u02E0\x05l7\x02\u02E0\u02E1\x07\x17\x02\x02\u02E1\u02E2\x05d3\x02\u02E2" +
+ "\u02E4\x03\x02\x02\x02\u02E3\u02DE\x03\x02\x02\x02\u02E3\u02E4\x03\x02" +
+ "\x02\x02\u02E4\u02E7\x03\x02\x02\x02\u02E5\u02E7\x05h5\x02\u02E6\u02DD" +
+ "\x03\x02\x02\x02\u02E6\u02E5\x03\x02\x02\x02\u02E7e\x03\x02\x02\x02\u02E8" +
+ "\u02EB\x05l7\x02\u02E9\u02EB\x05j6\x02\u02EA\u02E8\x03\x02\x02\x02\u02EA" +
+ "\u02E9\x03\x02\x02\x02\u02EBg\x03\x02\x02\x02\u02EC\u02EE\x07\x1F\x02" +
+ "\x02\u02ED\u02EF\x05\x18\r\x02\u02EE\u02ED\x03\x02\x02\x02\u02EE\u02EF" +
+ "\x03\x02\x02\x02\u02EF\u02F0\x03\x02\x02\x02\u02F0\u02F1\x07?\x02\x02" +
+ "\u02F1\u02F2\x05d3\x02\u02F2i\x03\x02\x02\x02\u02F3\u02F5\x07\x1F\x02" +
+ "\x02\u02F4\u02F6\x05\x18\r\x02\u02F5\u02F4\x03\x02\x02\x02\u02F5\u02F6" +
+ "\x03\x02\x02\x02\u02F6\u02F7\x03\x02\x02\x02\u02F7\u02F8\x07?\x02\x02" +
+ "\u02F8\u02F9\x05f4\x02\u02F9k\x03\x02\x02\x02\u02FA\u02FF\x05n8\x02\u02FB" +
+ "\u02FC\x07 \x02\x02\u02FC\u02FE\x05n8\x02\u02FD\u02FB\x03\x02\x02\x02" +
+ "\u02FE\u0301\x03\x02\x02\x02\u02FF\u02FD\x03\x02\x02\x02\u02FF\u0300\x03" +
+ "\x02\x02\x02\u0300m\x03\x02\x02\x02\u0301\u02FF\x03\x02\x02\x02\u0302" +
+ "\u0307\x05p9\x02\u0303\u0304\x07!\x02\x02\u0304\u0306\x05p9\x02\u0305" +
+ "\u0303\x03\x02\x02\x02\u0306\u0309\x03\x02\x02\x02\u0307\u0305\x03\x02" +
+ "\x02\x02\u0307\u0308\x03\x02\x02\x02\u0308o\x03\x02\x02\x02\u0309\u0307" +
+ "\x03\x02\x02\x02\u030A\u030B\x07\"\x02\x02\u030B\u030E\x05p9\x02\u030C" +
+ "\u030E\x05r:\x02\u030D\u030A\x03\x02\x02\x02\u030D\u030C\x03\x02\x02\x02" +
+ "\u030Eq\x03\x02\x02\x02\u030F\u0315\x05x=\x02\u0310\u0311\x05t;\x02\u0311" +
+ "\u0312\x05x=\x02\u0312\u0314\x03\x02\x02\x02\u0313\u0310\x03\x02\x02\x02" +
+ "\u0314\u0317\x03\x02\x02\x02\u0315\u0313\x03\x02\x02\x02\u0315\u0316\x03" +
+ "\x02\x02\x02\u0316s\x03\x02\x02\x02\u0317\u0315\x03\x02\x02\x02\u0318" +
+ "\u0326\x07S\x02\x02\u0319\u0326\x07T\x02\x02\u031A\u0326\x07U\x02\x02" +
+ "\u031B\u0326\x07V\x02\x02\u031C\u0326\x07W\x02\x02\u031D\u0326\x07X\x02" +
+ "\x02\u031E\u0326\x07Y\x02\x02\u031F\u0326\x07\x1A\x02\x02\u0320\u0321" +
+ "\x07\"\x02\x02\u0321\u0326\x07\x1A\x02\x02\u0322\u0326\x07#\x02\x02\u0323" +
+ "\u0324\x07#\x02\x02\u0324\u0326\x07\"\x02\x02\u0325\u0318\x03\x02\x02" +
+ "\x02\u0325\u0319\x03\x02\x02\x02\u0325\u031A\x03\x02\x02\x02\u0325\u031B" +
+ "\x03\x02\x02\x02\u0325\u031C\x03\x02\x02\x02\u0325\u031D\x03\x02\x02\x02" +
+ "\u0325\u031E\x03\x02\x02\x02\u0325\u031F\x03\x02\x02\x02\u0325\u0320\x03" +
+ "\x02\x02\x02\u0325\u0322\x03\x02\x02\x02\u0325\u0323\x03\x02\x02\x02\u0326" +
+ "u\x03\x02\x02\x02\u0327\u0328\x07;\x02\x02\u0328\u0329\x05x=\x02\u0329" +
+ "w\x03\x02\x02\x02\u032A\u032F\x05z>\x02\u032B\u032C\x07E\x02\x02\u032C" +
+ "\u032E\x05z>\x02\u032D\u032B\x03\x02\x02\x02\u032E\u0331\x03\x02\x02\x02" +
+ "\u032F\u032D\x03\x02\x02\x02\u032F\u0330\x03\x02\x02\x02\u0330y\x03\x02" +
+ "\x02\x02\u0331\u032F\x03\x02\x02\x02\u0332\u0337\x05|?\x02\u0333\u0334" +
+ "\x07F\x02\x02\u0334\u0336\x05|?\x02\u0335\u0333\x03\x02\x02\x02\u0336" +
+ "\u0339\x03\x02\x02\x02\u0337\u0335\x03\x02\x02\x02\u0337\u0338\x03\x02" +
+ "\x02\x02\u0338{\x03\x02\x02\x02\u0339\u0337\x03\x02\x02\x02\u033A\u033F" +
+ "\x05~@\x02\u033B\u033C\x07G\x02\x02\u033C\u033E\x05~@\x02\u033D\u033B" +
+ "\x03\x02\x02\x02\u033E\u0341\x03\x02\x02\x02\u033F\u033D\x03\x02\x02\x02" +
+ "\u033F\u0340\x03\x02\x02\x02\u0340}\x03\x02\x02\x02\u0341\u033F\x03\x02" +
+ "\x02\x02\u0342\u0347\x05\x80A\x02\u0343\u0344\t\x04\x02\x02\u0344\u0346" +
+ "\x05\x80A\x02\u0345\u0343\x03\x02\x02\x02\u0346\u0349\x03\x02\x02\x02" +
+ "\u0347\u0345\x03\x02\x02\x02\u0347\u0348\x03\x02\x02\x02\u0348\x7F\x03" +
+ "\x02\x02\x02\u0349\u0347\x03\x02\x02\x02\u034A\u034F\x05\x82B\x02\u034B" +
+ "\u034C\t\x05\x02\x02\u034C\u034E\x05\x82B\x02\u034D\u034B\x03\x02\x02" +
+ "\x02\u034E\u0351\x03\x02\x02\x02\u034F\u034D\x03\x02\x02\x02\u034F\u0350" +
+ "\x03\x02\x02\x02\u0350\x81\x03\x02\x02\x02\u0351\u034F\x03\x02\x02\x02" +
+ "\u0352\u0357\x05\x84C\x02\u0353\u0354\t\x06\x02\x02\u0354\u0356\x05\x84" +
+ "C\x02\u0355\u0353\x03\x02\x02\x02\u0356\u0359\x03\x02\x02\x02\u0357\u0355" +
+ "\x03\x02\x02\x02\u0357\u0358\x03\x02\x02\x02\u0358\x83\x03\x02\x02\x02" +
+ "\u0359\u0357\x03\x02\x02\x02\u035A\u035B\t\x07\x02\x02\u035B\u035E\x05" +
+ "\x84C\x02\u035C\u035E\x05\x86D\x02\u035D\u035A\x03\x02\x02\x02\u035D\u035C" +
+ "\x03\x02\x02\x02\u035E\x85\x03\x02\x02\x02\u035F\u0362\x05\x88E\x02\u0360" +
+ "\u0361\x07A\x02\x02\u0361\u0363\x05\x84C\x02\u0362\u0360\x03\x02\x02\x02" +
+ "\u0362\u0363\x03\x02\x02\x02\u0363\x87\x03\x02\x02\x02\u0364\u0366\x07" +
+ ".\x02\x02\u0365\u0364\x03\x02\x02\x02\u0365\u0366\x03\x02\x02\x02\u0366" +
+ "\u0367\x03\x02\x02\x02\u0367\u036B\x05\x8AF\x02\u0368\u036A\x05\x8EH\x02" +
+ "\u0369\u0368\x03\x02\x02\x02\u036A\u036D\x03\x02\x02\x02\u036B\u0369\x03" +
+ "\x02\x02\x02\u036B\u036C\x03\x02\x02\x02\u036C\x89\x03\x02\x02\x02\u036D" +
+ "\u036B\x03\x02\x02\x02\u036E\u0371\x07<\x02\x02\u036F\u0372\x05\xACW\x02" +
+ "\u0370\u0372\x05\x8CG\x02\u0371\u036F\x03\x02\x02\x02\u0371\u0370\x03" +
+ "\x02\x02\x02\u0371\u0372\x03\x02\x02\x02\u0372\u0373\x03\x02\x02\x02\u0373" +
+ "\u038F\x07=\x02\x02\u0374\u0376\x07C\x02\x02\u0375\u0377\x05\x8CG\x02" +
+ "\u0376\u0375\x03\x02\x02\x02\u0376\u0377\x03\x02\x02\x02\u0377\u0378\x03" +
+ "\x02\x02\x02\u0378\u038F\x07D\x02\x02\u0379\u037B\x07P\x02\x02\u037A\u037C" +
+ "\x05\x9AN\x02\u037B\u037A\x03\x02\x02\x02\u037B\u037C\x03\x02\x02\x02" +
+ "\u037C\u037D\x03\x02\x02\x02\u037D\u038F\x07R\x02\x02\u037E\u038F\x07" +
+ "0\x02\x02\u037F\u038F\x07\n\x02\x02\u0380\u0382\x05\xB0Y\x02\u0381\u0380" +
+ "\x03\x02\x02\x02\u0382\u0383\x03\x02\x02\x02\u0383\u0381\x03\x02\x02\x02" +
+ "\u0383\u0384\x03\x02\x02\x02\u0384\u038F\x03\x02\x02\x02\u0385\u0387\x07" +
+ "\t\x02\x02\u0386\u0385\x03\x02\x02\x02\u0387\u0388\x03\x02\x02\x02\u0388" +
+ "\u0386\x03\x02\x02\x02\u0388\u0389\x03\x02\x02\x02\u0389\u038F\x03\x02" +
+ "\x02\x02\u038A\u038F\x07:\x02\x02\u038B\u038F\x07$\x02\x02\u038C\u038F" +
+ "\x07%\x02\x02\u038D\u038F\x07&\x02\x02\u038E\u036E\x03\x02\x02\x02\u038E" +
+ "\u0374\x03\x02\x02\x02\u038E\u0379\x03\x02\x02\x02\u038E\u037E\x03\x02" +
+ "\x02\x02\u038E\u037F\x03\x02\x02\x02\u038E\u0381\x03\x02\x02\x02\u038E" +
+ "\u0386\x03\x02\x02\x02\u038E\u038A\x03\x02\x02\x02\u038E\u038B\x03\x02" +
+ "\x02\x02\u038E\u038C\x03\x02\x02\x02\u038E\u038D\x03\x02\x02\x02\u038F" +
+ "\x8B\x03\x02\x02\x02\u0390\u0393\x05d3\x02\u0391\u0393\x05v<\x02\u0392" +
+ "\u0390\x03\x02\x02\x02\u0392\u0391\x03\x02\x02\x02\u0393\u03A2\x03\x02" +
+ "\x02\x02\u0394\u03A3\x05\xA6T\x02\u0395\u0398\x07>\x02\x02\u0396\u0399" +
+ "\x05d3\x02\u0397\u0399\x05v<\x02\u0398\u0396\x03\x02\x02\x02\u0398\u0397" +
+ "\x03\x02\x02\x02\u0399\u039B\x03\x02\x02\x02\u039A\u0395\x03\x02\x02\x02" +
+ "\u039B\u039E\x03\x02\x02\x02\u039C\u039A\x03\x02\x02\x02\u039C\u039D\x03" +
+ "\x02\x02\x02\u039D\u03A0\x03\x02\x02\x02\u039E\u039C\x03\x02\x02\x02\u039F" +
+ "\u03A1\x07>\x02\x02\u03A0\u039F\x03\x02\x02\x02\u03A0\u03A1\x03\x02\x02" +
+ "\x02\u03A1\u03A3\x03\x02\x02\x02\u03A2\u0394\x03\x02\x02\x02\u03A2\u039C" +
+ "\x03\x02\x02\x02\u03A3\x8D\x03\x02\x02\x02\u03A4\u03AC\x05\x9EP\x02\u03A5" +
+ "\u03A6\x07C\x02\x02\u03A6\u03A7\x05\x90I\x02\u03A7\u03A8\x07D\x02\x02" +
+ "\u03A8\u03AC\x03\x02\x02\x02\u03A9\u03AA\x079\x02\x02\u03AA\u03AC\x07" +
+ "0\x02\x02\u03AB\u03A4\x03\x02\x02\x02\u03AB\u03A5\x03\x02\x02\x02\u03AB" +
+ "\u03A9\x03\x02\x02\x02\u03AC\x8F\x03\x02\x02\x02\u03AD\u03B2\x05\x92J" +
+ "\x02\u03AE\u03AF\x07>\x02\x02\u03AF\u03B1\x05\x92J\x02\u03B0\u03AE\x03" +
+ "\x02\x02\x02\u03B1\u03B4\x03\x02\x02\x02\u03B2\u03B0\x03\x02\x02\x02\u03B2" +
+ "\u03B3\x03\x02\x02\x02\u03B3\u03B6\x03\x02\x02\x02\u03B4\u03B2\x03\x02" +
+ "\x02\x02\u03B5\u03B7\x07>\x02\x02\u03B6\u03B5\x03\x02\x02\x02\u03B6\u03B7" +
+ "\x03\x02\x02\x02\u03B7\x91\x03\x02\x02\x02\u03B8\u03C4\x05d3\x02\u03B9" +
+ "\u03BB\x05d3\x02\u03BA\u03B9\x03\x02\x02\x02\u03BA\u03BB\x03\x02\x02\x02" +
+ "\u03BB\u03BC\x03\x02\x02\x02\u03BC\u03BE\x07?\x02\x02\u03BD\u03BF\x05" +
+ "d3\x02\u03BE\u03BD\x03\x02\x02\x02\u03BE\u03BF\x03\x02\x02\x02\u03BF\u03C1" +
+ "\x03\x02\x02\x02\u03C0\u03C2\x05\x94K\x02\u03C1\u03C0\x03\x02\x02\x02" +
+ "\u03C1\u03C2\x03\x02\x02\x02\u03C2\u03C4\x03\x02\x02\x02\u03C3\u03B8\x03" +
+ "\x02\x02\x02\u03C3\u03BA\x03\x02\x02\x02\u03C4\x93\x03\x02\x02\x02\u03C5" +
+ "\u03C7\x07?\x02\x02\u03C6\u03C8\x05d3\x02\u03C7\u03C6\x03\x02\x02\x02" +
+ "\u03C7\u03C8\x03\x02\x02\x02\u03C8\x95\x03\x02\x02\x02\u03C9\u03CC\x05" +
+ "x=\x02\u03CA\u03CC\x05v<\x02\u03CB\u03C9\x03\x02\x02\x02\u03CB\u03CA\x03" +
+ "\x02\x02\x02\u03CC\u03D4\x03\x02\x02\x02\u03CD\u03D0\x07>\x02\x02\u03CE" +
+ "\u03D1\x05x=\x02\u03CF\u03D1\x05v<\x02\u03D0\u03CE\x03\x02\x02\x02\u03D0" +
+ "\u03CF\x03\x02\x02\x02\u03D1\u03D3\x03\x02\x02\x02\u03D2\u03CD\x03\x02" +
+ "\x02\x02\u03D3\u03D6\x03\x02\x02\x02\u03D4\u03D2\x03\x02\x02\x02\u03D4" +
+ "\u03D5\x03\x02\x02\x02\u03D5\u03D8\x03\x02\x02\x02\u03D6\u03D4\x03\x02" +
+ "\x02\x02\u03D7\u03D9\x07>\x02\x02\u03D8\u03D7\x03\x02\x02\x02\u03D8\u03D9" +
+ "\x03\x02\x02\x02\u03D9\x97\x03\x02\x02\x02\u03DA\u03DF\x05d3\x02\u03DB" +
+ "\u03DC\x07>\x02\x02\u03DC\u03DE\x05d3\x02\u03DD\u03DB\x03\x02\x02\x02" +
+ "\u03DE\u03E1\x03\x02\x02\x02\u03DF\u03DD\x03\x02\x02\x02\u03DF\u03E0\x03" +
+ "\x02\x02\x02\u03E0\u03E3\x03\x02\x02\x02\u03E1\u03DF\x03\x02\x02\x02\u03E2" +
+ "\u03E4\x07>\x02\x02\u03E3\u03E2\x03\x02\x02\x02\u03E3\u03E4\x03\x02\x02" +
+ "\x02\u03E4\x99\x03\x02\x02\x02\u03E5\u03E6\x05d3\x02\u03E6\u03E7\x07?" +
+ "\x02\x02\u03E7\u03E8\x05d3\x02\u03E8\u03EC\x03\x02\x02\x02\u03E9\u03EA" +
+ "\x07A\x02\x02\u03EA\u03EC\x05x=\x02\u03EB\u03E5\x03\x02\x02\x02\u03EB" +
+ "\u03E9\x03\x02\x02\x02\u03EC\u03FF\x03\x02\x02\x02\u03ED\u0400\x05\xA6" +
+ "T\x02\u03EE\u03F5\x07>\x02\x02\u03EF\u03F0\x05d3\x02\u03F0\u03F1\x07?" +
+ "\x02\x02\u03F1\u03F2\x05d3\x02\u03F2\u03F6\x03\x02\x02\x02\u03F3\u03F4" +
+ "\x07A\x02\x02\u03F4\u03F6\x05x=\x02\u03F5\u03EF\x03\x02\x02\x02\u03F5" +
+ "\u03F3\x03\x02\x02\x02\u03F6\u03F8\x03\x02\x02\x02\u03F7\u03EE\x03\x02" +
+ "\x02\x02\u03F8\u03FB\x03\x02\x02\x02\u03F9\u03F7\x03\x02\x02\x02\u03F9" +
+ "\u03FA\x03\x02\x02\x02\u03FA\u03FD\x03\x02\x02\x02\u03FB\u03F9\x03\x02" +
+ "\x02\x02\u03FC\u03FE\x07>\x02\x02\u03FD\u03FC\x03\x02\x02\x02\u03FD\u03FE" +
+ "\x03\x02\x02\x02\u03FE\u0400\x03\x02\x02\x02\u03FF\u03ED\x03\x02\x02\x02" +
+ "\u03FF\u03F9\x03\x02\x02\x02\u0400\u0416\x03\x02\x02\x02\u0401\u0404\x05" +
+ "d3\x02\u0402\u0404\x05v<\x02\u0403\u0401\x03\x02\x02\x02\u0403\u0402\x03" +
+ "\x02\x02\x02\u0404\u0413\x03\x02\x02\x02\u0405\u0414\x05\xA6T\x02\u0406" +
+ "\u0409\x07>\x02\x02\u0407\u040A\x05d3\x02\u0408\u040A\x05v<\x02\u0409" +
+ "\u0407\x03\x02\x02\x02\u0409\u0408\x03\x02\x02\x02\u040A\u040C\x03\x02" +
+ "\x02\x02\u040B\u0406\x03\x02\x02\x02\u040C\u040F\x03\x02\x02\x02\u040D" +
+ "\u040B\x03\x02\x02\x02\u040D\u040E\x03\x02\x02\x02\u040E\u0411\x03\x02" +
+ "\x02\x02\u040F\u040D\x03\x02\x02\x02\u0410\u0412\x07>\x02\x02\u0411\u0410" +
+ "\x03\x02\x02\x02\u0411\u0412\x03\x02\x02\x02\u0412\u0414\x03\x02\x02\x02" +
+ "\u0413\u0405\x03\x02\x02\x02\u0413\u040D\x03\x02\x02\x02\u0414\u0416\x03" +
+ "\x02\x02\x02\u0415\u03EB\x03\x02\x02\x02\u0415\u0403\x03\x02\x02\x02\u0416" +
+ "\x9B\x03\x02\x02\x02\u0417\u0418\x07\'\x02\x02\u0418\u041E\x070\x02\x02" +
+ "\u0419\u041B\x07<\x02\x02\u041A\u041C\x05\xA0Q\x02\u041B\u041A\x03\x02" +
+ "\x02\x02\u041B\u041C\x03\x02\x02\x02\u041C\u041D\x03\x02\x02\x02\u041D" +
+ "\u041F\x07=\x02\x02\u041E\u0419\x03\x02\x02\x02\u041E\u041F\x03\x02\x02" +
+ "\x02\u041F\u0420\x03\x02\x02\x02\u0420\u0421\x07?\x02\x02\u0421\u0422" +
+ "\x05b2\x02\u0422\x9D\x03\x02\x02\x02\u0423\u0425\x07<\x02\x02\u0424\u0426" +
+ "\x05\xA0Q\x02\u0425\u0424\x03\x02\x02\x02\u0425\u0426\x03\x02\x02\x02" +
+ "\u0426\u0427\x03\x02\x02\x02\u0427\u0428\x07=\x02\x02\u0428\x9F\x03\x02" +
+ "\x02\x02\u0429\u042E\x05\xA2R\x02\u042A\u042B\x07>\x02\x02\u042B\u042D" +
+ "\x05\xA2R\x02\u042C\u042A\x03\x02\x02\x02\u042D\u0430\x03\x02\x02\x02" +
+ "\u042E\u042C\x03\x02\x02\x02\u042E\u042F\x03\x02\x02\x02\u042F\u0432\x03" +
+ "\x02\x02\x02\u0430\u042E\x03\x02\x02\x02\u0431\u0433\x07>\x02\x02\u0432" +
+ "\u0431\x03\x02\x02\x02\u0432\u0433\x03\x02\x02\x02\u0433\xA1\x03\x02\x02" +
+ "\x02\u0434\u0436\x05d3\x02\u0435\u0437\x05\xA6T\x02\u0436\u0435\x03\x02" +
+ "\x02\x02\u0436\u0437\x03\x02\x02\x02\u0437\u0441\x03\x02\x02\x02\u0438" +
+ "\u0439\x05d3\x02\u0439\u043A\x07B\x02\x02\u043A\u043B\x05d3\x02\u043B" +
+ "\u0441\x03\x02\x02\x02\u043C\u043D\x07A\x02\x02\u043D\u0441\x05d3\x02" +
+ "\u043E\u043F\x07;\x02\x02\u043F\u0441\x05";
private static readonly _serializedATNSegment2: string =
- "\xA1\x03\x02\x02\x02\u043E\u0441\x05\xA4S\x02\u043F\u0441\x05\xA6T\x02" +
- "\u0440\u043E\x03\x02\x02\x02\u0440\u043F\x03\x02\x02\x02\u0441\xA3\x03" +
- "\x02\x02\x02\u0442\u0444\x07-\x02\x02\u0443\u0442\x03\x02\x02\x02\u0443" +
- "\u0444\x03\x02\x02\x02\u0444\u0445\x03\x02\x02\x02\u0445\u0446\x07\x19" +
- "\x02\x02\u0446\u0447\x05\x96L\x02\u0447\u0448\x07\x1A\x02\x02\u0448\u044A" +
- "\x05l7\x02\u0449\u044B\x05\xA2R\x02\u044A\u0449\x03\x02\x02\x02\u044A" +
- "\u044B\x03\x02\x02\x02\u044B\xA5\x03\x02\x02\x02\u044C\u044D\x07\x15\x02" +
- "\x02\u044D\u044F\x05f4\x02\u044E\u0450\x05\xA2R\x02\u044F\u044E\x03\x02" +
- "\x02\x02\u044F\u0450\x03\x02\x02\x02\u0450\xA7\x03\x02\x02\x02\u0451\u0452" +
- "\x070\x02\x02\u0452\xA9\x03\x02\x02\x02\u0453\u0455\x07(\x02\x02\u0454" +
- "\u0456\x05\xACW\x02\u0455\u0454\x03\x02\x02\x02\u0455\u0456\x03\x02\x02" +
- "\x02\u0456\xAB\x03\x02\x02\x02\u0457\u0458\x07\x0F\x02\x02\u0458\u045B" +
- "\x05d3\x02\u0459\u045B\x05\x98M\x02\u045A\u0457\x03\x02\x02\x02\u045A" +
- "\u0459\x03\x02\x02\x02\u045B\xAD\x03\x02\x02\x02\u045C\u0460\x07\x05\x02" +
- "\x02\u045D\u045F\x05\xB0Y\x02\u045E\u045D\x03\x02\x02\x02\u045F\u0462" +
- "\x03\x02\x02\x02\u0460\u045E\x03\x02\x02\x02\u0460\u0461\x03\x02\x02\x02" +
- "\u0461\u0463\x03\x02\x02\x02\u0462\u0460\x03\x02\x02\x02\u0463\u047D\x07" +
- "m\x02\x02\u0464\u0468\x07\x07\x02\x02\u0465\u0467\x05\xB0Y\x02\u0466\u0465" +
- "\x03\x02\x02\x02\u0467\u046A\x03\x02\x02\x02\u0468\u0466\x03\x02\x02\x02" +
- "\u0468\u0469\x03\x02\x02\x02\u0469\u046B\x03\x02\x02\x02\u046A\u0468\x03" +
- "\x02\x02\x02\u046B\u047D\x07n\x02\x02\u046C\u0470\x07\x06\x02\x02\u046D" +
- "\u046F\x05\xB2Z\x02\u046E\u046D\x03\x02\x02\x02\u046F\u0472\x03\x02\x02" +
- "\x02\u0470\u046E\x03\x02\x02\x02\u0470\u0471\x03\x02\x02\x02\u0471\u0473" +
- "\x03\x02\x02\x02\u0472\u0470\x03\x02\x02\x02\u0473\u047D\x07p\x02\x02" +
- "\u0474\u0478\x07\b\x02\x02\u0475\u0477\x05\xB2Z\x02\u0476\u0475\x03\x02" +
- "\x02\x02\u0477\u047A\x03\x02\x02\x02\u0478\u0476\x03\x02\x02\x02\u0478" +
- "\u0479\x03\x02\x02\x02\u0479\u047B\x03\x02\x02\x02\u047A\u0478\x03\x02" +
- "\x02\x02\u047B\u047D\x07q\x02\x02\u047C\u045C\x03\x02\x02\x02\u047C\u0464" +
- "\x03\x02\x02\x02\u047C\u046C\x03\x02\x02\x02\u047C\u0474\x03\x02\x02\x02" +
- "\u047D\xAF\x03\x02\x02\x02\u047E\u0487\x07o\x02\x02\u047F\u0482\x07P\x02" +
- "\x02\u0480\u0483\x05d3\x02\u0481\u0483\x05v<\x02\u0482\u0480\x03\x02\x02" +
- "\x02\u0482\u0481\x03\x02\x02\x02\u0483\u0484\x03\x02\x02\x02\u0484\u0485" +
- "\x07Q\x02\x02\u0485\u0487\x03\x02\x02\x02\u0486\u047E\x03\x02\x02\x02" +
- "\u0486\u047F\x03\x02\x02\x02\u0487\xB1\x03\x02\x02\x02\u0488\u0491\x07" +
- "r\x02\x02\u0489\u048C\x07P\x02\x02\u048A\u048D\x05d3\x02\u048B\u048D\x05" +
- "v<\x02\u048C\u048A\x03\x02\x02\x02\u048C\u048B\x03\x02\x02\x02\u048D\u048E" +
- "\x03\x02\x02\x02\u048E\u048F\x07Q\x02\x02\u048F\u0491\x03\x02\x02\x02" +
- "\u0490\u0488\x03\x02\x02\x02\u0490\u0489\x03\x02\x02\x02\u0491\xB3\x03" +
- "\x02\x02\x02\xB2\xB6\xB8\xC2\xC8\xD1\xD4\xDB\xE1\xEB\xF2\xF9\xFF\u0103" +
- "\u0109\u010F\u0113\u011A\u011C\u011E\u0123\u0125\u0127\u012B\u0131\u0135" +
- "\u013C\u013E\u0140\u0145\u0147\u014C\u0151\u0157\u015B\u0161\u0167\u016B" +
- "\u0172\u0174\u0176\u017B\u017D\u017F\u0183\u0189\u018D\u0194\u0196\u0198" +
- "\u019D\u019F\u01A5\u01AC\u01B0\u01BC\u01C3\u01C8\u01CC\u01CF\u01D5\u01D9" +
- "\u01DE\u01E2\u01E6\u01F4\u01FC\u0204\u0206\u020A\u0213\u021A\u021C\u0225" +
- "\u022A\u022F\u0236\u023A\u0241\u0249\u0252\u025B\u0262\u026D\u0273\u0280" +
- "\u0286\u028F\u029A\u02A5\u02AA\u02AF\u02B4\u02BC\u02C5\u02CB\u02CD\u02D5" +
- "\u02D9\u02E1\u02E4\u02E8\u02EC\u02F3\u02FD\u0305\u030B\u0313\u0323\u032D" +
- "\u0335\u033D\u0345\u034D\u0355\u035B\u0360\u0363\u0369\u036F\u0374\u0379" +
- "\u0381\u0386\u038C\u0390\u0396\u039A\u039E\u03A0\u03A4\u03AD\u03B4\u03B8" +
- "\u03BC\u03C0\u03C3\u03C5\u03C9\u03CD\u03D2\u03D6\u03DA\u03E1\u03E5\u03ED" +
- "\u03F7\u03FB\u03FF\u0401\u0405\u040B\u040F\u0413\u0415\u0417\u041D\u0420" +
- "\u042A\u042E\u0432\u043C\u0440\u0443\u044A\u044F\u0455\u045A\u0460\u0468" +
- "\u0470\u0478\u047C\u0482\u0486\u048C\u0490";
+ "d3\x02\u0440\u0434\x03\x02\x02\x02\u0440\u0438\x03\x02\x02\x02\u0440\u043C" +
+ "\x03\x02\x02\x02\u0440\u043E\x03\x02\x02\x02\u0441\xA3\x03\x02\x02\x02" +
+ "\u0442\u0445\x05\xA6T\x02\u0443\u0445\x05\xA8U\x02\u0444\u0442\x03\x02" +
+ "\x02\x02\u0444\u0443\x03\x02\x02\x02\u0445\xA5\x03\x02\x02\x02\u0446\u0448" +
+ "\x07-\x02\x02\u0447\u0446\x03\x02\x02\x02\u0447\u0448\x03\x02\x02\x02" +
+ "\u0448\u0449\x03\x02\x02\x02\u0449\u044A\x07\x19\x02\x02\u044A\u044B\x05" +
+ "\x96L\x02\u044B\u044C\x07\x1A\x02\x02\u044C\u044E\x05l7\x02\u044D\u044F" +
+ "\x05\xA4S\x02\u044E\u044D\x03\x02\x02\x02\u044E\u044F\x03\x02\x02\x02" +
+ "\u044F\xA7\x03\x02\x02\x02\u0450\u0451\x07\x15\x02\x02\u0451\u0453\x05" +
+ "f4\x02\u0452\u0454\x05\xA4S\x02\u0453\u0452\x03\x02\x02\x02\u0453\u0454" +
+ "\x03\x02\x02\x02\u0454\xA9\x03\x02\x02\x02\u0455\u0456\x070\x02\x02\u0456" +
+ "\xAB\x03\x02\x02\x02\u0457\u0459\x07(\x02\x02\u0458\u045A\x05\xAEX\x02" +
+ "\u0459\u0458\x03\x02\x02\x02\u0459\u045A\x03\x02\x02\x02\u045A\xAD\x03" +
+ "\x02\x02\x02\u045B\u045C\x07\x0F\x02\x02\u045C\u045F\x05d3\x02\u045D\u045F" +
+ "\x05\x98M\x02\u045E\u045B\x03\x02\x02\x02\u045E\u045D\x03\x02\x02\x02" +
+ "\u045F\xAF\x03\x02\x02\x02\u0460\u0464\x07\x05\x02\x02\u0461\u0463\x05" +
+ "\xB2Z\x02\u0462\u0461\x03\x02\x02\x02\u0463\u0466\x03\x02\x02\x02\u0464" +
+ "\u0462\x03\x02\x02\x02\u0464\u0465\x03\x02\x02\x02\u0465\u0467\x03\x02" +
+ "\x02\x02\u0466\u0464\x03\x02\x02\x02\u0467\u0481\x07m\x02\x02\u0468\u046C" +
+ "\x07\x07\x02\x02\u0469\u046B\x05\xB2Z\x02\u046A\u0469\x03\x02\x02\x02" +
+ "\u046B\u046E\x03\x02\x02\x02\u046C\u046A\x03\x02\x02\x02\u046C\u046D\x03" +
+ "\x02\x02\x02\u046D\u046F\x03\x02\x02\x02\u046E\u046C\x03\x02\x02\x02\u046F" +
+ "\u0481\x07n\x02\x02\u0470\u0474\x07\x06\x02\x02\u0471\u0473\x05\xB4[\x02" +
+ "\u0472\u0471\x03\x02\x02\x02\u0473\u0476\x03\x02\x02\x02\u0474\u0472\x03" +
+ "\x02\x02\x02\u0474\u0475\x03\x02\x02\x02\u0475\u0477\x03\x02\x02\x02\u0476" +
+ "\u0474\x03\x02\x02\x02\u0477\u0481\x07p\x02\x02\u0478\u047C\x07\b\x02" +
+ "\x02\u0479\u047B\x05\xB4[\x02\u047A\u0479\x03\x02\x02\x02\u047B\u047E" +
+ "\x03\x02\x02\x02\u047C\u047A\x03\x02\x02\x02\u047C\u047D\x03\x02\x02\x02" +
+ "\u047D\u047F\x03\x02\x02\x02\u047E\u047C\x03\x02\x02\x02\u047F\u0481\x07" +
+ "q\x02\x02\u0480\u0460\x03\x02\x02\x02\u0480\u0468\x03\x02\x02\x02\u0480" +
+ "\u0470\x03\x02\x02\x02\u0480\u0478\x03\x02\x02\x02\u0481\xB1\x03\x02\x02" +
+ "\x02\u0482\u048B\x07o\x02\x02\u0483\u0486\x07P\x02\x02\u0484\u0487\x05" +
+ "d3\x02\u0485\u0487\x05v<\x02\u0486\u0484\x03\x02\x02\x02\u0486\u0485\x03" +
+ "\x02\x02\x02\u0487\u0488\x03\x02\x02\x02\u0488\u0489\x07Q\x02\x02\u0489" +
+ "\u048B\x03\x02\x02\x02\u048A\u0482\x03\x02\x02\x02\u048A\u0483\x03\x02" +
+ "\x02\x02\u048B\xB3\x03\x02\x02\x02\u048C\u0495\x07r\x02\x02\u048D\u0490" +
+ "\x07P\x02\x02\u048E\u0491\x05d3\x02\u048F\u0491\x05v<\x02\u0490\u048E" +
+ "\x03\x02\x02\x02\u0490\u048F\x03\x02\x02\x02\u0491\u0492\x03\x02\x02\x02" +
+ "\u0492\u0493\x07Q\x02\x02\u0493\u0495\x03\x02\x02\x02\u0494\u048C\x03" +
+ "\x02\x02\x02\u0494\u048D\x03\x02\x02\x02\u0495\xB5\x03\x02\x02\x02\xB2" +
+ "\xB8\xBA\xC4\xCA\xD3\xD6\xDD\xE3\xED\xF4\xFB\u0101\u0105\u010B\u0111\u0115" +
+ "\u011C\u011E\u0120\u0125\u0127\u0129\u012D\u0133\u0137\u013E\u0140\u0142" +
+ "\u0147\u0149\u014E\u0153\u0159\u015D\u0163\u0169\u016D\u0174\u0176\u0178" +
+ "\u017D\u017F\u0181\u0185\u018B\u018F\u0196\u0198\u019A\u019F\u01A1\u01A7" +
+ "\u01AE\u01B2\u01BE\u01C5\u01CA\u01CE\u01D1\u01D7\u01DB\u01E0\u01E4\u01E8" +
+ "\u01F6\u01FE\u0206\u0208\u020C\u0215\u021C\u021E\u0227\u022C\u0231\u0238" +
+ "\u023C\u0243\u024B\u0254\u025D\u0264\u026F\u0275\u0282\u0288\u0291\u029C" +
+ "\u02A7\u02AC\u02B1\u02B6\u02BE\u02C7\u02CD\u02CF\u02D7\u02DB\u02E3\u02E6" +
+ "\u02EA\u02EE\u02F5\u02FF\u0307\u030D\u0315\u0325\u032F\u0337\u033F\u0347" +
+ "\u034F\u0357\u035D\u0362\u0365\u036B\u0371\u0376\u037B\u0383\u0388\u038E" +
+ "\u0392\u0398\u039C\u03A0\u03A2\u03AB\u03B2\u03B6\u03BA\u03BE\u03C1\u03C3" +
+ "\u03C7\u03CB\u03D0\u03D4\u03D8\u03DF\u03E3\u03EB\u03F5\u03F9\u03FD\u03FF" +
+ "\u0403\u0409\u040D\u0411\u0413\u0415\u041B\u041E\u0425\u042E\u0432\u0436" +
+ "\u0440\u0444\u0447\u044E\u0453\u0459\u045E\u0464\u046C\u0474\u047C\u0480" +
+ "\u0486\u048A\u0490\u0494";
public static readonly _serializedATN: string = Utils.join(
[
Python3Parser._serializedATNSegment0,
@@ -9914,10 +9943,8 @@ export class Testlist_compContext extends ParserRuleContext {
export class TrailerContext extends ParserRuleContext {
- public OPEN_PAREN(): TerminalNode | undefined { return this.tryGetToken(Python3Parser.OPEN_PAREN, 0); }
- public CLOSE_PAREN(): TerminalNode | undefined { return this.tryGetToken(Python3Parser.CLOSE_PAREN, 0); }
- public arglist(): ArglistContext | undefined {
- return this.tryGetRuleContext(0, ArglistContext);
+ public callArguments(): CallArgumentsContext | undefined {
+ return this.tryGetRuleContext(0, CallArgumentsContext);
}
public OPEN_BRACK(): TerminalNode | undefined { return this.tryGetToken(Python3Parser.OPEN_BRACK, 0); }
public subscriptlist(): SubscriptlistContext | undefined {
@@ -10305,6 +10332,40 @@ export class ClassdefContext extends ParserRuleContext {
}
+export class CallArgumentsContext extends ParserRuleContext {
+ public OPEN_PAREN(): TerminalNode { return this.getToken(Python3Parser.OPEN_PAREN, 0); }
+ public CLOSE_PAREN(): TerminalNode { return this.getToken(Python3Parser.CLOSE_PAREN, 0); }
+ public arglist(): ArglistContext | undefined {
+ return this.tryGetRuleContext(0, ArglistContext);
+ }
+ constructor(parent: ParserRuleContext | undefined, invokingState: number) {
+ super(parent, invokingState);
+ }
+ // @Override
+ public get ruleIndex(): number { return Python3Parser.RULE_callArguments; }
+ // @Override
+ public enterRule(listener: Python3ParserListener): void {
+ if (listener.enterCallArguments) {
+ listener.enterCallArguments(this);
+ }
+ }
+ // @Override
+ public exitRule(listener: Python3ParserListener): void {
+ if (listener.exitCallArguments) {
+ listener.exitCallArguments(this);
+ }
+ }
+ // @Override
+ public accept(visitor: Python3ParserVisitor): Result {
+ if (visitor.visitCallArguments) {
+ return visitor.visitCallArguments(this);
+ } else {
+ return visitor.visitChildren(this);
+ }
+ }
+}
+
+
export class ArglistContext extends ParserRuleContext {
public argument(): ArgumentContext[];
public argument(i: number): ArgumentContext;
diff --git a/packages/cubejs-schema-compiler/src/parser/Python3ParserListener.ts b/packages/cubejs-schema-compiler/src/parser/Python3ParserListener.ts
index 31c9882874611..bba39b092e5bf 100644
--- a/packages/cubejs-schema-compiler/src/parser/Python3ParserListener.ts
+++ b/packages/cubejs-schema-compiler/src/parser/Python3ParserListener.ts
@@ -81,6 +81,7 @@ import { ExprlistContext } from "./Python3Parser";
import { TestlistContext } from "./Python3Parser";
import { DictorsetmakerContext } from "./Python3Parser";
import { ClassdefContext } from "./Python3Parser";
+import { CallArgumentsContext } from "./Python3Parser";
import { ArglistContext } from "./Python3Parser";
import { ArgumentContext } from "./Python3Parser";
import { Comp_iterContext } from "./Python3Parser";
@@ -957,6 +958,17 @@ export interface Python3ParserListener extends ParseTreeListener {
*/
exitClassdef?: (ctx: ClassdefContext) => void;
+ /**
+ * Enter a parse tree produced by `Python3Parser.callArguments`.
+ * @param ctx the parse tree
+ */
+ enterCallArguments?: (ctx: CallArgumentsContext) => void;
+ /**
+ * Exit a parse tree produced by `Python3Parser.callArguments`.
+ * @param ctx the parse tree
+ */
+ exitCallArguments?: (ctx: CallArgumentsContext) => void;
+
/**
* Enter a parse tree produced by `Python3Parser.arglist`.
* @param ctx the parse tree
diff --git a/packages/cubejs-schema-compiler/src/parser/Python3ParserVisitor.ts b/packages/cubejs-schema-compiler/src/parser/Python3ParserVisitor.ts
index e623960966772..3af36e66b2aeb 100644
--- a/packages/cubejs-schema-compiler/src/parser/Python3ParserVisitor.ts
+++ b/packages/cubejs-schema-compiler/src/parser/Python3ParserVisitor.ts
@@ -81,6 +81,7 @@ import { ExprlistContext } from "./Python3Parser";
import { TestlistContext } from "./Python3Parser";
import { DictorsetmakerContext } from "./Python3Parser";
import { ClassdefContext } from "./Python3Parser";
+import { CallArgumentsContext } from "./Python3Parser";
import { ArglistContext } from "./Python3Parser";
import { ArgumentContext } from "./Python3Parser";
import { Comp_iterContext } from "./Python3Parser";
@@ -648,6 +649,13 @@ export interface Python3ParserVisitor extends ParseTreeVisitor {
*/
visitClassdef?: (ctx: ClassdefContext) => Result;
+ /**
+ * Visit a parse tree produced by `Python3Parser.callArguments`.
+ * @param ctx the parse tree
+ * @return the visitor result
+ */
+ visitCallArguments?: (ctx: CallArgumentsContext) => Result;
+
/**
* Visit a parse tree produced by `Python3Parser.arglist`.
* @param ctx the parse tree
diff --git a/packages/cubejs-schema-compiler/src/parser/PythonParser.ts b/packages/cubejs-schema-compiler/src/parser/PythonParser.ts
index b56584a291f86..5c379a40df9fe 100644
--- a/packages/cubejs-schema-compiler/src/parser/PythonParser.ts
+++ b/packages/cubejs-schema-compiler/src/parser/PythonParser.ts
@@ -19,6 +19,7 @@ import {
LambdefContext,
Single_string_template_atomContext,
ArglistContext,
+ CallArgumentsContext,
} from './Python3Parser';
import { UserError } from '../compiler/UserError';
import { Python3ParserVisitor } from './Python3ParserVisitor';
@@ -36,7 +37,7 @@ const nodeVisitor = (visitor: { visitNode: (node: RuleNode, children: R[]) =>
const result: R[] = [];
for (let i = 0; i < node.childCount; i++) {
const child = node.getChild(i);
- if (child && child.childCount) {
+ if (child?.childCount) {
result.push(child.accept(this));
}
}
@@ -175,13 +176,22 @@ export class PythonParser {
} else {
return singleNodeReturn();
}
- } else if (node instanceof TrailerContext) {
- const name = node.NAME();
+ } else if (node instanceof CallArgumentsContext) {
const argsList = node.arglist();
if (argsList) {
- // trailer with arglist have a single child: arguments _list_
+ // arglist have a single child: arguments _list_
const args = children[0];
return { call: args };
+ } else {
+ return { call: [] };
+ }
+ } else if (node instanceof TrailerContext) {
+ const name = node.NAME();
+ const argsList = node.callArguments();
+ if (argsList) {
+ // trailer with callArguments have a single child: CallArgumentsContext
+ // which was already processed (see other if branch)
+ return children[0];
} else if (name) {
return { identifier: t.identifier(name.text) };
} else {
diff --git a/packages/cubejs-schema-compiler/test/integration/postgres/yaml-compiler.test.ts b/packages/cubejs-schema-compiler/test/integration/postgres/yaml-compiler.test.ts
index 9695454ca3077..29b03bf4b383a 100644
--- a/packages/cubejs-schema-compiler/test/integration/postgres/yaml-compiler.test.ts
+++ b/packages/cubejs-schema-compiler/test/integration/postgres/yaml-compiler.test.ts
@@ -1,5 +1,5 @@
import { PostgresQuery } from '../../../src/adapter/PostgresQuery';
-import { prepareYamlCompiler } from '../../unit/PrepareCompiler';
+import { prepareCompiler, prepareYamlCompiler } from '../../unit/PrepareCompiler';
import { dbRunner } from './PostgresDBRunner';
describe('YAMLCompiler', () => {
@@ -675,4 +675,182 @@ views:
}]
);
});
+
+ it('calling cube\'s sql() (yaml-yaml)', async () => {
+ const { compiler, joinGraph, cubeEvaluator } = prepareYamlCompiler(
+ `cubes:
+ - name: simple_orders
+ sql: >
+ SELECT 1 AS id, 100 AS amount, 'new' status, '2025-04-15'::TIMESTAMP AS created_at
+ UNION ALL
+ SELECT 2 AS id, 200 AS amount, 'new' status, '2025-04-16'::TIMESTAMP AS created_at
+ UNION ALL
+ SELECT 3 AS id, 300 AS amount, 'processed' status, '2025-04-17'::TIMESTAMP AS created_at
+ UNION ALL
+ SELECT 4 AS id, 500 AS amount, 'processed' status, '2025-04-18'::TIMESTAMP AS created_at
+ UNION ALL
+ SELECT 5 AS id, 600 AS amount, 'shipped' status, '2025-04-19'::TIMESTAMP AS created_at
+
+ measures:
+ - name: count
+ type: count
+ - name: total_amount
+ sql: amount
+ type: sum
+
+ dimensions:
+ - name: status
+ sql: status
+ type: string
+
+ - name: simple_orders_sql_ext
+
+ sql: >
+ SELECT * FROM {simple_orders.sql()} as parent
+ WHERE status = 'new'
+
+ measures:
+ - name: count
+ type: count
+
+ - name: total_amount
+ sql: amount
+ type: sum
+
+ dimensions:
+ - name: id
+ sql: id
+ type: number
+ primary_key: true
+
+ - name: created_at
+ sql: created_at
+ type: time
+ `
+ );
+
+ await compiler.compile();
+
+ const query = new PostgresQuery({ joinGraph, cubeEvaluator, compiler }, {
+ measures: ['simple_orders_sql_ext.count'],
+ timeDimensions: [{
+ dimension: 'simple_orders_sql_ext.created_at',
+ granularity: 'day',
+ dateRange: ['2025-04-01', '2025-05-01']
+ }],
+ timezone: 'UTC',
+ preAggregationsSchema: ''
+ });
+
+ const res = await dbRunner.evaluateQueryWithPreAggregations(query);
+
+ expect(res).toEqual(
+ [
+ {
+ simple_orders_sql_ext__count: '1',
+ simple_orders_sql_ext__created_at_day: '2025-04-15T00:00:00.000Z',
+ },
+ {
+ simple_orders_sql_ext__count: '1',
+ simple_orders_sql_ext__created_at_day: '2025-04-16T00:00:00.000Z',
+ }
+ ]
+ );
+ });
+
+ it('calling cube\'s sql() (yaml-js)', async () => {
+ const { compiler, joinGraph, cubeEvaluator } = prepareCompiler([
+ {
+ content: `
+cube('simple_orders', {
+ sql: \`
+ SELECT 1 AS id, 100 AS amount, 'new' status, '2025-04-15'::TIMESTAMP AS created_at
+ UNION ALL
+ SELECT 2 AS id, 200 AS amount, 'new' status, '2025-04-16'::TIMESTAMP AS created_at
+ UNION ALL
+ SELECT 3 AS id, 300 AS amount, 'processed' status, '2025-04-17'::TIMESTAMP AS created_at
+ UNION ALL
+ SELECT 4 AS id, 500 AS amount, 'processed' status, '2025-04-18'::TIMESTAMP AS created_at
+ UNION ALL
+ SELECT 5 AS id, 600 AS amount, 'shipped' status, '2025-04-19'::TIMESTAMP AS created_at
+ \`,
+
+ dimensions: {
+ status: {
+ sql: 'status',
+ type: 'string',
+ },
+ },
+
+ measures: {
+ count: {
+ type: 'count',
+ },
+ total_amount: {
+ type: 'sum',
+ sql: 'total_amount',
+ },
+ },
+});
+ `,
+ fileName: 'cube.js',
+ },
+ {
+ content: `cubes:
+ - name: simple_orders_sql_ext
+
+ sql: >
+ SELECT * FROM {simple_orders.sql()} as parent
+ WHERE status = 'new'
+
+ measures:
+ - name: count
+ type: count
+
+ - name: total_amount
+ sql: amount
+ type: sum
+
+ dimensions:
+ - name: id
+ sql: id
+ type: number
+ primary_key: true
+
+ - name: created_at
+ sql: created_at
+ type: time
+ `,
+ fileName: 'cube.yml',
+ },
+ ]);
+
+ await compiler.compile();
+
+ const query = new PostgresQuery({ joinGraph, cubeEvaluator, compiler }, {
+ measures: ['simple_orders_sql_ext.count'],
+ timeDimensions: [{
+ dimension: 'simple_orders_sql_ext.created_at',
+ granularity: 'day',
+ dateRange: ['2025-04-01', '2025-05-01']
+ }],
+ timezone: 'UTC',
+ preAggregationsSchema: ''
+ });
+
+ const res = await dbRunner.evaluateQueryWithPreAggregations(query);
+
+ expect(res).toEqual(
+ [
+ {
+ simple_orders_sql_ext__count: '1',
+ simple_orders_sql_ext__created_at_day: '2025-04-15T00:00:00.000Z',
+ },
+ {
+ simple_orders_sql_ext__count: '1',
+ simple_orders_sql_ext__created_at_day: '2025-04-16T00:00:00.000Z',
+ }
+ ]
+ );
+ });
});
diff --git a/packages/cubejs-schema-compiler/test/unit/yaml-schema.test.ts b/packages/cubejs-schema-compiler/test/unit/yaml-schema.test.ts
index cf04ff44961a4..8ff619a34f861 100644
--- a/packages/cubejs-schema-compiler/test/unit/yaml-schema.test.ts
+++ b/packages/cubejs-schema-compiler/test/unit/yaml-schema.test.ts
@@ -581,4 +581,52 @@ describe('Yaml Schema Testing', () => {
await compiler.compile();
});
});
+
+ it('calling cube\'s sql()', async () => {
+ const { compiler } = prepareYamlCompiler(
+ `cubes:
+ - name: simple_orders
+ sql: >
+ SELECT 1 AS id, 100 AS amount, 'new' status, now() AS created_at
+
+ measures:
+ - name: count
+ type: count
+ - name: total_amount
+ sql: amount
+ type: sum
+
+ dimensions:
+ - name: status
+ sql: status
+ type: string
+
+ - name: simple_orders_sql_ext
+
+ sql: >
+ SELECT * FROM {simple_orders.sql()} as q
+ WHERE status = 'processed'
+
+ measures:
+ - name: count
+ type: count
+
+ - name: total_amount
+ sql: amount
+ type: sum
+
+ dimensions:
+ - name: id
+ sql: id
+ type: number
+ primary_key: true
+
+ - name: created_at
+ sql: created_at
+ type: time
+ `
+ );
+
+ await compiler.compile();
+ });
});