@openmeter/sdk 1.0.0-beta.23 → 1.0.0-beta.230
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +234 -146
- package/dist/cjs/index.cjs +18 -0
- package/dist/cjs/index.cjs.map +1 -0
- package/dist/cjs/index.d.cts +1 -0
- package/dist/cjs/src/client/addons.cjs +105 -0
- package/dist/cjs/src/client/addons.cjs.map +1 -0
- package/dist/cjs/src/client/addons.d.cts +152 -0
- package/dist/cjs/src/client/apps.cjs +247 -0
- package/dist/cjs/src/client/apps.cjs.map +1 -0
- package/dist/cjs/src/client/apps.d.cts +327 -0
- package/dist/cjs/src/client/billing.cjs +375 -0
- package/dist/cjs/src/client/billing.cjs.map +1 -0
- package/dist/cjs/src/client/billing.d.cts +563 -0
- package/dist/cjs/src/client/common.cjs +47 -0
- package/dist/cjs/src/client/common.cjs.map +1 -0
- package/dist/cjs/src/client/common.d.cts +30 -0
- package/dist/cjs/src/client/customers.cjs +469 -0
- package/dist/cjs/src/client/customers.cjs.map +1 -0
- package/dist/cjs/src/client/customers.d.cts +620 -0
- package/dist/cjs/src/client/debug.cjs +27 -0
- package/dist/cjs/src/client/debug.cjs.map +1 -0
- package/dist/cjs/src/client/debug.d.cts +17 -0
- package/dist/cjs/src/client/entitlements.cjs +372 -0
- package/dist/cjs/src/client/entitlements.cjs.map +1 -0
- package/dist/cjs/src/client/entitlements.d.cts +670 -0
- package/dist/cjs/src/client/events.cjs +113 -0
- package/dist/cjs/src/client/events.cjs.map +1 -0
- package/dist/cjs/src/client/events.d.cts +48 -0
- package/dist/cjs/src/client/features.cjs +78 -0
- package/dist/cjs/src/client/features.cjs.map +1 -0
- package/dist/cjs/src/client/features.d.cts +90 -0
- package/dist/cjs/src/client/index.cjs +122 -0
- package/dist/cjs/src/client/index.cjs.map +1 -0
- package/dist/cjs/src/client/index.d.cts +54 -0
- package/dist/cjs/src/client/info.cjs +42 -0
- package/dist/cjs/src/client/info.cjs.map +1 -0
- package/dist/cjs/src/client/info.d.cts +34 -0
- package/dist/cjs/src/client/meters.cjs +160 -0
- package/dist/cjs/src/client/meters.cjs.map +1 -0
- package/dist/cjs/src/client/meters.d.cts +220 -0
- package/dist/cjs/src/client/notifications.cjs +269 -0
- package/dist/cjs/src/client/notifications.cjs.map +1 -0
- package/dist/cjs/src/client/notifications.d.cts +412 -0
- package/dist/cjs/src/client/plans.cjs +204 -0
- package/dist/cjs/src/client/plans.cjs.map +1 -0
- package/dist/cjs/src/client/plans.d.cts +252 -0
- package/dist/cjs/src/client/portal.cjs +55 -0
- package/dist/cjs/src/client/portal.cjs.map +1 -0
- package/dist/cjs/src/client/portal.d.cts +48 -0
- package/dist/cjs/src/client/schemas.cjs +3 -0
- package/dist/cjs/src/client/schemas.cjs.map +1 -0
- package/dist/cjs/src/client/schemas.d.cts +28002 -0
- package/dist/cjs/src/client/subjects.cjs +76 -0
- package/dist/cjs/src/client/subjects.cjs.map +1 -0
- package/dist/cjs/src/client/subjects.d.cts +79 -0
- package/dist/cjs/src/client/subscription-addons.cjs +70 -0
- package/dist/cjs/src/client/subscription-addons.cjs.map +1 -0
- package/dist/cjs/src/client/subscription-addons.d.cts +123 -0
- package/dist/cjs/src/client/subscriptions.cjs +132 -0
- package/dist/cjs/src/client/subscriptions.cjs.map +1 -0
- package/dist/cjs/src/client/subscriptions.d.cts +180 -0
- package/dist/cjs/src/client/utils.cjs +67 -0
- package/dist/cjs/src/client/utils.cjs.map +1 -0
- package/dist/cjs/src/client/utils.d.cts +12 -0
- package/dist/cjs/src/portal/index.cjs +89 -0
- package/dist/cjs/src/portal/index.cjs.map +1 -0
- package/dist/cjs/src/portal/index.d.cts +43 -0
- package/dist/cjs/src/react/context.cjs +35 -0
- package/dist/cjs/src/react/context.cjs.map +1 -0
- package/dist/cjs/src/react/context.d.cts +9 -0
- package/dist/cjs/src/zod/index.cjs +13679 -0
- package/dist/cjs/src/zod/index.cjs.map +1 -0
- package/dist/cjs/src/zod/index.d.cts +6360 -0
- package/dist/index.d.ts +1 -14
- package/dist/index.js +2 -15
- package/dist/index.js.map +1 -0
- package/dist/src/client/addons.d.ts +152 -0
- package/dist/src/client/addons.js +101 -0
- package/dist/src/client/addons.js.map +1 -0
- package/dist/src/client/apps.d.ts +327 -0
- package/dist/src/client/apps.js +240 -0
- package/dist/src/client/apps.js.map +1 -0
- package/dist/src/client/billing.d.ts +563 -0
- package/dist/src/client/billing.js +368 -0
- package/dist/src/client/billing.js.map +1 -0
- package/dist/src/client/common.d.ts +30 -0
- package/dist/src/client/common.js +42 -0
- package/dist/src/client/common.js.map +1 -0
- package/dist/src/client/customers.d.ts +620 -0
- package/dist/src/client/customers.js +461 -0
- package/dist/src/client/customers.js.map +1 -0
- package/dist/src/client/debug.d.ts +17 -0
- package/dist/src/client/debug.js +23 -0
- package/dist/src/client/debug.js.map +1 -0
- package/dist/src/client/entitlements.d.ts +670 -0
- package/dist/src/client/entitlements.js +365 -0
- package/dist/src/client/entitlements.js.map +1 -0
- package/dist/src/client/events.d.ts +48 -0
- package/dist/src/client/events.js +108 -0
- package/dist/src/client/events.js.map +1 -0
- package/dist/src/client/features.d.ts +90 -0
- package/dist/src/client/features.js +74 -0
- package/dist/src/client/features.js.map +1 -0
- package/dist/src/client/index.d.ts +54 -0
- package/dist/src/client/index.js +82 -0
- package/dist/src/client/index.js.map +1 -0
- package/dist/src/client/info.d.ts +34 -0
- package/dist/src/client/info.js +38 -0
- package/dist/src/client/info.js.map +1 -0
- package/dist/src/client/meters.d.ts +220 -0
- package/dist/src/client/meters.js +156 -0
- package/dist/src/client/meters.js.map +1 -0
- package/dist/src/client/notifications.d.ts +412 -0
- package/dist/src/client/notifications.js +262 -0
- package/dist/src/client/notifications.js.map +1 -0
- package/dist/src/client/plans.d.ts +252 -0
- package/dist/src/client/plans.js +199 -0
- package/dist/src/client/plans.js.map +1 -0
- package/dist/src/client/portal.d.ts +48 -0
- package/dist/src/client/portal.js +51 -0
- package/dist/src/client/portal.js.map +1 -0
- package/dist/src/client/schemas.d.ts +28002 -0
- package/dist/src/client/schemas.js +2 -0
- package/dist/src/client/schemas.js.map +1 -0
- package/dist/src/client/subjects.d.ts +79 -0
- package/dist/src/client/subjects.js +72 -0
- package/dist/src/client/subjects.js.map +1 -0
- package/dist/src/client/subscription-addons.d.ts +123 -0
- package/dist/src/client/subscription-addons.js +66 -0
- package/dist/src/client/subscription-addons.js.map +1 -0
- package/dist/src/client/subscriptions.d.ts +180 -0
- package/dist/src/client/subscriptions.js +128 -0
- package/dist/src/client/subscriptions.js.map +1 -0
- package/dist/src/client/utils.d.ts +12 -0
- package/dist/src/client/utils.js +61 -0
- package/dist/src/client/utils.js.map +1 -0
- package/dist/src/portal/index.d.ts +43 -0
- package/dist/src/portal/index.js +52 -0
- package/dist/src/portal/index.js.map +1 -0
- package/dist/src/react/context.d.ts +9 -0
- package/dist/src/react/context.js +16 -0
- package/dist/src/react/context.js.map +1 -0
- package/dist/src/zod/index.d.ts +6360 -0
- package/dist/src/zod/index.js +13615 -0
- package/dist/src/zod/index.js.map +1 -0
- package/dist/tsconfig.tsbuildinfo +1 -1
- package/package.json +82 -40
- package/dist/clients/client.d.ts +0 -40
- package/dist/clients/client.js +0 -104
- package/dist/clients/event.d.ts +0 -79
- package/dist/clients/event.js +0 -53
- package/dist/clients/meter.d.ts +0 -71
- package/dist/clients/meter.js +0 -64
- package/dist/clients/portal.d.ts +0 -23
- package/dist/clients/portal.js +0 -37
- package/dist/next.d.ts +0 -15
- package/dist/next.js +0 -46
- package/dist/schemas/openapi.d.ts +0 -460
- package/dist/schemas/openapi.js +0 -5
- package/dist/test/agent.d.ts +0 -2
- package/dist/test/agent.js +0 -178
- package/dist/test/mocks.d.ts +0 -12
- package/dist/test/mocks.js +0 -32
- package/index.ts +0 -22
- package/next.ts +0 -76
|
@@ -0,0 +1,372 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
+
exports.GrantsV2 = exports.EntitlementsV2 = exports.Grants = exports.Entitlements = void 0;
|
|
4
|
+
const utils_js_1 = require("./utils.cjs");
|
|
5
|
+
/**
|
|
6
|
+
* Entitlements
|
|
7
|
+
* @description With Entitlements, you can define and enforce usage limits, implement quota-based pricing, and manage access to features in your application.
|
|
8
|
+
*/
|
|
9
|
+
class Entitlements {
|
|
10
|
+
client;
|
|
11
|
+
grants;
|
|
12
|
+
constructor(client) {
|
|
13
|
+
this.client = client;
|
|
14
|
+
this.grants = new Grants(client);
|
|
15
|
+
}
|
|
16
|
+
/**
|
|
17
|
+
* Create an entitlement
|
|
18
|
+
*
|
|
19
|
+
* - Boolean entitlements define static feature access, e.g. "Can use SSO authentication".
|
|
20
|
+
* - Static entitlements let you pass along a configuration while granting access, e.g. "Using this feature with X Y settings" (passed in the config).
|
|
21
|
+
* - Metered entitlements have many use cases, from setting up usage-based access to implementing complex credit systems. Example: The customer can use 10000 AI tokens during the usage period of the entitlement.
|
|
22
|
+
*
|
|
23
|
+
* A given subject can only have one active (non-deleted) entitlement per featureKey. If you try to create a new entitlement for a featureKey that already has an active entitlement, the request will fail with a 409 error.
|
|
24
|
+
*
|
|
25
|
+
* Once an entitlement is created you cannot modify it, only delete it.
|
|
26
|
+
*
|
|
27
|
+
* @param subjectIdOrKey - The ID or key of the subject
|
|
28
|
+
* @param entitlement - The entitlement to create
|
|
29
|
+
* @param signal - An optional abort signal
|
|
30
|
+
* @returns The created entitlement
|
|
31
|
+
*/
|
|
32
|
+
async create(subjectIdOrKey, entitlement, options) {
|
|
33
|
+
const resp = await this.client.POST('/api/v1/subjects/{subjectIdOrKey}/entitlements', {
|
|
34
|
+
body: entitlement,
|
|
35
|
+
params: {
|
|
36
|
+
path: {
|
|
37
|
+
subjectIdOrKey: subjectIdOrKey,
|
|
38
|
+
},
|
|
39
|
+
},
|
|
40
|
+
...options,
|
|
41
|
+
});
|
|
42
|
+
return (0, utils_js_1.transformResponse)(resp);
|
|
43
|
+
}
|
|
44
|
+
/**
|
|
45
|
+
* Get an entitlement by ID
|
|
46
|
+
*
|
|
47
|
+
* @param id - The ID of the entitlement
|
|
48
|
+
* @param signal - An optional abort signal
|
|
49
|
+
* @returns The entitlement
|
|
50
|
+
*/
|
|
51
|
+
async get(id, options) {
|
|
52
|
+
const resp = await this.client.GET('/api/v1/entitlements/{entitlementId}', {
|
|
53
|
+
params: {
|
|
54
|
+
path: {
|
|
55
|
+
entitlementId: id,
|
|
56
|
+
},
|
|
57
|
+
},
|
|
58
|
+
...options,
|
|
59
|
+
});
|
|
60
|
+
return (0, utils_js_1.transformResponse)(resp);
|
|
61
|
+
}
|
|
62
|
+
/**
|
|
63
|
+
* List entitlements
|
|
64
|
+
*
|
|
65
|
+
* @param query - The query parameters
|
|
66
|
+
* @param signal - An optional abort signal
|
|
67
|
+
* @returns The entitlements
|
|
68
|
+
*/
|
|
69
|
+
async list(query, options) {
|
|
70
|
+
const resp = await this.client.GET('/api/v1/entitlements', {
|
|
71
|
+
params: {
|
|
72
|
+
query,
|
|
73
|
+
},
|
|
74
|
+
...options,
|
|
75
|
+
});
|
|
76
|
+
return (0, utils_js_1.transformResponse)(resp);
|
|
77
|
+
}
|
|
78
|
+
/**
|
|
79
|
+
* Delete an entitlement
|
|
80
|
+
*
|
|
81
|
+
* @param subjectIdOrKey - The ID or key of the subject
|
|
82
|
+
* @param entitlementId - The ID of the entitlement
|
|
83
|
+
* @param signal - An optional abort signal
|
|
84
|
+
* @returns The deleted entitlement
|
|
85
|
+
*/
|
|
86
|
+
async delete(subjectIdOrKey, entitlementId, options) {
|
|
87
|
+
const resp = await this.client.DELETE('/api/v1/subjects/{subjectIdOrKey}/entitlements/{entitlementId}', {
|
|
88
|
+
params: {
|
|
89
|
+
path: {
|
|
90
|
+
entitlementId,
|
|
91
|
+
subjectIdOrKey,
|
|
92
|
+
},
|
|
93
|
+
},
|
|
94
|
+
...options,
|
|
95
|
+
});
|
|
96
|
+
return (0, utils_js_1.transformResponse)(resp);
|
|
97
|
+
}
|
|
98
|
+
/**
|
|
99
|
+
* Get the value of an entitlement to check access
|
|
100
|
+
* All entitlement types share the hasAccess property in their value response, but multiple other properties are returned based on the entitlement type.
|
|
101
|
+
*
|
|
102
|
+
* @param subjectIdOrKey - The ID or key of the subject
|
|
103
|
+
* @param entitlementIdOrFeatureKey - The ID or feature key of the entitlement
|
|
104
|
+
* @param query - The query parameters
|
|
105
|
+
* @param signal - An optional abort signal
|
|
106
|
+
* @returns The entitlement value
|
|
107
|
+
*/
|
|
108
|
+
async value(subjectIdOrKey, entitlementIdOrFeatureKey, query, options) {
|
|
109
|
+
const resp = await this.client.GET('/api/v1/subjects/{subjectIdOrKey}/entitlements/{entitlementIdOrFeatureKey}/value', {
|
|
110
|
+
params: {
|
|
111
|
+
path: {
|
|
112
|
+
entitlementIdOrFeatureKey,
|
|
113
|
+
subjectIdOrKey,
|
|
114
|
+
},
|
|
115
|
+
query,
|
|
116
|
+
},
|
|
117
|
+
...options,
|
|
118
|
+
});
|
|
119
|
+
return (0, utils_js_1.transformResponse)(resp);
|
|
120
|
+
}
|
|
121
|
+
/**
|
|
122
|
+
* Get the history of an entitlement
|
|
123
|
+
* Returns historical balance and usage data for the entitlement. The queried history can span accross multiple reset events.
|
|
124
|
+
*
|
|
125
|
+
* @param subjectIdOrKey - The ID or key of the subject
|
|
126
|
+
* @param entitlementId - The ID of the entitlement
|
|
127
|
+
* @param query - The query parameters
|
|
128
|
+
* @param signal - An optional abort signal
|
|
129
|
+
* @returns The history of the entitlement
|
|
130
|
+
*/
|
|
131
|
+
async history(subjectIdOrKey, entitlementId, query, options) {
|
|
132
|
+
const resp = await this.client.GET('/api/v1/subjects/{subjectIdOrKey}/entitlements/{entitlementId}/history', {
|
|
133
|
+
params: {
|
|
134
|
+
path: {
|
|
135
|
+
entitlementId,
|
|
136
|
+
subjectIdOrKey,
|
|
137
|
+
},
|
|
138
|
+
query,
|
|
139
|
+
},
|
|
140
|
+
...options,
|
|
141
|
+
});
|
|
142
|
+
return (0, utils_js_1.transformResponse)(resp);
|
|
143
|
+
}
|
|
144
|
+
/**
|
|
145
|
+
* Override an entitlement
|
|
146
|
+
* This is useful for upgrades, downgrades, or other changes to entitlements that require a new entitlement to be created with zero downtime.
|
|
147
|
+
*
|
|
148
|
+
* @param subjectIdOrKey - The ID or key of the subject
|
|
149
|
+
* @param entitlementIdOrFeatureKey - The ID or feature key of the entitlement
|
|
150
|
+
* @param override - The override to create
|
|
151
|
+
* @param signal - An optional abort signal
|
|
152
|
+
* @returns The overridden entitlement
|
|
153
|
+
*/
|
|
154
|
+
async override(subjectIdOrKey, entitlementIdOrFeatureKey, override, options) {
|
|
155
|
+
const resp = await this.client.PUT('/api/v1/subjects/{subjectIdOrKey}/entitlements/{entitlementIdOrFeatureKey}/override', {
|
|
156
|
+
body: override,
|
|
157
|
+
params: {
|
|
158
|
+
path: {
|
|
159
|
+
entitlementIdOrFeatureKey,
|
|
160
|
+
subjectIdOrKey,
|
|
161
|
+
},
|
|
162
|
+
},
|
|
163
|
+
...options,
|
|
164
|
+
});
|
|
165
|
+
return (0, utils_js_1.transformResponse)(resp);
|
|
166
|
+
}
|
|
167
|
+
/**
|
|
168
|
+
* Reset entitlement usage
|
|
169
|
+
* - Reset marks the start of a new usage period for the entitlement and initiates grant rollover. At the start of a period usage is zerod out and grants are rolled over based on their rollover settings. It would typically be synced with the subjects billing period to enforce usage based on their subscription.
|
|
170
|
+
* - Usage is automatically reset for metered entitlements based on their usage period, but this endpoint allows to manually reset it at any time. When doing so the period anchor of the entitlement can be changed if needed.
|
|
171
|
+
*
|
|
172
|
+
* @param subjectIdOrKey - The ID or key of the subject
|
|
173
|
+
* @param entitlementId - The ID of the entitlement
|
|
174
|
+
* @param body - The body of the request
|
|
175
|
+
* @param signal - An optional abort signal
|
|
176
|
+
* @returns The reset entitlement
|
|
177
|
+
*/
|
|
178
|
+
async reset(subjectIdOrKey, entitlementId, body, options) {
|
|
179
|
+
const resp = await this.client.POST('/api/v1/subjects/{subjectIdOrKey}/entitlements/{entitlementId}/reset', {
|
|
180
|
+
body,
|
|
181
|
+
params: {
|
|
182
|
+
path: {
|
|
183
|
+
entitlementId,
|
|
184
|
+
subjectIdOrKey,
|
|
185
|
+
},
|
|
186
|
+
},
|
|
187
|
+
...options,
|
|
188
|
+
});
|
|
189
|
+
return (0, utils_js_1.transformResponse)(resp);
|
|
190
|
+
}
|
|
191
|
+
}
|
|
192
|
+
exports.Entitlements = Entitlements;
|
|
193
|
+
class Grants {
|
|
194
|
+
client;
|
|
195
|
+
constructor(client) {
|
|
196
|
+
this.client = client;
|
|
197
|
+
}
|
|
198
|
+
/**
|
|
199
|
+
* Grant usage to a subject for an entitlement
|
|
200
|
+
*
|
|
201
|
+
* @param subjectIdOrKey - The ID or key of the subject
|
|
202
|
+
* @param entitlementIdOrFeatureKey - The ID or feature key of the entitlement
|
|
203
|
+
* @param grant - The grant to create
|
|
204
|
+
* @param signal - An optional abort signal
|
|
205
|
+
* @returns The created grant
|
|
206
|
+
*/
|
|
207
|
+
async create(subjectIdOrKey, entitlementIdOrFeatureKey, grant, options) {
|
|
208
|
+
const resp = await this.client.POST('/api/v1/subjects/{subjectIdOrKey}/entitlements/{entitlementIdOrFeatureKey}/grants', {
|
|
209
|
+
body: grant,
|
|
210
|
+
params: {
|
|
211
|
+
path: {
|
|
212
|
+
entitlementIdOrFeatureKey,
|
|
213
|
+
subjectIdOrKey,
|
|
214
|
+
},
|
|
215
|
+
},
|
|
216
|
+
...options,
|
|
217
|
+
});
|
|
218
|
+
return (0, utils_js_1.transformResponse)(resp);
|
|
219
|
+
}
|
|
220
|
+
/**
|
|
221
|
+
* List grants for an entitlement
|
|
222
|
+
*
|
|
223
|
+
* @param subjectIdOrKey - The ID or key of the subject
|
|
224
|
+
* @param entitlementIdOrFeatureKey - The ID or feature key of the entitlement
|
|
225
|
+
* @param signal - An optional abort signal
|
|
226
|
+
* @returns The grants
|
|
227
|
+
*/
|
|
228
|
+
async list(subjectIdOrKey, entitlementIdOrFeatureKey, query, options) {
|
|
229
|
+
const resp = await this.client.GET('/api/v1/subjects/{subjectIdOrKey}/entitlements/{entitlementIdOrFeatureKey}/grants', {
|
|
230
|
+
params: {
|
|
231
|
+
path: {
|
|
232
|
+
entitlementIdOrFeatureKey,
|
|
233
|
+
subjectIdOrKey,
|
|
234
|
+
},
|
|
235
|
+
query,
|
|
236
|
+
},
|
|
237
|
+
...options,
|
|
238
|
+
});
|
|
239
|
+
return (0, utils_js_1.transformResponse)(resp);
|
|
240
|
+
}
|
|
241
|
+
/**
|
|
242
|
+
* List all grants
|
|
243
|
+
* List all grants for all the subjects and entitlements.
|
|
244
|
+
*
|
|
245
|
+
* @param query - The query parameters
|
|
246
|
+
* @param options - The request options
|
|
247
|
+
* @returns The grants
|
|
248
|
+
*/
|
|
249
|
+
async listAll(query, options) {
|
|
250
|
+
const resp = await this.client.GET('/api/v1/grants', {
|
|
251
|
+
params: {
|
|
252
|
+
query,
|
|
253
|
+
},
|
|
254
|
+
...options,
|
|
255
|
+
});
|
|
256
|
+
return (0, utils_js_1.transformResponse)(resp);
|
|
257
|
+
}
|
|
258
|
+
/**
|
|
259
|
+
* Void a grant
|
|
260
|
+
* Voiding a grant means it is no longer valid, it doesn't take part in further balance calculations.
|
|
261
|
+
* Voiding a grant does not retroactively take effect, meaning any usage that has already been attributed
|
|
262
|
+
* to the grant will remain, but future usage cannot be burnt down from the grant.
|
|
263
|
+
*
|
|
264
|
+
* @param grantId - The ID of the grant
|
|
265
|
+
* @param options - The request options
|
|
266
|
+
* @returns The voided grant
|
|
267
|
+
*/
|
|
268
|
+
async void(grantId, options) {
|
|
269
|
+
const resp = await this.client.DELETE('/api/v1/grants/{grantId}', {
|
|
270
|
+
params: {
|
|
271
|
+
path: {
|
|
272
|
+
grantId,
|
|
273
|
+
},
|
|
274
|
+
},
|
|
275
|
+
...options,
|
|
276
|
+
});
|
|
277
|
+
return (0, utils_js_1.transformResponse)(resp);
|
|
278
|
+
}
|
|
279
|
+
}
|
|
280
|
+
exports.Grants = Grants;
|
|
281
|
+
/**
|
|
282
|
+
* Entitlements V2
|
|
283
|
+
* @description With Entitlements, you can define and enforce usage limits, implement quota-based pricing, and manage access to features in your application.
|
|
284
|
+
*/
|
|
285
|
+
class EntitlementsV2 {
|
|
286
|
+
client;
|
|
287
|
+
grants;
|
|
288
|
+
constructor(client) {
|
|
289
|
+
this.client = client;
|
|
290
|
+
this.grants = new GrantsV2(client);
|
|
291
|
+
}
|
|
292
|
+
/**
|
|
293
|
+
* List all entitlements for all customers and features
|
|
294
|
+
* @description This endpoint is intended for administrative purposes only.
|
|
295
|
+
* To fetch entitlements of a specific customer, use the customer entitlements endpoint.
|
|
296
|
+
* @param options - Request options including query parameters
|
|
297
|
+
* @returns List of entitlements
|
|
298
|
+
*/
|
|
299
|
+
async list(options) {
|
|
300
|
+
const resp = await this.client.GET('/api/v2/entitlements', {
|
|
301
|
+
params: {
|
|
302
|
+
query: options?.query,
|
|
303
|
+
},
|
|
304
|
+
...options,
|
|
305
|
+
});
|
|
306
|
+
return (0, utils_js_1.transformResponse)(resp);
|
|
307
|
+
}
|
|
308
|
+
/**
|
|
309
|
+
* Get entitlement by ID
|
|
310
|
+
* @param entitlementId - The ID of the entitlement
|
|
311
|
+
* @param options - Request options
|
|
312
|
+
* @returns The entitlement
|
|
313
|
+
*/
|
|
314
|
+
async get(entitlementId, options) {
|
|
315
|
+
const resp = await this.client.GET('/api/v2/entitlements/{entitlementId}', {
|
|
316
|
+
params: {
|
|
317
|
+
path: { entitlementId },
|
|
318
|
+
},
|
|
319
|
+
...options,
|
|
320
|
+
});
|
|
321
|
+
return (0, utils_js_1.transformResponse)(resp);
|
|
322
|
+
}
|
|
323
|
+
}
|
|
324
|
+
exports.EntitlementsV2 = EntitlementsV2;
|
|
325
|
+
/**
|
|
326
|
+
* Grants
|
|
327
|
+
*/
|
|
328
|
+
class GrantsV2 {
|
|
329
|
+
client;
|
|
330
|
+
constructor(client) {
|
|
331
|
+
this.client = client;
|
|
332
|
+
}
|
|
333
|
+
/**
|
|
334
|
+
* List all grants for all customers and entitlements
|
|
335
|
+
* @description This endpoint is intended for administrative purposes only.
|
|
336
|
+
* To fetch grants of a specific entitlement, use the customer entitlements grants endpoint.
|
|
337
|
+
* @param options - Request options including query parameters
|
|
338
|
+
* @returns List of grants
|
|
339
|
+
*/
|
|
340
|
+
async list(options) {
|
|
341
|
+
const resp = await this.client.GET('/api/v2/grants', {
|
|
342
|
+
params: {
|
|
343
|
+
query: options?.query,
|
|
344
|
+
},
|
|
345
|
+
...options,
|
|
346
|
+
});
|
|
347
|
+
return (0, utils_js_1.transformResponse)(resp);
|
|
348
|
+
}
|
|
349
|
+
/**
|
|
350
|
+
* Void a grant (legacy method using V1 endpoint)
|
|
351
|
+
* @description Voiding a grant means it is no longer valid, it doesn't take part in further balance calculations.
|
|
352
|
+
* Voiding a grant does not retroactively take effect, meaning any usage that has already been attributed
|
|
353
|
+
* to the grant will remain, but future usage cannot be burnt down from the grant.
|
|
354
|
+
* @param grantId - The ID of the grant
|
|
355
|
+
* @param options - Request options
|
|
356
|
+
* @returns The voided grant
|
|
357
|
+
* @deprecated This method uses the legacy V1 endpoint. Consider using customer-specific grant operations instead.
|
|
358
|
+
*/
|
|
359
|
+
async void(grantId, options) {
|
|
360
|
+
const resp = await this.client.DELETE('/api/v1/grants/{grantId}', {
|
|
361
|
+
params: {
|
|
362
|
+
path: {
|
|
363
|
+
grantId,
|
|
364
|
+
},
|
|
365
|
+
},
|
|
366
|
+
...options,
|
|
367
|
+
});
|
|
368
|
+
return (0, utils_js_1.transformResponse)(resp);
|
|
369
|
+
}
|
|
370
|
+
}
|
|
371
|
+
exports.GrantsV2 = GrantsV2;
|
|
372
|
+
//# sourceMappingURL=entitlements.cjs.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"entitlements.cjs","names":[],"sources":["../../../../src/client/entitlements.ts"],"sourcesContent":[null],"mappings":[[],[],[],[[0,0,10,0],[1,0,10,0],[2,0,10,0],[3,0,10,0],[4,0,10,0],[5,0,10,0],[6,0,10,0],[7,0,10,0],[8,0,10,0],[9,0,10,0],[10,0,10,0],[11,0,10,0],[12,0,10,0],[13,0,10,0],[14,0,10,0],[15,0,10,0],[16,0,10,0],[17,0,10,0],[18,0,10,0],[19,0,10,0],[20,0,10,0],[21,0,10,0],[22,0,10,0],[23,0,10,0],[24,0,10,0],[25,0,10,0],[26,0,10,0],[27,0,10,0],[28,0,10,0],[39,0,10,0],[40,0,10,0],[41,0,10,0]],[[0,0,12,0],[1,0,12,0],[2,0,12,0]],[],[],[],[[0,0,16,0],[1,0,16,0],[2,0,16,0],[3,0,16,0],[4,0,16,0],[5,0,16,0],[6,0,16,13],[7,0,16,13],[8,0,16,13],[9,0,16,13],[10,0,16,13],[11,0,16,13],[12,0,16,13],[13,0,16,13],[14,0,16,13],[15,0,16,13],[16,0,16,13],[17,0,16,13],[18,0,16,25],[19,0,16,25]],[[4,0,19,22],[5,0,19,22],[6,0,19,22],[7,0,19,22],[8,0,19,22],[9,0,19,22],[10,0,19,22]],[[4,0,17,9],[5,0,17,9],[6,0,17,9],[7,0,17,9],[8,0,17,9],[9,0,17,9],[10,0,17,15]],[[4,0,19,2],[5,0,19,2],[6,0,19,2],[7,0,19,2],[8,0,19,2],[9,0,19,2],[10,0,19,2],[11,0,19,2],[12,0,19,2],[13,0,19,2],[14,0,19,2],[15,0,19,2],[16,0,19,22],[17,0,19,22],[18,0,19,22],[19,0,19,22],[20,0,19,22],[21,0,19,22],[22,0,19,66],[23,0,19,66],[24,0,19,66]],[[8,0,19,22],[9,0,19,22],[10,0,19,22],[11,0,19,22],[12,0,19,22],[13,0,19,22],[14,0,19,22],[15,0,19,22],[16,0,19,22],[17,0,19,22],[18,0,19,22],[19,0,19,28],[20,0,19,28],[21,0,19,28],[22,0,19,22],[23,0,19,22],[24,0,19,22],[25,0,19,22],[26,0,19,22],[27,0,19,22],[28,0,19,28]],[[8,0,20,4],[9,0,20,4],[10,0,20,4],[11,0,20,4],[12,0,20,8],[13,0,20,9],[14,0,20,9],[15,0,20,9],[16,0,20,9],[17,0,20,9],[18,0,20,9],[19,0,20,15],[20,0,20,15],[21,0,20,15],[22,0,20,18],[23,0,20,18],[24,0,20,18],[25,0,20,18],[26,0,20,22],[27,0,20,22],[28,0,20,22],[29,0,20,22],[30,0,20,22],[31,0,20,22],[32,0,20,28],[33,0,20,29],[34,0,20,29],[35,0,20,29],[36,0,20,29],[37,0,20,29],[38,0,20,29],[39,0,20,35],[40,0,20,36]],[[4,0,21,2]],[[4,0,23,2],[5,0,23,2],[6,0,23,2]],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[[4,0,39,9],[5,0,39,9],[6,0,39,9],[7,0,39,9],[8,0,39,9],[9,0,39,14],[10,0,39,15],[11,0,39,15],[12,0,39,15],[13,0,39,15],[14,0,39,15],[15,0,39,15],[16,0,39,21],[17,0,40,4],[18,0,40,4],[19,0,40,4],[20,0,40,4],[21,0,40,4],[22,0,40,4],[23,0,40,4],[24,0,40,4],[25,0,40,4],[26,0,40,4],[27,0,40,4],[28,0,40,4],[29,0,40,4],[30,0,40,4],[31,0,40,91],[32,0,40,91],[33,0,41,4],[34,0,41,4],[35,0,41,4],[36,0,41,4],[37,0,41,4],[38,0,41,4],[39,0,41,4],[40,0,41,4],[41,0,41,4],[42,0,41,4],[43,0,41,4],[44,0,41,40],[45,0,41,40],[46,0,42,4],[47,0,42,4],[48,0,42,4],[49,0,42,4],[50,0,42,4],[51,0,42,4],[52,0,42,4],[53,0,42,28],[54,0,42,28],[55,0,42,28]],[[8,0,44,4],[9,0,44,4],[10,0,44,4],[11,0,44,4],[12,0,44,4],[13,0,44,4],[14,0,44,10],[15,0,44,10],[16,0,44,10],[17,0,44,10],[18,0,44,14],[19,0,44,14],[20,0,44,14],[21,0,44,17],[22,0,44,17],[23,0,44,17],[24,0,44,17],[25,0,44,17],[26,0,44,17],[27,0,44,23],[28,0,44,23],[29,0,44,23],[30,0,44,23],[31,0,44,27],[32,0,44,28],[33,0,44,28],[34,0,44,28],[35,0,44,28],[36,0,44,28],[37,0,44,28],[38,0,44,34],[39,0,44,35],[40,0,44,35],[41,0,44,35],[42,0,44,35],[43,0,44,39],[44,0,45,6],[45,0,45,6],[46,0,45,6],[47,0,45,6],[48,0,45,6],[49,0,45,6],[50,0,45,6],[51,0,45,6],[52,0,45,6],[53,0,45,6],[54,0,45,6],[55,0,45,6],[56,0,45,6],[57,0,45,6],[58,0,45,6],[59,0,45,6],[60,0,45,6],[61,0,45,6],[62,0,45,6],[63,0,45,6],[64,0,45,6],[65,0,45,6],[66,0,45,6],[67,0,45,6],[68,0,45,6],[69,0,45,6],[70,0,45,6],[71,0,45,6],[72,0,45,6],[73,0,45,6],[74,0,45,6],[75,0,45,6],[76,0,45,6],[77,0,45,6],[78,0,45,6],[79,0,45,6],[80,0,45,6],[81,0,45,6],[82,0,45,6],[83,0,45,6],[84,0,45,6],[85,0,45,6],[86,0,45,6],[87,0,45,6],[88,0,45,6],[89,0,45,6],[90,0,45,6],[91,0,45,6],[92,0,45,54],[93,0,45,54],[94,0,46,6]],[[12,0,47,8],[13,0,47,8],[14,0,47,8],[15,0,47,8],[16,0,47,12],[17,0,47,12],[18,0,47,14],[19,0,47,14],[20,0,47,14],[21,0,47,14],[22,0,47,14],[23,0,47,14],[24,0,47,14],[25,0,47,14],[26,0,47,14],[27,0,47,14],[28,0,47,14],[29,0,47,25]],[[12,0,48,8],[13,0,48,8],[14,0,48,8],[15,0,48,8],[16,0,48,8],[17,0,48,8],[18,0,48,14],[19,0,48,14],[20,0,48,16]],[[16,0,49,10],[17,0,49,10],[18,0,49,10],[19,0,49,10],[20,0,49,14],[21,0,49,14],[22,0,49,16]],[[20,0,50,12],[21,0,50,12],[22,0,50,12],[23,0,50,12],[24,0,50,12],[25,0,50,12],[26,0,50,12],[27,0,50,12],[28,0,50,12],[29,0,50,12],[30,0,50,12],[31,0,50,12],[32,0,50,12],[33,0,50,12],[34,0,50,26],[35,0,50,26],[36,0,50,28],[37,0,50,28],[38,0,50,28],[39,0,50,28],[40,0,50,28],[41,0,50,28],[42,0,50,28],[43,0,50,28],[44,0,50,28],[45,0,50,28],[46,0,50,28],[47,0,50,28],[48,0,50,28],[49,0,50,28],[50,0,50,42]],[[17,0,51,11]],[[13,0,52,9]],[[12,0,53,8],[13,0,53,8],[14,0,53,8],[15,0,53,11],[16,0,53,11],[17,0,53,11],[18,0,53,11],[19,0,53,11],[20,0,53,11],[21,0,53,11],[22,0,53,18]],[[9,0,54,7],[10,0,55,5]],[[8,0,57,4],[9,0,57,4],[10,0,57,4],[11,0,57,4],[12,0,57,4],[13,0,57,4],[14,0,57,4],[15,0,57,11],[16,0,57,11],[17,0,57,11],[18,0,57,11],[19,0,57,11],[20,0,57,11],[21,0,57,11],[22,0,57,11],[23,0,57,11],[24,0,57,11],[25,0,57,11],[26,0,57,11],[27,0,57,11],[28,0,57,11],[29,0,57,11],[30,0,57,11],[31,0,57,11],[32,0,57,11],[33,0,57,11],[34,0,57,11],[35,0,57,11],[36,0,57,11],[37,0,57,11],[38,0,57,11],[39,0,57,11],[40,0,57,11],[41,0,57,11],[42,0,57,11],[43,0,57,11],[44,0,57,11],[45,0,57,11],[46,0,57,11],[47,0,57,28],[48,0,57,28],[49,0,57,29],[50,0,57,29],[51,0,57,29],[52,0,57,29],[53,0,57,33],[54,0,57,34]],[[4,0,58,2]],[[4,0,60,2],[5,0,60,2],[6,0,60,2]],[],[],[],[],[],[],[[4,0,67,9],[5,0,67,9],[6,0,67,9],[7,0,67,9],[8,0,67,9],[9,0,67,14],[10,0,67,15],[11,0,67,15],[12,0,67,15],[13,0,67,18],[14,0,68,4],[15,0,68,4],[16,0,68,75],[17,0,68,75],[18,0,69,4],[19,0,69,4],[20,0,69,4],[21,0,69,4],[22,0,69,4],[23,0,69,4],[24,0,69,4],[25,0,69,28],[26,0,69,28],[27,0,69,28]],[[8,0,71,4],[9,0,71,4],[10,0,71,4],[11,0,71,4],[12,0,71,4],[13,0,71,4],[14,0,71,10],[15,0,71,10],[16,0,71,10],[17,0,71,10],[18,0,71,14],[19,0,71,14],[20,0,71,14],[21,0,71,17],[22,0,71,17],[23,0,71,17],[24,0,71,17],[25,0,71,17],[26,0,71,17],[27,0,71,23],[28,0,71,23],[29,0,71,23],[30,0,71,23],[31,0,71,27],[32,0,71,28],[33,0,71,28],[34,0,71,28],[35,0,71,28],[36,0,71,28],[37,0,71,28],[38,0,71,34],[39,0,71,35],[40,0,71,35],[41,0,71,35],[42,0,71,38],[43,0,71,39],[44,0,71,39],[45,0,71,39],[46,0,71,39],[47,0,71,39],[48,0,71,39],[49,0,71,39],[50,0,71,39],[51,0,71,39],[52,0,71,39],[53,0,71,39],[54,0,71,39],[55,0,71,39],[56,0,71,39],[57,0,71,39],[58,0,71,39],[59,0,71,39],[60,0,71,39],[61,0,71,39],[62,0,71,39],[63,0,71,39],[64,0,71,39],[65,0,71,39],[66,0,71,39],[67,0,71,39],[68,0,71,39],[69,0,71,39],[70,0,71,39],[71,0,71,39],[72,0,71,39],[73,0,71,39],[74,0,71,39],[75,0,71,39],[76,0,71,39],[77,0,71,39],[78,0,71,39],[79,0,71,39],[80,0,71,39],[81,0,71,77],[82,0,71,77],[83,0,71,79]],[[12,0,72,6],[13,0,72,6],[14,0,72,6],[15,0,72,6],[16,0,72,6],[17,0,72,6],[18,0,72,12],[19,0,72,12],[20,0,72,14]],[[16,0,73,8],[17,0,73,8],[18,0,73,8],[19,0,73,8],[20,0,73,12],[21,0,73,12],[22,0,73,14]],[[20,0,74,10],[21,0,74,10],[22,0,74,10],[23,0,74,10],[24,0,74,10],[25,0,74,10],[26,0,74,10],[27,0,74,10],[28,0,74,10],[29,0,74,10],[30,0,74,10],[31,0,74,10],[32,0,74,10],[33,0,74,23],[34,0,74,23],[35,0,74,25],[36,0,74,25],[37,0,74,27]],[[17,0,75,9]],[[13,0,76,7]],[[12,0,77,6],[13,0,77,6],[14,0,77,6],[15,0,77,9],[16,0,77,9],[17,0,77,9],[18,0,77,9],[19,0,77,9],[20,0,77,9],[21,0,77,9],[22,0,77,16]],[[9,0,78,5],[10,0,78,6]],[[8,0,80,4],[9,0,80,4],[10,0,80,4],[11,0,80,4],[12,0,80,4],[13,0,80,4],[14,0,80,4],[15,0,80,11],[16,0,80,11],[17,0,80,11],[18,0,80,11],[19,0,80,11],[20,0,80,11],[21,0,80,11],[22,0,80,11],[23,0,80,11],[24,0,80,11],[25,0,80,11],[26,0,80,11],[27,0,80,11],[28,0,80,11],[29,0,80,11],[30,0,80,11],[31,0,80,11],[32,0,80,11],[33,0,80,11],[34,0,80,11],[35,0,80,11],[36,0,80,11],[37,0,80,11],[38,0,80,11],[39,0,80,11],[40,0,80,11],[41,0,80,11],[42,0,80,11],[43,0,80,11],[44,0,80,11],[45,0,80,11],[46,0,80,11],[47,0,80,28],[48,0,80,28],[49,0,80,29],[50,0,80,29],[51,0,80,29],[52,0,80,29],[53,0,80,33],[54,0,80,34]],[[4,0,81,2]],[[4,0,83,2],[5,0,83,2],[6,0,83,2]],[],[],[],[],[],[],[[4,0,90,9],[5,0,90,9],[6,0,90,9],[7,0,90,9],[8,0,90,9],[9,0,90,14],[10,0,90,15],[11,0,90,15],[12,0,90,15],[13,0,90,15],[14,0,90,19],[15,0,91,4],[16,0,91,4],[17,0,91,4],[18,0,91,4],[19,0,91,4],[20,0,94,5],[21,0,94,5],[22,0,95,4],[23,0,95,4],[24,0,95,4],[25,0,95,4],[26,0,95,4],[27,0,95,4],[28,0,95,4],[29,0,95,28],[30,0,95,28],[31,0,95,28]],[[8,0,97,4],[9,0,97,4],[10,0,97,4],[11,0,97,4],[12,0,97,4],[13,0,97,4],[14,0,97,10],[15,0,97,10],[16,0,97,10],[17,0,97,10],[18,0,97,14],[19,0,97,14],[20,0,97,14],[21,0,97,17],[22,0,97,17],[23,0,97,17],[24,0,97,17],[25,0,97,17],[26,0,97,17],[27,0,97,23],[28,0,97,23],[29,0,97,23],[30,0,97,23],[31,0,97,27],[32,0,97,28],[33,0,97,28],[34,0,97,28],[35,0,97,28],[36,0,97,28],[37,0,97,28],[38,0,97,34],[39,0,97,35],[40,0,97,35],[41,0,97,35],[42,0,97,38],[43,0,97,39],[44,0,97,39],[45,0,97,39],[46,0,97,39],[47,0,97,39],[48,0,97,39],[49,0,97,39],[50,0,97,39],[51,0,97,39],[52,0,97,39],[53,0,97,39],[54,0,97,39],[55,0,97,39],[56,0,97,39],[57,0,97,39],[58,0,97,39],[59,0,97,39],[60,0,97,39],[61,0,97,39],[62,0,97,39],[63,0,97,39],[64,0,97,39],[65,0,97,61],[66,0,97,61],[67,0,97,63]],[[12,0,98,6],[13,0,98,6],[14,0,98,6],[15,0,98,6],[16,0,98,6],[17,0,98,6],[18,0,98,12],[19,0,98,12],[20,0,98,14]],[[16,0,99,8],[17,0,99,8],[18,0,99,8],[19,0,99,8],[20,0,99,8],[21,0,99,13]],[[13,0,100,7]],[[12,0,101,6],[13,0,101,6],[14,0,101,6],[15,0,101,9],[16,0,101,9],[17,0,101,9],[18,0,101,9],[19,0,101,9],[20,0,101,9],[21,0,101,9],[22,0,101,16]],[[9,0,102,5],[10,0,102,6]],[[8,0,104,4],[9,0,104,4],[10,0,104,4],[11,0,104,4],[12,0,104,4],[13,0,104,4],[14,0,104,4],[15,0,104,11],[16,0,104,11],[17,0,104,11],[18,0,104,11],[19,0,104,11],[20,0,104,11],[21,0,104,11],[22,0,104,11],[23,0,104,11],[24,0,104,11],[25,0,104,11],[26,0,104,11],[27,0,104,11],[28,0,104,11],[29,0,104,11],[30,0,104,11],[31,0,104,11],[32,0,104,11],[33,0,104,11],[34,0,104,11],[35,0,104,11],[36,0,104,11],[37,0,104,11],[38,0,104,11],[39,0,104,11],[40,0,104,11],[41,0,104,11],[42,0,104,11],[43,0,104,11],[44,0,104,11],[45,0,104,11],[46,0,104,11],[47,0,104,28],[48,0,104,28],[49,0,104,29],[50,0,104,29],[51,0,104,29],[52,0,104,29],[53,0,104,33],[54,0,104,51]],[[4,0,105,2]],[[4,0,107,2],[5,0,107,2],[6,0,107,2]],[],[],[],[],[],[],[],[[4,0,115,9],[5,0,115,9],[6,0,115,9],[7,0,115,9],[8,0,115,9],[9,0,115,14],[10,0,115,15],[11,0,115,15],[12,0,115,15],[13,0,115,15],[14,0,115,15],[15,0,115,15],[16,0,115,21],[17,0,116,4],[18,0,116,4],[19,0,116,4],[20,0,116,4],[21,0,116,4],[22,0,116,4],[23,0,116,4],[24,0,116,4],[25,0,116,4],[26,0,116,4],[27,0,116,4],[28,0,116,4],[29,0,116,4],[30,0,116,4],[31,0,116,91],[32,0,116,91],[33,0,117,4],[34,0,117,4],[35,0,117,4],[36,0,117,4],[37,0,117,4],[38,0,117,4],[39,0,117,4],[40,0,117,4],[41,0,117,4],[42,0,117,4],[43,0,117,4],[44,0,117,4],[45,0,117,4],[46,0,117,89],[47,0,117,89],[48,0,118,4],[49,0,118,4],[50,0,118,4],[51,0,118,4],[52,0,118,4],[53,0,118,4],[54,0,118,4],[55,0,118,28],[56,0,118,28],[57,0,118,28]],[[8,0,120,4],[9,0,120,4],[10,0,120,4],[11,0,120,4],[12,0,120,4],[13,0,120,4],[14,0,120,10],[15,0,120,10],[16,0,120,10],[17,0,120,10],[18,0,120,14],[19,0,120,14],[20,0,120,14],[21,0,120,17],[22,0,120,17],[23,0,120,17],[24,0,120,17],[25,0,120,17],[26,0,120,17],[27,0,120,23],[28,0,120,23],[29,0,120,23],[30,0,120,23],[31,0,120,27],[32,0,120,28],[33,0,120,28],[34,0,120,28],[35,0,120,28],[36,0,120,28],[37,0,120,28],[38,0,120,34],[39,0,120,35],[40,0,120,35],[41,0,120,35],[42,0,120,35],[43,0,120,35],[44,0,120,35],[45,0,120,41],[46,0,121,6],[47,0,121,6],[48,0,121,6],[49,0,121,6],[50,0,121,6],[51,0,121,6],[52,0,121,6],[53,0,121,6],[54,0,121,6],[55,0,121,6],[56,0,121,6],[57,0,121,6],[58,0,121,6],[59,0,121,6],[60,0,121,6],[61,0,121,6],[62,0,121,6],[63,0,121,6],[64,0,121,6],[65,0,121,6],[66,0,121,6],[67,0,121,6],[68,0,121,6],[69,0,121,6],[70,0,121,6],[71,0,121,6],[72,0,121,6],[73,0,121,6],[74,0,121,6],[75,0,121,6],[76,0,121,6],[77,0,121,6],[78,0,121,6],[79,0,121,6],[80,0,121,6],[81,0,121,6],[82,0,121,6],[83,0,121,6],[84,0,121,6],[85,0,121,6],[86,0,121,6],[87,0,121,6],[88,0,121,6],[89,0,121,6],[90,0,121,6],[91,0,121,6],[92,0,121,6],[93,0,121,6],[94,0,121,6],[95,0,121,6],[96,0,121,6],[97,0,121,6],[98,0,121,6],[99,0,121,6],[100,0,121,6],[101,0,121,6],[102,0,121,6],[103,0,121,6],[104,0,121,6],[105,0,121,6],[106,0,121,6],[107,0,121,6],[108,0,121,6],[109,0,121,6],[110,0,121,70],[111,0,121,70],[112,0,122,6]],[[12,0,123,8],[13,0,123,8],[14,0,123,8],[15,0,123,8],[16,0,123,8],[17,0,123,8],[18,0,123,14],[19,0,123,14],[20,0,123,16]],[[16,0,124,10],[17,0,124,10],[18,0,124,10],[19,0,124,10],[20,0,124,14],[21,0,124,14],[22,0,124,16]],[[20,0,125,12],[21,0,125,12],[22,0,125,12],[23,0,125,12],[24,0,125,12],[25,0,125,12],[26,0,125,12],[27,0,125,12],[28,0,125,12],[29,0,125,12],[30,0,125,12],[31,0,125,12],[32,0,125,12],[33,0,125,25]],[[20,0,126,12],[21,0,126,12],[22,0,126,12],[23,0,126,12],[24,0,126,12],[25,0,126,12],[26,0,126,12],[27,0,126,12],[28,0,126,12],[29,0,126,12],[30,0,126,12],[31,0,126,12],[32,0,126,12],[33,0,126,12],[34,0,126,26]],[[17,0,127,11]],[[13,0,128,9]],[[12,0,129,8],[13,0,129,8],[14,0,129,8],[15,0,129,11],[16,0,129,11],[17,0,129,11],[18,0,129,11],[19,0,129,11],[20,0,129,11],[21,0,129,11],[22,0,129,18]],[[9,0,130,7],[10,0,131,5]],[[8,0,133,4],[9,0,133,4],[10,0,133,4],[11,0,133,4],[12,0,133,4],[13,0,133,4],[14,0,133,4],[15,0,133,11],[16,0,133,11],[17,0,133,11],[18,0,133,11],[19,0,133,11],[20,0,133,11],[21,0,133,11],[22,0,133,11],[23,0,133,11],[24,0,133,11],[25,0,133,11],[26,0,133,11],[27,0,133,11],[28,0,133,11],[29,0,133,11],[30,0,133,11],[31,0,133,11],[32,0,133,11],[33,0,133,11],[34,0,133,11],[35,0,133,11],[36,0,133,11],[37,0,133,11],[38,0,133,11],[39,0,133,11],[40,0,133,11],[41,0,133,11],[42,0,133,11],[43,0,133,11],[44,0,133,11],[45,0,133,11],[46,0,133,11],[47,0,133,28],[48,0,133,28],[49,0,133,29],[50,0,133,29],[51,0,133,29],[52,0,133,29],[53,0,133,33],[54,0,133,34]],[[4,0,134,2]],[[4,0,136,2],[5,0,136,2],[6,0,136,2]],[],[],[],[],[],[],[],[],[],[[4,0,146,9],[5,0,146,9],[6,0,146,9],[7,0,146,9],[8,0,146,9],[9,0,146,14],[10,0,146,15],[11,0,146,15],[12,0,146,15],[13,0,146,15],[14,0,146,15],[15,0,146,20],[16,0,147,4],[17,0,147,4],[18,0,147,4],[19,0,147,4],[20,0,147,4],[21,0,147,4],[22,0,147,4],[23,0,147,4],[24,0,147,4],[25,0,147,4],[26,0,147,4],[27,0,147,4],[28,0,147,4],[29,0,147,4],[30,0,147,93],[31,0,147,93],[32,0,148,4],[33,0,148,4],[34,0,148,4],[35,0,148,4],[36,0,148,4],[37,0,148,4],[38,0,148,4],[39,0,148,4],[40,0,148,4],[41,0,148,4],[42,0,148,4],[43,0,148,4],[44,0,148,4],[45,0,148,4],[46,0,148,4],[47,0,148,4],[48,0,148,4],[49,0,148,4],[50,0,148,4],[51,0,148,4],[52,0,148,4],[53,0,148,4],[54,0,148,4],[55,0,148,4],[56,0,148,4],[57,0,148,115],[58,0,148,115],[59,0,149,4],[60,0,149,4],[61,0,149,4],[62,0,149,4],[63,0,149,4],[64,0,149,68],[65,0,149,68],[66,0,150,4],[67,0,150,4],[68,0,150,4],[69,0,150,4],[70,0,150,4],[71,0,150,4],[72,0,150,4],[73,0,150,28],[74,0,150,28],[75,0,150,28]],[[8,0,152,4],[9,0,152,4],[10,0,152,4],[11,0,152,4],[12,0,152,4],[13,0,152,4],[14,0,152,10],[15,0,152,10],[16,0,152,10],[17,0,152,10],[18,0,152,14],[19,0,152,14],[20,0,152,14],[21,0,152,17],[22,0,152,17],[23,0,152,17],[24,0,152,17],[25,0,152,17],[26,0,152,17],[27,0,152,23],[28,0,152,23],[29,0,152,23],[30,0,152,23],[31,0,152,27],[32,0,152,28],[33,0,152,28],[34,0,152,28],[35,0,152,28],[36,0,152,28],[37,0,152,28],[38,0,152,34],[39,0,152,35],[40,0,152,35],[41,0,152,35],[42,0,152,38],[43,0,153,6],[44,0,153,6],[45,0,153,6],[46,0,153,6],[47,0,153,6],[48,0,153,6],[49,0,153,6],[50,0,153,6],[51,0,153,6],[52,0,153,6],[53,0,153,6],[54,0,153,6],[55,0,153,6],[56,0,153,6],[57,0,153,6],[58,0,153,6],[59,0,153,6],[60,0,153,6],[61,0,153,6],[62,0,153,6],[63,0,153,6],[64,0,153,6],[65,0,153,6],[66,0,153,6],[67,0,153,6],[68,0,153,6],[69,0,153,6],[70,0,153,6],[71,0,153,6],[72,0,153,6],[73,0,153,6],[74,0,153,6],[75,0,153,6],[76,0,153,6],[77,0,153,6],[78,0,153,6],[79,0,153,6],[80,0,153,6],[81,0,153,6],[82,0,153,6],[83,0,153,6],[84,0,153,6],[85,0,153,6],[86,0,153,6],[87,0,153,6],[88,0,153,6],[89,0,153,6],[90,0,153,6],[91,0,153,6],[92,0,153,6],[93,0,153,6],[94,0,153,6],[95,0,153,6],[96,0,153,6],[97,0,153,6],[98,0,153,6],[99,0,153,6],[100,0,153,6],[101,0,153,6],[102,0,153,6],[103,0,153,6],[104,0,153,6],[105,0,153,6],[106,0,153,6],[107,0,153,6],[108,0,153,6],[109,0,153,6],[110,0,153,6],[111,0,153,6],[112,0,153,6],[113,0,153,6],[114,0,153,6],[115,0,153,6],[116,0,153,6],[117,0,153,6],[118,0,153,6],[119,0,153,6],[120,0,153,6],[121,0,153,6],[122,0,153,6],[123,0,153,6],[124,0,153,6],[125,0,153,88],[126,0,153,88],[127,0,154,6]],[[12,0,155,8],[13,0,155,8],[14,0,155,8],[15,0,155,8],[16,0,155,8],[17,0,155,8],[18,0,155,14],[19,0,155,14],[20,0,155,16]],[[16,0,156,10],[17,0,156,10],[18,0,156,10],[19,0,156,10],[20,0,156,14],[21,0,156,14],[22,0,156,16]],[[20,0,157,12],[21,0,157,12],[22,0,157,12],[23,0,157,12],[24,0,157,12],[25,0,157,12],[26,0,157,12],[27,0,157,12],[28,0,157,12],[29,0,157,12],[30,0,157,12],[31,0,157,12],[32,0,157,12],[33,0,157,12],[34,0,157,12],[35,0,157,12],[36,0,157,12],[37,0,157,12],[38,0,157,12],[39,0,157,12],[40,0,157,12],[41,0,157,12],[42,0,157,12],[43,0,157,12],[44,0,157,12],[45,0,157,37]],[[20,0,158,12],[21,0,158,12],[22,0,158,12],[23,0,158,12],[24,0,158,12],[25,0,158,12],[26,0,158,12],[27,0,158,12],[28,0,158,12],[29,0,158,12],[30,0,158,12],[31,0,158,12],[32,0,158,12],[33,0,158,12],[34,0,158,26]],[[17,0,159,11]],[[16,0,160,10],[17,0,160,10],[18,0,160,10],[19,0,160,10],[20,0,160,10],[21,0,160,15]],[[13,0,161,9]],[[12,0,162,8],[13,0,162,8],[14,0,162,8],[15,0,162,11],[16,0,162,11],[17,0,162,11],[18,0,162,11],[19,0,162,11],[20,0,162,11],[21,0,162,11],[22,0,162,18]],[[9,0,163,7],[10,0,164,5]],[[8,0,166,4],[9,0,166,4],[10,0,166,4],[11,0,166,4],[12,0,166,4],[13,0,166,4],[14,0,166,4],[15,0,166,11],[16,0,166,11],[17,0,166,11],[18,0,166,11],[19,0,166,11],[20,0,166,11],[21,0,166,11],[22,0,166,11],[23,0,166,11],[24,0,166,11],[25,0,166,11],[26,0,166,11],[27,0,166,11],[28,0,166,11],[29,0,166,11],[30,0,166,11],[31,0,166,11],[32,0,166,11],[33,0,166,11],[34,0,166,11],[35,0,166,11],[36,0,166,11],[37,0,166,11],[38,0,166,11],[39,0,166,11],[40,0,166,11],[41,0,166,11],[42,0,166,11],[43,0,166,11],[44,0,166,11],[45,0,166,11],[46,0,166,11],[47,0,166,28],[48,0,166,28],[49,0,166,29],[50,0,166,29],[51,0,166,29],[52,0,166,29],[53,0,166,33],[54,0,166,34]],[[4,0,167,2]],[[4,0,169,2],[5,0,169,2],[6,0,169,2]],[],[],[],[],[],[],[],[],[],[[4,0,179,9],[5,0,179,9],[6,0,179,9],[7,0,179,9],[8,0,179,9],[9,0,179,14],[10,0,179,15],[11,0,179,15],[12,0,179,15],[13,0,179,15],[14,0,179,15],[15,0,179,15],[16,0,179,15],[17,0,179,22],[18,0,180,4],[19,0,180,4],[20,0,180,4],[21,0,180,4],[22,0,180,4],[23,0,180,4],[24,0,180,4],[25,0,180,4],[26,0,180,4],[27,0,180,4],[28,0,180,4],[29,0,180,4],[30,0,180,4],[31,0,180,4],[32,0,180,95],[33,0,180,95],[34,0,181,4],[35,0,181,4],[36,0,181,4],[37,0,181,4],[38,0,181,4],[39,0,181,4],[40,0,181,4],[41,0,181,4],[42,0,181,4],[43,0,181,4],[44,0,181,4],[45,0,181,4],[46,0,181,4],[47,0,181,93],[48,0,181,93],[49,0,182,4],[50,0,182,4],[51,0,182,4],[52,0,182,4],[53,0,182,4],[54,0,182,69],[55,0,182,69],[56,0,183,4],[57,0,183,4],[58,0,183,4],[59,0,183,4],[60,0,183,4],[61,0,183,4],[62,0,183,4],[63,0,183,28],[64,0,183,28],[65,0,183,28]],[[8,0,185,4],[9,0,185,4],[10,0,185,4],[11,0,185,4],[12,0,185,4],[13,0,185,4],[14,0,185,10],[15,0,185,10],[16,0,185,10],[17,0,185,10],[18,0,185,14],[19,0,185,14],[20,0,185,14],[21,0,185,17],[22,0,185,17],[23,0,185,17],[24,0,185,17],[25,0,185,17],[26,0,185,17],[27,0,185,23],[28,0,185,23],[29,0,185,23],[30,0,185,23],[31,0,185,27],[32,0,185,28],[33,0,185,28],[34,0,185,28],[35,0,185,28],[36,0,185,28],[37,0,185,28],[38,0,185,34],[39,0,185,35],[40,0,185,35],[41,0,185,35],[42,0,185,38],[43,0,186,6],[44,0,186,6],[45,0,186,6],[46,0,186,6],[47,0,186,6],[48,0,186,6],[49,0,186,6],[50,0,186,6],[51,0,186,6],[52,0,186,6],[53,0,186,6],[54,0,186,6],[55,0,186,6],[56,0,186,6],[57,0,186,6],[58,0,186,6],[59,0,186,6],[60,0,186,6],[61,0,186,6],[62,0,186,6],[63,0,186,6],[64,0,186,6],[65,0,186,6],[66,0,186,6],[67,0,186,6],[68,0,186,6],[69,0,186,6],[70,0,186,6],[71,0,186,6],[72,0,186,6],[73,0,186,6],[74,0,186,6],[75,0,186,6],[76,0,186,6],[77,0,186,6],[78,0,186,6],[79,0,186,6],[80,0,186,6],[81,0,186,6],[82,0,186,6],[83,0,186,6],[84,0,186,6],[85,0,186,6],[86,0,186,6],[87,0,186,6],[88,0,186,6],[89,0,186,6],[90,0,186,6],[91,0,186,6],[92,0,186,6],[93,0,186,6],[94,0,186,6],[95,0,186,6],[96,0,186,6],[97,0,186,6],[98,0,186,6],[99,0,186,6],[100,0,186,6],[101,0,186,6],[102,0,186,6],[103,0,186,6],[104,0,186,6],[105,0,186,6],[106,0,186,6],[107,0,186,6],[108,0,186,6],[109,0,186,6],[110,0,186,6],[111,0,186,6],[112,0,186,6],[113,0,186,6],[114,0,186,6],[115,0,186,78],[116,0,186,78],[117,0,187,6]],[[12,0,188,8],[13,0,188,8],[14,0,188,8],[15,0,188,8],[16,0,188,8],[17,0,188,8],[18,0,188,14],[19,0,188,14],[20,0,188,16]],[[16,0,189,10],[17,0,189,10],[18,0,189,10],[19,0,189,10],[20,0,189,14],[21,0,189,14],[22,0,189,16]],[[20,0,190,12],[21,0,190,12],[22,0,190,12],[23,0,190,12],[24,0,190,12],[25,0,190,12],[26,0,190,12],[27,0,190,12],[28,0,190,12],[29,0,190,12],[30,0,190,12],[31,0,190,12],[32,0,190,12],[33,0,190,25]],[[20,0,191,12],[21,0,191,12],[22,0,191,12],[23,0,191,12],[24,0,191,12],[25,0,191,12],[26,0,191,12],[27,0,191,12],[28,0,191,12],[29,0,191,12],[30,0,191,12],[31,0,191,12],[32,0,191,12],[33,0,191,12],[34,0,191,26]],[[17,0,192,11]],[[16,0,193,10],[17,0,193,10],[18,0,193,10],[19,0,193,10],[20,0,193,10],[21,0,193,15]],[[13,0,194,9]],[[12,0,195,8],[13,0,195,8],[14,0,195,8],[15,0,195,11],[16,0,195,11],[17,0,195,11],[18,0,195,11],[19,0,195,11],[20,0,195,11],[21,0,195,11],[22,0,195,18]],[[9,0,196,7],[10,0,197,5]],[[8,0,199,4],[9,0,199,4],[10,0,199,4],[11,0,199,4],[12,0,199,4],[13,0,199,4],[14,0,199,4],[15,0,199,11],[16,0,199,11],[17,0,199,11],[18,0,199,11],[19,0,199,11],[20,0,199,11],[21,0,199,11],[22,0,199,11],[23,0,199,11],[24,0,199,11],[25,0,199,11],[26,0,199,11],[27,0,199,11],[28,0,199,11],[29,0,199,11],[30,0,199,11],[31,0,199,11],[32,0,199,11],[33,0,199,11],[34,0,199,11],[35,0,199,11],[36,0,199,11],[37,0,199,11],[38,0,199,11],[39,0,199,11],[40,0,199,11],[41,0,199,11],[42,0,199,11],[43,0,199,11],[44,0,199,11],[45,0,199,11],[46,0,199,11],[47,0,199,28],[48,0,199,28],[49,0,199,29],[50,0,199,29],[51,0,199,29],[52,0,199,29],[53,0,199,33],[54,0,199,34]],[[4,0,200,2]],[[4,0,202,2],[5,0,202,2],[6,0,202,2]],[],[],[],[],[],[],[],[],[],[[4,0,212,9],[5,0,212,9],[6,0,212,9],[7,0,212,9],[8,0,212,9],[9,0,212,14],[10,0,212,15],[11,0,212,15],[12,0,212,15],[13,0,212,15],[14,0,212,15],[15,0,212,15],[16,0,212,15],[17,0,212,15],[18,0,212,23],[19,0,213,4],[20,0,213,4],[21,0,213,4],[22,0,213,4],[23,0,213,4],[24,0,213,4],[25,0,213,4],[26,0,213,4],[27,0,213,4],[28,0,213,4],[29,0,213,4],[30,0,213,4],[31,0,213,4],[32,0,213,4],[33,0,213,93],[34,0,213,93],[35,0,214,4],[36,0,214,4],[37,0,214,4],[38,0,214,4],[39,0,214,4],[40,0,214,4],[41,0,214,4],[42,0,214,4],[43,0,214,4],[44,0,214,4],[45,0,214,4],[46,0,214,4],[47,0,214,4],[48,0,214,4],[49,0,214,4],[50,0,214,4],[51,0,214,4],[52,0,214,4],[53,0,214,4],[54,0,214,4],[55,0,214,4],[56,0,214,4],[57,0,214,4],[58,0,214,4],[59,0,214,4],[60,0,214,115],[61,0,214,115],[62,0,215,4],[63,0,215,4],[64,0,215,4],[65,0,215,4],[66,0,215,4],[67,0,215,4],[68,0,215,4],[69,0,215,4],[70,0,215,37],[71,0,215,37],[72,0,216,4],[73,0,216,4],[74,0,216,4],[75,0,216,4],[76,0,216,4],[77,0,216,4],[78,0,216,4],[79,0,216,28],[80,0,216,28],[81,0,216,28]],[[8,0,218,4],[9,0,218,4],[10,0,218,4],[11,0,218,4],[12,0,218,4],[13,0,218,4],[14,0,218,10],[15,0,218,10],[16,0,218,10],[17,0,218,10],[18,0,218,14],[19,0,218,14],[20,0,218,14],[21,0,218,17],[22,0,218,17],[23,0,218,17],[24,0,218,17],[25,0,218,17],[26,0,218,17],[27,0,218,23],[28,0,218,23],[29,0,218,23],[30,0,218,23],[31,0,218,27],[32,0,218,28],[33,0,218,28],[34,0,218,28],[35,0,218,28],[36,0,218,28],[37,0,218,28],[38,0,218,34],[39,0,218,35],[40,0,218,35],[41,0,218,35],[42,0,218,38],[43,0,219,6],[44,0,219,6],[45,0,219,6],[46,0,219,6],[47,0,219,6],[48,0,219,6],[49,0,219,6],[50,0,219,6],[51,0,219,6],[52,0,219,6],[53,0,219,6],[54,0,219,6],[55,0,219,6],[56,0,219,6],[57,0,219,6],[58,0,219,6],[59,0,219,6],[60,0,219,6],[61,0,219,6],[62,0,219,6],[63,0,219,6],[64,0,219,6],[65,0,219,6],[66,0,219,6],[67,0,219,6],[68,0,219,6],[69,0,219,6],[70,0,219,6],[71,0,219,6],[72,0,219,6],[73,0,219,6],[74,0,219,6],[75,0,219,6],[76,0,219,6],[77,0,219,6],[78,0,219,6],[79,0,219,6],[80,0,219,6],[81,0,219,6],[82,0,219,6],[83,0,219,6],[84,0,219,6],[85,0,219,6],[86,0,219,6],[87,0,219,6],[88,0,219,6],[89,0,219,6],[90,0,219,6],[91,0,219,6],[92,0,219,6],[93,0,219,6],[94,0,219,6],[95,0,219,6],[96,0,219,6],[97,0,219,6],[98,0,219,6],[99,0,219,6],[100,0,219,6],[101,0,219,6],[102,0,219,6],[103,0,219,6],[104,0,219,6],[105,0,219,6],[106,0,219,6],[107,0,219,6],[108,0,219,6],[109,0,219,6],[110,0,219,6],[111,0,219,6],[112,0,219,6],[113,0,219,6],[114,0,219,6],[115,0,219,6],[116,0,219,6],[117,0,219,6],[118,0,219,6],[119,0,219,6],[120,0,219,6],[121,0,219,6],[122,0,219,6],[123,0,219,6],[124,0,219,6],[125,0,219,6],[126,0,219,6],[127,0,219,6],[128,0,219,91],[129,0,219,91],[130,0,220,6]],[[12,0,221,8],[13,0,221,8],[14,0,221,8],[15,0,221,8],[16,0,221,12],[17,0,221,12],[18,0,221,14],[19,0,221,14],[20,0,221,14],[21,0,221,14],[22,0,221,14],[23,0,221,14],[24,0,221,14],[25,0,221,14],[26,0,221,22]],[[12,0,222,8],[13,0,222,8],[14,0,222,8],[15,0,222,8],[16,0,222,8],[17,0,222,8],[18,0,222,14],[19,0,222,14],[20,0,222,16]],[[16,0,223,10],[17,0,223,10],[18,0,223,10],[19,0,223,10],[20,0,223,14],[21,0,223,14],[22,0,223,16]],[[20,0,224,12],[21,0,224,12],[22,0,224,12],[23,0,224,12],[24,0,224,12],[25,0,224,12],[26,0,224,12],[27,0,224,12],[28,0,224,12],[29,0,224,12],[30,0,224,12],[31,0,224,12],[32,0,224,12],[33,0,224,12],[34,0,224,12],[35,0,224,12],[36,0,224,12],[37,0,224,12],[38,0,224,12],[39,0,224,12],[40,0,224,12],[41,0,224,12],[42,0,224,12],[43,0,224,12],[44,0,224,12],[45,0,224,37]],[[20,0,225,12],[21,0,225,12],[22,0,225,12],[23,0,225,12],[24,0,225,12],[25,0,225,12],[26,0,225,12],[27,0,225,12],[28,0,225,12],[29,0,225,12],[30,0,225,12],[31,0,225,12],[32,0,225,12],[33,0,225,12],[34,0,225,26]],[[17,0,226,11]],[[13,0,227,9]],[[12,0,228,8],[13,0,228,8],[14,0,228,8],[15,0,228,11],[16,0,228,11],[17,0,228,11],[18,0,228,11],[19,0,228,11],[20,0,228,11],[21,0,228,11],[22,0,228,18]],[[9,0,229,7],[10,0,230,5]],[[8,0,232,4],[9,0,232,4],[10,0,232,4],[11,0,232,4],[12,0,232,4],[13,0,232,4],[14,0,232,4],[15,0,232,11],[16,0,232,11],[17,0,232,11],[18,0,232,11],[19,0,232,11],[20,0,232,11],[21,0,232,11],[22,0,232,11],[23,0,232,11],[24,0,232,11],[25,0,232,11],[26,0,232,11],[27,0,232,11],[28,0,232,11],[29,0,232,11],[30,0,232,11],[31,0,232,11],[32,0,232,11],[33,0,232,11],[34,0,232,11],[35,0,232,11],[36,0,232,11],[37,0,232,11],[38,0,232,11],[39,0,232,11],[40,0,232,11],[41,0,232,11],[42,0,232,11],[43,0,232,11],[44,0,232,11],[45,0,232,11],[46,0,232,11],[47,0,232,28],[48,0,232,28],[49,0,232,29],[50,0,232,29],[51,0,232,29],[52,0,232,29],[53,0,232,33],[54,0,232,34]],[[4,0,233,2]],[[4,0,235,2],[5,0,235,2],[6,0,235,2]],[],[],[],[],[],[],[],[],[],[],[[4,0,246,9],[5,0,246,9],[6,0,246,9],[7,0,246,9],[8,0,246,9],[9,0,246,14],[10,0,246,15],[11,0,246,15],[12,0,246,15],[13,0,246,15],[14,0,246,15],[15,0,246,20],[16,0,247,4],[17,0,247,4],[18,0,247,4],[19,0,247,4],[20,0,247,4],[21,0,247,4],[22,0,247,4],[23,0,247,4],[24,0,247,4],[25,0,247,4],[26,0,247,4],[27,0,247,4],[28,0,247,4],[29,0,247,4],[30,0,247,95],[31,0,247,95],[32,0,248,4],[33,0,248,4],[34,0,248,4],[35,0,248,4],[36,0,248,4],[37,0,248,4],[38,0,248,4],[39,0,248,4],[40,0,248,4],[41,0,248,4],[42,0,248,4],[43,0,248,4],[44,0,248,4],[45,0,248,93],[46,0,248,93],[47,0,249,4],[48,0,249,4],[49,0,249,4],[50,0,249,4],[51,0,249,36],[52,0,249,36],[53,0,250,4],[54,0,250,4],[55,0,250,4],[56,0,250,4],[57,0,250,4],[58,0,250,4],[59,0,250,4],[60,0,250,28],[61,0,250,28],[62,0,250,28]],[[8,0,252,4],[9,0,252,4],[10,0,252,4],[11,0,252,4],[12,0,252,4],[13,0,252,4],[14,0,252,10],[15,0,252,10],[16,0,252,10],[17,0,252,10],[18,0,252,14],[19,0,252,14],[20,0,252,14],[21,0,252,17],[22,0,252,17],[23,0,252,17],[24,0,252,17],[25,0,252,17],[26,0,252,17],[27,0,252,23],[28,0,252,23],[29,0,252,23],[30,0,252,23],[31,0,252,27],[32,0,252,28],[33,0,252,28],[34,0,252,28],[35,0,252,28],[36,0,252,28],[37,0,252,28],[38,0,252,34],[39,0,252,35],[40,0,252,35],[41,0,252,35],[42,0,252,35],[43,0,252,39],[44,0,253,6],[45,0,253,6],[46,0,253,6],[47,0,253,6],[48,0,253,6],[49,0,253,6],[50,0,253,6],[51,0,253,6],[52,0,253,6],[53,0,253,6],[54,0,253,6],[55,0,253,6],[56,0,253,6],[57,0,253,6],[58,0,253,6],[59,0,253,6],[60,0,253,6],[61,0,253,6],[62,0,253,6],[63,0,253,6],[64,0,253,6],[65,0,253,6],[66,0,253,6],[67,0,253,6],[68,0,253,6],[69,0,253,6],[70,0,253,6],[71,0,253,6],[72,0,253,6],[73,0,253,6],[74,0,253,6],[75,0,253,6],[76,0,253,6],[77,0,253,6],[78,0,253,6],[79,0,253,6],[80,0,253,6],[81,0,253,6],[82,0,253,6],[83,0,253,6],[84,0,253,6],[85,0,253,6],[86,0,253,6],[87,0,253,6],[88,0,253,6],[89,0,253,6],[90,0,253,6],[91,0,253,6],[92,0,253,6],[93,0,253,6],[94,0,253,6],[95,0,253,6],[96,0,253,6],[97,0,253,6],[98,0,253,6],[99,0,253,6],[100,0,253,6],[101,0,253,6],[102,0,253,6],[103,0,253,6],[104,0,253,6],[105,0,253,6],[106,0,253,6],[107,0,253,6],[108,0,253,6],[109,0,253,6],[110,0,253,6],[111,0,253,6],[112,0,253,6],[113,0,253,6],[114,0,253,76],[115,0,253,76],[116,0,254,6]],[[12,0,255,8],[13,0,255,8],[14,0,255,8],[15,0,255,8],[16,0,255,12]],[[12,0,256,8],[13,0,256,8],[14,0,256,8],[15,0,256,8],[16,0,256,8],[17,0,256,8],[18,0,256,14],[19,0,256,14],[20,0,256,16]],[[16,0,257,10],[17,0,257,10],[18,0,257,10],[19,0,257,10],[20,0,257,14],[21,0,257,14],[22,0,257,16]],[[20,0,258,12],[21,0,258,12],[22,0,258,12],[23,0,258,12],[24,0,258,12],[25,0,258,12],[26,0,258,12],[27,0,258,12],[28,0,258,12],[29,0,258,12],[30,0,258,12],[31,0,258,12],[32,0,258,12],[33,0,258,25]],[[20,0,259,12],[21,0,259,12],[22,0,259,12],[23,0,259,12],[24,0,259,12],[25,0,259,12],[26,0,259,12],[27,0,259,12],[28,0,259,12],[29,0,259,12],[30,0,259,12],[31,0,259,12],[32,0,259,12],[33,0,259,12],[34,0,259,26]],[[17,0,260,11]],[[13,0,261,9]],[[12,0,262,8],[13,0,262,8],[14,0,262,8],[15,0,262,11],[16,0,262,11],[17,0,262,11],[18,0,262,11],[19,0,262,11],[20,0,262,11],[21,0,262,11],[22,0,262,18]],[[9,0,263,7],[10,0,264,5]],[[8,0,266,4],[9,0,266,4],[10,0,266,4],[11,0,266,4],[12,0,266,4],[13,0,266,4],[14,0,266,4],[15,0,266,11],[16,0,266,11],[17,0,266,11],[18,0,266,11],[19,0,266,11],[20,0,266,11],[21,0,266,11],[22,0,266,11],[23,0,266,11],[24,0,266,11],[25,0,266,11],[26,0,266,11],[27,0,266,11],[28,0,266,11],[29,0,266,11],[30,0,266,11],[31,0,266,11],[32,0,266,11],[33,0,266,11],[34,0,266,11],[35,0,266,11],[36,0,266,11],[37,0,266,11],[38,0,266,11],[39,0,266,11],[40,0,266,11],[41,0,266,11],[42,0,266,11],[43,0,266,11],[44,0,266,11],[45,0,266,11],[46,0,266,11],[47,0,266,28],[48,0,266,28],[49,0,266,29],[50,0,266,29],[51,0,266,29],[52,0,266,29],[53,0,266,33],[54,0,266,34]],[[4,0,267,2]],[],[[0,0,16,0],[1,0,16,0],[2,0,16,0],[3,0,16,0],[4,0,16,0],[5,0,16,0],[6,0,16,0],[7,0,16,0],[8,0,16,0],[9,0,16,0],[10,0,16,0],[11,0,16,0],[12,0,16,0],[13,0,16,0],[14,0,16,0],[15,0,16,0],[16,0,16,0],[17,0,16,0],[18,0,16,0],[19,0,16,0],[20,0,16,0],[21,0,16,0],[22,0,16,0],[23,0,16,0],[24,0,16,0],[25,0,16,0],[26,0,16,0],[27,0,16,0],[28,0,16,0],[29,0,16,0],[30,0,16,0],[31,0,16,0],[32,0,16,0],[33,0,16,0],[34,0,16,0],[35,0,16,0]],[[0,0,270,0],[1,0,270,0],[2,0,270,0],[3,0,270,0],[4,0,270,0],[5,0,270,0],[6,0,270,13],[7,0,270,13],[8,0,270,13],[9,0,270,13],[10,0,270,13],[11,0,270,13],[12,0,270,19],[13,0,270,19]],[[4,0,271,22],[5,0,271,22],[6,0,271,22],[7,0,271,22],[8,0,271,22],[9,0,271,22],[10,0,271,22]],[[4,0,271,2],[5,0,271,2],[6,0,271,2],[7,0,271,2],[8,0,271,2],[9,0,271,2],[10,0,271,2],[11,0,271,2],[12,0,271,2],[13,0,271,2],[14,0,271,2],[15,0,271,2],[16,0,271,22],[17,0,271,22],[18,0,271,22],[19,0,271,22],[20,0,271,22],[21,0,271,22],[22,0,271,66],[23,0,271,66],[24,0,271,66]],[[8,0,271,22],[9,0,271,22],[10,0,271,22],[11,0,271,22],[12,0,271,22],[13,0,271,22],[14,0,271,22],[15,0,271,22],[16,0,271,22],[17,0,271,22],[18,0,271,22],[19,0,271,28],[20,0,271,28],[21,0,271,28],[22,0,271,22],[23,0,271,22],[24,0,271,22],[25,0,271,22],[26,0,271,22],[27,0,271,22],[28,0,271,28]],[[4,0,271,69]],[[4,0,273,2],[5,0,273,2],[6,0,273,2]],[],[],[],[],[],[],[],[],[[4,0,282,9],[5,0,282,9],[6,0,282,9],[7,0,282,9],[8,0,282,9],[9,0,282,14],[10,0,282,15],[11,0,282,15],[12,0,282,15],[13,0,282,15],[14,0,282,15],[15,0,282,15],[16,0,282,21],[17,0,283,4],[18,0,283,4],[19,0,283,4],[20,0,283,4],[21,0,283,4],[22,0,283,4],[23,0,283,4],[24,0,283,4],[25,0,283,4],[26,0,283,4],[27,0,283,4],[28,0,283,4],[29,0,283,4],[30,0,283,4],[31,0,283,85],[32,0,283,85],[33,0,284,4],[34,0,284,4],[35,0,284,4],[36,0,284,4],[37,0,284,4],[38,0,284,4],[39,0,284,4],[40,0,284,4],[41,0,284,4],[42,0,284,4],[43,0,284,4],[44,0,284,4],[45,0,284,4],[46,0,284,4],[47,0,284,4],[48,0,284,4],[49,0,284,4],[50,0,284,4],[51,0,284,4],[52,0,284,4],[53,0,284,4],[54,0,284,4],[55,0,284,4],[56,0,284,4],[57,0,284,4],[58,0,284,107],[59,0,284,107],[60,0,285,4],[61,0,285,4],[62,0,285,4],[63,0,285,4],[64,0,285,4],[65,0,285,38],[66,0,285,38],[67,0,286,4],[68,0,286,4],[69,0,286,4],[70,0,286,4],[71,0,286,4],[72,0,286,4],[73,0,286,4],[74,0,286,28],[75,0,286,28],[76,0,286,28]],[[8,0,288,4],[9,0,288,4],[10,0,288,4],[11,0,288,4],[12,0,288,4],[13,0,288,4],[14,0,288,10],[15,0,288,10],[16,0,288,10],[17,0,288,10],[18,0,288,14],[19,0,288,14],[20,0,288,14],[21,0,288,17],[22,0,288,17],[23,0,288,17],[24,0,288,17],[25,0,288,17],[26,0,288,17],[27,0,288,23],[28,0,288,23],[29,0,288,23],[30,0,288,23],[31,0,288,27],[32,0,288,28],[33,0,288,28],[34,0,288,28],[35,0,288,28],[36,0,288,28],[37,0,288,28],[38,0,288,34],[39,0,288,35],[40,0,288,35],[41,0,288,35],[42,0,288,35],[43,0,288,39],[44,0,289,6],[45,0,289,6],[46,0,289,6],[47,0,289,6],[48,0,289,6],[49,0,289,6],[50,0,289,6],[51,0,289,6],[52,0,289,6],[53,0,289,6],[54,0,289,6],[55,0,289,6],[56,0,289,6],[57,0,289,6],[58,0,289,6],[59,0,289,6],[60,0,289,6],[61,0,289,6],[62,0,289,6],[63,0,289,6],[64,0,289,6],[65,0,289,6],[66,0,289,6],[67,0,289,6],[68,0,289,6],[69,0,289,6],[70,0,289,6],[71,0,289,6],[72,0,289,6],[73,0,289,6],[74,0,289,6],[75,0,289,6],[76,0,289,6],[77,0,289,6],[78,0,289,6],[79,0,289,6],[80,0,289,6],[81,0,289,6],[82,0,289,6],[83,0,289,6],[84,0,289,6],[85,0,289,6],[86,0,289,6],[87,0,289,6],[88,0,289,6],[89,0,289,6],[90,0,289,6],[91,0,289,6],[92,0,289,6],[93,0,289,6],[94,0,289,6],[95,0,289,6],[96,0,289,6],[97,0,289,6],[98,0,289,6],[99,0,289,6],[100,0,289,6],[101,0,289,6],[102,0,289,6],[103,0,289,6],[104,0,289,6],[105,0,289,6],[106,0,289,6],[107,0,289,6],[108,0,289,6],[109,0,289,6],[110,0,289,6],[111,0,289,6],[112,0,289,6],[113,0,289,6],[114,0,289,6],[115,0,289,6],[116,0,289,6],[117,0,289,6],[118,0,289,6],[119,0,289,6],[120,0,289,6],[121,0,289,6],[122,0,289,6],[123,0,289,6],[124,0,289,6],[125,0,289,6],[126,0,289,6],[127,0,289,89],[128,0,289,89],[129,0,290,6]],[[12,0,291,8],[13,0,291,8],[14,0,291,8],[15,0,291,8],[16,0,291,12],[17,0,291,12],[18,0,291,14],[19,0,291,14],[20,0,291,14],[21,0,291,14],[22,0,291,14],[23,0,291,19]],[[12,0,292,8],[13,0,292,8],[14,0,292,8],[15,0,292,8],[16,0,292,8],[17,0,292,8],[18,0,292,14],[19,0,292,14],[20,0,292,16]],[[16,0,293,10],[17,0,293,10],[18,0,293,10],[19,0,293,10],[20,0,293,14],[21,0,293,14],[22,0,293,16]],[[20,0,294,12],[21,0,294,12],[22,0,294,12],[23,0,294,12],[24,0,294,12],[25,0,294,12],[26,0,294,12],[27,0,294,12],[28,0,294,12],[29,0,294,12],[30,0,294,12],[31,0,294,12],[32,0,294,12],[33,0,294,12],[34,0,294,12],[35,0,294,12],[36,0,294,12],[37,0,294,12],[38,0,294,12],[39,0,294,12],[40,0,294,12],[41,0,294,12],[42,0,294,12],[43,0,294,12],[44,0,294,12],[45,0,294,37]],[[20,0,295,12],[21,0,295,12],[22,0,295,12],[23,0,295,12],[24,0,295,12],[25,0,295,12],[26,0,295,12],[27,0,295,12],[28,0,295,12],[29,0,295,12],[30,0,295,12],[31,0,295,12],[32,0,295,12],[33,0,295,12],[34,0,295,26]],[[17,0,296,11]],[[13,0,297,9]],[[12,0,298,8],[13,0,298,8],[14,0,298,8],[15,0,298,11],[16,0,298,11],[17,0,298,11],[18,0,298,11],[19,0,298,11],[20,0,298,11],[21,0,298,11],[22,0,298,18]],[[9,0,299,7],[10,0,300,5]],[[8,0,302,4],[9,0,302,4],[10,0,302,4],[11,0,302,4],[12,0,302,4],[13,0,302,4],[14,0,302,4],[15,0,302,11],[16,0,302,11],[17,0,302,11],[18,0,302,11],[19,0,302,11],[20,0,302,11],[21,0,302,11],[22,0,302,11],[23,0,302,11],[24,0,302,11],[25,0,302,11],[26,0,302,11],[27,0,302,11],[28,0,302,11],[29,0,302,11],[30,0,302,11],[31,0,302,11],[32,0,302,11],[33,0,302,11],[34,0,302,11],[35,0,302,11],[36,0,302,11],[37,0,302,11],[38,0,302,11],[39,0,302,11],[40,0,302,11],[41,0,302,11],[42,0,302,11],[43,0,302,11],[44,0,302,11],[45,0,302,11],[46,0,302,11],[47,0,302,28],[48,0,302,28],[49,0,302,29],[50,0,302,29],[51,0,302,29],[52,0,302,29],[53,0,302,33],[54,0,302,34]],[[4,0,303,2]],[[4,0,305,2],[5,0,305,2],[6,0,305,2]],[],[],[],[],[],[],[],[[4,0,313,9],[5,0,313,9],[6,0,313,9],[7,0,313,9],[8,0,313,9],[9,0,313,14],[10,0,313,15],[11,0,313,15],[12,0,313,15],[13,0,313,15],[14,0,313,19],[15,0,314,4],[16,0,314,4],[17,0,314,4],[18,0,314,4],[19,0,314,4],[20,0,314,4],[21,0,314,4],[22,0,314,4],[23,0,314,4],[24,0,314,4],[25,0,314,4],[26,0,314,4],[27,0,314,4],[28,0,314,4],[29,0,314,95],[30,0,314,95],[31,0,315,4],[32,0,315,4],[33,0,315,4],[34,0,315,4],[35,0,315,4],[36,0,315,4],[37,0,315,4],[38,0,315,4],[39,0,315,4],[40,0,315,4],[41,0,315,4],[42,0,315,4],[43,0,315,4],[44,0,315,4],[45,0,315,4],[46,0,315,4],[47,0,315,4],[48,0,315,4],[49,0,315,4],[50,0,315,4],[51,0,315,4],[52,0,315,4],[53,0,315,4],[54,0,315,4],[55,0,315,4],[56,0,315,117],[57,0,315,117],[58,0,316,4],[59,0,316,4],[60,0,316,4],[61,0,316,4],[62,0,316,4],[63,0,316,70],[64,0,316,70],[65,0,317,4],[66,0,317,4],[67,0,317,4],[68,0,317,4],[69,0,317,4],[70,0,317,4],[71,0,317,4],[72,0,317,28],[73,0,317,28],[74,0,317,28]],[[8,0,319,4],[9,0,319,4],[10,0,319,4],[11,0,319,4],[12,0,319,4],[13,0,319,4],[14,0,319,10],[15,0,319,10],[16,0,319,10],[17,0,319,10],[18,0,319,14],[19,0,319,14],[20,0,319,14],[21,0,319,17],[22,0,319,17],[23,0,319,17],[24,0,319,17],[25,0,319,17],[26,0,319,17],[27,0,319,23],[28,0,319,23],[29,0,319,23],[30,0,319,23],[31,0,319,27],[32,0,319,28],[33,0,319,28],[34,0,319,28],[35,0,319,28],[36,0,319,28],[37,0,319,28],[38,0,319,34],[39,0,319,35],[40,0,319,35],[41,0,319,35],[42,0,319,38],[43,0,320,6],[44,0,320,6],[45,0,320,6],[46,0,320,6],[47,0,320,6],[48,0,320,6],[49,0,320,6],[50,0,320,6],[51,0,320,6],[52,0,320,6],[53,0,320,6],[54,0,320,6],[55,0,320,6],[56,0,320,6],[57,0,320,6],[58,0,320,6],[59,0,320,6],[60,0,320,6],[61,0,320,6],[62,0,320,6],[63,0,320,6],[64,0,320,6],[65,0,320,6],[66,0,320,6],[67,0,320,6],[68,0,320,6],[69,0,320,6],[70,0,320,6],[71,0,320,6],[72,0,320,6],[73,0,320,6],[74,0,320,6],[75,0,320,6],[76,0,320,6],[77,0,320,6],[78,0,320,6],[79,0,320,6],[80,0,320,6],[81,0,320,6],[82,0,320,6],[83,0,320,6],[84,0,320,6],[85,0,320,6],[86,0,320,6],[87,0,320,6],[88,0,320,6],[89,0,320,6],[90,0,320,6],[91,0,320,6],[92,0,320,6],[93,0,320,6],[94,0,320,6],[95,0,320,6],[96,0,320,6],[97,0,320,6],[98,0,320,6],[99,0,320,6],[100,0,320,6],[101,0,320,6],[102,0,320,6],[103,0,320,6],[104,0,320,6],[105,0,320,6],[106,0,320,6],[107,0,320,6],[108,0,320,6],[109,0,320,6],[110,0,320,6],[111,0,320,6],[112,0,320,6],[113,0,320,6],[114,0,320,6],[115,0,320,6],[116,0,320,6],[117,0,320,6],[118,0,320,6],[119,0,320,6],[120,0,320,6],[121,0,320,6],[122,0,320,6],[123,0,320,6],[124,0,320,6],[125,0,320,6],[126,0,320,89],[127,0,320,89],[128,0,321,6]],[[12,0,322,8],[13,0,322,8],[14,0,322,8],[15,0,322,8],[16,0,322,8],[17,0,322,8],[18,0,322,14],[19,0,322,14],[20,0,322,16]],[[16,0,323,10],[17,0,323,10],[18,0,323,10],[19,0,323,10],[20,0,323,14],[21,0,323,14],[22,0,323,16]],[[20,0,324,12],[21,0,324,12],[22,0,324,12],[23,0,324,12],[24,0,324,12],[25,0,324,12],[26,0,324,12],[27,0,324,12],[28,0,324,12],[29,0,324,12],[30,0,324,12],[31,0,324,12],[32,0,324,12],[33,0,324,12],[34,0,324,12],[35,0,324,12],[36,0,324,12],[37,0,324,12],[38,0,324,12],[39,0,324,12],[40,0,324,12],[41,0,324,12],[42,0,324,12],[43,0,324,12],[44,0,324,12],[45,0,324,37]],[[20,0,325,12],[21,0,325,12],[22,0,325,12],[23,0,325,12],[24,0,325,12],[25,0,325,12],[26,0,325,12],[27,0,325,12],[28,0,325,12],[29,0,325,12],[30,0,325,12],[31,0,325,12],[32,0,325,12],[33,0,325,12],[34,0,325,26]],[[17,0,326,11]],[[16,0,327,10],[17,0,327,10],[18,0,327,10],[19,0,327,10],[20,0,327,10],[21,0,327,15]],[[13,0,328,9]],[[12,0,329,8],[13,0,329,8],[14,0,329,8],[15,0,329,11],[16,0,329,11],[17,0,329,11],[18,0,329,11],[19,0,329,11],[20,0,329,11],[21,0,329,11],[22,0,329,18]],[[9,0,330,7],[10,0,331,5]],[[8,0,333,4],[9,0,333,4],[10,0,333,4],[11,0,333,4],[12,0,333,4],[13,0,333,4],[14,0,333,4],[15,0,333,11],[16,0,333,11],[17,0,333,11],[18,0,333,11],[19,0,333,11],[20,0,333,11],[21,0,333,11],[22,0,333,11],[23,0,333,11],[24,0,333,11],[25,0,333,11],[26,0,333,11],[27,0,333,11],[28,0,333,11],[29,0,333,11],[30,0,333,11],[31,0,333,11],[32,0,333,11],[33,0,333,11],[34,0,333,11],[35,0,333,11],[36,0,333,11],[37,0,333,11],[38,0,333,11],[39,0,333,11],[40,0,333,11],[41,0,333,11],[42,0,333,11],[43,0,333,11],[44,0,333,11],[45,0,333,11],[46,0,333,11],[47,0,333,28],[48,0,333,28],[49,0,333,29],[50,0,333,29],[51,0,333,29],[52,0,333,29],[53,0,333,33],[54,0,333,34]],[[4,0,334,2]],[[4,0,336,2],[5,0,336,2],[6,0,336,2]],[],[],[],[],[],[],[],[[4,0,344,9],[5,0,344,9],[6,0,344,9],[7,0,344,9],[8,0,344,9],[9,0,344,14],[10,0,344,15],[11,0,344,15],[12,0,344,15],[13,0,344,15],[14,0,344,15],[15,0,344,15],[16,0,344,15],[17,0,344,22],[18,0,345,4],[19,0,345,4],[20,0,345,4],[21,0,345,4],[22,0,345,4],[23,0,345,59],[24,0,345,59],[25,0,346,4],[26,0,346,4],[27,0,346,4],[28,0,346,4],[29,0,346,4],[30,0,346,4],[31,0,346,4],[32,0,346,28],[33,0,346,28],[34,0,346,28]],[[8,0,348,4],[9,0,348,4],[10,0,348,4],[11,0,348,4],[12,0,348,4],[13,0,348,4],[14,0,348,10],[15,0,348,10],[16,0,348,10],[17,0,348,10],[18,0,348,14],[19,0,348,14],[20,0,348,14],[21,0,348,17],[22,0,348,17],[23,0,348,17],[24,0,348,17],[25,0,348,17],[26,0,348,17],[27,0,348,23],[28,0,348,23],[29,0,348,23],[30,0,348,23],[31,0,348,27],[32,0,348,28],[33,0,348,28],[34,0,348,28],[35,0,348,28],[36,0,348,28],[37,0,348,28],[38,0,348,34],[39,0,348,35],[40,0,348,35],[41,0,348,35],[42,0,348,38],[43,0,348,39],[44,0,348,39],[45,0,348,39],[46,0,348,39],[47,0,348,39],[48,0,348,39],[49,0,348,39],[50,0,348,39],[51,0,348,39],[52,0,348,39],[53,0,348,39],[54,0,348,39],[55,0,348,39],[56,0,348,39],[57,0,348,39],[58,0,348,39],[59,0,348,55],[60,0,348,55],[61,0,348,57]],[[12,0,349,6],[13,0,349,6],[14,0,349,6],[15,0,349,6],[16,0,349,6],[17,0,349,6],[18,0,349,12],[19,0,349,12],[20,0,349,14]],[[16,0,350,8],[17,0,350,8],[18,0,350,8],[19,0,350,8],[20,0,350,8],[21,0,350,13]],[[13,0,351,7]],[[12,0,352,6],[13,0,352,6],[14,0,352,6],[15,0,352,9],[16,0,352,9],[17,0,352,9],[18,0,352,9],[19,0,352,9],[20,0,352,9],[21,0,352,9],[22,0,352,16]],[[9,0,353,5],[10,0,353,6]],[[8,0,355,4],[9,0,355,4],[10,0,355,4],[11,0,355,4],[12,0,355,4],[13,0,355,4],[14,0,355,4],[15,0,355,11],[16,0,355,11],[17,0,355,11],[18,0,355,11],[19,0,355,11],[20,0,355,11],[21,0,355,11],[22,0,355,11],[23,0,355,11],[24,0,355,11],[25,0,355,11],[26,0,355,11],[27,0,355,11],[28,0,355,11],[29,0,355,11],[30,0,355,11],[31,0,355,11],[32,0,355,11],[33,0,355,11],[34,0,355,11],[35,0,355,11],[36,0,355,11],[37,0,355,11],[38,0,355,11],[39,0,355,11],[40,0,355,11],[41,0,355,11],[42,0,355,11],[43,0,355,11],[44,0,355,11],[45,0,355,11],[46,0,355,11],[47,0,355,28],[48,0,355,28],[49,0,355,29],[50,0,355,29],[51,0,355,29],[52,0,355,29],[53,0,355,33],[54,0,355,34]],[[4,0,356,2]],[[4,0,358,2],[5,0,358,2],[6,0,358,2]],[],[],[],[],[],[],[],[],[],[[4,0,368,9],[5,0,368,9],[6,0,368,9],[7,0,368,9],[8,0,368,9],[9,0,368,14],[10,0,368,15],[11,0,368,15],[12,0,368,15],[13,0,368,15],[14,0,368,19],[15,0,369,4],[16,0,369,4],[17,0,369,4],[18,0,369,4],[19,0,369,4],[20,0,369,4],[21,0,369,4],[22,0,369,69],[23,0,369,69],[24,0,370,4],[25,0,370,4],[26,0,370,4],[27,0,370,4],[28,0,370,4],[29,0,370,4],[30,0,370,4],[31,0,370,28],[32,0,370,28],[33,0,370,28]],[[8,0,372,4],[9,0,372,4],[10,0,372,4],[11,0,372,4],[12,0,372,4],[13,0,372,4],[14,0,372,10],[15,0,372,10],[16,0,372,10],[17,0,372,10],[18,0,372,14],[19,0,372,14],[20,0,372,14],[21,0,372,17],[22,0,372,17],[23,0,372,17],[24,0,372,17],[25,0,372,17],[26,0,372,17],[27,0,372,23],[28,0,372,23],[29,0,372,23],[30,0,372,23],[31,0,372,27],[32,0,372,28],[33,0,372,28],[34,0,372,28],[35,0,372,28],[36,0,372,28],[37,0,372,28],[38,0,372,34],[39,0,372,35],[40,0,372,35],[41,0,372,35],[42,0,372,35],[43,0,372,35],[44,0,372,35],[45,0,372,41],[46,0,372,42],[47,0,372,42],[48,0,372,42],[49,0,372,42],[50,0,372,42],[51,0,372,42],[52,0,372,42],[53,0,372,42],[54,0,372,42],[55,0,372,42],[56,0,372,42],[57,0,372,42],[58,0,372,42],[59,0,372,42],[60,0,372,42],[61,0,372,42],[62,0,372,42],[63,0,372,42],[64,0,372,42],[65,0,372,42],[66,0,372,42],[67,0,372,42],[68,0,372,42],[69,0,372,42],[70,0,372,42],[71,0,372,42],[72,0,372,68],[73,0,372,68],[74,0,372,70]],[[12,0,373,6],[13,0,373,6],[14,0,373,6],[15,0,373,6],[16,0,373,6],[17,0,373,6],[18,0,373,12],[19,0,373,12],[20,0,373,14]],[[16,0,374,8],[17,0,374,8],[18,0,374,8],[19,0,374,8],[20,0,374,12],[21,0,374,12],[22,0,374,14]],[[20,0,375,10],[21,0,375,10],[22,0,375,10],[23,0,375,10],[24,0,375,10],[25,0,375,10],[26,0,375,10],[27,0,375,17]],[[17,0,376,9]],[[13,0,377,7]],[[12,0,378,6],[13,0,378,6],[14,0,378,6],[15,0,378,9],[16,0,378,9],[17,0,378,9],[18,0,378,9],[19,0,378,9],[20,0,378,9],[21,0,378,9],[22,0,378,16]],[[9,0,379,5],[10,0,379,6]],[[8,0,381,4],[9,0,381,4],[10,0,381,4],[11,0,381,4],[12,0,381,4],[13,0,381,4],[14,0,381,4],[15,0,381,11],[16,0,381,11],[17,0,381,11],[18,0,381,11],[19,0,381,11],[20,0,381,11],[21,0,381,11],[22,0,381,11],[23,0,381,11],[24,0,381,11],[25,0,381,11],[26,0,381,11],[27,0,381,11],[28,0,381,11],[29,0,381,11],[30,0,381,11],[31,0,381,11],[32,0,381,11],[33,0,381,11],[34,0,381,11],[35,0,381,11],[36,0,381,11],[37,0,381,11],[38,0,381,11],[39,0,381,11],[40,0,381,11],[41,0,381,11],[42,0,381,11],[43,0,381,11],[44,0,381,11],[45,0,381,11],[46,0,381,11],[47,0,381,28],[48,0,381,28],[49,0,381,29],[50,0,381,29],[51,0,381,29],[52,0,381,29],[53,0,381,33],[54,0,381,34]],[[4,0,382,2]],[],[[0,0,270,0],[1,0,270,0],[2,0,270,0],[3,0,270,0],[4,0,270,0],[5,0,270,0],[6,0,270,0],[7,0,270,0],[8,0,270,0],[9,0,270,0],[10,0,270,0],[11,0,270,0],[12,0,270,0],[13,0,270,0],[14,0,270,0],[15,0,270,0],[16,0,270,0],[17,0,270,0],[18,0,270,0],[19,0,270,0],[20,0,270,0],[21,0,270,0],[22,0,270,0],[23,0,270,0]],[[0,0,385,0],[1,0,385,0],[2,0,385,0]],[],[],[],[[0,0,389,0],[1,0,389,0],[2,0,389,0],[3,0,389,0],[4,0,389,0],[5,0,389,0],[6,0,389,13],[7,0,389,13],[8,0,389,13],[9,0,389,13],[10,0,389,13],[11,0,389,13],[12,0,389,13],[13,0,389,13],[14,0,389,13],[15,0,389,13],[16,0,389,13],[17,0,389,13],[18,0,389,13],[19,0,389,13],[20,0,389,27],[21,0,389,27]],[[4,0,392,22],[5,0,392,22],[6,0,392,22],[7,0,392,22],[8,0,392,22],[9,0,392,22],[10,0,392,22]],[[4,0,390,9],[5,0,390,9],[6,0,390,9],[7,0,390,9],[8,0,390,9],[9,0,390,9],[10,0,390,15]],[[4,0,392,2],[5,0,392,2],[6,0,392,2],[7,0,392,2],[8,0,392,2],[9,0,392,2],[10,0,392,2],[11,0,392,2],[12,0,392,2],[13,0,392,2],[14,0,392,2],[15,0,392,2],[16,0,392,22],[17,0,392,22],[18,0,392,22],[19,0,392,22],[20,0,392,22],[21,0,392,22],[22,0,392,66],[23,0,392,66],[24,0,392,66]],[[8,0,392,22],[9,0,392,22],[10,0,392,22],[11,0,392,22],[12,0,392,22],[13,0,392,22],[14,0,392,22],[15,0,392,22],[16,0,392,22],[17,0,392,22],[18,0,392,22],[19,0,392,28],[20,0,392,28],[21,0,392,28],[22,0,392,22],[23,0,392,22],[24,0,392,22],[25,0,392,22],[26,0,392,22],[27,0,392,22],[28,0,392,28]],[[8,0,393,4],[9,0,393,4],[10,0,393,4],[11,0,393,4],[12,0,393,8],[13,0,393,9],[14,0,393,9],[15,0,393,9],[16,0,393,9],[17,0,393,9],[18,0,393,9],[19,0,393,15],[20,0,393,15],[21,0,393,15],[22,0,393,18],[23,0,393,18],[24,0,393,18],[25,0,393,18],[26,0,393,22],[27,0,393,22],[28,0,393,22],[29,0,393,22],[30,0,393,22],[31,0,393,22],[32,0,393,22],[33,0,393,22],[34,0,393,30],[35,0,393,31],[36,0,393,31],[37,0,393,31],[38,0,393,31],[39,0,393,31],[40,0,393,31],[41,0,393,37],[42,0,393,38]],[[4,0,394,2]],[[4,0,396,2],[5,0,396,2],[6,0,396,2]],[],[],[],[],[],[],[[4,0,403,9],[5,0,403,9],[6,0,403,9],[7,0,403,9],[8,0,403,9],[9,0,403,14],[10,0,403,15],[11,0,403,15],[12,0,403,15],[13,0,403,15],[14,0,403,19],[15,0,404,4],[16,0,404,4],[17,0,404,4],[18,0,404,4],[19,0,404,4],[20,0,404,4],[21,0,404,4],[22,0,406,5],[23,0,406,5],[24,0,406,5]],[[8,0,408,4],[9,0,408,4],[10,0,408,4],[11,0,408,4],[12,0,408,4],[13,0,408,4],[14,0,408,10],[15,0,408,10],[16,0,408,10],[17,0,408,10],[18,0,408,14],[19,0,408,14],[20,0,408,14],[21,0,408,17],[22,0,408,17],[23,0,408,17],[24,0,408,17],[25,0,408,17],[26,0,408,17],[27,0,408,23],[28,0,408,23],[29,0,408,23],[30,0,408,23],[31,0,408,27],[32,0,408,28],[33,0,408,28],[34,0,408,28],[35,0,408,28],[36,0,408,28],[37,0,408,28],[38,0,408,34],[39,0,408,35],[40,0,408,35],[41,0,408,35],[42,0,408,38],[43,0,408,39],[44,0,408,39],[45,0,408,39],[46,0,408,39],[47,0,408,39],[48,0,408,39],[49,0,408,39],[50,0,408,39],[51,0,408,39],[52,0,408,39],[53,0,408,39],[54,0,408,39],[55,0,408,39],[56,0,408,39],[57,0,408,39],[58,0,408,39],[59,0,408,39],[60,0,408,39],[61,0,408,39],[62,0,408,39],[63,0,408,39],[64,0,408,39],[65,0,408,61],[66,0,408,61],[67,0,408,63]],[[12,0,409,6],[13,0,409,6],[14,0,409,6],[15,0,409,6],[16,0,409,6],[17,0,409,6],[18,0,409,12],[19,0,409,12],[20,0,409,14]],[[16,0,410,8],[17,0,410,8],[18,0,410,8],[19,0,410,8],[20,0,410,8],[21,0,410,13],[22,0,410,13],[23,0,410,15],[24,0,410,15],[25,0,410,15],[26,0,410,15],[27,0,410,15],[28,0,410,15],[29,0,410,15],[30,0,410,22],[31,0,410,22],[32,0,410,24],[33,0,410,24],[34,0,410,24],[35,0,410,24],[36,0,410,24],[37,0,410,29]],[[13,0,411,7]],[[12,0,412,6],[13,0,412,6],[14,0,412,6],[15,0,412,9],[16,0,412,9],[17,0,412,9],[18,0,412,9],[19,0,412,9],[20,0,412,9],[21,0,412,9],[22,0,412,16]],[[9,0,413,5],[10,0,413,6]],[[8,0,415,4],[9,0,415,4],[10,0,415,4],[11,0,415,4],[12,0,415,4],[13,0,415,4],[14,0,415,4],[15,0,415,11],[16,0,415,11],[17,0,415,11],[18,0,415,11],[19,0,415,11],[20,0,415,11],[21,0,415,11],[22,0,415,11],[23,0,415,11],[24,0,415,11],[25,0,415,11],[26,0,415,11],[27,0,415,11],[28,0,415,11],[29,0,415,11],[30,0,415,11],[31,0,415,11],[32,0,415,11],[33,0,415,11],[34,0,415,11],[35,0,415,11],[36,0,415,11],[37,0,415,11],[38,0,415,11],[39,0,415,11],[40,0,415,11],[41,0,415,11],[42,0,415,11],[43,0,415,11],[44,0,415,11],[45,0,415,11],[46,0,415,11],[47,0,415,28],[48,0,415,28],[49,0,415,29],[50,0,415,29],[51,0,415,29],[52,0,415,29],[53,0,415,33],[54,0,415,34]],[[4,0,416,2]],[[4,0,418,2],[5,0,418,2],[6,0,418,2]],[],[],[],[],[],[[4,0,424,9],[5,0,424,9],[6,0,424,9],[7,0,424,9],[8,0,424,9],[9,0,424,14],[10,0,424,15],[11,0,424,15],[12,0,424,15],[13,0,424,18],[14,0,425,4],[15,0,425,4],[16,0,425,4],[17,0,425,4],[18,0,425,4],[19,0,425,4],[20,0,425,4],[21,0,425,4],[22,0,425,4],[23,0,425,4],[24,0,425,4],[25,0,425,4],[26,0,425,4],[27,0,425,92],[28,0,425,92],[29,0,426,4],[30,0,426,4],[31,0,426,4],[32,0,426,4],[33,0,426,4],[34,0,426,4],[35,0,426,4],[36,0,426,28],[37,0,426,28],[38,0,426,28]],[[8,0,428,4],[9,0,428,4],[10,0,428,4],[11,0,428,4],[12,0,428,4],[13,0,428,4],[14,0,428,10],[15,0,428,10],[16,0,428,10],[17,0,428,10],[18,0,428,14],[19,0,428,14],[20,0,428,14],[21,0,428,17],[22,0,428,17],[23,0,428,17],[24,0,428,17],[25,0,428,17],[26,0,428,17],[27,0,428,23],[28,0,428,23],[29,0,428,23],[30,0,428,23],[31,0,428,27],[32,0,428,28],[33,0,428,28],[34,0,428,28],[35,0,428,28],[36,0,428,28],[37,0,428,28],[38,0,428,34],[39,0,428,35],[40,0,428,35],[41,0,428,35],[42,0,428,38],[43,0,428,39],[44,0,428,39],[45,0,428,39],[46,0,428,39],[47,0,428,39],[48,0,428,39],[49,0,428,39],[50,0,428,39],[51,0,428,39],[52,0,428,39],[53,0,428,39],[54,0,428,39],[55,0,428,39],[56,0,428,39],[57,0,428,39],[58,0,428,39],[59,0,428,39],[60,0,428,39],[61,0,428,39],[62,0,428,39],[63,0,428,39],[64,0,428,39],[65,0,428,39],[66,0,428,39],[67,0,428,39],[68,0,428,39],[69,0,428,39],[70,0,428,39],[71,0,428,39],[72,0,428,39],[73,0,428,39],[74,0,428,39],[75,0,428,39],[76,0,428,39],[77,0,428,39],[78,0,428,39],[79,0,428,39],[80,0,428,39],[81,0,428,77],[82,0,428,77],[83,0,428,79]],[[12,0,429,6],[13,0,429,6],[14,0,429,6],[15,0,429,6],[16,0,429,6],[17,0,429,6],[18,0,429,12],[19,0,429,12],[20,0,429,14]],[[16,0,430,8],[17,0,430,8],[18,0,430,8],[19,0,430,8],[20,0,430,12],[21,0,430,12],[22,0,430,14],[23,0,430,14],[24,0,430,16],[25,0,430,16],[26,0,430,16],[27,0,430,16],[28,0,430,16],[29,0,430,16],[30,0,430,16],[31,0,430,16],[32,0,430,16],[33,0,430,16],[34,0,430,16],[35,0,430,16],[36,0,430,16],[37,0,430,29],[38,0,430,29],[39,0,430,31]],[[13,0,431,7]],[[12,0,432,6],[13,0,432,6],[14,0,432,6],[15,0,432,9],[16,0,432,9],[17,0,432,9],[18,0,432,9],[19,0,432,9],[20,0,432,9],[21,0,432,9],[22,0,432,16]],[[9,0,433,5],[10,0,433,6]],[[8,0,435,4],[9,0,435,4],[10,0,435,4],[11,0,435,4],[12,0,435,4],[13,0,435,4],[14,0,435,4],[15,0,435,11],[16,0,435,11],[17,0,435,11],[18,0,435,11],[19,0,435,11],[20,0,435,11],[21,0,435,11],[22,0,435,11],[23,0,435,11],[24,0,435,11],[25,0,435,11],[26,0,435,11],[27,0,435,11],[28,0,435,11],[29,0,435,11],[30,0,435,11],[31,0,435,11],[32,0,435,11],[33,0,435,11],[34,0,435,11],[35,0,435,11],[36,0,435,11],[37,0,435,11],[38,0,435,11],[39,0,435,11],[40,0,435,11],[41,0,435,11],[42,0,435,11],[43,0,435,11],[44,0,435,11],[45,0,435,11],[46,0,435,11],[47,0,435,28],[48,0,435,28],[49,0,435,29],[50,0,435,29],[51,0,435,29],[52,0,435,29],[53,0,435,33],[54,0,435,34]],[[4,0,436,2]],[],[[0,0,389,0],[1,0,389,0],[2,0,389,0],[3,0,389,0],[4,0,389,0],[5,0,389,0],[6,0,389,0],[7,0,389,0],[8,0,389,0],[9,0,389,0],[10,0,389,0],[11,0,389,0],[12,0,389,0],[13,0,389,0],[14,0,389,0],[15,0,389,0],[16,0,389,0],[17,0,389,0],[18,0,389,0],[19,0,389,0],[20,0,389,0],[21,0,389,0],[22,0,389,0],[23,0,389,0],[24,0,389,0],[25,0,389,0],[26,0,389,0],[27,0,389,0],[28,0,389,0],[29,0,389,0],[30,0,389,0],[31,0,389,0],[32,0,389,0],[33,0,389,0],[34,0,389,0],[35,0,389,0],[36,0,389,0],[37,0,389,0],[38,0,389,0],[39,0,389,0]],[[0,0,439,0],[1,0,439,0],[2,0,439,0]],[],[],[[0,0,442,0],[1,0,442,0],[2,0,442,0],[3,0,442,0],[4,0,442,0],[5,0,442,0],[6,0,442,13],[7,0,442,13],[8,0,442,13],[9,0,442,13],[10,0,442,13],[11,0,442,13],[12,0,442,13],[13,0,442,13],[14,0,442,21],[15,0,442,21]],[[4,0,443,22],[5,0,443,22],[6,0,443,22],[7,0,443,22],[8,0,443,22],[9,0,443,22],[10,0,443,22]],[[4,0,443,2],[5,0,443,2],[6,0,443,2],[7,0,443,2],[8,0,443,2],[9,0,443,2],[10,0,443,2],[11,0,443,2],[12,0,443,2],[13,0,443,2],[14,0,443,2],[15,0,443,2],[16,0,443,22],[17,0,443,22],[18,0,443,22],[19,0,443,22],[20,0,443,22],[21,0,443,22],[22,0,443,66],[23,0,443,66],[24,0,443,66]],[[8,0,443,22],[9,0,443,22],[10,0,443,22],[11,0,443,22],[12,0,443,22],[13,0,443,22],[14,0,443,22],[15,0,443,22],[16,0,443,22],[17,0,443,22],[18,0,443,22],[19,0,443,28],[20,0,443,28],[21,0,443,28],[22,0,443,22],[23,0,443,22],[24,0,443,22],[25,0,443,22],[26,0,443,22],[27,0,443,22],[28,0,443,28]],[[4,0,443,69]],[[4,0,445,2],[5,0,445,2],[6,0,445,2]],[],[],[],[],[],[],[[4,0,452,9],[5,0,452,9],[6,0,452,9],[7,0,452,9],[8,0,452,9],[9,0,452,14],[10,0,452,15],[11,0,452,15],[12,0,452,15],[13,0,452,15],[14,0,452,19],[15,0,453,4],[16,0,453,4],[17,0,453,4],[18,0,453,4],[19,0,453,4],[20,0,453,4],[21,0,453,4],[22,0,455,5],[23,0,455,5],[24,0,455,5]],[[8,0,457,4],[9,0,457,4],[10,0,457,4],[11,0,457,4],[12,0,457,4],[13,0,457,4],[14,0,457,10],[15,0,457,10],[16,0,457,10],[17,0,457,10],[18,0,457,14],[19,0,457,14],[20,0,457,14],[21,0,457,17],[22,0,457,17],[23,0,457,17],[24,0,457,17],[25,0,457,17],[26,0,457,17],[27,0,457,23],[28,0,457,23],[29,0,457,23],[30,0,457,23],[31,0,457,27],[32,0,457,28],[33,0,457,28],[34,0,457,28],[35,0,457,28],[36,0,457,28],[37,0,457,28],[38,0,457,34],[39,0,457,35],[40,0,457,35],[41,0,457,35],[42,0,457,38],[43,0,457,39],[44,0,457,39],[45,0,457,39],[46,0,457,39],[47,0,457,39],[48,0,457,39],[49,0,457,39],[50,0,457,39],[51,0,457,39],[52,0,457,39],[53,0,457,39],[54,0,457,39],[55,0,457,39],[56,0,457,39],[57,0,457,39],[58,0,457,39],[59,0,457,55],[60,0,457,55],[61,0,457,57]],[[12,0,458,6],[13,0,458,6],[14,0,458,6],[15,0,458,6],[16,0,458,6],[17,0,458,6],[18,0,458,12],[19,0,458,12],[20,0,458,14]],[[16,0,459,8],[17,0,459,8],[18,0,459,8],[19,0,459,8],[20,0,459,8],[21,0,459,13],[22,0,459,13],[23,0,459,15],[24,0,459,15],[25,0,459,15],[26,0,459,15],[27,0,459,15],[28,0,459,15],[29,0,459,15],[30,0,459,22],[31,0,459,22],[32,0,459,24],[33,0,459,24],[34,0,459,24],[35,0,459,24],[36,0,459,24],[37,0,459,29]],[[13,0,460,7]],[[12,0,461,6],[13,0,461,6],[14,0,461,6],[15,0,461,9],[16,0,461,9],[17,0,461,9],[18,0,461,9],[19,0,461,9],[20,0,461,9],[21,0,461,9],[22,0,461,16]],[[9,0,462,5],[10,0,462,6]],[[8,0,464,4],[9,0,464,4],[10,0,464,4],[11,0,464,4],[12,0,464,4],[13,0,464,4],[14,0,464,4],[15,0,464,11],[16,0,464,11],[17,0,464,11],[18,0,464,11],[19,0,464,11],[20,0,464,11],[21,0,464,11],[22,0,464,11],[23,0,464,11],[24,0,464,11],[25,0,464,11],[26,0,464,11],[27,0,464,11],[28,0,464,11],[29,0,464,11],[30,0,464,11],[31,0,464,11],[32,0,464,11],[33,0,464,11],[34,0,464,11],[35,0,464,11],[36,0,464,11],[37,0,464,11],[38,0,464,11],[39,0,464,11],[40,0,464,11],[41,0,464,11],[42,0,464,11],[43,0,464,11],[44,0,464,11],[45,0,464,11],[46,0,464,11],[47,0,464,28],[48,0,464,28],[49,0,464,29],[50,0,464,29],[51,0,464,29],[52,0,464,29],[53,0,464,33],[54,0,464,34]],[[4,0,465,2]],[[4,0,467,2],[5,0,467,2],[6,0,467,2]],[],[],[],[],[],[],[],[],[],[[4,0,477,9],[5,0,477,9],[6,0,477,9],[7,0,477,9],[8,0,477,9],[9,0,477,14],[10,0,477,15],[11,0,477,15],[12,0,477,15],[13,0,477,15],[14,0,477,19],[15,0,478,4],[16,0,478,4],[17,0,478,4],[18,0,478,4],[19,0,478,4],[20,0,478,4],[21,0,478,4],[22,0,478,69],[23,0,478,69],[24,0,479,4],[25,0,479,4],[26,0,479,4],[27,0,479,4],[28,0,479,4],[29,0,479,4],[30,0,479,4],[31,0,479,28],[32,0,479,28],[33,0,479,28]],[[8,0,481,4],[9,0,481,4],[10,0,481,4],[11,0,481,4],[12,0,481,4],[13,0,481,4],[14,0,481,10],[15,0,481,10],[16,0,481,10],[17,0,481,10],[18,0,481,14],[19,0,481,14],[20,0,481,14],[21,0,481,17],[22,0,481,17],[23,0,481,17],[24,0,481,17],[25,0,481,17],[26,0,481,17],[27,0,481,23],[28,0,481,23],[29,0,481,23],[30,0,481,23],[31,0,481,27],[32,0,481,28],[33,0,481,28],[34,0,481,28],[35,0,481,28],[36,0,481,28],[37,0,481,28],[38,0,481,34],[39,0,481,35],[40,0,481,35],[41,0,481,35],[42,0,481,35],[43,0,481,35],[44,0,481,35],[45,0,481,41],[46,0,481,42],[47,0,481,42],[48,0,481,42],[49,0,481,42],[50,0,481,42],[51,0,481,42],[52,0,481,42],[53,0,481,42],[54,0,481,42],[55,0,481,42],[56,0,481,42],[57,0,481,42],[58,0,481,42],[59,0,481,42],[60,0,481,42],[61,0,481,42],[62,0,481,42],[63,0,481,42],[64,0,481,42],[65,0,481,42],[66,0,481,42],[67,0,481,42],[68,0,481,42],[69,0,481,42],[70,0,481,42],[71,0,481,42],[72,0,481,68],[73,0,481,68],[74,0,481,70]],[[12,0,482,6],[13,0,482,6],[14,0,482,6],[15,0,482,6],[16,0,482,6],[17,0,482,6],[18,0,482,12],[19,0,482,12],[20,0,482,14]],[[16,0,483,8],[17,0,483,8],[18,0,483,8],[19,0,483,8],[20,0,483,12],[21,0,483,12],[22,0,483,14]],[[20,0,484,10],[21,0,484,10],[22,0,484,10],[23,0,484,10],[24,0,484,10],[25,0,484,10],[26,0,484,10],[27,0,484,17]],[[17,0,485,9]],[[13,0,486,7]],[[12,0,487,6],[13,0,487,6],[14,0,487,6],[15,0,487,9],[16,0,487,9],[17,0,487,9],[18,0,487,9],[19,0,487,9],[20,0,487,9],[21,0,487,9],[22,0,487,16]],[[9,0,488,5],[10,0,488,6]],[[8,0,490,4],[9,0,490,4],[10,0,490,4],[11,0,490,4],[12,0,490,4],[13,0,490,4],[14,0,490,4],[15,0,490,11],[16,0,490,11],[17,0,490,11],[18,0,490,11],[19,0,490,11],[20,0,490,11],[21,0,490,11],[22,0,490,11],[23,0,490,11],[24,0,490,11],[25,0,490,11],[26,0,490,11],[27,0,490,11],[28,0,490,11],[29,0,490,11],[30,0,490,11],[31,0,490,11],[32,0,490,11],[33,0,490,11],[34,0,490,11],[35,0,490,11],[36,0,490,11],[37,0,490,11],[38,0,490,11],[39,0,490,11],[40,0,490,11],[41,0,490,11],[42,0,490,11],[43,0,490,11],[44,0,490,11],[45,0,490,11],[46,0,490,11],[47,0,490,28],[48,0,490,28],[49,0,490,29],[50,0,490,29],[51,0,490,29],[52,0,490,29],[53,0,490,33],[54,0,490,34]],[[4,0,491,2]],[],[[0,0,442,0],[1,0,442,0],[2,0,442,0],[3,0,442,0],[4,0,442,0],[5,0,442,0],[6,0,442,0],[7,0,442,0],[8,0,442,0],[9,0,442,0],[10,0,442,0],[11,0,442,0],[12,0,442,0],[13,0,442,0],[14,0,442,0],[15,0,442,0],[16,0,442,0],[17,0,442,0],[18,0,442,0],[19,0,442,0],[20,0,442,0],[21,0,442,0],[22,0,442,0],[23,0,442,0],[24,0,442,0],[25,0,442,0],[26,0,442,0],[27,0,442,0]]],"ignoreList":[]}
|