@appium/base-driver 8.3.1 → 8.4.0
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/build/lib/basedriver/capabilities.d.ts +80 -0
- package/build/lib/basedriver/capabilities.d.ts.map +1 -0
- package/build/lib/basedriver/capabilities.js +11 -10
- package/build/lib/basedriver/commands/event.d.ts +9 -0
- package/build/lib/basedriver/commands/event.d.ts.map +1 -0
- package/build/lib/basedriver/commands/event.js +21 -21
- package/build/lib/basedriver/commands/find.d.ts +11 -0
- package/build/lib/basedriver/commands/find.d.ts.map +1 -0
- package/build/lib/basedriver/commands/find.js +44 -37
- package/build/lib/basedriver/commands/index.d.ts +8 -0
- package/build/lib/basedriver/commands/index.d.ts.map +1 -0
- package/build/lib/basedriver/commands/index.js +17 -14
- package/build/lib/basedriver/commands/log.d.ts +12 -0
- package/build/lib/basedriver/commands/log.d.ts.map +1 -0
- package/build/lib/basedriver/commands/log.js +24 -26
- package/build/lib/basedriver/commands/session.d.ts +11 -0
- package/build/lib/basedriver/commands/session.d.ts.map +1 -0
- package/build/lib/basedriver/commands/session.js +21 -147
- package/build/lib/basedriver/commands/settings.d.ts +10 -0
- package/build/lib/basedriver/commands/settings.d.ts.map +1 -0
- package/build/lib/basedriver/commands/settings.js +19 -17
- package/build/lib/basedriver/commands/timeout.d.ts +8 -0
- package/build/lib/basedriver/commands/timeout.d.ts.map +1 -0
- package/build/lib/basedriver/commands/timeout.js +118 -137
- package/build/lib/basedriver/core.d.ts +235 -0
- package/build/lib/basedriver/core.d.ts.map +1 -0
- package/build/lib/basedriver/core.js +283 -0
- package/build/lib/basedriver/desired-caps.d.ts +5 -0
- package/build/lib/basedriver/desired-caps.d.ts.map +1 -0
- package/build/lib/basedriver/desired-caps.js +1 -1
- package/build/lib/basedriver/device-settings.d.ts +32 -0
- package/build/lib/basedriver/device-settings.d.ts.map +1 -0
- package/build/lib/basedriver/device-settings.js +19 -11
- package/build/lib/basedriver/driver.d.ts +83 -0
- package/build/lib/basedriver/driver.d.ts.map +1 -0
- package/build/lib/basedriver/driver.js +100 -266
- package/build/lib/basedriver/helpers.d.ts +132 -0
- package/build/lib/basedriver/helpers.d.ts.map +1 -0
- package/build/lib/basedriver/helpers.js +17 -1
- package/build/lib/basedriver/logger.d.ts +3 -0
- package/build/lib/basedriver/logger.d.ts.map +1 -0
- package/build/lib/constants.d.ts +9 -0
- package/build/lib/constants.d.ts.map +1 -0
- package/build/lib/express/crash.d.ts +3 -0
- package/build/lib/express/crash.d.ts.map +1 -0
- package/build/lib/express/express-logging.d.ts +3 -0
- package/build/lib/express/express-logging.d.ts.map +1 -0
- package/build/lib/express/idempotency.d.ts +2 -0
- package/build/lib/express/idempotency.d.ts.map +1 -0
- package/build/lib/express/logger.d.ts +3 -0
- package/build/lib/express/logger.d.ts.map +1 -0
- package/build/lib/express/middleware.d.ts +9 -0
- package/build/lib/express/middleware.d.ts.map +1 -0
- package/build/lib/express/server.d.ts +10 -0
- package/build/lib/express/server.d.ts.map +1 -0
- package/build/lib/express/static.d.ts +6 -0
- package/build/lib/express/static.d.ts.map +1 -0
- package/build/lib/express/websocket.d.ts +64 -0
- package/build/lib/express/websocket.d.ts.map +1 -0
- package/build/lib/helpers/capabilities.d.ts +13 -0
- package/build/lib/helpers/capabilities.d.ts.map +1 -0
- package/build/lib/helpers/capabilities.js +41 -1
- package/build/lib/index.d.ts +183 -0
- package/build/lib/index.d.ts.map +1 -0
- package/build/lib/index.js +40 -20
- package/build/lib/jsonwp-proxy/protocol-converter.d.ts +48 -0
- package/build/lib/jsonwp-proxy/protocol-converter.d.ts.map +1 -0
- package/build/lib/jsonwp-proxy/proxy.d.ts +41 -0
- package/build/lib/jsonwp-proxy/proxy.d.ts.map +1 -0
- package/build/lib/jsonwp-status/status.d.ts +159 -0
- package/build/lib/jsonwp-status/status.d.ts.map +1 -0
- package/build/lib/protocol/errors.d.ts +310 -0
- package/build/lib/protocol/errors.d.ts.map +1 -0
- package/build/lib/protocol/errors.js +81 -2
- package/build/lib/protocol/helpers.d.ts +22 -0
- package/build/lib/protocol/helpers.d.ts.map +1 -0
- package/build/lib/protocol/index.d.ts +16 -0
- package/build/lib/protocol/index.d.ts.map +1 -0
- package/build/lib/protocol/index.js +7 -7
- package/build/lib/protocol/protocol.d.ts +11 -0
- package/build/lib/protocol/protocol.d.ts.map +1 -0
- package/build/lib/protocol/protocol.js +2 -6
- package/build/lib/protocol/routes.d.ts +6 -0
- package/build/lib/protocol/routes.d.ts.map +1 -0
- package/build/lib/protocol/routes.js +17 -1
- package/build/lib/protocol/validators.d.ts +8 -0
- package/build/lib/protocol/validators.d.ts.map +1 -0
- package/build/test/basedriver/driver-tests.js +30 -3
- package/build/test/unit/basedriver/commands/event.spec.js +7 -7
- package/build/test/unit/basedriver/commands/log.spec.js +31 -24
- package/build/test/unit/basedriver/timeout.spec.js +1 -1
- package/build/test/unit/protocol/routes.spec.js +2 -2
- package/build/tsconfig.tsbuildinfo +1 -0
- package/lib/basedriver/capabilities.js +49 -10
- package/lib/basedriver/commands/event.js +49 -31
- package/lib/basedriver/commands/find.js +108 -43
- package/lib/basedriver/commands/index.js +25 -19
- package/lib/basedriver/commands/log.js +60 -33
- package/lib/basedriver/commands/session.js +39 -141
- package/lib/basedriver/commands/settings.js +33 -13
- package/lib/basedriver/commands/timeout.js +153 -153
- package/lib/basedriver/core.js +497 -0
- package/lib/basedriver/desired-caps.js +1 -1
- package/lib/basedriver/device-settings.js +47 -12
- package/lib/basedriver/driver.js +273 -395
- package/lib/basedriver/helpers.js +18 -2
- package/lib/helpers/capabilities.js +60 -1
- package/lib/index.js +16 -12
- package/lib/protocol/errors.js +42 -42
- package/lib/protocol/index.js +4 -4
- package/lib/protocol/protocol.js +1 -3
- package/lib/protocol/routes.js +9 -0
- package/package.json +10 -9
- package/test/basedriver/driver-tests.js +31 -2
- package/index.d.ts +0 -386
|
@@ -0,0 +1,310 @@
|
|
|
1
|
+
export class ProtocolError extends ES6Error {
|
|
2
|
+
constructor(msg: any, jsonwpCode: any, w3cStatus: any, error: any);
|
|
3
|
+
jsonwpCode: any;
|
|
4
|
+
error: any;
|
|
5
|
+
w3cStatus: any;
|
|
6
|
+
_stacktrace: any;
|
|
7
|
+
set stacktrace(arg: any);
|
|
8
|
+
get stacktrace(): any;
|
|
9
|
+
}
|
|
10
|
+
export class NoSuchDriverError extends ProtocolError {
|
|
11
|
+
static code(): number;
|
|
12
|
+
static w3cStatus(): HTTPStatusCodes;
|
|
13
|
+
static error(): string;
|
|
14
|
+
constructor(err: any);
|
|
15
|
+
}
|
|
16
|
+
export class NoSuchElementError extends ProtocolError {
|
|
17
|
+
static code(): number;
|
|
18
|
+
static w3cStatus(): HTTPStatusCodes;
|
|
19
|
+
static error(): string;
|
|
20
|
+
constructor(err: any);
|
|
21
|
+
}
|
|
22
|
+
export class NoSuchFrameError extends ProtocolError {
|
|
23
|
+
static code(): number;
|
|
24
|
+
static error(): string;
|
|
25
|
+
static w3cStatus(): HTTPStatusCodes;
|
|
26
|
+
constructor(err: any);
|
|
27
|
+
}
|
|
28
|
+
export class UnknownCommandError extends ProtocolError {
|
|
29
|
+
static code(): number;
|
|
30
|
+
static w3cStatus(): HTTPStatusCodes;
|
|
31
|
+
static error(): string;
|
|
32
|
+
constructor(err: any);
|
|
33
|
+
}
|
|
34
|
+
export class StaleElementReferenceError extends ProtocolError {
|
|
35
|
+
static code(): number;
|
|
36
|
+
static w3cStatus(): HTTPStatusCodes;
|
|
37
|
+
static error(): string;
|
|
38
|
+
constructor(err: any);
|
|
39
|
+
}
|
|
40
|
+
export class ElementNotVisibleError extends ProtocolError {
|
|
41
|
+
static code(): number;
|
|
42
|
+
static w3cStatus(): HTTPStatusCodes;
|
|
43
|
+
static error(): string;
|
|
44
|
+
constructor(err: any);
|
|
45
|
+
}
|
|
46
|
+
export class InvalidElementStateError extends ProtocolError {
|
|
47
|
+
static code(): number;
|
|
48
|
+
static w3cStatus(): HTTPStatusCodes;
|
|
49
|
+
static error(): string;
|
|
50
|
+
constructor(err: any);
|
|
51
|
+
}
|
|
52
|
+
export class UnknownError extends ProtocolError {
|
|
53
|
+
static code(): number;
|
|
54
|
+
static w3cStatus(): HTTPStatusCodes;
|
|
55
|
+
static error(): string;
|
|
56
|
+
constructor(errorOrMessage: any);
|
|
57
|
+
}
|
|
58
|
+
export class UnknownMethodError extends ProtocolError {
|
|
59
|
+
static code(): number;
|
|
60
|
+
static w3cStatus(): HTTPStatusCodes;
|
|
61
|
+
static error(): string;
|
|
62
|
+
constructor(err: any);
|
|
63
|
+
}
|
|
64
|
+
export class UnsupportedOperationError extends ProtocolError {
|
|
65
|
+
static code(): number;
|
|
66
|
+
static w3cStatus(): HTTPStatusCodes;
|
|
67
|
+
static error(): string;
|
|
68
|
+
constructor(err: any);
|
|
69
|
+
}
|
|
70
|
+
export class ElementIsNotSelectableError extends ProtocolError {
|
|
71
|
+
static code(): number;
|
|
72
|
+
static error(): string;
|
|
73
|
+
static w3cStatus(): HTTPStatusCodes;
|
|
74
|
+
constructor(err: any);
|
|
75
|
+
}
|
|
76
|
+
export class ElementClickInterceptedError extends ProtocolError {
|
|
77
|
+
static code(): number;
|
|
78
|
+
static error(): string;
|
|
79
|
+
static w3cStatus(): HTTPStatusCodes;
|
|
80
|
+
constructor(err: any);
|
|
81
|
+
}
|
|
82
|
+
export class ElementNotInteractableError extends ProtocolError {
|
|
83
|
+
static code(): number;
|
|
84
|
+
static error(): string;
|
|
85
|
+
static w3cStatus(): HTTPStatusCodes;
|
|
86
|
+
constructor(err: any);
|
|
87
|
+
}
|
|
88
|
+
export class InsecureCertificateError extends ProtocolError {
|
|
89
|
+
static error(): string;
|
|
90
|
+
constructor(err: any);
|
|
91
|
+
}
|
|
92
|
+
export class JavaScriptError extends ProtocolError {
|
|
93
|
+
static code(): number;
|
|
94
|
+
static w3cStatus(): HTTPStatusCodes;
|
|
95
|
+
static error(): string;
|
|
96
|
+
constructor(err: any);
|
|
97
|
+
}
|
|
98
|
+
export class XPathLookupError extends ProtocolError {
|
|
99
|
+
static code(): number;
|
|
100
|
+
static w3cStatus(): HTTPStatusCodes;
|
|
101
|
+
static error(): string;
|
|
102
|
+
constructor(err: any);
|
|
103
|
+
}
|
|
104
|
+
export class TimeoutError extends ProtocolError {
|
|
105
|
+
static code(): number;
|
|
106
|
+
static w3cStatus(): HTTPStatusCodes;
|
|
107
|
+
static error(): string;
|
|
108
|
+
constructor(err: any);
|
|
109
|
+
}
|
|
110
|
+
export class NoSuchWindowError extends ProtocolError {
|
|
111
|
+
static code(): number;
|
|
112
|
+
static error(): string;
|
|
113
|
+
static w3cStatus(): HTTPStatusCodes;
|
|
114
|
+
constructor(err: any);
|
|
115
|
+
}
|
|
116
|
+
export class InvalidArgumentError extends ProtocolError {
|
|
117
|
+
static code(): number;
|
|
118
|
+
static error(): string;
|
|
119
|
+
static w3cStatus(): HTTPStatusCodes;
|
|
120
|
+
constructor(err: any);
|
|
121
|
+
}
|
|
122
|
+
export class InvalidCookieDomainError extends ProtocolError {
|
|
123
|
+
static code(): number;
|
|
124
|
+
static error(): string;
|
|
125
|
+
static w3cStatus(): HTTPStatusCodes;
|
|
126
|
+
constructor(err: any);
|
|
127
|
+
}
|
|
128
|
+
export class NoSuchCookieError extends ProtocolError {
|
|
129
|
+
static code(): number;
|
|
130
|
+
static w3cStatus(): HTTPStatusCodes;
|
|
131
|
+
static error(): string;
|
|
132
|
+
constructor(err: any);
|
|
133
|
+
}
|
|
134
|
+
export class UnableToSetCookieError extends ProtocolError {
|
|
135
|
+
static code(): number;
|
|
136
|
+
static w3cStatus(): HTTPStatusCodes;
|
|
137
|
+
static error(): string;
|
|
138
|
+
constructor(err: any);
|
|
139
|
+
}
|
|
140
|
+
export class UnexpectedAlertOpenError extends ProtocolError {
|
|
141
|
+
static code(): number;
|
|
142
|
+
static w3cStatus(): HTTPStatusCodes;
|
|
143
|
+
static error(): string;
|
|
144
|
+
constructor(err: any);
|
|
145
|
+
}
|
|
146
|
+
export class NoAlertOpenError extends ProtocolError {
|
|
147
|
+
static code(): number;
|
|
148
|
+
static w3cStatus(): HTTPStatusCodes;
|
|
149
|
+
static error(): string;
|
|
150
|
+
constructor(err: any);
|
|
151
|
+
}
|
|
152
|
+
export class NoSuchAlertError extends NoAlertOpenError {
|
|
153
|
+
}
|
|
154
|
+
export class ScriptTimeoutError extends ProtocolError {
|
|
155
|
+
static code(): number;
|
|
156
|
+
static w3cStatus(): HTTPStatusCodes;
|
|
157
|
+
static error(): string;
|
|
158
|
+
constructor(err: any);
|
|
159
|
+
}
|
|
160
|
+
export class InvalidElementCoordinatesError extends ProtocolError {
|
|
161
|
+
static code(): number;
|
|
162
|
+
static w3cStatus(): HTTPStatusCodes;
|
|
163
|
+
static error(): string;
|
|
164
|
+
constructor(err: any);
|
|
165
|
+
}
|
|
166
|
+
export class InvalidCoordinatesError extends InvalidElementCoordinatesError {
|
|
167
|
+
}
|
|
168
|
+
export class IMENotAvailableError extends ProtocolError {
|
|
169
|
+
static code(): number;
|
|
170
|
+
static w3cStatus(): HTTPStatusCodes;
|
|
171
|
+
static error(): string;
|
|
172
|
+
constructor(err: any);
|
|
173
|
+
}
|
|
174
|
+
export class IMEEngineActivationFailedError extends ProtocolError {
|
|
175
|
+
static code(): number;
|
|
176
|
+
static w3cStatus(): HTTPStatusCodes;
|
|
177
|
+
static error(): string;
|
|
178
|
+
constructor(err: any);
|
|
179
|
+
}
|
|
180
|
+
export class InvalidSelectorError extends ProtocolError {
|
|
181
|
+
static code(): number;
|
|
182
|
+
static w3cStatus(): HTTPStatusCodes;
|
|
183
|
+
static error(): string;
|
|
184
|
+
constructor(err: any);
|
|
185
|
+
}
|
|
186
|
+
export class SessionNotCreatedError extends ProtocolError {
|
|
187
|
+
static code(): number;
|
|
188
|
+
static w3cStatus(): HTTPStatusCodes;
|
|
189
|
+
static error(): string;
|
|
190
|
+
constructor(details: any);
|
|
191
|
+
}
|
|
192
|
+
export class MoveTargetOutOfBoundsError extends ProtocolError {
|
|
193
|
+
static code(): number;
|
|
194
|
+
static w3cStatus(): HTTPStatusCodes;
|
|
195
|
+
static error(): string;
|
|
196
|
+
constructor(err: any);
|
|
197
|
+
}
|
|
198
|
+
export class NoSuchContextError extends ProtocolError {
|
|
199
|
+
static code(): number;
|
|
200
|
+
constructor(err: any);
|
|
201
|
+
}
|
|
202
|
+
export class InvalidContextError extends ProtocolError {
|
|
203
|
+
static code(): number;
|
|
204
|
+
constructor(err: any);
|
|
205
|
+
}
|
|
206
|
+
export class NotYetImplementedError extends UnknownMethodError {
|
|
207
|
+
}
|
|
208
|
+
export class NotImplementedError extends UnknownMethodError {
|
|
209
|
+
}
|
|
210
|
+
export class UnableToCaptureScreen extends ProtocolError {
|
|
211
|
+
static code(): number;
|
|
212
|
+
static w3cStatus(): HTTPStatusCodes;
|
|
213
|
+
static error(): string;
|
|
214
|
+
constructor(err: any);
|
|
215
|
+
}
|
|
216
|
+
export class BadParametersError extends ES6Error {
|
|
217
|
+
static error(): string;
|
|
218
|
+
constructor(requiredParams: any, actualParams: any, errMessage: any);
|
|
219
|
+
w3cStatus: HTTPStatusCodes;
|
|
220
|
+
}
|
|
221
|
+
/**
|
|
222
|
+
* ProxyRequestError is a custom error and will be thrown up on unsuccessful proxy request and
|
|
223
|
+
* will contain information about the proxy failure.
|
|
224
|
+
* In case of ProxyRequestError should fetch the actual error by calling `getActualError()`
|
|
225
|
+
* for proxy failure to generate the client response.
|
|
226
|
+
*/
|
|
227
|
+
export class ProxyRequestError extends ES6Error {
|
|
228
|
+
constructor(err: any, responseError: any, httpStatus: any);
|
|
229
|
+
w3cStatus: any;
|
|
230
|
+
w3c: any;
|
|
231
|
+
jsonwp: any;
|
|
232
|
+
getActualError(): ProtocolError;
|
|
233
|
+
}
|
|
234
|
+
import ES6Error from "es6-error";
|
|
235
|
+
import { StatusCodes as HTTPStatusCodes } from "http-status-codes";
|
|
236
|
+
export namespace errors {
|
|
237
|
+
export { NotYetImplementedError };
|
|
238
|
+
export { NotImplementedError };
|
|
239
|
+
export { BadParametersError };
|
|
240
|
+
export { InvalidArgumentError };
|
|
241
|
+
export { NoSuchDriverError };
|
|
242
|
+
export { NoSuchElementError };
|
|
243
|
+
export { UnknownCommandError };
|
|
244
|
+
export { StaleElementReferenceError };
|
|
245
|
+
export { ElementNotVisibleError };
|
|
246
|
+
export { InvalidElementStateError };
|
|
247
|
+
export { UnknownError };
|
|
248
|
+
export { ElementIsNotSelectableError };
|
|
249
|
+
export { ElementClickInterceptedError };
|
|
250
|
+
export { ElementNotInteractableError };
|
|
251
|
+
export { InsecureCertificateError };
|
|
252
|
+
export { JavaScriptError };
|
|
253
|
+
export { XPathLookupError };
|
|
254
|
+
export { TimeoutError };
|
|
255
|
+
export { NoSuchWindowError };
|
|
256
|
+
export { NoSuchCookieError };
|
|
257
|
+
export { InvalidCookieDomainError };
|
|
258
|
+
export { InvalidCoordinatesError };
|
|
259
|
+
export { UnableToSetCookieError };
|
|
260
|
+
export { UnexpectedAlertOpenError };
|
|
261
|
+
export { NoAlertOpenError };
|
|
262
|
+
export { ScriptTimeoutError };
|
|
263
|
+
export { InvalidElementCoordinatesError };
|
|
264
|
+
export { IMENotAvailableError };
|
|
265
|
+
export { IMEEngineActivationFailedError };
|
|
266
|
+
export { InvalidSelectorError };
|
|
267
|
+
export { SessionNotCreatedError };
|
|
268
|
+
export { MoveTargetOutOfBoundsError };
|
|
269
|
+
export { NoSuchAlertError };
|
|
270
|
+
export { NoSuchContextError };
|
|
271
|
+
export { InvalidContextError };
|
|
272
|
+
export { NoSuchFrameError };
|
|
273
|
+
export { UnableToCaptureScreen };
|
|
274
|
+
export { UnknownMethodError };
|
|
275
|
+
export { UnsupportedOperationError };
|
|
276
|
+
export { ProxyRequestError };
|
|
277
|
+
}
|
|
278
|
+
export function isErrorType(err: any, type: any): boolean;
|
|
279
|
+
export function isUnknownError(err: any): boolean;
|
|
280
|
+
/**
|
|
281
|
+
* Retrieve an error derived from MJSONWP status
|
|
282
|
+
* @param {number} code JSONWP status code
|
|
283
|
+
* @param {string|Object} value The error message, or an object with a `message` property
|
|
284
|
+
* @return {ProtocolError} The error that is associated with provided JSONWP status code
|
|
285
|
+
*/
|
|
286
|
+
export function errorFromMJSONWPStatusCode(code: number, value?: string | any): ProtocolError;
|
|
287
|
+
/**
|
|
288
|
+
* Retrieve an error derived from W3C JSON Code
|
|
289
|
+
* @param {string} code W3C error string (see https://www.w3.org/TR/webdriver/#handling-errors `JSON Error Code` column)
|
|
290
|
+
* @param {string} message the error message
|
|
291
|
+
* @param {?string} stacktrace an optional error stacktrace
|
|
292
|
+
* @return {ProtocolError} The error that is associated with the W3C error string
|
|
293
|
+
*/
|
|
294
|
+
export function errorFromW3CJsonCode(code: string, message: string, stacktrace?: string | null): ProtocolError;
|
|
295
|
+
/**
|
|
296
|
+
* Convert an Appium error to proper W3C HTTP response
|
|
297
|
+
* @param {ProtocolError} err The error that needs to be translated
|
|
298
|
+
*/
|
|
299
|
+
export function getResponseForW3CError(err: ProtocolError): any[];
|
|
300
|
+
/**
|
|
301
|
+
* Convert an Appium error to a proper JSONWP response
|
|
302
|
+
* @param {ProtocolError} err The error to be converted
|
|
303
|
+
*/
|
|
304
|
+
export function getResponseForJsonwpError(err: ProtocolError): (HTTPStatusCodes.BAD_REQUEST | HTTPStatusCodes.INTERNAL_SERVER_ERROR | HTTPStatusCodes.NOT_FOUND | HTTPStatusCodes.NOT_IMPLEMENTED | {
|
|
305
|
+
status: any;
|
|
306
|
+
value: {
|
|
307
|
+
message: string;
|
|
308
|
+
};
|
|
309
|
+
})[];
|
|
310
|
+
//# sourceMappingURL=errors.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"errors.d.ts","sourceRoot":"","sources":["../../../lib/protocol/errors.js"],"names":[],"mappings":"AAWA;IACE,mEASC;IAPC,gBAA4B;IAC5B,WAAuC;IAIvC,eAAyD;IACzD,iBAAuB;IAOzB,yBAEC;IAND,sBAEC;CAKF;AAMD;IACE,sBAEC;IAED,oCAEC;IACD,uBAEC;IACD,sBAGC;CACF;AAED;IACE,sBAEC;IACD,oCAEC;IACD,uBAEC;IACD,sBAIC;CACF;AAED;IACE,sBAEC;IACD,uBAEC;IACD,oCAEC;IACD,sBAIC;CACF;AAED;IACE,sBAEC;IACD,oCAEC;IACD,uBAEC;IACD,sBAIC;CACF;AAED;IACE,sBAEC;IACD,oCAEC;IACD,uBAEC;IACD,sBAIC;CACF;AAED;IACE,sBAEC;IACD,oCAEC;IACD,uBAEC;IACD,sBAIC;CACF;AAED;IACE,sBAEC;IACD,oCAEC;IACD,uBAEC;IACD,sBAKC;CACF;AAED;IACE,sBAEC;IACD,oCAEC;IACD,uBAEC;IACD,iCAOC;CACF;AAED;IACE,sBAEC;IACD,oCAEC;IACD,uBAEC;IACD,sBAGC;CACF;AAED;IACE,sBAEC;IACD,oCAEC;IACD,uBAEC;IACD,sBAIC;CACF;AAED;IACE,sBAEC;IACD,uBAEC;IACD,oCAEC;IACD,sBAIC;CACF;AAED;IACE,sBAEC;IACD,uBAEC;IACD,oCAEC;IACD,sBAKC;CACF;AAED;IACE,sBAEC;IACD,uBAEC;IACD,oCAEC;IACD,sBAIC;CACF;AAED;IACE,uBAEC;IACD,sBAGC;CACF;AAED;IACE,sBAEC;IACD,oCAEC;IACD,uBAEC;IACD,sBAGC;CACF;AAED;IACE,sBAEC;IACD,oCAEC;IACD,uBAEC;IACD,sBAGC;CACF;AAED;IACE,sBAEC;IACD,oCAEC;IACD,uBAEC;IACD,sBAGC;CACF;AAED;IACE,sBAEC;IACD,uBAEC;IACD,oCAEC;IACD,sBAIC;CACF;AAED;IACE,sBAEC;IACD,uBAEC;IACD,oCAEC;IACD,sBAIC;CACF;AAED;IACE,sBAEC;IACD,uBAEC;IACD,oCAEC;IACD,sBAIC;CACF;AAED;IACE,sBAEC;IACD,oCAEC;IACD,uBAEC;IACD,sBAGC;CACF;AAED;IACE,sBAEC;IACD,oCAEC;IACD,uBAEC;IACD,sBAGC;CACF;AAED;IACE,sBAEC;IACD,oCAEC;IACD,uBAEC;IACD,sBAGC;CACF;AAED;IACE,sBAEC;IACD,oCAEC;IACD,uBAEC;IACD,sBAGC;CACF;AAED;CAAyD;AAEzD;IACE,sBAEC;IACD,oCAEC;IACD,uBAEC;IACD,sBAGC;CACF;AAED;IACE,sBAEC;IACD,oCAEC;IACD,uBAEC;IACD,sBAIC;CACF;AAED;CAA8E;AAE9E;IACE,sBAEC;IACD,oCAEC;IACD,uBAEC;IACD,sBAGC;CACF;AAED;IACE,sBAEC;IACD,oCAEC;IACD,uBAEC;IACD,sBAIC;CACF;AAED;IACE,sBAEC;IACD,oCAEC;IACD,uBAEC;IACD,sBAIC;CACF;AAED;IACE,sBAEC;IACD,oCAEC;IACD,uBAEC;IACD,0BAOC;CACF;AAED;IACE,sBAEC;IACD,oCAEC;IACD,uBAEC;IACD,sBAGC;CACF;AAED;IACE,sBAEC;IACD,sBAEC;CACF;AAED;IACE,sBAEC;IACD,sBAGC;CACF;AAGD;CAIC;AACD;CAIC;AAED;IACE,sBAEC;IACD,oCAEC;IACD,uBAEC;IACD,sBAGC;CACF;AAID;IACE,uBAEC;IACD,qEAWC;IADC,2BAA4C;CAE/C;AAED;;;;;GAKG;AACH;IACE,2DAwBC;IATC,eAA4C;IAI1C,SAAiC;IAGjC,YAA8B;IAIlC,gCAQC;CACF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;AAiED,0DAkBC;AAzBD,kDAKC;AAsBD;;;;;GAKG;AACH,iDAJW,MAAM,UACN,MAAM,MAAO,GACZ,aAAa,CAYxB;AAED;;;;;;GAMG;AACH,2CALW,MAAM,WACN,MAAM,eACL,MAAM,UACN,aAAa,CAaxB;AAED;;;GAGG;AACH,4CAFW,aAAa,SAqCvB;AAED;;;GAGG;AACH,+CAFW,aAAa;;;;;KA+BvB"}
|