@aidc-toolkit/utility 1.0.45 → 1.0.46-beta

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.
Files changed (59) hide show
  1. package/dist/character-set.d.ts +242 -0
  2. package/dist/character-set.d.ts.map +1 -0
  3. package/dist/character-set.js +542 -0
  4. package/dist/character-set.js.map +1 -0
  5. package/dist/exclusion.d.ts +26 -0
  6. package/dist/exclusion.d.ts.map +1 -0
  7. package/dist/exclusion.js +18 -0
  8. package/dist/exclusion.js.map +1 -0
  9. package/dist/index.d.ts +26 -683
  10. package/dist/index.d.ts.map +1 -0
  11. package/dist/index.js +9 -1
  12. package/dist/index.js.map +1 -0
  13. package/dist/iterable-utility.d.ts +39 -0
  14. package/dist/iterable-utility.d.ts.map +1 -0
  15. package/dist/iterable-utility.js +35 -0
  16. package/dist/iterable-utility.js.map +1 -0
  17. package/dist/locale/en/locale-resources.d.ts +33 -0
  18. package/dist/locale/en/locale-resources.d.ts.map +1 -0
  19. package/dist/locale/en/locale-resources.js +32 -0
  20. package/dist/locale/en/locale-resources.js.map +1 -0
  21. package/dist/locale/fr/locale-resources.d.ts +33 -0
  22. package/dist/locale/fr/locale-resources.d.ts.map +1 -0
  23. package/dist/locale/fr/locale-resources.js +32 -0
  24. package/dist/locale/fr/locale-resources.js.map +1 -0
  25. package/dist/locale/i18n.d.ts +27 -0
  26. package/dist/locale/i18n.d.ts.map +1 -0
  27. package/dist/locale/i18n.js +34 -0
  28. package/dist/locale/i18n.js.map +1 -0
  29. package/dist/record.d.ts +37 -0
  30. package/dist/record.d.ts.map +1 -0
  31. package/dist/record.js +58 -0
  32. package/dist/record.js.map +1 -0
  33. package/dist/reg-exp.d.ts +40 -0
  34. package/dist/reg-exp.d.ts.map +1 -0
  35. package/dist/reg-exp.js +55 -0
  36. package/dist/reg-exp.js.map +1 -0
  37. package/dist/sequence.d.ts +45 -0
  38. package/dist/sequence.d.ts.map +1 -0
  39. package/dist/sequence.js +96 -0
  40. package/dist/sequence.js.map +1 -0
  41. package/dist/string.d.ts +25 -0
  42. package/dist/string.d.ts.map +1 -0
  43. package/dist/string.js +2 -0
  44. package/dist/string.js.map +1 -0
  45. package/dist/transformer.d.ts +191 -0
  46. package/dist/transformer.d.ts.map +1 -0
  47. package/dist/transformer.js +459 -0
  48. package/dist/transformer.js.map +1 -0
  49. package/dist/version.d.ts +5 -0
  50. package/dist/version.d.ts.map +1 -0
  51. package/dist/version.js +5 -0
  52. package/dist/version.js.map +1 -0
  53. package/package.json +3 -3
  54. package/src/character-set.ts +47 -20
  55. package/src/transformer.ts +57 -56
  56. package/src/version.ts +1 -1
  57. package/tsconfig-src.tsbuildinfo +1 -1
  58. package/dist/index.cjs +0 -17
  59. package/dist/index.d.cts +0 -683
@@ -2,36 +2,6 @@ import { type IndexedCallback, mapIterable } from "./iterable-utility.js";
2
2
  import { i18nextUtility } from "./locale/i18n.js";
3
3
  import { Sequence } from "./sequence.js";
4
4
 
5
- /**
6
- * Transformer primitive type.
7
- */
8
- export type TransformerPrimitive = string | number | bigint | boolean;
9
-
10
- /**
11
- * Transformer input type, one of:
12
- *
13
- * - TInput (primitive type)
14
- * - Iterable\<TInput\>
15
- *
16
- * @template TInput
17
- * Transformer input primitive type.
18
- */
19
- export type TransformerInput<TInput extends TransformerPrimitive> = TInput | Iterable<TInput>;
20
-
21
- /**
22
- * Transformer output, based on transformer input:
23
- *
24
- * - If type TTransformerInput is primitive, result is type TOutput.
25
- * - If type TTransformerInput is Iterable, result is type Iterable\<TOutput\>.
26
- *
27
- * @template TTransformerInput
28
- * Transformer input type.
29
- *
30
- * @template TOutput
31
- * Output base type.
32
- */
33
- export type TransformerOutput<TTransformerInput extends TransformerInput<TransformerPrimitive>, TOutput> = TTransformerInput extends (TTransformerInput extends TransformerInput<infer TInput> ? TInput : never) ? TOutput : Iterable<TOutput>;
34
-
35
5
  /**
36
6
  * Transformer that transforms values in a numeric domain to values in a range equal to the domain or to another range
37
7
  * defined by a callback function. In other words, the domain determines valid input values and, without a callback, the
@@ -90,7 +60,7 @@ export abstract class Transformer {
90
60
  * Tweak.
91
61
  *
92
62
  * @returns
93
- * {@linkcode IdentityTransformer} if tweak is undefined, {@linkcode EncryptionTransformer} if tweak is defined.
63
+ * Transformer.
94
64
  */
95
65
  static get(domain: number | bigint, tweak?: number | bigint): Transformer {
96
66
  const domainN = BigInt(domain);
@@ -190,45 +160,72 @@ export abstract class Transformer {
190
160
  };
191
161
 
192
162
  /**
193
- * Transform value(s) forward.
163
+ * Transform a value forward.
164
+ *
165
+ * @param value
166
+ * Value.
167
+ *
168
+ * @returns
169
+ * Transformed value.
170
+ */
171
+ forward(value: number | bigint): bigint;
172
+
173
+ /**
174
+ * Transform a value forward and apply another transformation.
175
+ *
176
+ * @template TOutput
177
+ * Transformer callback output type.
194
178
  *
195
- * @template TTransformerInput
196
- * Value(s) input type.
179
+ * @param value
180
+ * Value.
197
181
  *
198
- * @param valueOrValues
199
- * Value(s). If this is an instance of {@linkcode Sequence}, the minimum and maximum values are validated prior to
200
- * transformation. Otherwise, the individual value(s) is/are validated at the time of transformation.
182
+ * @param transformerCallback
183
+ * Called with interim transformed value to transform it to its final value.
201
184
  *
202
185
  * @returns
203
- * Transformed value(s).
186
+ * Transformed value.
204
187
  */
205
- forward<TTransformerInput extends TransformerInput<number | bigint>>(valueOrValues: TTransformerInput): TransformerOutput<TTransformerInput, bigint>;
188
+ forward<TOutput>(value: number | bigint, transformerCallback: IndexedCallback<bigint, TOutput>): TOutput;
206
189
 
207
190
  /**
208
- * Transform value(s) forward, optionally applying a transformation.
191
+ * Transform values forward.
192
+ *
193
+ * @param values
194
+ * Values. If this is an instance of {@linkcode Sequence}, the minimum and maximum values are validated prior to
195
+ * transformation. Otherwise, the individual values are validated at the time of each transformation.
209
196
  *
210
- * @template TTransformerInput
211
- * Value(s) input type.
197
+ * @returns
198
+ * Transformed values.
199
+ */
200
+ forward(values: Iterable<number | bigint>): Iterable<bigint>;
201
+
202
+ /**
203
+ * Transform values forward and apply another transformation to each.
212
204
  *
213
205
  * @template TOutput
214
- * Transformation callback output type.
206
+ * Transformer callback output type.
215
207
  *
216
- * @param valueOrValues
217
- * Value(s). If this is an instance of {@linkcode Sequence}, the minimum and maximum values are validated prior to
218
- * transformation. Otherwise, the individual value(s) is/are validated at the time of transformation.
208
+ * @param values
209
+ * Values. If this is an instance of {@linkcode Sequence}, the minimum and maximum values are validated prior to
210
+ * transformation. Otherwise, the individual values are validated at the time of each transformation.
219
211
  *
220
212
  * @param transformerCallback
221
- * Called after each value is transformed to convert it to its final value.
213
+ * Called with each interim transformed value to transform it to its final value.
222
214
  *
223
215
  * @returns
224
- * Transformed value(s).
216
+ * Transformed values.
225
217
  */
226
- forward<TTransformerInput extends TransformerInput<number | bigint>, TOutput>(valueOrValues: TTransformerInput, transformerCallback: IndexedCallback<bigint, TOutput>): TransformerOutput<TTransformerInput, TOutput>;
218
+ forward<TOutput>(values: Iterable<number | bigint>, transformerCallback: IndexedCallback<bigint, TOutput>): Iterable<TOutput>;
219
+
220
+ // eslint-disable-next-line jsdoc/require-jsdoc -- Generic form of overloaded signatures.
221
+ forward<TInput extends number | bigint | Iterable<number | bigint>>(valueOrValues: TInput extends Iterable<number | bigint> ? TInput : number | bigint): TInput extends Iterable<number | bigint> ? Iterable<bigint> : bigint;
222
+
223
+ // eslint-disable-next-line jsdoc/require-jsdoc -- Generic form of overloaded signatures.
224
+ forward<TInput extends number | bigint | Iterable<number | bigint>, TOutput>(valueOrValues: TInput extends Iterable<number | bigint> ? TInput : number | bigint, transformerCallback: IndexedCallback<bigint, TOutput>): TInput extends Iterable<number | bigint> ? Iterable<TOutput> : TOutput;
227
225
 
228
226
  // eslint-disable-next-line jsdoc/require-jsdoc -- Implementation of overloaded signatures.
229
- forward<TTransformerInput extends TransformerInput<number | bigint>, TOutput>(valueOrValues: TTransformerInput, transformerCallback?: IndexedCallback<bigint, TOutput>): TransformerOutput<TTransformerInput, TOutput> {
230
- // TODO Refactor type when https://github.com/microsoft/TypeScript/pull/56941 released.
231
- let result: bigint | TOutput | Iterable<bigint> | Iterable<TOutput>;
227
+ forward<TOutput>(valueOrValues: number | bigint | Iterable<number | bigint>, transformerCallback?: IndexedCallback<bigint, TOutput>): bigint | TOutput | Iterable<bigint> | Iterable<TOutput> {
228
+ let result;
232
229
 
233
230
  if (typeof valueOrValues !== "object") {
234
231
  result = transformerCallback === undefined ? this.#validateDoForward(valueOrValues) : this.#validateDoForwardCallback(transformerCallback, valueOrValues);
@@ -251,8 +248,7 @@ export abstract class Transformer {
251
248
  result = transformerCallback === undefined ? mapIterable(valueOrValues, value => this.#validateDoForward(value)) : mapIterable(valueOrValues, (value, index) => this.#validateDoForwardCallback(transformerCallback, value, index));
252
249
  }
253
250
 
254
- // eslint-disable-next-line @typescript-eslint/no-unsafe-type-assertion -- Type determination is handled above.
255
- return result as TransformerOutput<TTransformerInput, TOutput>;
251
+ return result;
256
252
  }
257
253
 
258
254
  /**
@@ -325,6 +321,11 @@ export class IdentityTransformer extends Transformer {
325
321
  * identical to the input value, as no shuffle or xor takes place.
326
322
  */
327
323
  export class EncryptionTransformer extends Transformer {
324
+ /**
325
+ * Encryption seed; an 8-digit prime to force at least four rounds.
326
+ */
327
+ static readonly #SEED = 603868999n;
328
+
328
329
  /**
329
330
  * Individual bits, pre-calculated for performance.
330
331
  */
@@ -395,8 +396,8 @@ export class EncryptionTransformer extends Transformer {
395
396
  const bits: number[] = [];
396
397
  const inverseBits: number[] = [];
397
398
 
398
- // Key is the product of domain, tweak, and an 8-digit prime to force at least four rounds.
399
- for (let reducedKey = this.domain * BigInt(tweak) * 603868999n; reducedKey !== 0n; reducedKey >>= 8n) {
399
+ // Key is the product of domain, tweak, and seed.
400
+ for (let reducedKey = this.domain * BigInt(tweak) * EncryptionTransformer.#SEED; reducedKey !== 0n; reducedKey >>= 8n) {
400
401
  // Extract the least significant byte.
401
402
  xorBytes.unshift(Number(BigInt.asUintN(8, reducedKey)));
402
403
 
package/src/version.ts CHANGED
@@ -1,4 +1,4 @@
1
1
  /**
2
2
  * Repository version, updated automatically during publication.
3
3
  */
4
- export const VERSION = "1.0.45";
4
+ export const VERSION = "1.0.46-beta";
@@ -1 +1 @@
1
- {"fileNames":["./node_modules/typescript/lib/lib.es5.d.ts","./node_modules/typescript/lib/lib.es2015.d.ts","./node_modules/typescript/lib/lib.es2016.d.ts","./node_modules/typescript/lib/lib.es2017.d.ts","./node_modules/typescript/lib/lib.es2018.d.ts","./node_modules/typescript/lib/lib.es2019.d.ts","./node_modules/typescript/lib/lib.es2020.d.ts","./node_modules/typescript/lib/lib.es2021.d.ts","./node_modules/typescript/lib/lib.es2022.d.ts","./node_modules/typescript/lib/lib.es2015.core.d.ts","./node_modules/typescript/lib/lib.es2015.collection.d.ts","./node_modules/typescript/lib/lib.es2015.generator.d.ts","./node_modules/typescript/lib/lib.es2015.iterable.d.ts","./node_modules/typescript/lib/lib.es2015.promise.d.ts","./node_modules/typescript/lib/lib.es2015.proxy.d.ts","./node_modules/typescript/lib/lib.es2015.reflect.d.ts","./node_modules/typescript/lib/lib.es2015.symbol.d.ts","./node_modules/typescript/lib/lib.es2015.symbol.wellknown.d.ts","./node_modules/typescript/lib/lib.es2016.array.include.d.ts","./node_modules/typescript/lib/lib.es2016.intl.d.ts","./node_modules/typescript/lib/lib.es2017.arraybuffer.d.ts","./node_modules/typescript/lib/lib.es2017.date.d.ts","./node_modules/typescript/lib/lib.es2017.object.d.ts","./node_modules/typescript/lib/lib.es2017.sharedmemory.d.ts","./node_modules/typescript/lib/lib.es2017.string.d.ts","./node_modules/typescript/lib/lib.es2017.intl.d.ts","./node_modules/typescript/lib/lib.es2017.typedarrays.d.ts","./node_modules/typescript/lib/lib.es2018.asyncgenerator.d.ts","./node_modules/typescript/lib/lib.es2018.asynciterable.d.ts","./node_modules/typescript/lib/lib.es2018.intl.d.ts","./node_modules/typescript/lib/lib.es2018.promise.d.ts","./node_modules/typescript/lib/lib.es2018.regexp.d.ts","./node_modules/typescript/lib/lib.es2019.array.d.ts","./node_modules/typescript/lib/lib.es2019.object.d.ts","./node_modules/typescript/lib/lib.es2019.string.d.ts","./node_modules/typescript/lib/lib.es2019.symbol.d.ts","./node_modules/typescript/lib/lib.es2019.intl.d.ts","./node_modules/typescript/lib/lib.es2020.bigint.d.ts","./node_modules/typescript/lib/lib.es2020.date.d.ts","./node_modules/typescript/lib/lib.es2020.promise.d.ts","./node_modules/typescript/lib/lib.es2020.sharedmemory.d.ts","./node_modules/typescript/lib/lib.es2020.string.d.ts","./node_modules/typescript/lib/lib.es2020.symbol.wellknown.d.ts","./node_modules/typescript/lib/lib.es2020.intl.d.ts","./node_modules/typescript/lib/lib.es2020.number.d.ts","./node_modules/typescript/lib/lib.es2021.promise.d.ts","./node_modules/typescript/lib/lib.es2021.string.d.ts","./node_modules/typescript/lib/lib.es2021.weakref.d.ts","./node_modules/typescript/lib/lib.es2021.intl.d.ts","./node_modules/typescript/lib/lib.es2022.array.d.ts","./node_modules/typescript/lib/lib.es2022.error.d.ts","./node_modules/typescript/lib/lib.es2022.intl.d.ts","./node_modules/typescript/lib/lib.es2022.object.d.ts","./node_modules/typescript/lib/lib.es2022.string.d.ts","./node_modules/typescript/lib/lib.es2022.regexp.d.ts","./node_modules/typescript/lib/lib.esnext.disposable.d.ts","./node_modules/typescript/lib/lib.esnext.float16.d.ts","./node_modules/typescript/lib/lib.decorators.d.ts","./node_modules/typescript/lib/lib.decorators.legacy.d.ts","./src/exclusion.ts","./src/iterable-utility.ts","./node_modules/tslog/types/internal/InspectOptions.interface.d.ts","./node_modules/tslog/types/interfaces.d.ts","./node_modules/tslog/types/BaseLogger.d.ts","./node_modules/tslog/types/index.d.ts","./node_modules/i18next/typescript/helpers.d.ts","./node_modules/i18next/typescript/options.d.ts","./node_modules/i18next/typescript/t.d.ts","./node_modules/i18next/index.d.ts","./node_modules/i18next/index.d.mts","./node_modules/@aidc-toolkit/core/dist/index.d.ts","./src/locale/en/locale-resources.ts","./src/locale/fr/locale-resources.ts","./src/locale/i18n.ts","./src/string.ts","./src/reg-exp.ts","./src/sequence.ts","./src/transformer.ts","./src/character-set.ts","./src/record.ts","./src/index.ts","./src/version.ts","./src/locale/i18next.d.ts","./node_modules/@types/deep-eql/index.d.ts","./node_modules/assertion-error/index.d.ts","./node_modules/@types/chai/index.d.ts","./node_modules/@types/estree/index.d.ts","./node_modules/@types/json-schema/index.d.ts","./node_modules/@types/json5/index.d.ts","./node_modules/@types/node/compatibility/iterators.d.ts","./node_modules/@types/node/globals.typedarray.d.ts","./node_modules/@types/node/buffer.buffer.d.ts","./node_modules/@types/node/globals.d.ts","./node_modules/@types/node/web-globals/abortcontroller.d.ts","./node_modules/@types/node/web-globals/blob.d.ts","./node_modules/@types/node/web-globals/console.d.ts","./node_modules/@types/node/web-globals/crypto.d.ts","./node_modules/@types/node/web-globals/domexception.d.ts","./node_modules/@types/node/web-globals/encoding.d.ts","./node_modules/@types/node/web-globals/events.d.ts","./node_modules/undici-types/utility.d.ts","./node_modules/undici-types/header.d.ts","./node_modules/undici-types/readable.d.ts","./node_modules/undici-types/fetch.d.ts","./node_modules/undici-types/formdata.d.ts","./node_modules/undici-types/connector.d.ts","./node_modules/undici-types/client-stats.d.ts","./node_modules/undici-types/client.d.ts","./node_modules/undici-types/errors.d.ts","./node_modules/undici-types/dispatcher.d.ts","./node_modules/undici-types/global-dispatcher.d.ts","./node_modules/undici-types/global-origin.d.ts","./node_modules/undici-types/pool-stats.d.ts","./node_modules/undici-types/pool.d.ts","./node_modules/undici-types/handlers.d.ts","./node_modules/undici-types/balanced-pool.d.ts","./node_modules/undici-types/h2c-client.d.ts","./node_modules/undici-types/agent.d.ts","./node_modules/undici-types/mock-interceptor.d.ts","./node_modules/undici-types/mock-call-history.d.ts","./node_modules/undici-types/mock-agent.d.ts","./node_modules/undici-types/mock-client.d.ts","./node_modules/undici-types/mock-pool.d.ts","./node_modules/undici-types/snapshot-agent.d.ts","./node_modules/undici-types/mock-errors.d.ts","./node_modules/undici-types/proxy-agent.d.ts","./node_modules/undici-types/env-http-proxy-agent.d.ts","./node_modules/undici-types/retry-handler.d.ts","./node_modules/undici-types/retry-agent.d.ts","./node_modules/undici-types/api.d.ts","./node_modules/undici-types/cache-interceptor.d.ts","./node_modules/undici-types/interceptors.d.ts","./node_modules/undici-types/util.d.ts","./node_modules/undici-types/cookies.d.ts","./node_modules/undici-types/patch.d.ts","./node_modules/undici-types/websocket.d.ts","./node_modules/undici-types/eventsource.d.ts","./node_modules/undici-types/diagnostics-channel.d.ts","./node_modules/undici-types/content-type.d.ts","./node_modules/undici-types/cache.d.ts","./node_modules/undici-types/index.d.ts","./node_modules/@types/node/web-globals/fetch.d.ts","./node_modules/@types/node/web-globals/importmeta.d.ts","./node_modules/@types/node/web-globals/messaging.d.ts","./node_modules/@types/node/web-globals/navigator.d.ts","./node_modules/@types/node/web-globals/performance.d.ts","./node_modules/@types/node/web-globals/storage.d.ts","./node_modules/@types/node/web-globals/streams.d.ts","./node_modules/@types/node/web-globals/timers.d.ts","./node_modules/@types/node/web-globals/url.d.ts","./node_modules/@types/node/assert.d.ts","./node_modules/@types/node/assert/strict.d.ts","./node_modules/@types/node/async_hooks.d.ts","./node_modules/@types/node/buffer.d.ts","./node_modules/@types/node/child_process.d.ts","./node_modules/@types/node/cluster.d.ts","./node_modules/@types/node/console.d.ts","./node_modules/@types/node/constants.d.ts","./node_modules/@types/node/crypto.d.ts","./node_modules/@types/node/dgram.d.ts","./node_modules/@types/node/diagnostics_channel.d.ts","./node_modules/@types/node/dns.d.ts","./node_modules/@types/node/dns/promises.d.ts","./node_modules/@types/node/domain.d.ts","./node_modules/@types/node/events.d.ts","./node_modules/@types/node/fs.d.ts","./node_modules/@types/node/fs/promises.d.ts","./node_modules/@types/node/http.d.ts","./node_modules/@types/node/http2.d.ts","./node_modules/@types/node/https.d.ts","./node_modules/@types/node/inspector.d.ts","./node_modules/@types/node/inspector.generated.d.ts","./node_modules/@types/node/inspector/promises.d.ts","./node_modules/@types/node/module.d.ts","./node_modules/@types/node/net.d.ts","./node_modules/@types/node/os.d.ts","./node_modules/@types/node/path.d.ts","./node_modules/@types/node/path/posix.d.ts","./node_modules/@types/node/path/win32.d.ts","./node_modules/@types/node/perf_hooks.d.ts","./node_modules/@types/node/process.d.ts","./node_modules/@types/node/punycode.d.ts","./node_modules/@types/node/querystring.d.ts","./node_modules/@types/node/quic.d.ts","./node_modules/@types/node/readline.d.ts","./node_modules/@types/node/readline/promises.d.ts","./node_modules/@types/node/repl.d.ts","./node_modules/@types/node/sea.d.ts","./node_modules/@types/node/sqlite.d.ts","./node_modules/@types/node/stream.d.ts","./node_modules/@types/node/stream/consumers.d.ts","./node_modules/@types/node/stream/promises.d.ts","./node_modules/@types/node/stream/web.d.ts","./node_modules/@types/node/string_decoder.d.ts","./node_modules/@types/node/test.d.ts","./node_modules/@types/node/test/reporters.d.ts","./node_modules/@types/node/timers.d.ts","./node_modules/@types/node/timers/promises.d.ts","./node_modules/@types/node/tls.d.ts","./node_modules/@types/node/trace_events.d.ts","./node_modules/@types/node/tty.d.ts","./node_modules/@types/node/url.d.ts","./node_modules/@types/node/util.d.ts","./node_modules/@types/node/util/types.d.ts","./node_modules/@types/node/v8.d.ts","./node_modules/@types/node/vm.d.ts","./node_modules/@types/node/wasi.d.ts","./node_modules/@types/node/worker_threads.d.ts","./node_modules/@types/node/zlib.d.ts","./node_modules/@types/node/index.d.ts"],"fileIdsList":[[65,70,83,92,154,162,166,169,171,172,173,185],[84,85,92,154,162,166,169,171,172,173,185],[92,154,162,166,169,171,172,173,185],[92,151,152,154,162,166,169,171,172,173,185],[92,153,154,162,166,169,171,172,173,185],[154,162,166,169,171,172,173,185],[92,154,162,166,169,171,172,173,185,193],[92,154,155,160,162,165,166,169,171,172,173,175,185,190,202],[92,154,155,156,162,165,166,169,171,172,173,185],[92,154,157,162,166,169,171,172,173,185,203],[92,154,158,159,162,166,169,171,172,173,176,185],[92,154,159,162,166,169,171,172,173,185,190,199],[92,154,160,162,165,166,169,171,172,173,175,185],[92,153,154,161,162,166,169,171,172,173,185],[92,154,162,163,166,169,171,172,173,185],[92,154,162,164,165,166,169,171,172,173,185],[92,153,154,162,165,166,169,171,172,173,185],[92,154,162,165,166,167,169,171,172,173,185,190,202],[92,154,162,165,166,167,169,171,172,173,185,190,193],[92,141,154,162,165,166,168,169,171,172,173,175,185,190,202],[92,154,162,165,166,168,169,171,172,173,175,185,190,199,202],[92,154,162,166,168,169,170,171,172,173,185,190,199,202],[90,91,92,93,94,95,96,97,98,99,100,142,143,144,145,146,147,148,149,150,151,152,153,154,155,156,157,158,159,160,161,162,163,164,165,166,167,168,169,170,171,172,173,174,175,176,177,178,179,180,181,182,183,184,185,186,187,188,189,190,191,192,193,194,195,196,197,198,199,200,201,202,203,204,205,206,207,208,209],[92,154,162,165,166,169,171,172,173,185],[92,154,162,166,169,171,173,185],[92,154,162,166,169,171,172,173,174,185,202],[92,154,162,165,166,169,171,172,173,175,185,190],[92,154,162,166,169,171,172,173,176,185],[92,154,162,166,169,171,172,173,177,185],[92,154,162,165,166,169,171,172,173,180,185],[92,151,152,153,154,155,156,157,158,159,160,161,162,163,164,165,166,167,168,169,170,171,172,173,174,175,176,177,178,179,180,181,182,183,184,185,186,187,188,189,190,191,192,193,194,195,196,197,198,199,200,201,202,203,204,205,206,207,208,209],[92,154,162,166,169,171,172,173,182,185],[92,154,162,166,169,171,172,173,183,185],[92,154,159,162,166,169,171,172,173,175,185,193],[92,154,162,165,166,169,171,172,173,185,186],[92,154,162,166,169,171,172,173,185,187,203,206],[92,154,162,165,166,169,171,172,173,185,190,192,193],[92,154,162,166,169,171,172,173,185,191,193],[92,154,162,166,169,171,172,173,185,193,203],[92,154,162,166,169,171,172,173,185,194],[92,151,154,162,166,169,171,172,173,185,190,196],[92,154,162,166,169,171,172,173,185,190,195],[92,154,162,165,166,169,171,172,173,185,197,198],[92,154,162,166,169,171,172,173,185,197,198],[92,154,159,162,166,169,171,172,173,175,185,190,199],[92,154,162,166,169,171,172,173,185,200],[92,154,162,166,169,171,172,173,175,185,201],[92,154,162,166,168,169,171,172,173,183,185,202],[92,154,162,166,169,171,172,173,185,203,204],[92,154,159,162,166,169,171,172,173,185,204],[92,154,162,166,169,171,172,173,185,190,205],[92,154,162,166,169,171,172,173,174,185,206],[92,154,162,166,169,171,172,173,185,207],[92,154,157,162,166,169,171,172,173,185],[92,154,159,162,166,169,171,172,173,185],[92,154,162,166,169,171,172,173,185,203],[92,141,154,162,166,169,171,172,173,185],[92,154,162,166,169,171,172,173,185,202],[92,154,162,166,169,171,172,173,185,208],[92,154,162,166,169,171,172,173,180,185],[92,154,162,166,169,171,172,173,185,198],[92,141,154,162,165,166,167,169,171,172,173,180,185,190,193,202,205,206,208],[92,154,162,166,169,171,172,173,185,190,209],[66,67,68,69,92,154,162,166,169,171,172,173,185],[66,67,68,92,154,162,166,169,171,172,173,185],[66,92,154,162,166,169,171,172,173,185],[66,67,92,154,162,166,169,171,172,173,185],[63,92,154,162,166,169,171,172,173,185],[63,64,92,154,162,166,169,171,172,173,185],[62,92,154,162,166,169,171,172,173,185],[92,107,110,113,114,154,162,166,169,171,172,173,185,202],[92,110,154,162,166,169,171,172,173,185,190,202],[92,110,114,154,162,166,169,171,172,173,185,202],[92,154,162,166,169,171,172,173,185,190],[92,104,154,162,166,169,171,172,173,185],[92,108,154,162,166,169,171,172,173,185],[92,106,107,110,154,162,166,169,171,172,173,185,202],[92,154,162,166,169,171,172,173,175,185,199],[92,154,162,166,169,171,172,173,185,210],[92,104,154,162,166,169,171,172,173,185,210],[92,106,110,154,162,166,169,171,172,173,175,185,202],[92,101,102,103,105,109,154,162,165,166,169,171,172,173,185,190,202],[92,110,118,126,154,162,166,169,171,172,173,185],[92,102,108,154,162,166,169,171,172,173,185],[92,110,135,136,154,162,166,169,171,172,173,185],[92,102,105,110,154,162,166,169,171,172,173,185,193,202,210],[92,110,154,162,166,169,171,172,173,185],[92,106,110,154,162,166,169,171,172,173,185,202],[92,101,154,162,166,169,171,172,173,185],[92,104,105,106,108,109,110,111,112,114,115,116,117,118,119,120,121,122,123,124,125,126,127,128,129,130,131,132,133,134,136,137,138,139,140,154,162,166,169,171,172,173,185],[92,110,128,131,154,162,166,169,171,172,173,185],[92,110,118,119,120,154,162,166,169,171,172,173,185],[92,108,110,119,121,154,162,166,169,171,172,173,185],[92,109,154,162,166,169,171,172,173,185],[92,102,104,110,154,162,166,169,171,172,173,185],[92,110,114,119,121,154,162,166,169,171,172,173,185],[92,114,154,162,166,169,171,172,173,185],[92,108,110,113,154,162,166,169,171,172,173,185,202],[92,102,106,110,118,154,162,166,169,171,172,173,185],[92,110,128,154,162,166,169,171,172,173,185],[92,121,154,162,166,169,171,172,173,185],[92,104,110,135,154,162,166,169,171,172,173,185,193,208,210],[60,61,74,75,76,78,92,154,162,166,169,171,172,173,185],[60,61,74,75,76,77,78,79,80,92,154,162,166,169,171,172,173,185],[70,71,72,73,83,92,154,162,166,169,171,172,173,185],[70,71,74,92,154,162,166,169,171,172,173,185],[74,75,92,154,162,166,169,171,172,173,185],[61,74,77,92,154,162,166,169,171,172,173,185]],"fileInfos":[{"version":"c430d44666289dae81f30fa7b2edebf186ecc91a2d4c71266ea6ae76388792e1","affectsGlobalScope":true,"impliedFormat":1},{"version":"45b7ab580deca34ae9729e97c13cfd999df04416a79116c3bfb483804f85ded4","impliedFormat":1},{"version":"3facaf05f0c5fc569c5649dd359892c98a85557e3e0c847964caeb67076f4d75","impliedFormat":1},{"version":"e44bb8bbac7f10ecc786703fe0a6a4b952189f908707980ba8f3c8975a760962","impliedFormat":1},{"version":"5e1c4c362065a6b95ff952c0eab010f04dcd2c3494e813b493ecfd4fcb9fc0d8","impliedFormat":1},{"version":"68d73b4a11549f9c0b7d352d10e91e5dca8faa3322bfb77b661839c42b1ddec7","impliedFormat":1},{"version":"5efce4fc3c29ea84e8928f97adec086e3dc876365e0982cc8479a07954a3efd4","impliedFormat":1},{"version":"feecb1be483ed332fad555aff858affd90a48ab19ba7272ee084704eb7167569","impliedFormat":1},{"version":"ee7bad0c15b58988daa84371e0b89d313b762ab83cb5b31b8a2d1162e8eb41c2","impliedFormat":1},{"version":"c57796738e7f83dbc4b8e65132f11a377649c00dd3eee333f672b8f0a6bea671","affectsGlobalScope":true,"impliedFormat":1},{"version":"dc2df20b1bcdc8c2d34af4926e2c3ab15ffe1160a63e58b7e09833f616efff44","affectsGlobalScope":true,"impliedFormat":1},{"version":"515d0b7b9bea2e31ea4ec968e9edd2c39d3eebf4a2d5cbd04e88639819ae3b71","affectsGlobalScope":true,"impliedFormat":1},{"version":"0559b1f683ac7505ae451f9a96ce4c3c92bdc71411651ca6ddb0e88baaaad6a3","affectsGlobalScope":true,"impliedFormat":1},{"version":"0dc1e7ceda9b8b9b455c3a2d67b0412feab00bd2f66656cd8850e8831b08b537","affectsGlobalScope":true,"impliedFormat":1},{"version":"ce691fb9e5c64efb9547083e4a34091bcbe5bdb41027e310ebba8f7d96a98671","affectsGlobalScope":true,"impliedFormat":1},{"version":"8d697a2a929a5fcb38b7a65594020fcef05ec1630804a33748829c5ff53640d0","affectsGlobalScope":true,"impliedFormat":1},{"version":"4ff2a353abf8a80ee399af572debb8faab2d33ad38c4b4474cff7f26e7653b8d","affectsGlobalScope":true,"impliedFormat":1},{"version":"fb0f136d372979348d59b3f5020b4cdb81b5504192b1cacff5d1fbba29378aa1","affectsGlobalScope":true,"impliedFormat":1},{"version":"d15bea3d62cbbdb9797079416b8ac375ae99162a7fba5de2c6c505446486ac0a","affectsGlobalScope":true,"impliedFormat":1},{"version":"68d18b664c9d32a7336a70235958b8997ebc1c3b8505f4f1ae2b7e7753b87618","affectsGlobalScope":true,"impliedFormat":1},{"version":"eb3d66c8327153d8fa7dd03f9c58d351107fe824c79e9b56b462935176cdf12a","affectsGlobalScope":true,"impliedFormat":1},{"version":"38f0219c9e23c915ef9790ab1d680440d95419ad264816fa15009a8851e79119","affectsGlobalScope":true,"impliedFormat":1},{"version":"69ab18c3b76cd9b1be3d188eaf8bba06112ebbe2f47f6c322b5105a6fbc45a2e","affectsGlobalScope":true,"impliedFormat":1},{"version":"a680117f487a4d2f30ea46f1b4b7f58bef1480456e18ba53ee85c2746eeca012","affectsGlobalScope":true,"impliedFormat":1},{"version":"2f11ff796926e0832f9ae148008138ad583bd181899ab7dd768a2666700b1893","affectsGlobalScope":true,"impliedFormat":1},{"version":"4de680d5bb41c17f7f68e0419412ca23c98d5749dcaaea1896172f06435891fc","affectsGlobalScope":true,"impliedFormat":1},{"version":"954296b30da6d508a104a3a0b5d96b76495c709785c1d11610908e63481ee667","affectsGlobalScope":true,"impliedFormat":1},{"version":"ac9538681b19688c8eae65811b329d3744af679e0bdfa5d842d0e32524c73e1c","affectsGlobalScope":true,"impliedFormat":1},{"version":"0a969edff4bd52585473d24995c5ef223f6652d6ef46193309b3921d65dd4376","affectsGlobalScope":true,"impliedFormat":1},{"version":"9e9fbd7030c440b33d021da145d3232984c8bb7916f277e8ffd3dc2e3eae2bdb","affectsGlobalScope":true,"impliedFormat":1},{"version":"811ec78f7fefcabbda4bfa93b3eb67d9ae166ef95f9bff989d964061cbf81a0c","affectsGlobalScope":true,"impliedFormat":1},{"version":"717937616a17072082152a2ef351cb51f98802fb4b2fdabd32399843875974ca","affectsGlobalScope":true,"impliedFormat":1},{"version":"d7e7d9b7b50e5f22c915b525acc5a49a7a6584cf8f62d0569e557c5cfc4b2ac2","affectsGlobalScope":true,"impliedFormat":1},{"version":"71c37f4c9543f31dfced6c7840e068c5a5aacb7b89111a4364b1d5276b852557","affectsGlobalScope":true,"impliedFormat":1},{"version":"576711e016cf4f1804676043e6a0a5414252560eb57de9faceee34d79798c850","affectsGlobalScope":true,"impliedFormat":1},{"version":"89c1b1281ba7b8a96efc676b11b264de7a8374c5ea1e6617f11880a13fc56dc6","affectsGlobalScope":true,"impliedFormat":1},{"version":"74f7fa2d027d5b33eb0471c8e82a6c87216223181ec31247c357a3e8e2fddc5b","affectsGlobalScope":true,"impliedFormat":1},{"version":"d6d7ae4d1f1f3772e2a3cde568ed08991a8ae34a080ff1151af28b7f798e22ca","affectsGlobalScope":true,"impliedFormat":1},{"version":"063600664504610fe3e99b717a1223f8b1900087fab0b4cad1496a114744f8df","affectsGlobalScope":true,"impliedFormat":1},{"version":"934019d7e3c81950f9a8426d093458b65d5aff2c7c1511233c0fd5b941e608ab","affectsGlobalScope":true,"impliedFormat":1},{"version":"52ada8e0b6e0482b728070b7639ee42e83a9b1c22d205992756fe020fd9f4a47","affectsGlobalScope":true,"impliedFormat":1},{"version":"3bdefe1bfd4d6dee0e26f928f93ccc128f1b64d5d501ff4a8cf3c6371200e5e6","affectsGlobalScope":true,"impliedFormat":1},{"version":"59fb2c069260b4ba00b5643b907ef5d5341b167e7d1dbf58dfd895658bda2867","affectsGlobalScope":true,"impliedFormat":1},{"version":"639e512c0dfc3fad96a84caad71b8834d66329a1f28dc95e3946c9b58176c73a","affectsGlobalScope":true,"impliedFormat":1},{"version":"368af93f74c9c932edd84c58883e736c9e3d53cec1fe24c0b0ff451f529ceab1","affectsGlobalScope":true,"impliedFormat":1},{"version":"af3dd424cf267428f30ccfc376f47a2c0114546b55c44d8c0f1d57d841e28d74","affectsGlobalScope":true,"impliedFormat":1},{"version":"995c005ab91a498455ea8dfb63aa9f83fa2ea793c3d8aa344be4a1678d06d399","affectsGlobalScope":true,"impliedFormat":1},{"version":"959d36cddf5e7d572a65045b876f2956c973a586da58e5d26cde519184fd9b8a","affectsGlobalScope":true,"impliedFormat":1},{"version":"965f36eae237dd74e6cca203a43e9ca801ce38824ead814728a2807b1910117d","affectsGlobalScope":true,"impliedFormat":1},{"version":"3925a6c820dcb1a06506c90b1577db1fdbf7705d65b62b99dce4be75c637e26b","affectsGlobalScope":true,"impliedFormat":1},{"version":"0a3d63ef2b853447ec4f749d3f368ce642264246e02911fcb1590d8c161b8005","affectsGlobalScope":true,"impliedFormat":1},{"version":"8cdf8847677ac7d20486e54dd3fcf09eda95812ac8ace44b4418da1bbbab6eb8","affectsGlobalScope":true,"impliedFormat":1},{"version":"8444af78980e3b20b49324f4a16ba35024fef3ee069a0eb67616ea6ca821c47a","affectsGlobalScope":true,"impliedFormat":1},{"version":"3287d9d085fbd618c3971944b65b4be57859f5415f495b33a6adc994edd2f004","affectsGlobalScope":true,"impliedFormat":1},{"version":"b4b67b1a91182421f5df999988c690f14d813b9850b40acd06ed44691f6727ad","affectsGlobalScope":true,"impliedFormat":1},{"version":"51ad4c928303041605b4d7ae32e0c1ee387d43a24cd6f1ebf4a2699e1076d4fa","affectsGlobalScope":true,"impliedFormat":1},{"version":"196cb558a13d4533a5163286f30b0509ce0210e4b316c56c38d4c0fd2fb38405","affectsGlobalScope":true,"impliedFormat":1},{"version":"8e7f8264d0fb4c5339605a15daadb037bf238c10b654bb3eee14208f860a32ea","affectsGlobalScope":true,"impliedFormat":1},{"version":"782dec38049b92d4e85c1585fbea5474a219c6984a35b004963b00beb1aab538","affectsGlobalScope":true,"impliedFormat":1},{"version":"b3311a61c6aef9a62cbef5e7a56e1df939af03f6a843f9af56849a0d2712fc34","impliedFormat":99},{"version":"1f2fa635af19f63232151db9a4fa20d2e367ce79b8fa5ee405eabd9886fd2066","impliedFormat":99},{"version":"a0ea0ebb80cc84ee69c710fb2facb1aaa928bbba76e4cf2d6986d227e201d8da","impliedFormat":99},{"version":"cbd1648336bab35437b9e62253aeb73d651485818fc42235ebe38bd4e2a54e93","impliedFormat":99},{"version":"39bfe11e90de3ae44067734a74de05ca478d9c8aaaf5b035ae3b07f12c15ba66","impliedFormat":99},{"version":"91da497254ee49742e2c2610ba6718b98118652a1c04da086bfd2d0894ea3dff","affectsGlobalScope":true,"impliedFormat":99},{"version":"ebf3f14a8159ec5aa2fbf567e6070c248e86a46d69d9967bda179190094dbd4f","impliedFormat":1},{"version":"3ba786dbd4178362cd356c0a264b4b39f063fa0803629831496614ca12e33096","impliedFormat":1},{"version":"831fb5a2565891f5a8fcedd6f6890997d39d26a89fe294cfb9a1eb5c75ec21bb","impliedFormat":1},{"version":"bd0e108ac399335fec82e83d91401152cc8e19e54d80af0caec98caf10fced77","impliedFormat":1},{"version":"ecd27f83f4995039b05510a3c51566e88fe7fb1a67057bf02b21b152d8237fb6","impliedFormat":99},{"version":"5c49353b1cd376735f29fb3ef4aa91f2d1ef80888a8b12411e8b30ddc86bd787","impliedFormat":99},{"version":"93ff6833e6cee5dab8843d646f0040136eb312a543712f69977301f93914ba03","impliedFormat":99},{"version":"102fbdd29a2b7a6a5bb3b081fd1acc484c011722d7c460c3ba56fd39de69ecbb","impliedFormat":99},{"version":"ac8986806ca37cff93a4731b4fe75475d62b8f48011635897c7751a3011380d8","impliedFormat":99},{"version":"84860bec3d12996232b1fc8430a887cce26006363db104f331cd4099ca20f6c0","impliedFormat":99},{"version":"0ea0c7b119925b2ea220bd6b60ed548245f55e50109b9ed805eb22c7c9a0ae99","impliedFormat":99},{"version":"bed211ed139ec7f06475552a4c47d01cd255f136a2216330dbc5414cc17c33ca","impliedFormat":99},{"version":"cd029f14a6fecfc149c0c843456a2547404054e7b9752f9f0c43e2831eefa84b","impliedFormat":99},{"version":"22810f393ec59d0735439e2b2eebdaf5c7c937ede754ca3525c77fd704d02ab7","impliedFormat":99},{"version":"f986949a5f9fd95e2a66ea94cfe0a3d9ae92d699fb303669485a830052d81f7e","impliedFormat":99},{"version":"71dc32a134f3f6b177e6269dc7cd187e80e25798088297d597d8105fb68c3198","impliedFormat":99},{"version":"576a7beb111f386c64600db7438766d2d9a6c13f2db93f3018d3d30491704b7d","impliedFormat":99},{"version":"c8d9d74dab491281c1ffe2080f546ea6896efeb539bcd5a66596a13d07e62713","impliedFormat":99},{"version":"427fe2004642504828c1476d0af4270e6ad4db6de78c0b5da3e4c5ca95052a99","impliedFormat":1},{"version":"2eeffcee5c1661ddca53353929558037b8cf305ffb86a803512982f99bcab50d","impliedFormat":99},{"version":"9afb4cb864d297e4092a79ee2871b5d3143ea14153f62ef0bb04ede25f432030","affectsGlobalScope":true,"impliedFormat":99},{"version":"151ff381ef9ff8da2da9b9663ebf657eac35c4c9a19183420c05728f31a6761d","impliedFormat":1},{"version":"f3d8c757e148ad968f0d98697987db363070abada5f503da3c06aefd9d4248c1","impliedFormat":1},{"version":"96d14f21b7652903852eef49379d04dbda28c16ed36468f8c9fa08f7c14c9538","impliedFormat":1},{"version":"d153a11543fd884b596587ccd97aebbeed950b26933ee000f94009f1ab142848","affectsGlobalScope":true,"impliedFormat":1},{"version":"0ccdaa19852d25ecd84eec365c3bfa16e7859cadecf6e9ca6d0dbbbee439743f","affectsGlobalScope":true,"impliedFormat":1},{"version":"438b41419b1df9f1fbe33b5e1b18f5853432be205991d1b19f5b7f351675541e","affectsGlobalScope":true,"impliedFormat":1},{"version":"096116f8fedc1765d5bd6ef360c257b4a9048e5415054b3bf3c41b07f8951b0b","affectsGlobalScope":true,"impliedFormat":1},{"version":"e5e01375c9e124a83b52ee4b3244ed1a4d214a6cfb54ac73e164a823a4a7860a","affectsGlobalScope":true,"impliedFormat":1},{"version":"f90ae2bbce1505e67f2f6502392e318f5714bae82d2d969185c4a6cecc8af2fc","affectsGlobalScope":true,"impliedFormat":1},{"version":"4b58e207b93a8f1c88bbf2a95ddc686ac83962b13830fe8ad3f404ffc7051fb4","affectsGlobalScope":true,"impliedFormat":1},{"version":"1fefabcb2b06736a66d2904074d56268753654805e829989a46a0161cd8412c5","affectsGlobalScope":true,"impliedFormat":1},{"version":"9798340ffb0d067d69b1ae5b32faa17ab31b82466a3fc00d8f2f2df0c8554aaa","affectsGlobalScope":true,"impliedFormat":1},{"version":"c18a99f01eb788d849ad032b31cafd49de0b19e083fe775370834c5675d7df8e","affectsGlobalScope":true,"impliedFormat":1},{"version":"5247874c2a23b9a62d178ae84f2db6a1d54e6c9a2e7e057e178cc5eea13757fc","affectsGlobalScope":true,"impliedFormat":1},{"version":"cdcf9ea426ad970f96ac930cd176d5c69c6c24eebd9fc580e1572d6c6a88f62c","impliedFormat":1},{"version":"23cd712e2ce083d68afe69224587438e5914b457b8acf87073c22494d706a3d0","impliedFormat":1},{"version":"487b694c3de27ddf4ad107d4007ad304d29effccf9800c8ae23c2093638d906a","impliedFormat":1},{"version":"3a80bc85f38526ca3b08007ee80712e7bb0601df178b23fbf0bf87036fce40ce","impliedFormat":1},{"version":"ccf4552357ce3c159ef75f0f0114e80401702228f1898bdc9402214c9499e8c0","impliedFormat":1},{"version":"c6fd2c5a395f2432786c9cb8deb870b9b0e8ff7e22c029954fabdd692bff6195","impliedFormat":1},{"version":"68834d631c8838c715f225509cfc3927913b9cc7a4870460b5b60c8dbdb99baf","impliedFormat":1},{"version":"2931540c47ee0ff8a62860e61782eb17b155615db61e36986e54645ec67f67c2","impliedFormat":1},{"version":"ccab02f3920fc75c01174c47fcf67882a11daf16baf9e81701d0a94636e94556","impliedFormat":1},{"version":"f6faf5f74e4c4cc309a6c6a6c4da02dbb840be5d3e92905a23dcd7b2b0bd1986","impliedFormat":1},{"version":"ea6bc8de8b59f90a7a3960005fd01988f98fd0784e14bc6922dde2e93305ec7d","impliedFormat":1},{"version":"36107995674b29284a115e21a0618c4c2751b32a8766dd4cb3ba740308b16d59","impliedFormat":1},{"version":"914a0ae30d96d71915fc519ccb4efbf2b62c0ddfb3a3fc6129151076bc01dc60","impliedFormat":1},{"version":"33e981bf6376e939f99bd7f89abec757c64897d33c005036b9a10d9587d80187","impliedFormat":1},{"version":"7fd1b31fd35876b0aa650811c25ec2c97a3c6387e5473eb18004bed86cdd76b6","impliedFormat":1},{"version":"b41767d372275c154c7ea6c9d5449d9a741b8ce080f640155cc88ba1763e35b3","impliedFormat":1},{"version":"3bacf516d686d08682751a3bd2519ea3b8041a164bfb4f1d35728993e70a2426","impliedFormat":1},{"version":"7fb266686238369442bd1719bc0d7edd0199da4fb8540354e1ff7f16669b4323","impliedFormat":1},{"version":"0a60a292b89ca7218b8616f78e5bbd1c96b87e048849469cccb4355e98af959a","impliedFormat":1},{"version":"0b6e25234b4eec6ed96ab138d96eb70b135690d7dd01f3dd8a8ab291c35a683a","impliedFormat":1},{"version":"9666f2f84b985b62400d2e5ab0adae9ff44de9b2a34803c2c5bd3c8325b17dc0","impliedFormat":1},{"version":"40cd35c95e9cf22cfa5bd84e96408b6fcbca55295f4ff822390abb11afbc3dca","impliedFormat":1},{"version":"b1616b8959bf557feb16369c6124a97a0e74ed6f49d1df73bb4b9ddf68acf3f3","impliedFormat":1},{"version":"5b03a034c72146b61573aab280f295b015b9168470f2df05f6080a2122f9b4df","impliedFormat":1},{"version":"40b463c6766ca1b689bfcc46d26b5e295954f32ad43e37ee6953c0a677e4ae2b","impliedFormat":1},{"version":"249b9cab7f5d628b71308c7d9bb0a808b50b091e640ba3ed6e2d0516f4a8d91d","impliedFormat":1},{"version":"80aae6afc67faa5ac0b32b5b8bc8cc9f7fa299cff15cf09cc2e11fd28c6ae29e","impliedFormat":1},{"version":"f473cd2288991ff3221165dcf73cd5d24da30391f87e85b3dd4d0450c787a391","impliedFormat":1},{"version":"499e5b055a5aba1e1998f7311a6c441a369831c70905cc565ceac93c28083d53","impliedFormat":1},{"version":"54c3e2371e3d016469ad959697fd257e5621e16296fa67082c2575d0bf8eced0","impliedFormat":1},{"version":"beb8233b2c220cfa0feea31fbe9218d89fa02faa81ef744be8dce5acb89bb1fd","impliedFormat":1},{"version":"c183b931b68ad184bc8e8372bf663f3d33304772fb482f29fb91b3c391031f3e","impliedFormat":1},{"version":"5d0375ca7310efb77e3ef18d068d53784faf62705e0ad04569597ae0e755c401","impliedFormat":1},{"version":"59af37caec41ecf7b2e76059c9672a49e682c1a2aa6f9d7dc78878f53aa284d6","impliedFormat":1},{"version":"addf417b9eb3f938fddf8d81e96393a165e4be0d4a8b6402292f9c634b1cb00d","impliedFormat":1},{"version":"48cc3ec153b50985fb95153258a710782b25975b10dd4ac8a4f3920632d10790","impliedFormat":1},{"version":"adf27937dba6af9f08a68c5b1d3fce0ca7d4b960c57e6d6c844e7d1a8e53adae","impliedFormat":1},{"version":"e1528ca65ac90f6fa0e4a247eb656b4263c470bb22d9033e466463e13395e599","impliedFormat":1},{"version":"2e85db9e6fd73cfa3d7f28e0ab6b55417ea18931423bd47b409a96e4a169e8e6","impliedFormat":1},{"version":"c46e079fe54c76f95c67fb89081b3e399da2c7d109e7dca8e4b58d83e332e605","impliedFormat":1},{"version":"866078923a56d026e39243b4392e282c1c63159723996fa89243140e1388a98d","impliedFormat":1},{"version":"dd0109710de4cd93e245121ab86d8c66d20f3ead80074b68e9c3e349c4f53342","affectsGlobalScope":true,"impliedFormat":1},{"version":"b3275d55fac10b799c9546804126239baf020d220136163f763b55a74e50e750","affectsGlobalScope":true,"impliedFormat":1},{"version":"fa68a0a3b7cb32c00e39ee3cd31f8f15b80cac97dce51b6ee7fc14a1e8deb30b","affectsGlobalScope":true,"impliedFormat":1},{"version":"1cf059eaf468efcc649f8cf6075d3cb98e9a35a0fe9c44419ec3d2f5428d7123","affectsGlobalScope":true,"impliedFormat":1},{"version":"6c36e755bced82df7fb6ce8169265d0a7bb046ab4e2cb6d0da0cb72b22033e89","affectsGlobalScope":true,"impliedFormat":1},{"version":"e7721c4f69f93c91360c26a0a84ee885997d748237ef78ef665b153e622b36c1","affectsGlobalScope":true,"impliedFormat":1},{"version":"7a93de4ff8a63bafe62ba86b89af1df0ccb5e40bb85b0c67d6bbcfdcf96bf3d4","affectsGlobalScope":true,"impliedFormat":1},{"version":"90e85f9bc549dfe2b5749b45fe734144e96cd5d04b38eae244028794e142a77e","affectsGlobalScope":true,"impliedFormat":1},{"version":"e0a5deeb610b2a50a6350bd23df6490036a1773a8a71d70f2f9549ab009e67ee","affectsGlobalScope":true,"impliedFormat":1},{"version":"435b3711465425770ed2ee2f1cf00ce071835265e0851a7dc4600ab4b007550e","impliedFormat":1},{"version":"7e49f52a159435fc8df4de9dc377ef5860732ca2dc9efec1640531d3cf5da7a3","impliedFormat":1},{"version":"dd4bde4bdc2e5394aed6855e98cf135dfdf5dd6468cad842e03116d31bbcc9bc","impliedFormat":1},{"version":"4d4e879009a84a47c05350b8dca823036ba3a29a3038efed1be76c9f81e45edf","affectsGlobalScope":true,"impliedFormat":1},{"version":"237ba5ac2a95702a114a309e39c53a5bddff5f6333b325db9764df9b34f3502b","impliedFormat":1},{"version":"9ba13b47cb450a438e3076c4a3f6afb9dc85e17eae50f26d4b2d72c0688c9251","impliedFormat":1},{"version":"b64cd4401633ea4ecadfd700ddc8323a13b63b106ac7127c1d2726f32424622c","impliedFormat":1},{"version":"37c6e5fe5715814412b43cc9b50b24c67a63c4e04e753e0d1305970d65417a60","impliedFormat":1},{"version":"1d024184fb57c58c5c91823f9d10b4915a4867b7934e89115fd0d861a9df27c8","impliedFormat":1},{"version":"ee0e4946247f842c6dd483cbb60a5e6b484fee07996e3a7bc7343dfb68a04c5d","impliedFormat":1},{"version":"ef051f42b7e0ef5ca04552f54c4552eac84099d64b6c5ad0ef4033574b6035b8","impliedFormat":1},{"version":"853a43154f1d01b0173d9cbd74063507ece57170bad7a3b68f3fa1229ad0a92f","impliedFormat":1},{"version":"56231e3c39a031bfb0afb797690b20ed4537670c93c0318b72d5180833d98b72","impliedFormat":1},{"version":"5cc7c39031bfd8b00ad58f32143d59eb6ffc24f5d41a20931269011dccd36c5e","impliedFormat":1},{"version":"b0b69c61b0f0ec8ca15db4c8c41f6e77f4cacb784d42bca948f42dea33e8757e","affectsGlobalScope":true,"impliedFormat":1},{"version":"f96a48183254c00d24575401f1a761b4ce4927d927407e7862a83e06ce5d6964","impliedFormat":1},{"version":"cc25940cfb27aa538e60d465f98bb5068d4d7d33131861ace43f04fe6947d68f","impliedFormat":1},{"version":"9dec1d75d47c23b595402f265babeac9c0f645427df7e937d69ddfa05cdddc1f","impliedFormat":1},{"version":"01ff95aa1443e3f7248974e5a771f513cb2ac158c8898f470a1792f817bee497","impliedFormat":1},{"version":"757227c8b345c57d76f7f0e3bbad7a91ffca23f1b2547cbed9e10025816c9cb7","impliedFormat":1},{"version":"42a05d8f239f74587d4926aba8cc54792eed8e8a442c7adc9b38b516642aadfe","impliedFormat":1},{"version":"5d21b58d60383cc6ab9ad3d3e265d7d25af24a2c9b506247e0e50b0a884920be","impliedFormat":1},{"version":"101f482fd48cb4c7c0468dcc6d62c843d842977aea6235644b1edd05e81fbf22","impliedFormat":1},{"version":"ae6757460f37078884b1571a3de3ebaf724d827d7e1d53626c02b3c2a408ac63","affectsGlobalScope":true,"impliedFormat":1},{"version":"9451a46a89ed209e2e08329e6cac59f89356eae79a7230f916d8cc38725407c7","impliedFormat":1},{"version":"3ef397f12387eff17f550bc484ea7c27d21d43816bbe609d495107f44b97e933","impliedFormat":1},{"version":"1023282e2ba810bc07905d3668349fbd37a26411f0c8f94a70ef3c05fe523fcf","impliedFormat":1},{"version":"b214ebcf76c51b115453f69729ee8aa7b7f8eccdae2a922b568a45c2d7ff52f7","impliedFormat":1},{"version":"429c9cdfa7d126255779efd7e6d9057ced2d69c81859bbab32073bad52e9ba76","impliedFormat":1},{"version":"e236b5eba291f51bdf32c231673e6cab81b5410850e61f51a7a524dddadc0f95","impliedFormat":1},{"version":"f7ba0e839daa0702e3ff1a1a871c0d8ea2d586ce684dd8a72c786c36a680b1d9","affectsGlobalScope":true,"impliedFormat":1},{"version":"7f2c62938251b45715fd2a9887060ec4fbc8724727029d1cbce373747252bdd7","impliedFormat":1},{"version":"e3ace08b6bbd84655d41e244677b474fd995923ffef7149ddb68af8848b60b05","impliedFormat":1},{"version":"132580b0e86c48fab152bab850fc57a4b74fe915c8958d2ccb052b809a44b61c","impliedFormat":1},{"version":"af4ab0aa8908fc9a655bb833d3bc28e117c4f0e1038c5a891546158beb25accb","impliedFormat":1},{"version":"69c9a5a9392e8564bd81116e1ed93b13205201fb44cb35a7fde8c9f9e21c4b23","impliedFormat":1},{"version":"5f8fc37f8434691ffac1bfd8fc2634647da2c0e84253ab5d2dd19a7718915b35","impliedFormat":1},{"version":"5981c2340fd8b076cae8efbae818d42c11ffc615994cb060b1cd390795f1be2b","impliedFormat":1},{"version":"f64deb26664af64dc274637343bde8d82f930c77af05a412c7d310b77207a448","impliedFormat":1},{"version":"ed4f674fc8c0c993cc7e145069ac44129e03519b910c62be206a0cc777bdc60b","affectsGlobalScope":true,"impliedFormat":1},{"version":"0250da3eb85c99624f974e77ef355cdf86f43980251bc371475c2b397ba55bcd","impliedFormat":1},{"version":"f1c93e046fb3d9b7f8249629f4b63dc068dd839b824dd0aa39a5e68476dc9420","impliedFormat":1},{"version":"3d3a5f27ffbc06c885dd4d5f9ee20de61faf877fe2c3a7051c4825903d9a7fdc","impliedFormat":1},{"version":"12806f9f085598ef930edaf2467a5fa1789a878fba077cd27e85dc5851e11834","impliedFormat":1},{"version":"17d06eb5709839c7ce719f0c38ada6f308fb433f2cd6d8c87b35856e07400950","impliedFormat":1},{"version":"a43fe41c33d0a192a0ecaf9b92e87bef3709c9972e6d53c42c49251ccb962d69","impliedFormat":1},{"version":"a177959203c017fad3ecc4f3d96c8757a840957a4959a3ae00dab9d35961ca6c","affectsGlobalScope":true,"impliedFormat":1},{"version":"6fc727ccf9b36e257ff982ea0badeffbfc2c151802f741bddff00c6af3b784cf","impliedFormat":1},{"version":"2a00d005e3af99cd1cfa75220e60c61b04bfb6be7ca7453bfe2ef6cca37cc03c","impliedFormat":1},{"version":"4844a4c9b4b1e812b257676ed8a80b3f3be0e29bf05e742cc2ea9c3c6865e6c6","impliedFormat":1},{"version":"064878a60367e0407c42fb7ba02a2ea4d83257357dc20088e549bd4d89433e9c","impliedFormat":1},{"version":"14d4bd22d1b05824971b98f7e91b2484c90f1a684805c330476641417c3d9735","impliedFormat":1},{"version":"c3877fef8a43cd434f9728f25a97575b0eb73d92f38b5c87c840daccc3e21d97","impliedFormat":1},{"version":"b484ec11ba00e3a2235562a41898d55372ccabe607986c6fa4f4aba72093749f","impliedFormat":1},{"version":"1dbd83860e7634f9c236647f45dbc5d3c4f9eba8827d87209d6e9826fdf4dbd5","impliedFormat":1},{"version":"41ef7992c555671a8fe54db302788adefa191ded810a50329b79d20a6772d14c","impliedFormat":1},{"version":"041a7781b9127ab568d2cdcce62c58fdea7c7407f40b8c50045d7866a2727130","impliedFormat":1},{"version":"b37f83e7deea729aa9ce5593f78905afb45b7532fdff63041d374f60059e7852","impliedFormat":1},{"version":"e1cb68f3ef3a8dd7b2a9dfb3de482ed6c0f1586ba0db4e7d73c1d2147b6ffc51","impliedFormat":1},{"version":"55cdbeebe76a1fa18bbd7e7bf73350a2173926bd3085bb050cf5a5397025ee4e","impliedFormat":1}],"root":[60,61,[72,83]],"options":{"composite":true,"declaration":true,"erasableSyntaxOnly":true,"esModuleInterop":true,"exactOptionalPropertyTypes":true,"module":199,"noFallthroughCasesInSwitch":true,"noImplicitOverride":true,"noPropertyAccessFromIndexSignature":true,"noUncheckedSideEffectImports":true,"outDir":"./dist","rootDir":"./src","skipLibCheck":true,"strict":true,"target":9},"referencedMap":[[71,1],[86,2],[84,3],[87,3],[88,3],[89,3],[151,4],[152,4],[153,5],[92,6],[154,7],[155,8],[156,9],[90,3],[157,10],[158,11],[159,12],[160,13],[161,14],[162,15],[163,15],[164,16],[165,17],[166,18],[167,19],[93,3],[91,3],[168,20],[169,21],[170,22],[210,23],[171,24],[172,25],[173,24],[174,26],[175,27],[176,28],[177,29],[178,29],[179,29],[180,30],[181,31],[182,32],[183,33],[184,34],[185,35],[186,35],[187,36],[188,3],[189,3],[190,37],[191,38],[192,37],[193,39],[194,40],[195,41],[196,42],[197,43],[198,44],[199,45],[200,46],[201,47],[202,48],[203,49],[204,50],[205,51],[206,52],[207,53],[94,24],[95,3],[96,54],[97,55],[98,3],[99,56],[100,3],[142,57],[143,58],[144,59],[145,59],[146,60],[147,3],[148,7],[149,61],[150,58],[208,62],[209,63],[85,3],[70,64],[69,65],[66,3],[67,66],[68,67],[64,68],[65,69],[63,70],[62,3],[58,3],[59,3],[11,3],[10,3],[2,3],[12,3],[13,3],[14,3],[15,3],[16,3],[17,3],[18,3],[19,3],[3,3],[20,3],[21,3],[4,3],[22,3],[26,3],[23,3],[24,3],[25,3],[27,3],[28,3],[29,3],[5,3],[30,3],[31,3],[32,3],[33,3],[6,3],[37,3],[34,3],[35,3],[36,3],[38,3],[7,3],[39,3],[44,3],[45,3],[40,3],[41,3],[42,3],[43,3],[8,3],[49,3],[46,3],[47,3],[48,3],[50,3],[9,3],[51,3],[52,3],[53,3],[55,3],[54,3],[1,3],[56,3],[57,3],[118,71],[130,72],[116,73],[131,74],[140,75],[107,76],[108,77],[106,78],[139,79],[134,80],[138,81],[110,82],[127,83],[109,84],[137,85],[104,86],[105,80],[111,87],[112,3],[117,88],[115,87],[102,89],[141,90],[132,91],[121,92],[120,87],[122,93],[125,94],[119,95],[123,96],[135,79],[113,97],[114,98],[126,99],[103,74],[129,100],[128,87],[124,101],[133,3],[101,3],[136,102],[79,103],[60,3],[81,104],[61,3],[72,3],[73,3],[74,105],[83,106],[80,107],[76,107],[77,3],[75,3],[78,108],[82,3]],"affectedFilesPendingEmit":[[79,17],[60,17],[81,17],[61,17],[72,17],[73,17],[74,17],[80,17],[76,17],[77,17],[75,17],[78,17],[82,17]],"emitSignatures":[60,61,72,73,74,75,76,77,78,79,80,81,82],"version":"5.9.3"}
1
+ {"fileNames":["./node_modules/typescript/lib/lib.es5.d.ts","./node_modules/typescript/lib/lib.es2015.d.ts","./node_modules/typescript/lib/lib.es2016.d.ts","./node_modules/typescript/lib/lib.es2017.d.ts","./node_modules/typescript/lib/lib.es2018.d.ts","./node_modules/typescript/lib/lib.es2019.d.ts","./node_modules/typescript/lib/lib.es2020.d.ts","./node_modules/typescript/lib/lib.es2021.d.ts","./node_modules/typescript/lib/lib.es2022.d.ts","./node_modules/typescript/lib/lib.es2015.core.d.ts","./node_modules/typescript/lib/lib.es2015.collection.d.ts","./node_modules/typescript/lib/lib.es2015.generator.d.ts","./node_modules/typescript/lib/lib.es2015.iterable.d.ts","./node_modules/typescript/lib/lib.es2015.promise.d.ts","./node_modules/typescript/lib/lib.es2015.proxy.d.ts","./node_modules/typescript/lib/lib.es2015.reflect.d.ts","./node_modules/typescript/lib/lib.es2015.symbol.d.ts","./node_modules/typescript/lib/lib.es2015.symbol.wellknown.d.ts","./node_modules/typescript/lib/lib.es2016.array.include.d.ts","./node_modules/typescript/lib/lib.es2016.intl.d.ts","./node_modules/typescript/lib/lib.es2017.arraybuffer.d.ts","./node_modules/typescript/lib/lib.es2017.date.d.ts","./node_modules/typescript/lib/lib.es2017.object.d.ts","./node_modules/typescript/lib/lib.es2017.sharedmemory.d.ts","./node_modules/typescript/lib/lib.es2017.string.d.ts","./node_modules/typescript/lib/lib.es2017.intl.d.ts","./node_modules/typescript/lib/lib.es2017.typedarrays.d.ts","./node_modules/typescript/lib/lib.es2018.asyncgenerator.d.ts","./node_modules/typescript/lib/lib.es2018.asynciterable.d.ts","./node_modules/typescript/lib/lib.es2018.intl.d.ts","./node_modules/typescript/lib/lib.es2018.promise.d.ts","./node_modules/typescript/lib/lib.es2018.regexp.d.ts","./node_modules/typescript/lib/lib.es2019.array.d.ts","./node_modules/typescript/lib/lib.es2019.object.d.ts","./node_modules/typescript/lib/lib.es2019.string.d.ts","./node_modules/typescript/lib/lib.es2019.symbol.d.ts","./node_modules/typescript/lib/lib.es2019.intl.d.ts","./node_modules/typescript/lib/lib.es2020.bigint.d.ts","./node_modules/typescript/lib/lib.es2020.date.d.ts","./node_modules/typescript/lib/lib.es2020.promise.d.ts","./node_modules/typescript/lib/lib.es2020.sharedmemory.d.ts","./node_modules/typescript/lib/lib.es2020.string.d.ts","./node_modules/typescript/lib/lib.es2020.symbol.wellknown.d.ts","./node_modules/typescript/lib/lib.es2020.intl.d.ts","./node_modules/typescript/lib/lib.es2020.number.d.ts","./node_modules/typescript/lib/lib.es2021.promise.d.ts","./node_modules/typescript/lib/lib.es2021.string.d.ts","./node_modules/typescript/lib/lib.es2021.weakref.d.ts","./node_modules/typescript/lib/lib.es2021.intl.d.ts","./node_modules/typescript/lib/lib.es2022.array.d.ts","./node_modules/typescript/lib/lib.es2022.error.d.ts","./node_modules/typescript/lib/lib.es2022.intl.d.ts","./node_modules/typescript/lib/lib.es2022.object.d.ts","./node_modules/typescript/lib/lib.es2022.string.d.ts","./node_modules/typescript/lib/lib.es2022.regexp.d.ts","./node_modules/typescript/lib/lib.esnext.disposable.d.ts","./node_modules/typescript/lib/lib.esnext.float16.d.ts","./node_modules/typescript/lib/lib.decorators.d.ts","./node_modules/typescript/lib/lib.decorators.legacy.d.ts","./src/exclusion.ts","./src/iterable-utility.ts","./node_modules/@aidc-toolkit/core/dist/type.d.ts","./node_modules/@aidc-toolkit/core/dist/type-helper.d.ts","./node_modules/tslog/types/internal/InspectOptions.interface.d.ts","./node_modules/tslog/types/interfaces.d.ts","./node_modules/tslog/types/BaseLogger.d.ts","./node_modules/tslog/types/index.d.ts","./node_modules/@aidc-toolkit/core/dist/logger.d.ts","./node_modules/@aidc-toolkit/core/dist/parse-version.d.ts","./node_modules/@aidc-toolkit/core/dist/website-url.d.ts","./node_modules/@aidc-toolkit/core/dist/app-data.d.ts","./node_modules/@aidc-toolkit/core/dist/app-data-storage.d.ts","./node_modules/@aidc-toolkit/core/dist/local-app-data-storage.d.ts","./node_modules/@aidc-toolkit/core/dist/http-fetch.d.ts","./node_modules/@aidc-toolkit/core/dist/remote-app-data-storage.d.ts","./node_modules/@aidc-toolkit/core/dist/cache.d.ts","./node_modules/@aidc-toolkit/core/dist/hyperlink.d.ts","./node_modules/i18next/typescript/helpers.d.ts","./node_modules/i18next/typescript/options.d.ts","./node_modules/i18next/typescript/t.d.ts","./node_modules/i18next/index.d.ts","./node_modules/i18next/index.d.mts","./node_modules/@aidc-toolkit/core/dist/locale/en/locale-resources.d.ts","./node_modules/@aidc-toolkit/core/dist/locale/i18n.d.ts","./node_modules/@aidc-toolkit/core/dist/index.d.ts","./src/locale/en/locale-resources.ts","./src/locale/fr/locale-resources.ts","./src/locale/i18n.ts","./src/string.ts","./src/reg-exp.ts","./src/sequence.ts","./src/transformer.ts","./src/character-set.ts","./src/record.ts","./src/index.ts","./src/version.ts","./src/locale/i18next.d.ts","./node_modules/@types/deep-eql/index.d.ts","./node_modules/assertion-error/index.d.ts","./node_modules/@types/chai/index.d.ts","./node_modules/@types/estree/index.d.ts","./node_modules/@types/json-schema/index.d.ts","./node_modules/@types/json5/index.d.ts","./node_modules/@types/node/compatibility/iterators.d.ts","./node_modules/@types/node/globals.typedarray.d.ts","./node_modules/@types/node/buffer.buffer.d.ts","./node_modules/@types/node/globals.d.ts","./node_modules/@types/node/web-globals/abortcontroller.d.ts","./node_modules/@types/node/web-globals/blob.d.ts","./node_modules/@types/node/web-globals/console.d.ts","./node_modules/@types/node/web-globals/crypto.d.ts","./node_modules/@types/node/web-globals/domexception.d.ts","./node_modules/@types/node/web-globals/encoding.d.ts","./node_modules/@types/node/web-globals/events.d.ts","./node_modules/undici-types/utility.d.ts","./node_modules/undici-types/header.d.ts","./node_modules/undici-types/readable.d.ts","./node_modules/undici-types/fetch.d.ts","./node_modules/undici-types/formdata.d.ts","./node_modules/undici-types/connector.d.ts","./node_modules/undici-types/client-stats.d.ts","./node_modules/undici-types/client.d.ts","./node_modules/undici-types/errors.d.ts","./node_modules/undici-types/dispatcher.d.ts","./node_modules/undici-types/global-dispatcher.d.ts","./node_modules/undici-types/global-origin.d.ts","./node_modules/undici-types/pool-stats.d.ts","./node_modules/undici-types/pool.d.ts","./node_modules/undici-types/handlers.d.ts","./node_modules/undici-types/balanced-pool.d.ts","./node_modules/undici-types/h2c-client.d.ts","./node_modules/undici-types/agent.d.ts","./node_modules/undici-types/mock-interceptor.d.ts","./node_modules/undici-types/mock-call-history.d.ts","./node_modules/undici-types/mock-agent.d.ts","./node_modules/undici-types/mock-client.d.ts","./node_modules/undici-types/mock-pool.d.ts","./node_modules/undici-types/snapshot-agent.d.ts","./node_modules/undici-types/mock-errors.d.ts","./node_modules/undici-types/proxy-agent.d.ts","./node_modules/undici-types/env-http-proxy-agent.d.ts","./node_modules/undici-types/retry-handler.d.ts","./node_modules/undici-types/retry-agent.d.ts","./node_modules/undici-types/api.d.ts","./node_modules/undici-types/cache-interceptor.d.ts","./node_modules/undici-types/interceptors.d.ts","./node_modules/undici-types/util.d.ts","./node_modules/undici-types/cookies.d.ts","./node_modules/undici-types/patch.d.ts","./node_modules/undici-types/websocket.d.ts","./node_modules/undici-types/eventsource.d.ts","./node_modules/undici-types/diagnostics-channel.d.ts","./node_modules/undici-types/content-type.d.ts","./node_modules/undici-types/cache.d.ts","./node_modules/undici-types/index.d.ts","./node_modules/@types/node/web-globals/fetch.d.ts","./node_modules/@types/node/web-globals/importmeta.d.ts","./node_modules/@types/node/web-globals/messaging.d.ts","./node_modules/@types/node/web-globals/navigator.d.ts","./node_modules/@types/node/web-globals/performance.d.ts","./node_modules/@types/node/web-globals/storage.d.ts","./node_modules/@types/node/web-globals/streams.d.ts","./node_modules/@types/node/web-globals/timers.d.ts","./node_modules/@types/node/web-globals/url.d.ts","./node_modules/@types/node/assert.d.ts","./node_modules/@types/node/assert/strict.d.ts","./node_modules/@types/node/async_hooks.d.ts","./node_modules/@types/node/buffer.d.ts","./node_modules/@types/node/child_process.d.ts","./node_modules/@types/node/cluster.d.ts","./node_modules/@types/node/console.d.ts","./node_modules/@types/node/constants.d.ts","./node_modules/@types/node/crypto.d.ts","./node_modules/@types/node/dgram.d.ts","./node_modules/@types/node/diagnostics_channel.d.ts","./node_modules/@types/node/dns.d.ts","./node_modules/@types/node/dns/promises.d.ts","./node_modules/@types/node/domain.d.ts","./node_modules/@types/node/events.d.ts","./node_modules/@types/node/fs.d.ts","./node_modules/@types/node/fs/promises.d.ts","./node_modules/@types/node/http.d.ts","./node_modules/@types/node/http2.d.ts","./node_modules/@types/node/https.d.ts","./node_modules/@types/node/inspector.d.ts","./node_modules/@types/node/inspector.generated.d.ts","./node_modules/@types/node/inspector/promises.d.ts","./node_modules/@types/node/module.d.ts","./node_modules/@types/node/net.d.ts","./node_modules/@types/node/os.d.ts","./node_modules/@types/node/path.d.ts","./node_modules/@types/node/path/posix.d.ts","./node_modules/@types/node/path/win32.d.ts","./node_modules/@types/node/perf_hooks.d.ts","./node_modules/@types/node/process.d.ts","./node_modules/@types/node/punycode.d.ts","./node_modules/@types/node/querystring.d.ts","./node_modules/@types/node/quic.d.ts","./node_modules/@types/node/readline.d.ts","./node_modules/@types/node/readline/promises.d.ts","./node_modules/@types/node/repl.d.ts","./node_modules/@types/node/sea.d.ts","./node_modules/@types/node/sqlite.d.ts","./node_modules/@types/node/stream.d.ts","./node_modules/@types/node/stream/consumers.d.ts","./node_modules/@types/node/stream/promises.d.ts","./node_modules/@types/node/stream/web.d.ts","./node_modules/@types/node/string_decoder.d.ts","./node_modules/@types/node/test.d.ts","./node_modules/@types/node/test/reporters.d.ts","./node_modules/@types/node/timers.d.ts","./node_modules/@types/node/timers/promises.d.ts","./node_modules/@types/node/tls.d.ts","./node_modules/@types/node/trace_events.d.ts","./node_modules/@types/node/tty.d.ts","./node_modules/@types/node/url.d.ts","./node_modules/@types/node/util.d.ts","./node_modules/@types/node/util/types.d.ts","./node_modules/@types/node/v8.d.ts","./node_modules/@types/node/vm.d.ts","./node_modules/@types/node/wasi.d.ts","./node_modules/@types/node/worker_threads.d.ts","./node_modules/@types/node/zlib.d.ts","./node_modules/@types/node/index.d.ts"],"fileIdsList":[[62,71,106,168,176,180,183,185,186,187,199],[106,168,176,180,183,185,186,187,199],[62,106,168,176,180,183,185,186,187,199],[62,63,68,69,70,71,72,73,74,75,76,77,84,106,168,176,180,183,185,186,187,199],[72,106,168,176,180,183,185,186,187,199],[82,83,97,106,168,176,180,183,185,186,187,199],[67,106,168,176,180,183,185,186,187,199],[72,74,106,168,176,180,183,185,186,187,199],[98,99,106,168,176,180,183,185,186,187,199],[106,165,166,168,176,180,183,185,186,187,199],[106,167,168,176,180,183,185,186,187,199],[168,176,180,183,185,186,187,199],[106,168,176,180,183,185,186,187,199,207],[106,168,169,174,176,179,180,183,185,186,187,189,199,204,216],[106,168,169,170,176,179,180,183,185,186,187,199],[106,168,171,176,180,183,185,186,187,199,217],[106,168,172,173,176,180,183,185,186,187,190,199],[106,168,173,176,180,183,185,186,187,199,204,213],[106,168,174,176,179,180,183,185,186,187,189,199],[106,167,168,175,176,180,183,185,186,187,199],[106,168,176,177,180,183,185,186,187,199],[106,168,176,178,179,180,183,185,186,187,199],[106,167,168,176,179,180,183,185,186,187,199],[106,168,176,179,180,181,183,185,186,187,199,204,216],[106,168,176,179,180,181,183,185,186,187,199,204,207],[106,155,168,176,179,180,182,183,185,186,187,189,199,204,216],[106,168,176,179,180,182,183,185,186,187,189,199,204,213,216],[106,168,176,180,182,183,184,185,186,187,199,204,213,216],[104,105,106,107,108,109,110,111,112,113,114,156,157,158,159,160,161,162,163,164,165,166,167,168,169,170,171,172,173,174,175,176,177,178,179,180,181,182,183,184,185,186,187,188,189,190,191,192,193,194,195,196,197,198,199,200,201,202,203,204,205,206,207,208,209,210,211,212,213,214,215,216,217,218,219,220,221,222,223],[106,168,176,179,180,183,185,186,187,199],[106,168,176,180,183,185,187,199],[106,168,176,180,183,185,186,187,188,199,216],[106,168,176,179,180,183,185,186,187,189,199,204],[106,168,176,180,183,185,186,187,190,199],[106,168,176,180,183,185,186,187,191,199],[106,168,176,179,180,183,185,186,187,194,199],[106,165,166,167,168,169,170,171,172,173,174,175,176,177,178,179,180,181,182,183,184,185,186,187,188,189,190,191,192,193,194,195,196,197,198,199,200,201,202,203,204,205,206,207,208,209,210,211,212,213,214,215,216,217,218,219,220,221,222,223],[106,168,176,180,183,185,186,187,196,199],[106,168,176,180,183,185,186,187,197,199],[106,168,173,176,180,183,185,186,187,189,199,207],[106,168,176,179,180,183,185,186,187,199,200],[106,168,176,180,183,185,186,187,199,201,217,220],[106,168,176,179,180,183,185,186,187,199,204,206,207],[106,168,176,180,183,185,186,187,199,205,207],[106,168,176,180,183,185,186,187,199,207,217],[106,168,176,180,183,185,186,187,199,208],[106,165,168,176,180,183,185,186,187,199,204,210],[106,168,176,180,183,185,186,187,199,204,209],[106,168,176,179,180,183,185,186,187,199,211,212],[106,168,176,180,183,185,186,187,199,211,212],[106,168,173,176,180,183,185,186,187,189,199,204,213],[106,168,176,180,183,185,186,187,199,214],[106,168,176,180,183,185,186,187,189,199,215],[106,168,176,180,182,183,185,186,187,197,199,216],[106,168,176,180,183,185,186,187,199,217,218],[106,168,173,176,180,183,185,186,187,199,218],[106,168,176,180,183,185,186,187,199,204,219],[106,168,176,180,183,185,186,187,188,199,220],[106,168,176,180,183,185,186,187,199,221],[106,168,171,176,180,183,185,186,187,199],[106,168,173,176,180,183,185,186,187,199],[106,168,176,180,183,185,186,187,199,217],[106,155,168,176,180,183,185,186,187,199],[106,168,176,180,183,185,186,187,199,216],[106,168,176,180,183,185,186,187,199,222],[106,168,176,180,183,185,186,187,194,199],[106,168,176,180,183,185,186,187,199,212],[106,155,168,176,179,180,181,183,185,186,187,194,199,204,207,216,219,220,222],[106,168,176,180,183,185,186,187,199,204,223],[78,79,80,81,106,168,176,180,183,185,186,187,199],[78,79,80,106,168,176,180,183,185,186,187,199],[78,106,168,176,180,183,185,186,187,199],[78,79,106,168,176,180,183,185,186,187,199],[65,106,168,176,180,183,185,186,187,199],[65,66,106,168,176,180,183,185,186,187,199],[64,106,168,176,180,183,185,186,187,199],[106,121,124,127,128,168,176,180,183,185,186,187,199,216],[106,124,168,176,180,183,185,186,187,199,204,216],[106,124,128,168,176,180,183,185,186,187,199,216],[106,168,176,180,183,185,186,187,199,204],[106,118,168,176,180,183,185,186,187,199],[106,122,168,176,180,183,185,186,187,199],[106,120,121,124,168,176,180,183,185,186,187,199,216],[106,168,176,180,183,185,186,187,189,199,213],[106,168,176,180,183,185,186,187,199,224],[106,118,168,176,180,183,185,186,187,199,224],[106,120,124,168,176,180,183,185,186,187,189,199,216],[106,115,116,117,119,123,168,176,179,180,183,185,186,187,199,204,216],[106,124,132,140,168,176,180,183,185,186,187,199],[106,116,122,168,176,180,183,185,186,187,199],[106,124,149,150,168,176,180,183,185,186,187,199],[106,116,119,124,168,176,180,183,185,186,187,199,207,216,224],[106,124,168,176,180,183,185,186,187,199],[106,120,124,168,176,180,183,185,186,187,199,216],[106,115,168,176,180,183,185,186,187,199],[106,118,119,120,122,123,124,125,126,128,129,130,131,132,133,134,135,136,137,138,139,140,141,142,143,144,145,146,147,148,150,151,152,153,154,168,176,180,183,185,186,187,199],[106,124,142,145,168,176,180,183,185,186,187,199],[106,124,132,133,134,168,176,180,183,185,186,187,199],[106,122,124,133,135,168,176,180,183,185,186,187,199],[106,123,168,176,180,183,185,186,187,199],[106,116,118,124,168,176,180,183,185,186,187,199],[106,124,128,133,135,168,176,180,183,185,186,187,199],[106,128,168,176,180,183,185,186,187,199],[106,122,124,127,168,176,180,183,185,186,187,199,216],[106,116,120,124,132,168,176,180,183,185,186,187,199],[106,124,142,168,176,180,183,185,186,187,199],[106,135,168,176,180,183,185,186,187,199],[106,118,124,149,168,176,180,183,185,186,187,199,207,222,224],[60,61,88,89,90,92,106,168,176,180,183,185,186,187,199],[60,61,88,89,90,91,92,93,94,106,168,176,180,183,185,186,187,199],[82,85,86,87,97,106,168,176,180,183,185,186,187,199],[82,85,88,106,168,176,180,183,185,186,187,199],[88,89,106,168,176,180,183,185,186,187,199],[61,88,91,106,168,176,180,183,185,186,187,199]],"fileInfos":[{"version":"c430d44666289dae81f30fa7b2edebf186ecc91a2d4c71266ea6ae76388792e1","affectsGlobalScope":true,"impliedFormat":1},{"version":"45b7ab580deca34ae9729e97c13cfd999df04416a79116c3bfb483804f85ded4","impliedFormat":1},{"version":"3facaf05f0c5fc569c5649dd359892c98a85557e3e0c847964caeb67076f4d75","impliedFormat":1},{"version":"e44bb8bbac7f10ecc786703fe0a6a4b952189f908707980ba8f3c8975a760962","impliedFormat":1},{"version":"5e1c4c362065a6b95ff952c0eab010f04dcd2c3494e813b493ecfd4fcb9fc0d8","impliedFormat":1},{"version":"68d73b4a11549f9c0b7d352d10e91e5dca8faa3322bfb77b661839c42b1ddec7","impliedFormat":1},{"version":"5efce4fc3c29ea84e8928f97adec086e3dc876365e0982cc8479a07954a3efd4","impliedFormat":1},{"version":"feecb1be483ed332fad555aff858affd90a48ab19ba7272ee084704eb7167569","impliedFormat":1},{"version":"ee7bad0c15b58988daa84371e0b89d313b762ab83cb5b31b8a2d1162e8eb41c2","impliedFormat":1},{"version":"c57796738e7f83dbc4b8e65132f11a377649c00dd3eee333f672b8f0a6bea671","affectsGlobalScope":true,"impliedFormat":1},{"version":"dc2df20b1bcdc8c2d34af4926e2c3ab15ffe1160a63e58b7e09833f616efff44","affectsGlobalScope":true,"impliedFormat":1},{"version":"515d0b7b9bea2e31ea4ec968e9edd2c39d3eebf4a2d5cbd04e88639819ae3b71","affectsGlobalScope":true,"impliedFormat":1},{"version":"0559b1f683ac7505ae451f9a96ce4c3c92bdc71411651ca6ddb0e88baaaad6a3","affectsGlobalScope":true,"impliedFormat":1},{"version":"0dc1e7ceda9b8b9b455c3a2d67b0412feab00bd2f66656cd8850e8831b08b537","affectsGlobalScope":true,"impliedFormat":1},{"version":"ce691fb9e5c64efb9547083e4a34091bcbe5bdb41027e310ebba8f7d96a98671","affectsGlobalScope":true,"impliedFormat":1},{"version":"8d697a2a929a5fcb38b7a65594020fcef05ec1630804a33748829c5ff53640d0","affectsGlobalScope":true,"impliedFormat":1},{"version":"4ff2a353abf8a80ee399af572debb8faab2d33ad38c4b4474cff7f26e7653b8d","affectsGlobalScope":true,"impliedFormat":1},{"version":"fb0f136d372979348d59b3f5020b4cdb81b5504192b1cacff5d1fbba29378aa1","affectsGlobalScope":true,"impliedFormat":1},{"version":"d15bea3d62cbbdb9797079416b8ac375ae99162a7fba5de2c6c505446486ac0a","affectsGlobalScope":true,"impliedFormat":1},{"version":"68d18b664c9d32a7336a70235958b8997ebc1c3b8505f4f1ae2b7e7753b87618","affectsGlobalScope":true,"impliedFormat":1},{"version":"eb3d66c8327153d8fa7dd03f9c58d351107fe824c79e9b56b462935176cdf12a","affectsGlobalScope":true,"impliedFormat":1},{"version":"38f0219c9e23c915ef9790ab1d680440d95419ad264816fa15009a8851e79119","affectsGlobalScope":true,"impliedFormat":1},{"version":"69ab18c3b76cd9b1be3d188eaf8bba06112ebbe2f47f6c322b5105a6fbc45a2e","affectsGlobalScope":true,"impliedFormat":1},{"version":"a680117f487a4d2f30ea46f1b4b7f58bef1480456e18ba53ee85c2746eeca012","affectsGlobalScope":true,"impliedFormat":1},{"version":"2f11ff796926e0832f9ae148008138ad583bd181899ab7dd768a2666700b1893","affectsGlobalScope":true,"impliedFormat":1},{"version":"4de680d5bb41c17f7f68e0419412ca23c98d5749dcaaea1896172f06435891fc","affectsGlobalScope":true,"impliedFormat":1},{"version":"954296b30da6d508a104a3a0b5d96b76495c709785c1d11610908e63481ee667","affectsGlobalScope":true,"impliedFormat":1},{"version":"ac9538681b19688c8eae65811b329d3744af679e0bdfa5d842d0e32524c73e1c","affectsGlobalScope":true,"impliedFormat":1},{"version":"0a969edff4bd52585473d24995c5ef223f6652d6ef46193309b3921d65dd4376","affectsGlobalScope":true,"impliedFormat":1},{"version":"9e9fbd7030c440b33d021da145d3232984c8bb7916f277e8ffd3dc2e3eae2bdb","affectsGlobalScope":true,"impliedFormat":1},{"version":"811ec78f7fefcabbda4bfa93b3eb67d9ae166ef95f9bff989d964061cbf81a0c","affectsGlobalScope":true,"impliedFormat":1},{"version":"717937616a17072082152a2ef351cb51f98802fb4b2fdabd32399843875974ca","affectsGlobalScope":true,"impliedFormat":1},{"version":"d7e7d9b7b50e5f22c915b525acc5a49a7a6584cf8f62d0569e557c5cfc4b2ac2","affectsGlobalScope":true,"impliedFormat":1},{"version":"71c37f4c9543f31dfced6c7840e068c5a5aacb7b89111a4364b1d5276b852557","affectsGlobalScope":true,"impliedFormat":1},{"version":"576711e016cf4f1804676043e6a0a5414252560eb57de9faceee34d79798c850","affectsGlobalScope":true,"impliedFormat":1},{"version":"89c1b1281ba7b8a96efc676b11b264de7a8374c5ea1e6617f11880a13fc56dc6","affectsGlobalScope":true,"impliedFormat":1},{"version":"74f7fa2d027d5b33eb0471c8e82a6c87216223181ec31247c357a3e8e2fddc5b","affectsGlobalScope":true,"impliedFormat":1},{"version":"d6d7ae4d1f1f3772e2a3cde568ed08991a8ae34a080ff1151af28b7f798e22ca","affectsGlobalScope":true,"impliedFormat":1},{"version":"063600664504610fe3e99b717a1223f8b1900087fab0b4cad1496a114744f8df","affectsGlobalScope":true,"impliedFormat":1},{"version":"934019d7e3c81950f9a8426d093458b65d5aff2c7c1511233c0fd5b941e608ab","affectsGlobalScope":true,"impliedFormat":1},{"version":"52ada8e0b6e0482b728070b7639ee42e83a9b1c22d205992756fe020fd9f4a47","affectsGlobalScope":true,"impliedFormat":1},{"version":"3bdefe1bfd4d6dee0e26f928f93ccc128f1b64d5d501ff4a8cf3c6371200e5e6","affectsGlobalScope":true,"impliedFormat":1},{"version":"59fb2c069260b4ba00b5643b907ef5d5341b167e7d1dbf58dfd895658bda2867","affectsGlobalScope":true,"impliedFormat":1},{"version":"639e512c0dfc3fad96a84caad71b8834d66329a1f28dc95e3946c9b58176c73a","affectsGlobalScope":true,"impliedFormat":1},{"version":"368af93f74c9c932edd84c58883e736c9e3d53cec1fe24c0b0ff451f529ceab1","affectsGlobalScope":true,"impliedFormat":1},{"version":"af3dd424cf267428f30ccfc376f47a2c0114546b55c44d8c0f1d57d841e28d74","affectsGlobalScope":true,"impliedFormat":1},{"version":"995c005ab91a498455ea8dfb63aa9f83fa2ea793c3d8aa344be4a1678d06d399","affectsGlobalScope":true,"impliedFormat":1},{"version":"959d36cddf5e7d572a65045b876f2956c973a586da58e5d26cde519184fd9b8a","affectsGlobalScope":true,"impliedFormat":1},{"version":"965f36eae237dd74e6cca203a43e9ca801ce38824ead814728a2807b1910117d","affectsGlobalScope":true,"impliedFormat":1},{"version":"3925a6c820dcb1a06506c90b1577db1fdbf7705d65b62b99dce4be75c637e26b","affectsGlobalScope":true,"impliedFormat":1},{"version":"0a3d63ef2b853447ec4f749d3f368ce642264246e02911fcb1590d8c161b8005","affectsGlobalScope":true,"impliedFormat":1},{"version":"8cdf8847677ac7d20486e54dd3fcf09eda95812ac8ace44b4418da1bbbab6eb8","affectsGlobalScope":true,"impliedFormat":1},{"version":"8444af78980e3b20b49324f4a16ba35024fef3ee069a0eb67616ea6ca821c47a","affectsGlobalScope":true,"impliedFormat":1},{"version":"3287d9d085fbd618c3971944b65b4be57859f5415f495b33a6adc994edd2f004","affectsGlobalScope":true,"impliedFormat":1},{"version":"b4b67b1a91182421f5df999988c690f14d813b9850b40acd06ed44691f6727ad","affectsGlobalScope":true,"impliedFormat":1},{"version":"51ad4c928303041605b4d7ae32e0c1ee387d43a24cd6f1ebf4a2699e1076d4fa","affectsGlobalScope":true,"impliedFormat":1},{"version":"196cb558a13d4533a5163286f30b0509ce0210e4b316c56c38d4c0fd2fb38405","affectsGlobalScope":true,"impliedFormat":1},{"version":"8e7f8264d0fb4c5339605a15daadb037bf238c10b654bb3eee14208f860a32ea","affectsGlobalScope":true,"impliedFormat":1},{"version":"782dec38049b92d4e85c1585fbea5474a219c6984a35b004963b00beb1aab538","affectsGlobalScope":true,"impliedFormat":1},{"version":"b3311a61c6aef9a62cbef5e7a56e1df939af03f6a843f9af56849a0d2712fc34","signature":"d8469d4e59da7937adc4b0243b5fcda2548ead06ec7406a80967b753a334f4c2","impliedFormat":99},{"version":"1f2fa635af19f63232151db9a4fa20d2e367ce79b8fa5ee405eabd9886fd2066","signature":"d87e41cb3ac8a485d2bdaa6bdfe6d76ef25985380cde955752530e7f03689770","impliedFormat":99},{"version":"211a1640be3d0b81aec77ab841e2195fbc108feb3de42245dc2b00db11a77f85","impliedFormat":99},{"version":"5eca0802f0bd0ae82fa145606aae394dd3ca03a8c43c22422400d35952ad2403","impliedFormat":99},{"version":"a0ea0ebb80cc84ee69c710fb2facb1aaa928bbba76e4cf2d6986d227e201d8da","impliedFormat":99},{"version":"cbd1648336bab35437b9e62253aeb73d651485818fc42235ebe38bd4e2a54e93","impliedFormat":99},{"version":"39bfe11e90de3ae44067734a74de05ca478d9c8aaaf5b035ae3b07f12c15ba66","impliedFormat":99},{"version":"91da497254ee49742e2c2610ba6718b98118652a1c04da086bfd2d0894ea3dff","affectsGlobalScope":true,"impliedFormat":99},{"version":"64e9a916ab1ea1061dca3f7b54f2cc54c5d8b4b2bc530115fe13e42f36fe36e0","impliedFormat":99},{"version":"42101e99ed3ec4a8e107e721f590e4febe31352294836dbdff6c7f3db800ddbb","impliedFormat":99},{"version":"ee59c53a3d0f704605f9df9fb7cebd8219e1b3b0e5957971a277dc144eeab8d8","impliedFormat":99},{"version":"1dedad1dd7f7fbc1b2b68932a70dbb93d12b0d6ac653e11cdea07338ddd68f03","impliedFormat":99},{"version":"3b955b7cb7bac3cc7769dcb1c3a8ee995be3d195178e49d08d707f4d786aeeb9","impliedFormat":99},{"version":"a4302a9565b81f99c893a54fa71c66920a58ac366b6dfb9b3bd0fa3b3ce69960","impliedFormat":99},{"version":"8b7ddbb8d7ba7677aee354d38abdc21ba581566072a08882b5a85e0310fb0092","impliedFormat":99},{"version":"3981bdd49af17730042867e23056afc059e5de2f051e542c694b4d00cb45ac7f","impliedFormat":99},{"version":"45cf82e2658ca339c30b6a1ba112aa8e85f1707b0f1b5a21f4c13c4d5ed7a511","impliedFormat":99},{"version":"9346e9ecfb0512804b8d793c1cc9e6c8b8a5b0bc9a39a74a67bf2d6378cd6ae8","impliedFormat":99},{"version":"ebf3f14a8159ec5aa2fbf567e6070c248e86a46d69d9967bda179190094dbd4f","impliedFormat":1},{"version":"507bff60d987582b4bf22129691b2243eda0afdd84f0868b325fdb0658311347","impliedFormat":1},{"version":"39a6362716071ffbf6ccbeea3d79e3c19844854d3fc18bda6ed5c4e45b8ad345","impliedFormat":1},{"version":"bd0e108ac399335fec82e83d91401152cc8e19e54d80af0caec98caf10fced77","impliedFormat":1},{"version":"ecd27f83f4995039b05510a3c51566e88fe7fb1a67057bf02b21b152d8237fb6","impliedFormat":99},{"version":"3603ee53032e559a8737efa96795e85a804c2a0cfc952d327defed0d1f70fdd7","impliedFormat":99},{"version":"17975a629bea359edc961239361d4e5ad050d4901f15b2056c8f8c19e10107ab","impliedFormat":99},{"version":"980ad33a565da9728fa7975f092b7df9d2f5c0e306fc074bddd4e800cc393b6d","impliedFormat":99},{"version":"93ff6833e6cee5dab8843d646f0040136eb312a543712f69977301f93914ba03","signature":"9d1421dae078b381fd71364d2fac4a2013383b334dcf87a6c39eebca99ab7f26","impliedFormat":99},{"version":"102fbdd29a2b7a6a5bb3b081fd1acc484c011722d7c460c3ba56fd39de69ecbb","signature":"9d1421dae078b381fd71364d2fac4a2013383b334dcf87a6c39eebca99ab7f26","impliedFormat":99},{"version":"ac8986806ca37cff93a4731b4fe75475d62b8f48011635897c7751a3011380d8","signature":"b2fa9cff5bc098c94cccb3f27febbc91822192bb26b1255ec447f216c99d575b","impliedFormat":99},{"version":"84860bec3d12996232b1fc8430a887cce26006363db104f331cd4099ca20f6c0","signature":"e314173cac2218d976641d5c824978e4103adeca2171e5d27c7b749fab71e02b","impliedFormat":99},{"version":"0ea0c7b119925b2ea220bd6b60ed548245f55e50109b9ed805eb22c7c9a0ae99","signature":"81fd9815f959f19d100c7f1ad29f84b37fb7329b2ed99f4283e6109920fb50ea","impliedFormat":99},{"version":"bed211ed139ec7f06475552a4c47d01cd255f136a2216330dbc5414cc17c33ca","signature":"56eab90710cfb7f1514d5625fa6d72951584ae841b79e6766effa985b03cb9c3","impliedFormat":99},{"version":"218ed0afb8a23472277a62367816b97aa1c1fe3a066bea2e3ac84b4b9cb78f29","signature":"7f255ca0d74db84b77c22be0b7aededb6d1123bab1ed2d20457a0c63dd6a9083","impliedFormat":99},{"version":"0826de7f8dfd8889c24429594deb31089f4ea2834156b8a32bbcc32672b3504e","signature":"8ba82b0f3cbf8fabd9e7be69e4599bf36f9c36ad381f7fef3b43a2207586ea4a","impliedFormat":99},{"version":"f986949a5f9fd95e2a66ea94cfe0a3d9ae92d699fb303669485a830052d81f7e","signature":"85e30ae485b63e1515ae14538869ef16f70237c161eaa48a420bafe60c498df5","impliedFormat":99},{"version":"71dc32a134f3f6b177e6269dc7cd187e80e25798088297d597d8105fb68c3198","signature":"ab36868d4ef7e97d154b08e2f5554b8eba1de207db7dadc1c19008035c0258c4","impliedFormat":99},{"version":"b0cb65d8e95d40d9bac7df79de9541471bce6f7bbada51f3662fd028dd44f86b","signature":"2254f60a73b5c5352ec45db3afe9f54f8127d73916509613bca459c37199ae8b","impliedFormat":99},{"version":"c8d9d74dab491281c1ffe2080f546ea6896efeb539bcd5a66596a13d07e62713","impliedFormat":99},{"version":"427fe2004642504828c1476d0af4270e6ad4db6de78c0b5da3e4c5ca95052a99","impliedFormat":1},{"version":"2eeffcee5c1661ddca53353929558037b8cf305ffb86a803512982f99bcab50d","impliedFormat":99},{"version":"9afb4cb864d297e4092a79ee2871b5d3143ea14153f62ef0bb04ede25f432030","affectsGlobalScope":true,"impliedFormat":99},{"version":"151ff381ef9ff8da2da9b9663ebf657eac35c4c9a19183420c05728f31a6761d","impliedFormat":1},{"version":"f3d8c757e148ad968f0d98697987db363070abada5f503da3c06aefd9d4248c1","impliedFormat":1},{"version":"96d14f21b7652903852eef49379d04dbda28c16ed36468f8c9fa08f7c14c9538","impliedFormat":1},{"version":"d153a11543fd884b596587ccd97aebbeed950b26933ee000f94009f1ab142848","affectsGlobalScope":true,"impliedFormat":1},{"version":"0ccdaa19852d25ecd84eec365c3bfa16e7859cadecf6e9ca6d0dbbbee439743f","affectsGlobalScope":true,"impliedFormat":1},{"version":"438b41419b1df9f1fbe33b5e1b18f5853432be205991d1b19f5b7f351675541e","affectsGlobalScope":true,"impliedFormat":1},{"version":"096116f8fedc1765d5bd6ef360c257b4a9048e5415054b3bf3c41b07f8951b0b","affectsGlobalScope":true,"impliedFormat":1},{"version":"e5e01375c9e124a83b52ee4b3244ed1a4d214a6cfb54ac73e164a823a4a7860a","affectsGlobalScope":true,"impliedFormat":1},{"version":"f90ae2bbce1505e67f2f6502392e318f5714bae82d2d969185c4a6cecc8af2fc","affectsGlobalScope":true,"impliedFormat":1},{"version":"4b58e207b93a8f1c88bbf2a95ddc686ac83962b13830fe8ad3f404ffc7051fb4","affectsGlobalScope":true,"impliedFormat":1},{"version":"1fefabcb2b06736a66d2904074d56268753654805e829989a46a0161cd8412c5","affectsGlobalScope":true,"impliedFormat":1},{"version":"9798340ffb0d067d69b1ae5b32faa17ab31b82466a3fc00d8f2f2df0c8554aaa","affectsGlobalScope":true,"impliedFormat":1},{"version":"c18a99f01eb788d849ad032b31cafd49de0b19e083fe775370834c5675d7df8e","affectsGlobalScope":true,"impliedFormat":1},{"version":"5247874c2a23b9a62d178ae84f2db6a1d54e6c9a2e7e057e178cc5eea13757fc","affectsGlobalScope":true,"impliedFormat":1},{"version":"cdcf9ea426ad970f96ac930cd176d5c69c6c24eebd9fc580e1572d6c6a88f62c","impliedFormat":1},{"version":"23cd712e2ce083d68afe69224587438e5914b457b8acf87073c22494d706a3d0","impliedFormat":1},{"version":"487b694c3de27ddf4ad107d4007ad304d29effccf9800c8ae23c2093638d906a","impliedFormat":1},{"version":"3a80bc85f38526ca3b08007ee80712e7bb0601df178b23fbf0bf87036fce40ce","impliedFormat":1},{"version":"ccf4552357ce3c159ef75f0f0114e80401702228f1898bdc9402214c9499e8c0","impliedFormat":1},{"version":"c6fd2c5a395f2432786c9cb8deb870b9b0e8ff7e22c029954fabdd692bff6195","impliedFormat":1},{"version":"68834d631c8838c715f225509cfc3927913b9cc7a4870460b5b60c8dbdb99baf","impliedFormat":1},{"version":"2931540c47ee0ff8a62860e61782eb17b155615db61e36986e54645ec67f67c2","impliedFormat":1},{"version":"ccab02f3920fc75c01174c47fcf67882a11daf16baf9e81701d0a94636e94556","impliedFormat":1},{"version":"f6faf5f74e4c4cc309a6c6a6c4da02dbb840be5d3e92905a23dcd7b2b0bd1986","impliedFormat":1},{"version":"ea6bc8de8b59f90a7a3960005fd01988f98fd0784e14bc6922dde2e93305ec7d","impliedFormat":1},{"version":"36107995674b29284a115e21a0618c4c2751b32a8766dd4cb3ba740308b16d59","impliedFormat":1},{"version":"914a0ae30d96d71915fc519ccb4efbf2b62c0ddfb3a3fc6129151076bc01dc60","impliedFormat":1},{"version":"33e981bf6376e939f99bd7f89abec757c64897d33c005036b9a10d9587d80187","impliedFormat":1},{"version":"7fd1b31fd35876b0aa650811c25ec2c97a3c6387e5473eb18004bed86cdd76b6","impliedFormat":1},{"version":"b41767d372275c154c7ea6c9d5449d9a741b8ce080f640155cc88ba1763e35b3","impliedFormat":1},{"version":"3bacf516d686d08682751a3bd2519ea3b8041a164bfb4f1d35728993e70a2426","impliedFormat":1},{"version":"7fb266686238369442bd1719bc0d7edd0199da4fb8540354e1ff7f16669b4323","impliedFormat":1},{"version":"0a60a292b89ca7218b8616f78e5bbd1c96b87e048849469cccb4355e98af959a","impliedFormat":1},{"version":"0b6e25234b4eec6ed96ab138d96eb70b135690d7dd01f3dd8a8ab291c35a683a","impliedFormat":1},{"version":"9666f2f84b985b62400d2e5ab0adae9ff44de9b2a34803c2c5bd3c8325b17dc0","impliedFormat":1},{"version":"40cd35c95e9cf22cfa5bd84e96408b6fcbca55295f4ff822390abb11afbc3dca","impliedFormat":1},{"version":"b1616b8959bf557feb16369c6124a97a0e74ed6f49d1df73bb4b9ddf68acf3f3","impliedFormat":1},{"version":"5b03a034c72146b61573aab280f295b015b9168470f2df05f6080a2122f9b4df","impliedFormat":1},{"version":"40b463c6766ca1b689bfcc46d26b5e295954f32ad43e37ee6953c0a677e4ae2b","impliedFormat":1},{"version":"249b9cab7f5d628b71308c7d9bb0a808b50b091e640ba3ed6e2d0516f4a8d91d","impliedFormat":1},{"version":"80aae6afc67faa5ac0b32b5b8bc8cc9f7fa299cff15cf09cc2e11fd28c6ae29e","impliedFormat":1},{"version":"f473cd2288991ff3221165dcf73cd5d24da30391f87e85b3dd4d0450c787a391","impliedFormat":1},{"version":"499e5b055a5aba1e1998f7311a6c441a369831c70905cc565ceac93c28083d53","impliedFormat":1},{"version":"54c3e2371e3d016469ad959697fd257e5621e16296fa67082c2575d0bf8eced0","impliedFormat":1},{"version":"beb8233b2c220cfa0feea31fbe9218d89fa02faa81ef744be8dce5acb89bb1fd","impliedFormat":1},{"version":"c183b931b68ad184bc8e8372bf663f3d33304772fb482f29fb91b3c391031f3e","impliedFormat":1},{"version":"5d0375ca7310efb77e3ef18d068d53784faf62705e0ad04569597ae0e755c401","impliedFormat":1},{"version":"59af37caec41ecf7b2e76059c9672a49e682c1a2aa6f9d7dc78878f53aa284d6","impliedFormat":1},{"version":"addf417b9eb3f938fddf8d81e96393a165e4be0d4a8b6402292f9c634b1cb00d","impliedFormat":1},{"version":"48cc3ec153b50985fb95153258a710782b25975b10dd4ac8a4f3920632d10790","impliedFormat":1},{"version":"adf27937dba6af9f08a68c5b1d3fce0ca7d4b960c57e6d6c844e7d1a8e53adae","impliedFormat":1},{"version":"e1528ca65ac90f6fa0e4a247eb656b4263c470bb22d9033e466463e13395e599","impliedFormat":1},{"version":"2e85db9e6fd73cfa3d7f28e0ab6b55417ea18931423bd47b409a96e4a169e8e6","impliedFormat":1},{"version":"c46e079fe54c76f95c67fb89081b3e399da2c7d109e7dca8e4b58d83e332e605","impliedFormat":1},{"version":"866078923a56d026e39243b4392e282c1c63159723996fa89243140e1388a98d","impliedFormat":1},{"version":"c3f5289820990ab66b70c7fb5b63cb674001009ff84b13de40619619a9c8175f","affectsGlobalScope":true,"impliedFormat":1},{"version":"b3275d55fac10b799c9546804126239baf020d220136163f763b55a74e50e750","affectsGlobalScope":true,"impliedFormat":1},{"version":"fa68a0a3b7cb32c00e39ee3cd31f8f15b80cac97dce51b6ee7fc14a1e8deb30b","affectsGlobalScope":true,"impliedFormat":1},{"version":"1cf059eaf468efcc649f8cf6075d3cb98e9a35a0fe9c44419ec3d2f5428d7123","affectsGlobalScope":true,"impliedFormat":1},{"version":"6c36e755bced82df7fb6ce8169265d0a7bb046ab4e2cb6d0da0cb72b22033e89","affectsGlobalScope":true,"impliedFormat":1},{"version":"e7721c4f69f93c91360c26a0a84ee885997d748237ef78ef665b153e622b36c1","affectsGlobalScope":true,"impliedFormat":1},{"version":"7a93de4ff8a63bafe62ba86b89af1df0ccb5e40bb85b0c67d6bbcfdcf96bf3d4","affectsGlobalScope":true,"impliedFormat":1},{"version":"90e85f9bc549dfe2b5749b45fe734144e96cd5d04b38eae244028794e142a77e","affectsGlobalScope":true,"impliedFormat":1},{"version":"e0a5deeb610b2a50a6350bd23df6490036a1773a8a71d70f2f9549ab009e67ee","affectsGlobalScope":true,"impliedFormat":1},{"version":"435b3711465425770ed2ee2f1cf00ce071835265e0851a7dc4600ab4b007550e","impliedFormat":1},{"version":"7e49f52a159435fc8df4de9dc377ef5860732ca2dc9efec1640531d3cf5da7a3","impliedFormat":1},{"version":"dd4bde4bdc2e5394aed6855e98cf135dfdf5dd6468cad842e03116d31bbcc9bc","impliedFormat":1},{"version":"4d4e879009a84a47c05350b8dca823036ba3a29a3038efed1be76c9f81e45edf","affectsGlobalScope":true,"impliedFormat":1},{"version":"237ba5ac2a95702a114a309e39c53a5bddff5f6333b325db9764df9b34f3502b","impliedFormat":1},{"version":"9ba13b47cb450a438e3076c4a3f6afb9dc85e17eae50f26d4b2d72c0688c9251","impliedFormat":1},{"version":"b64cd4401633ea4ecadfd700ddc8323a13b63b106ac7127c1d2726f32424622c","impliedFormat":1},{"version":"37c6e5fe5715814412b43cc9b50b24c67a63c4e04e753e0d1305970d65417a60","impliedFormat":1},{"version":"1d024184fb57c58c5c91823f9d10b4915a4867b7934e89115fd0d861a9df27c8","impliedFormat":1},{"version":"ee0e4946247f842c6dd483cbb60a5e6b484fee07996e3a7bc7343dfb68a04c5d","impliedFormat":1},{"version":"ef051f42b7e0ef5ca04552f54c4552eac84099d64b6c5ad0ef4033574b6035b8","impliedFormat":1},{"version":"853a43154f1d01b0173d9cbd74063507ece57170bad7a3b68f3fa1229ad0a92f","impliedFormat":1},{"version":"56231e3c39a031bfb0afb797690b20ed4537670c93c0318b72d5180833d98b72","impliedFormat":1},{"version":"5cc7c39031bfd8b00ad58f32143d59eb6ffc24f5d41a20931269011dccd36c5e","impliedFormat":1},{"version":"b0b69c61b0f0ec8ca15db4c8c41f6e77f4cacb784d42bca948f42dea33e8757e","affectsGlobalScope":true,"impliedFormat":1},{"version":"f96a48183254c00d24575401f1a761b4ce4927d927407e7862a83e06ce5d6964","impliedFormat":1},{"version":"cc25940cfb27aa538e60d465f98bb5068d4d7d33131861ace43f04fe6947d68f","impliedFormat":1},{"version":"9dec1d75d47c23b595402f265babeac9c0f645427df7e937d69ddfa05cdddc1f","impliedFormat":1},{"version":"01ff95aa1443e3f7248974e5a771f513cb2ac158c8898f470a1792f817bee497","impliedFormat":1},{"version":"757227c8b345c57d76f7f0e3bbad7a91ffca23f1b2547cbed9e10025816c9cb7","impliedFormat":1},{"version":"42a05d8f239f74587d4926aba8cc54792eed8e8a442c7adc9b38b516642aadfe","impliedFormat":1},{"version":"5d21b58d60383cc6ab9ad3d3e265d7d25af24a2c9b506247e0e50b0a884920be","impliedFormat":1},{"version":"101f482fd48cb4c7c0468dcc6d62c843d842977aea6235644b1edd05e81fbf22","impliedFormat":1},{"version":"ae6757460f37078884b1571a3de3ebaf724d827d7e1d53626c02b3c2a408ac63","affectsGlobalScope":true,"impliedFormat":1},{"version":"9451a46a89ed209e2e08329e6cac59f89356eae79a7230f916d8cc38725407c7","impliedFormat":1},{"version":"3ef397f12387eff17f550bc484ea7c27d21d43816bbe609d495107f44b97e933","impliedFormat":1},{"version":"1023282e2ba810bc07905d3668349fbd37a26411f0c8f94a70ef3c05fe523fcf","impliedFormat":1},{"version":"b214ebcf76c51b115453f69729ee8aa7b7f8eccdae2a922b568a45c2d7ff52f7","impliedFormat":1},{"version":"429c9cdfa7d126255779efd7e6d9057ced2d69c81859bbab32073bad52e9ba76","impliedFormat":1},{"version":"e236b5eba291f51bdf32c231673e6cab81b5410850e61f51a7a524dddadc0f95","impliedFormat":1},{"version":"f7ba0e839daa0702e3ff1a1a871c0d8ea2d586ce684dd8a72c786c36a680b1d9","affectsGlobalScope":true,"impliedFormat":1},{"version":"7f2c62938251b45715fd2a9887060ec4fbc8724727029d1cbce373747252bdd7","impliedFormat":1},{"version":"e3ace08b6bbd84655d41e244677b474fd995923ffef7149ddb68af8848b60b05","impliedFormat":1},{"version":"132580b0e86c48fab152bab850fc57a4b74fe915c8958d2ccb052b809a44b61c","impliedFormat":1},{"version":"af4ab0aa8908fc9a655bb833d3bc28e117c4f0e1038c5a891546158beb25accb","impliedFormat":1},{"version":"69c9a5a9392e8564bd81116e1ed93b13205201fb44cb35a7fde8c9f9e21c4b23","impliedFormat":1},{"version":"5f8fc37f8434691ffac1bfd8fc2634647da2c0e84253ab5d2dd19a7718915b35","impliedFormat":1},{"version":"5981c2340fd8b076cae8efbae818d42c11ffc615994cb060b1cd390795f1be2b","impliedFormat":1},{"version":"f64deb26664af64dc274637343bde8d82f930c77af05a412c7d310b77207a448","impliedFormat":1},{"version":"ed4f674fc8c0c993cc7e145069ac44129e03519b910c62be206a0cc777bdc60b","affectsGlobalScope":true,"impliedFormat":1},{"version":"0250da3eb85c99624f974e77ef355cdf86f43980251bc371475c2b397ba55bcd","impliedFormat":1},{"version":"f1c93e046fb3d9b7f8249629f4b63dc068dd839b824dd0aa39a5e68476dc9420","impliedFormat":1},{"version":"3d3a5f27ffbc06c885dd4d5f9ee20de61faf877fe2c3a7051c4825903d9a7fdc","impliedFormat":1},{"version":"12806f9f085598ef930edaf2467a5fa1789a878fba077cd27e85dc5851e11834","impliedFormat":1},{"version":"17d06eb5709839c7ce719f0c38ada6f308fb433f2cd6d8c87b35856e07400950","impliedFormat":1},{"version":"a43fe41c33d0a192a0ecaf9b92e87bef3709c9972e6d53c42c49251ccb962d69","impliedFormat":1},{"version":"a177959203c017fad3ecc4f3d96c8757a840957a4959a3ae00dab9d35961ca6c","affectsGlobalScope":true,"impliedFormat":1},{"version":"6fc727ccf9b36e257ff982ea0badeffbfc2c151802f741bddff00c6af3b784cf","impliedFormat":1},{"version":"2a00d005e3af99cd1cfa75220e60c61b04bfb6be7ca7453bfe2ef6cca37cc03c","impliedFormat":1},{"version":"4844a4c9b4b1e812b257676ed8a80b3f3be0e29bf05e742cc2ea9c3c6865e6c6","impliedFormat":1},{"version":"064878a60367e0407c42fb7ba02a2ea4d83257357dc20088e549bd4d89433e9c","impliedFormat":1},{"version":"14d4bd22d1b05824971b98f7e91b2484c90f1a684805c330476641417c3d9735","impliedFormat":1},{"version":"c3877fef8a43cd434f9728f25a97575b0eb73d92f38b5c87c840daccc3e21d97","impliedFormat":1},{"version":"b484ec11ba00e3a2235562a41898d55372ccabe607986c6fa4f4aba72093749f","impliedFormat":1},{"version":"1dbd83860e7634f9c236647f45dbc5d3c4f9eba8827d87209d6e9826fdf4dbd5","impliedFormat":1},{"version":"41ef7992c555671a8fe54db302788adefa191ded810a50329b79d20a6772d14c","impliedFormat":1},{"version":"041a7781b9127ab568d2cdcce62c58fdea7c7407f40b8c50045d7866a2727130","impliedFormat":1},{"version":"b37f83e7deea729aa9ce5593f78905afb45b7532fdff63041d374f60059e7852","impliedFormat":1},{"version":"e1cb68f3ef3a8dd7b2a9dfb3de482ed6c0f1586ba0db4e7d73c1d2147b6ffc51","impliedFormat":1},{"version":"55cdbeebe76a1fa18bbd7e7bf73350a2173926bd3085bb050cf5a5397025ee4e","impliedFormat":1}],"root":[60,61,[86,97]],"options":{"composite":true,"declaration":true,"declarationMap":true,"erasableSyntaxOnly":true,"esModuleInterop":true,"exactOptionalPropertyTypes":true,"module":199,"noFallthroughCasesInSwitch":true,"noImplicitOverride":true,"noPropertyAccessFromIndexSignature":true,"noUncheckedSideEffectImports":true,"outDir":"./dist","rootDir":"./src","skipLibCheck":true,"sourceMap":true,"strict":true,"target":9},"referencedMap":[[72,1],[71,2],[76,3],[74,3],[77,2],[85,4],[73,5],[83,2],[84,6],[68,7],[69,2],[75,8],[63,2],[62,2],[70,2],[100,9],[98,2],[101,2],[102,2],[103,2],[165,10],[166,10],[167,11],[106,12],[168,13],[169,14],[170,15],[104,2],[171,16],[172,17],[173,18],[174,19],[175,20],[176,21],[177,21],[178,22],[179,23],[180,24],[181,25],[107,2],[105,2],[182,26],[183,27],[184,28],[224,29],[185,30],[186,31],[187,30],[188,32],[189,33],[190,34],[191,35],[192,35],[193,35],[194,36],[195,37],[196,38],[197,39],[198,40],[199,41],[200,41],[201,42],[202,2],[203,2],[204,43],[205,44],[206,43],[207,45],[208,46],[209,47],[210,48],[211,49],[212,50],[213,51],[214,52],[215,53],[216,54],[217,55],[218,56],[219,57],[220,58],[221,59],[108,30],[109,2],[110,60],[111,61],[112,2],[113,62],[114,2],[156,63],[157,64],[158,65],[159,65],[160,66],[161,2],[162,13],[163,67],[164,64],[222,68],[223,69],[99,2],[82,70],[81,71],[78,2],[79,72],[80,73],[66,74],[67,75],[65,76],[64,2],[58,2],[59,2],[11,2],[10,2],[2,2],[12,2],[13,2],[14,2],[15,2],[16,2],[17,2],[18,2],[19,2],[3,2],[20,2],[21,2],[4,2],[22,2],[26,2],[23,2],[24,2],[25,2],[27,2],[28,2],[29,2],[5,2],[30,2],[31,2],[32,2],[33,2],[6,2],[37,2],[34,2],[35,2],[36,2],[38,2],[7,2],[39,2],[44,2],[45,2],[40,2],[41,2],[42,2],[43,2],[8,2],[49,2],[46,2],[47,2],[48,2],[50,2],[9,2],[51,2],[52,2],[53,2],[55,2],[54,2],[1,2],[56,2],[57,2],[132,77],[144,78],[130,79],[145,80],[154,81],[121,82],[122,83],[120,84],[153,85],[148,86],[152,87],[124,88],[141,89],[123,90],[151,91],[118,92],[119,86],[125,93],[126,2],[131,94],[129,93],[116,95],[155,96],[146,97],[135,98],[134,93],[136,99],[139,100],[133,101],[137,102],[149,85],[127,103],[128,104],[140,105],[117,80],[143,106],[142,93],[138,107],[147,2],[115,2],[150,108],[93,109],[60,2],[95,110],[61,2],[86,2],[87,2],[88,111],[97,112],[94,113],[90,113],[91,2],[89,2],[92,114],[96,2]],"latestChangedDtsFile":"./dist/version.d.ts","version":"5.9.3"}
package/dist/index.cjs DELETED
@@ -1,17 +0,0 @@
1
- "use strict";var ae=Object.defineProperty;var ze=Object.getOwnPropertyDescriptor;var Ze=Object.getOwnPropertyNames;var Je=Object.prototype.hasOwnProperty;var _e=(a,e)=>{for(var t in e)ae(a,t,{get:e[t],enumerable:!0})},Xe=(a,e,t,n)=>{if(e&&typeof e=="object"||typeof e=="function")for(let r of Ze(e))!Je.call(a,r)&&r!==t&&ae(a,r,{get:()=>e[r],enumerable:!(n=ze(e,r))||n.enumerable});return a};var We=a=>Xe(ae({},"__esModule",{value:!0}),a);var bt={};_e(bt,{ALPHABETIC_CREATOR:()=>Ke,ALPHABETIC_VALIDATOR:()=>mt,ALPHANUMERIC_CREATOR:()=>He,ALPHANUMERIC_VALIDATOR:()=>xt,CharacterSetCreator:()=>$,CharacterSetValidator:()=>se,EncryptionTransformer:()=>ie,Exclusions:()=>x,HEXADECIMAL_CREATOR:()=>Ue,HEXADECIMAL_VALIDATOR:()=>gt,IdentityTransformer:()=>ne,NUMERIC_CREATOR:()=>De,NUMERIC_VALIDATOR:()=>pt,RecordValidator:()=>be,RegExpValidator:()=>J,Sequence:()=>Z,Transformer:()=>P,i18nUtilityInit:()=>dt,i18nextUtility:()=>m,mapIterable:()=>U,utilityNS:()=>ke,utilityResourceBundle:()=>je});module.exports=We(bt);var re=require("@aidc-toolkit/core");var g=a=>typeof a=="string",q=()=>{let a,e,t=new Promise((n,r)=>{a=n,e=r});return t.resolve=a,t.reject=e,t},Le=a=>a==null?"":""+a,Ye=(a,e,t)=>{a.forEach(n=>{e[n]&&(t[n]=e[n])})},Qe=/###/g,we=a=>a&&a.indexOf("###")>-1?a.replace(Qe,"."):a,Ne=a=>!a||g(a),G=(a,e,t)=>{let n=g(e)?e.split("."):e,r=0;for(;r<n.length-1;){if(Ne(a))return{};let i=we(n[r]);!a[i]&&t&&(a[i]=new t),Object.prototype.hasOwnProperty.call(a,i)?a=a[i]:a={},++r}return Ne(a)?{}:{obj:a,k:we(n[r])}},Re=(a,e,t)=>{let{obj:n,k:r}=G(a,e,Object);if(n!==void 0||e.length===1){n[r]=t;return}let i=e[e.length-1],s=e.slice(0,e.length-1),o=G(a,s,Object);for(;o.obj===void 0&&s.length;)i=`${s[s.length-1]}.${i}`,s=s.slice(0,s.length-1),o=G(a,s,Object),o?.obj&&typeof o.obj[`${o.k}.${i}`]<"u"&&(o.obj=void 0);o.obj[`${o.k}.${i}`]=t},et=(a,e,t,n)=>{let{obj:r,k:i}=G(a,e,Object);r[i]=r[i]||[],r[i].push(t)},W=(a,e)=>{let{obj:t,k:n}=G(a,e);if(t&&Object.prototype.hasOwnProperty.call(t,n))return t[n]},tt=(a,e,t)=>{let n=W(a,t);return n!==void 0?n:W(e,t)},Pe=(a,e,t)=>{for(let n in e)n!=="__proto__"&&n!=="constructor"&&(n in a?g(a[n])||a[n]instanceof String||g(e[n])||e[n]instanceof String?t&&(a[n]=e[n]):Pe(a[n],e[n],t):a[n]=e[n]);return a},j=a=>a.replace(/[\-\[\]\/\{\}\(\)\*\+\?\.\\\^\$\|]/g,"\\$&"),rt={"&":"&amp;","<":"&lt;",">":"&gt;",'"':"&quot;","'":"&#39;","/":"&#x2F;"},nt=a=>g(a)?a.replace(/[&<>"'\/]/g,e=>rt[e]):a,ce=class{constructor(e){this.capacity=e,this.regExpMap=new Map,this.regExpQueue=[]}getRegExp(e){let t=this.regExpMap.get(e);if(t!==void 0)return t;let n=new RegExp(e);return this.regExpQueue.length===this.capacity&&this.regExpMap.delete(this.regExpQueue.shift()),this.regExpMap.set(e,n),this.regExpQueue.push(e),n}},it=[" ",",","?","!",";"],st=new ce(20),at=(a,e,t)=>{e=e||"",t=t||"";let n=it.filter(s=>e.indexOf(s)<0&&t.indexOf(s)<0);if(n.length===0)return!0;let r=st.getRegExp(`(${n.map(s=>s==="?"?"\\?":s).join("|")})`),i=!r.test(a);if(!i){let s=a.indexOf(t);s>0&&!r.test(a.substring(0,s))&&(i=!0)}return i},he=(a,e,t=".")=>{if(!a)return;if(a[e])return Object.prototype.hasOwnProperty.call(a,e)?a[e]:void 0;let n=e.split(t),r=a;for(let i=0;i<n.length;){if(!r||typeof r!="object")return;let s,o="";for(let u=i;u<n.length;++u)if(u!==i&&(o+=t),o+=n[u],s=r[o],s!==void 0){if(["string","number","boolean"].indexOf(typeof s)>-1&&u<n.length-1)continue;i+=u-i+1;break}r=s}return r},z=a=>a?.replace("_","-"),ot={type:"logger",log(a){this.output("log",a)},warn(a){this.output("warn",a)},error(a){this.output("error",a)},output(a,e){console?.[a]?.apply?.(console,e)}},fe=class a{constructor(e,t={}){this.init(e,t)}init(e,t={}){this.prefix=t.prefix||"i18next:",this.logger=e||ot,this.options=t,this.debug=t.debug}log(...e){return this.forward(e,"log","",!0)}warn(...e){return this.forward(e,"warn","",!0)}error(...e){return this.forward(e,"error","")}deprecate(...e){return this.forward(e,"warn","WARNING DEPRECATED: ",!0)}forward(e,t,n,r){return r&&!this.debug?null:(g(e[0])&&(e[0]=`${n}${this.prefix} ${e[0]}`),this.logger[t](e))}create(e){return new a(this.logger,{prefix:`${this.prefix}:${e}:`,...this.options})}clone(e){return e=e||this.options,e.prefix=e.prefix||this.prefix,new a(this.logger,e)}},I=new fe,D=class{constructor(){this.observers={}}on(e,t){return e.split(" ").forEach(n=>{this.observers[n]||(this.observers[n]=new Map);let r=this.observers[n].get(t)||0;this.observers[n].set(t,r+1)}),this}off(e,t){if(this.observers[e]){if(!t){delete this.observers[e];return}this.observers[e].delete(t)}}emit(e,...t){this.observers[e]&&Array.from(this.observers[e].entries()).forEach(([r,i])=>{for(let s=0;s<i;s++)r(...t)}),this.observers["*"]&&Array.from(this.observers["*"].entries()).forEach(([r,i])=>{for(let s=0;s<i;s++)r.apply(r,[e,...t])})}},Y=class extends D{constructor(e,t={ns:["translation"],defaultNS:"translation"}){super(),this.data=e||{},this.options=t,this.options.keySeparator===void 0&&(this.options.keySeparator="."),this.options.ignoreJSONStructure===void 0&&(this.options.ignoreJSONStructure=!0)}addNamespaces(e){this.options.ns.indexOf(e)<0&&this.options.ns.push(e)}removeNamespaces(e){let t=this.options.ns.indexOf(e);t>-1&&this.options.ns.splice(t,1)}getResource(e,t,n,r={}){let i=r.keySeparator!==void 0?r.keySeparator:this.options.keySeparator,s=r.ignoreJSONStructure!==void 0?r.ignoreJSONStructure:this.options.ignoreJSONStructure,o;e.indexOf(".")>-1?o=e.split("."):(o=[e,t],n&&(Array.isArray(n)?o.push(...n):g(n)&&i?o.push(...n.split(i)):o.push(n)));let u=W(this.data,o);return!u&&!t&&!n&&e.indexOf(".")>-1&&(e=o[0],t=o[1],n=o.slice(2).join(".")),u||!s||!g(n)?u:he(this.data?.[e]?.[t],n,i)}addResource(e,t,n,r,i={silent:!1}){let s=i.keySeparator!==void 0?i.keySeparator:this.options.keySeparator,o=[e,t];n&&(o=o.concat(s?n.split(s):n)),e.indexOf(".")>-1&&(o=e.split("."),r=t,t=o[1]),this.addNamespaces(t),Re(this.data,o,r),i.silent||this.emit("added",e,t,n,r)}addResources(e,t,n,r={silent:!1}){for(let i in n)(g(n[i])||Array.isArray(n[i]))&&this.addResource(e,t,i,n[i],{silent:!0});r.silent||this.emit("added",e,t,n)}addResourceBundle(e,t,n,r,i,s={silent:!1,skipCopy:!1}){let o=[e,t];e.indexOf(".")>-1&&(o=e.split("."),r=n,n=t,t=o[1]),this.addNamespaces(t);let u=W(this.data,o)||{};s.skipCopy||(n=JSON.parse(JSON.stringify(n))),r?Pe(u,n,i):u={...u,...n},Re(this.data,o,u),s.silent||this.emit("added",e,t,n)}removeResourceBundle(e,t){this.hasResourceBundle(e,t)&&delete this.data[e][t],this.removeNamespaces(t),this.emit("removed",e,t)}hasResourceBundle(e,t){return this.getResource(e,t)!==void 0}getResourceBundle(e,t){return t||(t=this.options.defaultNS),this.getResource(e,t)}getDataByLanguage(e){return this.data[e]}hasLanguageSomeTranslations(e){let t=this.getDataByLanguage(e);return!!(t&&Object.keys(t)||[]).find(r=>t[r]&&Object.keys(t[r]).length>0)}toJSON(){return this.data}},Ve={processors:{},addPostProcessor(a){this.processors[a.name]=a},handle(a,e,t,n,r){return a.forEach(i=>{e=this.processors[i]?.process(e,t,n,r)??e}),e}},Fe=Symbol("i18next/PATH_KEY");function ut(){let a=[],e=Object.create(null),t;return e.get=(n,r)=>(t?.revoke?.(),r===Fe?a:(a.push(r),t=Proxy.revocable(n,e),t.proxy)),Proxy.revocable(Object.create(null),e).proxy}function de(a,e){let{[Fe]:t}=a(ut());return t.join(e?.keySeparator??".")}var Ce={},oe=a=>!g(a)&&typeof a!="boolean"&&typeof a!="number",Q=class a extends D{constructor(e,t={}){super(),Ye(["resourceStore","languageUtils","pluralResolver","interpolator","backendConnector","i18nFormat","utils"],e,this),this.options=t,this.options.keySeparator===void 0&&(this.options.keySeparator="."),this.logger=I.create("translator")}changeLanguage(e){e&&(this.language=e)}exists(e,t={interpolation:{}}){let n={...t};if(e==null)return!1;let r=this.resolve(e,n);if(r?.res===void 0)return!1;let i=oe(r.res);return!(n.returnObjects===!1&&i)}extractFromKey(e,t){let n=t.nsSeparator!==void 0?t.nsSeparator:this.options.nsSeparator;n===void 0&&(n=":");let r=t.keySeparator!==void 0?t.keySeparator:this.options.keySeparator,i=t.ns||this.options.defaultNS||[],s=n&&e.indexOf(n)>-1,o=!this.options.userDefinedKeySeparator&&!t.keySeparator&&!this.options.userDefinedNsSeparator&&!t.nsSeparator&&!at(e,n,r);if(s&&!o){let u=e.match(this.interpolator.nestingRegexp);if(u&&u.length>0)return{key:e,namespaces:g(i)?[i]:i};let l=e.split(n);(n!==r||n===r&&this.options.ns.indexOf(l[0])>-1)&&(i=l.shift()),e=l.join(r)}return{key:e,namespaces:g(i)?[i]:i}}translate(e,t,n){let r=typeof t=="object"?{...t}:t;if(typeof r!="object"&&this.options.overloadTranslationOptionHandler&&(r=this.options.overloadTranslationOptionHandler(arguments)),typeof r=="object"&&(r={...r}),r||(r={}),e==null)return"";typeof e=="function"&&(e=de(e,{...this.options,...r})),Array.isArray(e)||(e=[String(e)]);let i=r.returnDetails!==void 0?r.returnDetails:this.options.returnDetails,s=r.keySeparator!==void 0?r.keySeparator:this.options.keySeparator,{key:o,namespaces:u}=this.extractFromKey(e[e.length-1],r),l=u[u.length-1],h=r.nsSeparator!==void 0?r.nsSeparator:this.options.nsSeparator;h===void 0&&(h=":");let c=r.lng||this.language,f=r.appendNamespaceToCIMode||this.options.appendNamespaceToCIMode;if(c?.toLowerCase()==="cimode")return f?i?{res:`${l}${h}${o}`,usedKey:o,exactUsedKey:o,usedLng:c,usedNS:l,usedParams:this.getUsedParamsDetails(r)}:`${l}${h}${o}`:i?{res:o,usedKey:o,exactUsedKey:o,usedLng:c,usedNS:l,usedParams:this.getUsedParamsDetails(r)}:o;let d=this.resolve(e,r),p=d?.res,b=d?.usedKey||o,T=d?.exactUsedKey||o,w=["[object Number]","[object Function]","[object RegExp]"],y=r.joinArrays!==void 0?r.joinArrays:this.options.joinArrays,V=!this.i18nFormat||this.i18nFormat.handleAsObject,L=r.count!==void 0&&!g(r.count),A=a.hasDefaultValue(r),B=L?this.pluralResolver.getSuffix(c,r.count,r):"",k=r.ordinal&&L?this.pluralResolver.getSuffix(c,r.count,{ordinal:!1}):"",ye=L&&!r.ordinal&&r.count===0,M=ye&&r[`defaultValue${this.options.pluralSeparator}zero`]||r[`defaultValue${B}`]||r[`defaultValue${k}`]||r.defaultValue,R=p;V&&!p&&A&&(R=M);let qe=oe(R),Ge=Object.prototype.toString.apply(R);if(V&&R&&qe&&w.indexOf(Ge)<0&&!(g(y)&&Array.isArray(R))){if(!r.returnObjects&&!this.options.returnObjects){this.options.returnedObjectHandler||this.logger.warn("accessing an object - but returnObjects options is not enabled!");let C=this.options.returnedObjectHandler?this.options.returnedObjectHandler(b,R,{...r,ns:u}):`key '${o} (${this.language})' returned an object instead of string.`;return i?(d.res=C,d.usedParams=this.getUsedParamsDetails(r),d):C}if(s){let C=Array.isArray(R),N=C?[]:{},Se=C?T:b;for(let E in R)if(Object.prototype.hasOwnProperty.call(R,E)){let v=`${Se}${s}${E}`;A&&!p?N[E]=this.translate(v,{...r,defaultValue:oe(M)?M[E]:void 0,joinArrays:!1,ns:u}):N[E]=this.translate(v,{...r,joinArrays:!1,ns:u}),N[E]===v&&(N[E]=R[E])}p=N}}else if(V&&g(y)&&Array.isArray(p))p=p.join(y),p&&(p=this.extendTranslation(p,e,r,n));else{let C=!1,N=!1;!this.isValidLookup(p)&&A&&(C=!0,p=M),this.isValidLookup(p)||(N=!0,p=o);let E=(r.missingKeyNoValueFallbackToKey||this.options.missingKeyNoValueFallbackToKey)&&N?void 0:p,v=A&&M!==p&&this.options.updateMissing;if(N||C||v){if(this.logger.log(v?"updateKey":"missingKey",c,l,o,v?M:p),s){let O=this.resolve(o,{...r,keySeparator:!1});O&&O.res&&this.logger.warn("Seems the loaded translations were in flat JSON format instead of nested. Either set keySeparator: false on init or make sure your translations are published in nested format.")}let K=[],_=this.languageUtils.getFallbackCodes(this.options.fallbackLng,r.lng||this.language);if(this.options.saveMissingTo==="fallback"&&_&&_[0])for(let O=0;O<_.length;O++)K.push(_[O]);else this.options.saveMissingTo==="all"?K=this.languageUtils.toResolveHierarchy(r.lng||this.language):K.push(r.lng||this.language);let Te=(O,F,H)=>{let Oe=A&&H!==p?H:E;this.options.missingKeyHandler?this.options.missingKeyHandler(O,l,F,Oe,v,r):this.backendConnector?.saveMissing&&this.backendConnector.saveMissing(O,l,F,Oe,v,r),this.emit("missingKey",O,l,F,p)};this.options.saveMissing&&(this.options.saveMissingPlurals&&L?K.forEach(O=>{let F=this.pluralResolver.getSuffixes(O,r);ye&&r[`defaultValue${this.options.pluralSeparator}zero`]&&F.indexOf(`${this.options.pluralSeparator}zero`)<0&&F.push(`${this.options.pluralSeparator}zero`),F.forEach(H=>{Te([O],o+H,r[`defaultValue${H}`]||M)})}):Te(K,o,M))}p=this.extendTranslation(p,e,r,d,n),N&&p===o&&this.options.appendNamespaceToMissingKey&&(p=`${l}${h}${o}`),(N||C)&&this.options.parseMissingKeyHandler&&(p=this.options.parseMissingKeyHandler(this.options.appendNamespaceToMissingKey?`${l}${h}${o}`:o,C?p:void 0,r))}return i?(d.res=p,d.usedParams=this.getUsedParamsDetails(r),d):p}extendTranslation(e,t,n,r,i){if(this.i18nFormat?.parse)e=this.i18nFormat.parse(e,{...this.options.interpolation.defaultVariables,...n},n.lng||this.language||r.usedLng,r.usedNS,r.usedKey,{resolved:r});else if(!n.skipInterpolation){n.interpolation&&this.interpolator.init({...n,interpolation:{...this.options.interpolation,...n.interpolation}});let u=g(e)&&(n?.interpolation?.skipOnVariables!==void 0?n.interpolation.skipOnVariables:this.options.interpolation.skipOnVariables),l;if(u){let c=e.match(this.interpolator.nestingRegexp);l=c&&c.length}let h=n.replace&&!g(n.replace)?n.replace:n;if(this.options.interpolation.defaultVariables&&(h={...this.options.interpolation.defaultVariables,...h}),e=this.interpolator.interpolate(e,h,n.lng||this.language||r.usedLng,n),u){let c=e.match(this.interpolator.nestingRegexp),f=c&&c.length;l<f&&(n.nest=!1)}!n.lng&&r&&r.res&&(n.lng=this.language||r.usedLng),n.nest!==!1&&(e=this.interpolator.nest(e,(...c)=>i?.[0]===c[0]&&!n.context?(this.logger.warn(`It seems you are nesting recursively key: ${c[0]} in key: ${t[0]}`),null):this.translate(...c,t),n)),n.interpolation&&this.interpolator.reset()}let s=n.postProcess||this.options.postProcess,o=g(s)?[s]:s;return e!=null&&o?.length&&n.applyPostProcessor!==!1&&(e=Ve.handle(o,e,t,this.options&&this.options.postProcessPassResolved?{i18nResolved:{...r,usedParams:this.getUsedParamsDetails(n)},...n}:n,this)),e}resolve(e,t={}){let n,r,i,s,o;return g(e)&&(e=[e]),e.forEach(u=>{if(this.isValidLookup(n))return;let l=this.extractFromKey(u,t),h=l.key;r=h;let c=l.namespaces;this.options.fallbackNS&&(c=c.concat(this.options.fallbackNS));let f=t.count!==void 0&&!g(t.count),d=f&&!t.ordinal&&t.count===0,p=t.context!==void 0&&(g(t.context)||typeof t.context=="number")&&t.context!=="",b=t.lngs?t.lngs:this.languageUtils.toResolveHierarchy(t.lng||this.language,t.fallbackLng);c.forEach(T=>{this.isValidLookup(n)||(o=T,!Ce[`${b[0]}-${T}`]&&this.utils?.hasLoadedNamespace&&!this.utils?.hasLoadedNamespace(o)&&(Ce[`${b[0]}-${T}`]=!0,this.logger.warn(`key "${r}" for languages "${b.join(", ")}" won't get resolved as namespace "${o}" was not yet loaded`,"This means something IS WRONG in your setup. You access the t function before i18next.init / i18next.loadNamespace / i18next.changeLanguage was done. Wait for the callback or Promise to resolve before accessing it!!!")),b.forEach(w=>{if(this.isValidLookup(n))return;s=w;let y=[h];if(this.i18nFormat?.addLookupKeys)this.i18nFormat.addLookupKeys(y,h,w,T,t);else{let L;f&&(L=this.pluralResolver.getSuffix(w,t.count,t));let A=`${this.options.pluralSeparator}zero`,B=`${this.options.pluralSeparator}ordinal${this.options.pluralSeparator}`;if(f&&(t.ordinal&&L.indexOf(B)===0&&y.push(h+L.replace(B,this.options.pluralSeparator)),y.push(h+L),d&&y.push(h+A)),p){let k=`${h}${this.options.contextSeparator||"_"}${t.context}`;y.push(k),f&&(t.ordinal&&L.indexOf(B)===0&&y.push(k+L.replace(B,this.options.pluralSeparator)),y.push(k+L),d&&y.push(k+A))}}let V;for(;V=y.pop();)this.isValidLookup(n)||(i=V,n=this.getResource(w,T,V,t))}))})}),{res:n,usedKey:r,exactUsedKey:i,usedLng:s,usedNS:o}}isValidLookup(e){return e!==void 0&&!(!this.options.returnNull&&e===null)&&!(!this.options.returnEmptyString&&e==="")}getResource(e,t,n,r={}){return this.i18nFormat?.getResource?this.i18nFormat.getResource(e,t,n,r):this.resourceStore.getResource(e,t,n,r)}getUsedParamsDetails(e={}){let t=["defaultValue","ordinal","context","replace","lng","lngs","fallbackLng","ns","keySeparator","nsSeparator","returnObjects","returnDetails","joinArrays","postProcess","interpolation"],n=e.replace&&!g(e.replace),r=n?e.replace:e;if(n&&typeof e.count<"u"&&(r.count=e.count),this.options.interpolation.defaultVariables&&(r={...this.options.interpolation.defaultVariables,...r}),!n){r={...r};for(let i of t)delete r[i]}return r}static hasDefaultValue(e){let t="defaultValue";for(let n in e)if(Object.prototype.hasOwnProperty.call(e,n)&&t===n.substring(0,t.length)&&e[n]!==void 0)return!0;return!1}},ee=class{constructor(e){this.options=e,this.supportedLngs=this.options.supportedLngs||!1,this.logger=I.create("languageUtils")}getScriptPartFromCode(e){if(e=z(e),!e||e.indexOf("-")<0)return null;let t=e.split("-");return t.length===2||(t.pop(),t[t.length-1].toLowerCase()==="x")?null:this.formatLanguageCode(t.join("-"))}getLanguagePartFromCode(e){if(e=z(e),!e||e.indexOf("-")<0)return e;let t=e.split("-");return this.formatLanguageCode(t[0])}formatLanguageCode(e){if(g(e)&&e.indexOf("-")>-1){let t;try{t=Intl.getCanonicalLocales(e)[0]}catch{}return t&&this.options.lowerCaseLng&&(t=t.toLowerCase()),t||(this.options.lowerCaseLng?e.toLowerCase():e)}return this.options.cleanCode||this.options.lowerCaseLng?e.toLowerCase():e}isSupportedCode(e){return(this.options.load==="languageOnly"||this.options.nonExplicitSupportedLngs)&&(e=this.getLanguagePartFromCode(e)),!this.supportedLngs||!this.supportedLngs.length||this.supportedLngs.indexOf(e)>-1}getBestMatchFromCodes(e){if(!e)return null;let t;return e.forEach(n=>{if(t)return;let r=this.formatLanguageCode(n);(!this.options.supportedLngs||this.isSupportedCode(r))&&(t=r)}),!t&&this.options.supportedLngs&&e.forEach(n=>{if(t)return;let r=this.getScriptPartFromCode(n);if(this.isSupportedCode(r))return t=r;let i=this.getLanguagePartFromCode(n);if(this.isSupportedCode(i))return t=i;t=this.options.supportedLngs.find(s=>{if(s===i)return s;if(!(s.indexOf("-")<0&&i.indexOf("-")<0)&&(s.indexOf("-")>0&&i.indexOf("-")<0&&s.substring(0,s.indexOf("-"))===i||s.indexOf(i)===0&&i.length>1))return s})}),t||(t=this.getFallbackCodes(this.options.fallbackLng)[0]),t}getFallbackCodes(e,t){if(!e)return[];if(typeof e=="function"&&(e=e(t)),g(e)&&(e=[e]),Array.isArray(e))return e;if(!t)return e.default||[];let n=e[t];return n||(n=e[this.getScriptPartFromCode(t)]),n||(n=e[this.formatLanguageCode(t)]),n||(n=e[this.getLanguagePartFromCode(t)]),n||(n=e.default),n||[]}toResolveHierarchy(e,t){let n=this.getFallbackCodes((t===!1?[]:t)||this.options.fallbackLng||[],e),r=[],i=s=>{s&&(this.isSupportedCode(s)?r.push(s):this.logger.warn(`rejecting language code not found in supportedLngs: ${s}`))};return g(e)&&(e.indexOf("-")>-1||e.indexOf("_")>-1)?(this.options.load!=="languageOnly"&&i(this.formatLanguageCode(e)),this.options.load!=="languageOnly"&&this.options.load!=="currentOnly"&&i(this.getScriptPartFromCode(e)),this.options.load!=="currentOnly"&&i(this.getLanguagePartFromCode(e))):g(e)&&i(this.formatLanguageCode(e)),n.forEach(s=>{r.indexOf(s)<0&&i(this.formatLanguageCode(s))}),r}},Ee={zero:0,one:1,two:2,few:3,many:4,other:5},Ie={select:a=>a===1?"one":"other",resolvedOptions:()=>({pluralCategories:["one","other"]})},pe=class{constructor(e,t={}){this.languageUtils=e,this.options=t,this.logger=I.create("pluralResolver"),this.pluralRulesCache={}}clearCache(){this.pluralRulesCache={}}getRule(e,t={}){let n=z(e==="dev"?"en":e),r=t.ordinal?"ordinal":"cardinal",i=JSON.stringify({cleanedCode:n,type:r});if(i in this.pluralRulesCache)return this.pluralRulesCache[i];let s;try{s=new Intl.PluralRules(n,{type:r})}catch{if(!Intl)return this.logger.error("No Intl support, please use an Intl polyfill!"),Ie;if(!e.match(/-|_/))return Ie;let u=this.languageUtils.getLanguagePartFromCode(e);s=this.getRule(u,t)}return this.pluralRulesCache[i]=s,s}needsPlural(e,t={}){let n=this.getRule(e,t);return n||(n=this.getRule("dev",t)),n?.resolvedOptions().pluralCategories.length>1}getPluralFormsOfKey(e,t,n={}){return this.getSuffixes(e,n).map(r=>`${t}${r}`)}getSuffixes(e,t={}){let n=this.getRule(e,t);return n||(n=this.getRule("dev",t)),n?n.resolvedOptions().pluralCategories.sort((r,i)=>Ee[r]-Ee[i]).map(r=>`${this.options.prepend}${t.ordinal?`ordinal${this.options.prepend}`:""}${r}`):[]}getSuffix(e,t,n={}){let r=this.getRule(e,n);return r?`${this.options.prepend}${n.ordinal?`ordinal${this.options.prepend}`:""}${r.select(t)}`:(this.logger.warn(`no plural rule found for: ${e}`),this.getSuffix("dev",t,n))}},ve=(a,e,t,n=".",r=!0)=>{let i=tt(a,e,t);return!i&&r&&g(t)&&(i=he(a,t,n),i===void 0&&(i=he(e,t,n))),i},ue=a=>a.replace(/\$/g,"$$$$"),te=class{constructor(e={}){this.logger=I.create("interpolator"),this.options=e,this.format=e?.interpolation?.format||(t=>t),this.init(e)}init(e={}){e.interpolation||(e.interpolation={escapeValue:!0});let{escape:t,escapeValue:n,useRawValueToEscape:r,prefix:i,prefixEscaped:s,suffix:o,suffixEscaped:u,formatSeparator:l,unescapeSuffix:h,unescapePrefix:c,nestingPrefix:f,nestingPrefixEscaped:d,nestingSuffix:p,nestingSuffixEscaped:b,nestingOptionsSeparator:T,maxReplaces:w,alwaysFormat:y}=e.interpolation;this.escape=t!==void 0?t:nt,this.escapeValue=n!==void 0?n:!0,this.useRawValueToEscape=r!==void 0?r:!1,this.prefix=i?j(i):s||"{{",this.suffix=o?j(o):u||"}}",this.formatSeparator=l||",",this.unescapePrefix=h?"":c||"-",this.unescapeSuffix=this.unescapePrefix?"":h||"",this.nestingPrefix=f?j(f):d||j("$t("),this.nestingSuffix=p?j(p):b||j(")"),this.nestingOptionsSeparator=T||",",this.maxReplaces=w||1e3,this.alwaysFormat=y!==void 0?y:!1,this.resetRegExp()}reset(){this.options&&this.init(this.options)}resetRegExp(){let e=(t,n)=>t?.source===n?(t.lastIndex=0,t):new RegExp(n,"g");this.regexp=e(this.regexp,`${this.prefix}(.+?)${this.suffix}`),this.regexpUnescape=e(this.regexpUnescape,`${this.prefix}${this.unescapePrefix}(.+?)${this.unescapeSuffix}${this.suffix}`),this.nestingRegexp=e(this.nestingRegexp,`${this.nestingPrefix}((?:[^()"']+|"[^"]*"|'[^']*'|\\((?:[^()]|"[^"]*"|'[^']*')*\\))*?)${this.nestingSuffix}`)}interpolate(e,t,n,r){let i,s,o,u=this.options&&this.options.interpolation&&this.options.interpolation.defaultVariables||{},l=d=>{if(d.indexOf(this.formatSeparator)<0){let w=ve(t,u,d,this.options.keySeparator,this.options.ignoreJSONStructure);return this.alwaysFormat?this.format(w,void 0,n,{...r,...t,interpolationkey:d}):w}let p=d.split(this.formatSeparator),b=p.shift().trim(),T=p.join(this.formatSeparator).trim();return this.format(ve(t,u,b,this.options.keySeparator,this.options.ignoreJSONStructure),T,n,{...r,...t,interpolationkey:b})};this.resetRegExp();let h=r?.missingInterpolationHandler||this.options.missingInterpolationHandler,c=r?.interpolation?.skipOnVariables!==void 0?r.interpolation.skipOnVariables:this.options.interpolation.skipOnVariables;return[{regex:this.regexpUnescape,safeValue:d=>ue(d)},{regex:this.regexp,safeValue:d=>this.escapeValue?ue(this.escape(d)):ue(d)}].forEach(d=>{for(o=0;i=d.regex.exec(e);){let p=i[1].trim();if(s=l(p),s===void 0)if(typeof h=="function"){let T=h(e,i,r);s=g(T)?T:""}else if(r&&Object.prototype.hasOwnProperty.call(r,p))s="";else if(c){s=i[0];continue}else this.logger.warn(`missed to pass in variable ${p} for interpolating ${e}`),s="";else!g(s)&&!this.useRawValueToEscape&&(s=Le(s));let b=d.safeValue(s);if(e=e.replace(i[0],b),c?(d.regex.lastIndex+=s.length,d.regex.lastIndex-=i[0].length):d.regex.lastIndex=0,o++,o>=this.maxReplaces)break}}),e}nest(e,t,n={}){let r,i,s,o=(u,l)=>{let h=this.nestingOptionsSeparator;if(u.indexOf(h)<0)return u;let c=u.split(new RegExp(`${h}[ ]*{`)),f=`{${c[1]}`;u=c[0],f=this.interpolate(f,s);let d=f.match(/'/g),p=f.match(/"/g);((d?.length??0)%2===0&&!p||p.length%2!==0)&&(f=f.replace(/'/g,'"'));try{s=JSON.parse(f),l&&(s={...l,...s})}catch(b){return this.logger.warn(`failed parsing options string in nesting for key ${u}`,b),`${u}${h}${f}`}return s.defaultValue&&s.defaultValue.indexOf(this.prefix)>-1&&delete s.defaultValue,u};for(;r=this.nestingRegexp.exec(e);){let u=[];s={...n},s=s.replace&&!g(s.replace)?s.replace:s,s.applyPostProcessor=!1,delete s.defaultValue;let l=/{.*}/.test(r[1])?r[1].lastIndexOf("}")+1:r[1].indexOf(this.formatSeparator);if(l!==-1&&(u=r[1].slice(l).split(this.formatSeparator).map(h=>h.trim()).filter(Boolean),r[1]=r[1].slice(0,l)),i=t(o.call(this,r[1].trim(),s),s),i&&r[0]===e&&!g(i))return i;g(i)||(i=Le(i)),i||(this.logger.warn(`missed to resolve ${r[1]} for nesting ${e}`),i=""),u.length&&(i=u.reduce((h,c)=>this.format(h,c,n.lng,{...n,interpolationkey:r[1].trim()}),i.trim())),e=e.replace(r[0],i),this.regexp.lastIndex=0}return e}},lt=a=>{let e=a.toLowerCase().trim(),t={};if(a.indexOf("(")>-1){let n=a.split("(");e=n[0].toLowerCase().trim();let r=n[1].substring(0,n[1].length-1);e==="currency"&&r.indexOf(":")<0?t.currency||(t.currency=r.trim()):e==="relativetime"&&r.indexOf(":")<0?t.range||(t.range=r.trim()):r.split(";").forEach(s=>{if(s){let[o,...u]=s.split(":"),l=u.join(":").trim().replace(/^'+|'+$/g,""),h=o.trim();t[h]||(t[h]=l),l==="false"&&(t[h]=!1),l==="true"&&(t[h]=!0),isNaN(l)||(t[h]=parseInt(l,10))}})}return{formatName:e,formatOptions:t}},Ae=a=>{let e={};return(t,n,r)=>{let i=r;r&&r.interpolationkey&&r.formatParams&&r.formatParams[r.interpolationkey]&&r[r.interpolationkey]&&(i={...i,[r.interpolationkey]:void 0});let s=n+JSON.stringify(i),o=e[s];return o||(o=a(z(n),r),e[s]=o),o(t)}},ct=a=>(e,t,n)=>a(z(t),n)(e),ge=class{constructor(e={}){this.logger=I.create("formatter"),this.options=e,this.init(e)}init(e,t={interpolation:{}}){this.formatSeparator=t.interpolation.formatSeparator||",";let n=t.cacheInBuiltFormats?Ae:ct;this.formats={number:n((r,i)=>{let s=new Intl.NumberFormat(r,{...i});return o=>s.format(o)}),currency:n((r,i)=>{let s=new Intl.NumberFormat(r,{...i,style:"currency"});return o=>s.format(o)}),datetime:n((r,i)=>{let s=new Intl.DateTimeFormat(r,{...i});return o=>s.format(o)}),relativetime:n((r,i)=>{let s=new Intl.RelativeTimeFormat(r,{...i});return o=>s.format(o,i.range||"day")}),list:n((r,i)=>{let s=new Intl.ListFormat(r,{...i});return o=>s.format(o)})}}add(e,t){this.formats[e.toLowerCase().trim()]=t}addCached(e,t){this.formats[e.toLowerCase().trim()]=Ae(t)}format(e,t,n,r={}){let i=t.split(this.formatSeparator);if(i.length>1&&i[0].indexOf("(")>1&&i[0].indexOf(")")<0&&i.find(o=>o.indexOf(")")>-1)){let o=i.findIndex(u=>u.indexOf(")")>-1);i[0]=[i[0],...i.splice(1,o)].join(this.formatSeparator)}return i.reduce((o,u)=>{let{formatName:l,formatOptions:h}=lt(u);if(this.formats[l]){let c=o;try{let f=r?.formatParams?.[r.interpolationkey]||{},d=f.locale||f.lng||r.locale||r.lng||n;c=this.formats[l](o,d,{...h,...r,...f})}catch(f){this.logger.warn(f)}return c}else this.logger.warn(`there was no format function for ${l}`);return o},e)}},ht=(a,e)=>{a.pending[e]!==void 0&&(delete a.pending[e],a.pendingCount--)},me=class extends D{constructor(e,t,n,r={}){super(),this.backend=e,this.store=t,this.services=n,this.languageUtils=n.languageUtils,this.options=r,this.logger=I.create("backendConnector"),this.waitingReads=[],this.maxParallelReads=r.maxParallelReads||10,this.readingCalls=0,this.maxRetries=r.maxRetries>=0?r.maxRetries:5,this.retryTimeout=r.retryTimeout>=1?r.retryTimeout:350,this.state={},this.queue=[],this.backend?.init?.(n,r.backend,r)}queueLoad(e,t,n,r){let i={},s={},o={},u={};return e.forEach(l=>{let h=!0;t.forEach(c=>{let f=`${l}|${c}`;!n.reload&&this.store.hasResourceBundle(l,c)?this.state[f]=2:this.state[f]<0||(this.state[f]===1?s[f]===void 0&&(s[f]=!0):(this.state[f]=1,h=!1,s[f]===void 0&&(s[f]=!0),i[f]===void 0&&(i[f]=!0),u[c]===void 0&&(u[c]=!0)))}),h||(o[l]=!0)}),(Object.keys(i).length||Object.keys(s).length)&&this.queue.push({pending:s,pendingCount:Object.keys(s).length,loaded:{},errors:[],callback:r}),{toLoad:Object.keys(i),pending:Object.keys(s),toLoadLanguages:Object.keys(o),toLoadNamespaces:Object.keys(u)}}loaded(e,t,n){let r=e.split("|"),i=r[0],s=r[1];t&&this.emit("failedLoading",i,s,t),!t&&n&&this.store.addResourceBundle(i,s,n,void 0,void 0,{skipCopy:!0}),this.state[e]=t?-1:2,t&&n&&(this.state[e]=0);let o={};this.queue.forEach(u=>{et(u.loaded,[i],s),ht(u,e),t&&u.errors.push(t),u.pendingCount===0&&!u.done&&(Object.keys(u.loaded).forEach(l=>{o[l]||(o[l]={});let h=u.loaded[l];h.length&&h.forEach(c=>{o[l][c]===void 0&&(o[l][c]=!0)})}),u.done=!0,u.errors.length?u.callback(u.errors):u.callback())}),this.emit("loaded",o),this.queue=this.queue.filter(u=>!u.done)}read(e,t,n,r=0,i=this.retryTimeout,s){if(!e.length)return s(null,{});if(this.readingCalls>=this.maxParallelReads){this.waitingReads.push({lng:e,ns:t,fcName:n,tried:r,wait:i,callback:s});return}this.readingCalls++;let o=(l,h)=>{if(this.readingCalls--,this.waitingReads.length>0){let c=this.waitingReads.shift();this.read(c.lng,c.ns,c.fcName,c.tried,c.wait,c.callback)}if(l&&h&&r<this.maxRetries){setTimeout(()=>{this.read.call(this,e,t,n,r+1,i*2,s)},i);return}s(l,h)},u=this.backend[n].bind(this.backend);if(u.length===2){try{let l=u(e,t);l&&typeof l.then=="function"?l.then(h=>o(null,h)).catch(o):o(null,l)}catch(l){o(l)}return}return u(e,t,o)}prepareLoading(e,t,n={},r){if(!this.backend)return this.logger.warn("No backend was added via i18next.use. Will not load resources."),r&&r();g(e)&&(e=this.languageUtils.toResolveHierarchy(e)),g(t)&&(t=[t]);let i=this.queueLoad(e,t,n,r);if(!i.toLoad.length)return i.pending.length||r(),null;i.toLoad.forEach(s=>{this.loadOne(s)})}load(e,t,n){this.prepareLoading(e,t,{},n)}reload(e,t,n){this.prepareLoading(e,t,{reload:!0},n)}loadOne(e,t=""){let n=e.split("|"),r=n[0],i=n[1];this.read(r,i,"read",void 0,void 0,(s,o)=>{s&&this.logger.warn(`${t}loading namespace ${i} for language ${r} failed`,s),!s&&o&&this.logger.log(`${t}loaded namespace ${i} for language ${r}`,o),this.loaded(e,s,o)})}saveMissing(e,t,n,r,i,s={},o=()=>{}){if(this.services?.utils?.hasLoadedNamespace&&!this.services?.utils?.hasLoadedNamespace(t)){this.logger.warn(`did not save key "${n}" as the namespace "${t}" was not yet loaded`,"This means something IS WRONG in your setup. You access the t function before i18next.init / i18next.loadNamespace / i18next.changeLanguage was done. Wait for the callback or Promise to resolve before accessing it!!!");return}if(!(n==null||n==="")){if(this.backend?.create){let u={...s,isUpdate:i},l=this.backend.create.bind(this.backend);if(l.length<6)try{let h;l.length===5?h=l(e,t,n,r,u):h=l(e,t,n,r),h&&typeof h.then=="function"?h.then(c=>o(null,c)).catch(o):o(null,h)}catch(h){o(h)}else l(e,t,n,r,o,u)}!e||!e[0]||this.store.addResource(e[0],t,n,r)}}},le=()=>({debug:!1,initAsync:!0,ns:["translation"],defaultNS:["translation"],fallbackLng:["dev"],fallbackNS:!1,supportedLngs:!1,nonExplicitSupportedLngs:!1,load:"all",preload:!1,simplifyPluralSuffix:!0,keySeparator:".",nsSeparator:":",pluralSeparator:"_",contextSeparator:"_",partialBundledLanguages:!1,saveMissing:!1,updateMissing:!1,saveMissingTo:"fallback",saveMissingPlurals:!0,missingKeyHandler:!1,missingInterpolationHandler:!1,postProcess:!1,postProcessPassResolved:!1,returnNull:!1,returnEmptyString:!0,returnObjects:!1,joinArrays:!1,returnedObjectHandler:!1,parseMissingKeyHandler:!1,appendNamespaceToMissingKey:!1,appendNamespaceToCIMode:!1,overloadTranslationOptionHandler:a=>{let e={};if(typeof a[1]=="object"&&(e=a[1]),g(a[1])&&(e.defaultValue=a[1]),g(a[2])&&(e.tDescription=a[2]),typeof a[2]=="object"||typeof a[3]=="object"){let t=a[3]||a[2];Object.keys(t).forEach(n=>{e[n]=t[n]})}return e},interpolation:{escapeValue:!0,format:a=>a,prefix:"{{",suffix:"}}",formatSeparator:",",unescapePrefix:"-",nestingPrefix:"$t(",nestingSuffix:")",nestingOptionsSeparator:",",maxReplaces:1e3,skipOnVariables:!0},cacheInBuiltFormats:!0}),Me=a=>(g(a.ns)&&(a.ns=[a.ns]),g(a.fallbackLng)&&(a.fallbackLng=[a.fallbackLng]),g(a.fallbackNS)&&(a.fallbackNS=[a.fallbackNS]),a.supportedLngs?.indexOf?.("cimode")<0&&(a.supportedLngs=a.supportedLngs.concat(["cimode"])),typeof a.initImmediate=="boolean"&&(a.initAsync=a.initImmediate),a),X=()=>{},ft=a=>{Object.getOwnPropertyNames(Object.getPrototypeOf(a)).forEach(t=>{typeof a[t]=="function"&&(a[t]=a[t].bind(a))})},xe=class a extends D{constructor(e={},t){if(super(),this.options=Me(e),this.services={},this.logger=I,this.modules={external:[]},ft(this),t&&!this.isInitialized&&!e.isClone){if(!this.options.initAsync)return this.init(e,t),this;setTimeout(()=>{this.init(e,t)},0)}}init(e={},t){this.isInitializing=!0,typeof e=="function"&&(t=e,e={}),e.defaultNS==null&&e.ns&&(g(e.ns)?e.defaultNS=e.ns:e.ns.indexOf("translation")<0&&(e.defaultNS=e.ns[0]));let n=le();this.options={...n,...this.options,...Me(e)},this.options.interpolation={...n.interpolation,...this.options.interpolation},e.keySeparator!==void 0&&(this.options.userDefinedKeySeparator=e.keySeparator),e.nsSeparator!==void 0&&(this.options.userDefinedNsSeparator=e.nsSeparator),typeof this.options.overloadTranslationOptionHandler!="function"&&(this.options.overloadTranslationOptionHandler=n.overloadTranslationOptionHandler),this.options.debug===!0&&typeof console<"u"&&console.warn("i18next is maintained with support from locize.com \u2014 consider powering your project with managed localization (AI, CDN, integrations): https://locize.com");let r=l=>l?typeof l=="function"?new l:l:null;if(!this.options.isClone){this.modules.logger?I.init(r(this.modules.logger),this.options):I.init(null,this.options);let l;this.modules.formatter?l=this.modules.formatter:l=ge;let h=new ee(this.options);this.store=new Y(this.options.resources,this.options);let c=this.services;c.logger=I,c.resourceStore=this.store,c.languageUtils=h,c.pluralResolver=new pe(h,{prepend:this.options.pluralSeparator,simplifyPluralSuffix:this.options.simplifyPluralSuffix}),this.options.interpolation.format&&this.options.interpolation.format!==n.interpolation.format&&this.logger.deprecate("init: you are still using the legacy format function, please use the new approach: https://www.i18next.com/translation-function/formatting"),l&&(!this.options.interpolation.format||this.options.interpolation.format===n.interpolation.format)&&(c.formatter=r(l),c.formatter.init&&c.formatter.init(c,this.options),this.options.interpolation.format=c.formatter.format.bind(c.formatter)),c.interpolator=new te(this.options),c.utils={hasLoadedNamespace:this.hasLoadedNamespace.bind(this)},c.backendConnector=new me(r(this.modules.backend),c.resourceStore,c,this.options),c.backendConnector.on("*",(d,...p)=>{this.emit(d,...p)}),this.modules.languageDetector&&(c.languageDetector=r(this.modules.languageDetector),c.languageDetector.init&&c.languageDetector.init(c,this.options.detection,this.options)),this.modules.i18nFormat&&(c.i18nFormat=r(this.modules.i18nFormat),c.i18nFormat.init&&c.i18nFormat.init(this)),this.translator=new Q(this.services,this.options),this.translator.on("*",(d,...p)=>{this.emit(d,...p)}),this.modules.external.forEach(d=>{d.init&&d.init(this)})}if(this.format=this.options.interpolation.format,t||(t=X),this.options.fallbackLng&&!this.services.languageDetector&&!this.options.lng){let l=this.services.languageUtils.getFallbackCodes(this.options.fallbackLng);l.length>0&&l[0]!=="dev"&&(this.options.lng=l[0])}!this.services.languageDetector&&!this.options.lng&&this.logger.warn("init: no languageDetector is used and no lng is defined"),["getResource","hasResourceBundle","getResourceBundle","getDataByLanguage"].forEach(l=>{this[l]=(...h)=>this.store[l](...h)}),["addResource","addResources","addResourceBundle","removeResourceBundle"].forEach(l=>{this[l]=(...h)=>(this.store[l](...h),this)});let o=q(),u=()=>{let l=(h,c)=>{this.isInitializing=!1,this.isInitialized&&!this.initializedStoreOnce&&this.logger.warn("init: i18next is already initialized. You should call init just once!"),this.isInitialized=!0,this.options.isClone||this.logger.log("initialized",this.options),this.emit("initialized",this.options),o.resolve(c),t(h,c)};if(this.languages&&!this.isInitialized)return l(null,this.t.bind(this));this.changeLanguage(this.options.lng,l)};return this.options.resources||!this.options.initAsync?u():setTimeout(u,0),o}loadResources(e,t=X){let n=t,r=g(e)?e:this.language;if(typeof e=="function"&&(n=e),!this.options.resources||this.options.partialBundledLanguages){if(r?.toLowerCase()==="cimode"&&(!this.options.preload||this.options.preload.length===0))return n();let i=[],s=o=>{if(!o||o==="cimode")return;this.services.languageUtils.toResolveHierarchy(o).forEach(l=>{l!=="cimode"&&i.indexOf(l)<0&&i.push(l)})};r?s(r):this.services.languageUtils.getFallbackCodes(this.options.fallbackLng).forEach(u=>s(u)),this.options.preload?.forEach?.(o=>s(o)),this.services.backendConnector.load(i,this.options.ns,o=>{!o&&!this.resolvedLanguage&&this.language&&this.setResolvedLanguage(this.language),n(o)})}else n(null)}reloadResources(e,t,n){let r=q();return typeof e=="function"&&(n=e,e=void 0),typeof t=="function"&&(n=t,t=void 0),e||(e=this.languages),t||(t=this.options.ns),n||(n=X),this.services.backendConnector.reload(e,t,i=>{r.resolve(),n(i)}),r}use(e){if(!e)throw new Error("You are passing an undefined module! Please check the object you are passing to i18next.use()");if(!e.type)throw new Error("You are passing a wrong module! Please check the object you are passing to i18next.use()");return e.type==="backend"&&(this.modules.backend=e),(e.type==="logger"||e.log&&e.warn&&e.error)&&(this.modules.logger=e),e.type==="languageDetector"&&(this.modules.languageDetector=e),e.type==="i18nFormat"&&(this.modules.i18nFormat=e),e.type==="postProcessor"&&Ve.addPostProcessor(e),e.type==="formatter"&&(this.modules.formatter=e),e.type==="3rdParty"&&this.modules.external.push(e),this}setResolvedLanguage(e){if(!(!e||!this.languages)&&!(["cimode","dev"].indexOf(e)>-1)){for(let t=0;t<this.languages.length;t++){let n=this.languages[t];if(!(["cimode","dev"].indexOf(n)>-1)&&this.store.hasLanguageSomeTranslations(n)){this.resolvedLanguage=n;break}}!this.resolvedLanguage&&this.languages.indexOf(e)<0&&this.store.hasLanguageSomeTranslations(e)&&(this.resolvedLanguage=e,this.languages.unshift(e))}}changeLanguage(e,t){this.isLanguageChangingTo=e;let n=q();this.emit("languageChanging",e);let r=o=>{this.language=o,this.languages=this.services.languageUtils.toResolveHierarchy(o),this.resolvedLanguage=void 0,this.setResolvedLanguage(o)},i=(o,u)=>{u?this.isLanguageChangingTo===e&&(r(u),this.translator.changeLanguage(u),this.isLanguageChangingTo=void 0,this.emit("languageChanged",u),this.logger.log("languageChanged",u)):this.isLanguageChangingTo=void 0,n.resolve((...l)=>this.t(...l)),t&&t(o,(...l)=>this.t(...l))},s=o=>{!e&&!o&&this.services.languageDetector&&(o=[]);let u=g(o)?o:o&&o[0],l=this.store.hasLanguageSomeTranslations(u)?u:this.services.languageUtils.getBestMatchFromCodes(g(o)?[o]:o);l&&(this.language||r(l),this.translator.language||this.translator.changeLanguage(l),this.services.languageDetector?.cacheUserLanguage?.(l)),this.loadResources(l,h=>{i(h,l)})};return!e&&this.services.languageDetector&&!this.services.languageDetector.async?s(this.services.languageDetector.detect()):!e&&this.services.languageDetector&&this.services.languageDetector.async?this.services.languageDetector.detect.length===0?this.services.languageDetector.detect().then(s):this.services.languageDetector.detect(s):s(e),n}getFixedT(e,t,n){let r=(i,s,...o)=>{let u;typeof s!="object"?u=this.options.overloadTranslationOptionHandler([i,s].concat(o)):u={...s},u.lng=u.lng||r.lng,u.lngs=u.lngs||r.lngs,u.ns=u.ns||r.ns,u.keyPrefix!==""&&(u.keyPrefix=u.keyPrefix||n||r.keyPrefix);let l=this.options.keySeparator||".",h;return u.keyPrefix&&Array.isArray(i)?h=i.map(c=>(typeof c=="function"&&(c=de(c,{...this.options,...s})),`${u.keyPrefix}${l}${c}`)):(typeof i=="function"&&(i=de(i,{...this.options,...s})),h=u.keyPrefix?`${u.keyPrefix}${l}${i}`:i),this.t(h,u)};return g(e)?r.lng=e:r.lngs=e,r.ns=t,r.keyPrefix=n,r}t(...e){return this.translator?.translate(...e)}exists(...e){return this.translator?.exists(...e)}setDefaultNamespace(e){this.options.defaultNS=e}hasLoadedNamespace(e,t={}){if(!this.isInitialized)return this.logger.warn("hasLoadedNamespace: i18next was not initialized",this.languages),!1;if(!this.languages||!this.languages.length)return this.logger.warn("hasLoadedNamespace: i18n.languages were undefined or empty",this.languages),!1;let n=t.lng||this.resolvedLanguage||this.languages[0],r=this.options?this.options.fallbackLng:!1,i=this.languages[this.languages.length-1];if(n.toLowerCase()==="cimode")return!0;let s=(o,u)=>{let l=this.services.backendConnector.state[`${o}|${u}`];return l===-1||l===0||l===2};if(t.precheck){let o=t.precheck(this,s);if(o!==void 0)return o}return!!(this.hasResourceBundle(n,e)||!this.services.backendConnector.backend||this.options.resources&&!this.options.partialBundledLanguages||s(n,e)&&(!r||s(i,e)))}loadNamespaces(e,t){let n=q();return this.options.ns?(g(e)&&(e=[e]),e.forEach(r=>{this.options.ns.indexOf(r)<0&&this.options.ns.push(r)}),this.loadResources(r=>{n.resolve(),t&&t(r)}),n):(t&&t(),Promise.resolve())}loadLanguages(e,t){let n=q();g(e)&&(e=[e]);let r=this.options.preload||[],i=e.filter(s=>r.indexOf(s)<0&&this.services.languageUtils.isSupportedCode(s));return i.length?(this.options.preload=r.concat(i),this.loadResources(s=>{n.resolve(),t&&t(s)}),n):(t&&t(),Promise.resolve())}dir(e){if(e||(e=this.resolvedLanguage||(this.languages?.length>0?this.languages[0]:this.language)),!e)return"rtl";try{let r=new Intl.Locale(e);if(r&&r.getTextInfo){let i=r.getTextInfo();if(i&&i.direction)return i.direction}}catch{}let t=["ar","shu","sqr","ssh","xaa","yhd","yud","aao","abh","abv","acm","acq","acw","acx","acy","adf","ads","aeb","aec","afb","ajp","apc","apd","arb","arq","ars","ary","arz","auz","avl","ayh","ayl","ayn","ayp","bbz","pga","he","iw","ps","pbt","pbu","pst","prp","prd","ug","ur","ydd","yds","yih","ji","yi","hbo","men","xmn","fa","jpr","peo","pes","prs","dv","sam","ckb"],n=this.services?.languageUtils||new ee(le());return e.toLowerCase().indexOf("-latn")>1?"ltr":t.indexOf(n.getLanguagePartFromCode(e))>-1||e.toLowerCase().indexOf("-arab")>1?"rtl":"ltr"}static createInstance(e={},t){let n=new a(e,t);return n.createInstance=a.createInstance,n}cloneInstance(e={},t=X){let n=e.forkResourceStore;n&&delete e.forkResourceStore;let r={...this.options,...e,isClone:!0},i=new a(r);if((e.debug!==void 0||e.prefix!==void 0)&&(i.logger=i.logger.clone(e)),["store","services","language"].forEach(o=>{i[o]=this[o]}),i.services={...this.services},i.services.utils={hasLoadedNamespace:i.hasLoadedNamespace.bind(i)},n){let o=Object.keys(this.store.data).reduce((u,l)=>(u[l]={...this.store.data[l]},u[l]=Object.keys(u[l]).reduce((h,c)=>(h[c]={...u[l][c]},h),u[l]),u),{});i.store=new Y(o,r),i.services.resourceStore=i.store}if(e.interpolation){let u={...le().interpolation,...this.options.interpolation,...e.interpolation},l={...r,interpolation:u};i.services.interpolator=new te(l)}return i.translator=new Q(i.services,r),i.translator.on("*",(o,...u)=>{i.emit(o,...u)}),i.init(r,t),i.translator.options=r,i.translator.backendConnector.services.utils={hasLoadedNamespace:i.hasLoadedNamespace.bind(i)},i}toJSON(){return{options:this.options,store:this.store,language:this.language,languages:this.languages,resolvedLanguage:this.resolvedLanguage}}},S=xe.createInstance(),St=S.createInstance,Tt=S.dir,Ot=S.init,Lt=S.loadResources,wt=S.reloadResources,Nt=S.use,Rt=S.changeLanguage,Ct=S.getFixedT,Et=S.t,It=S.exists,vt=S.setDefaultNamespace,At=S.hasLoadedNamespace,Mt=S.loadNamespaces,Pt=S.loadLanguages;var $e={Transformer:{domainMustBeGreaterThanZero:"Domain {{domain, number}} must be greater than 0",tweakMustBeGreaterThanOrEqualToZero:"Tweak {{tweak, number}} must be greater than or equal to 0",valueMustBeGreaterThanOrEqualToZero:"Value {{value, number}} must be greater than or equal to 0",valueMustBeLessThan:"Value {{value, number}} must be less than {{domain, number}}",minimumValueMustBeGreaterThanOrEqualToZero:"Minimum value {{minimumValue, number}} must be greater than or equal to 0",maximumValueMustBeLessThan:"Maximum value {{maximumValue, number}} must be less than {{domain, number}}"},RegExpValidator:{stringDoesNotMatchPattern:"String {{s}} does not match pattern"},CharacterSetValidator:{firstZeroFirstCharacter:"Character set must support zero as first character",allNumericAllNumericCharacters:"Character set must support all numeric characters in sequence",stringMustNotBeAllNumeric:"String must not be all numeric",lengthMustBeGreaterThanOrEqualTo:"Length {{length, number}} must be greater than or equal to {{minimumLength, number}}",lengthMustBeLessThanOrEqualTo:"Length {{length, number}} must be less than or equal to {{maximumLength, number}}",lengthMustBeEqualTo:"Length {{length, number}} must be equal to {{exactLength, number}}",lengthOfComponentMustBeGreaterThanOrEqualTo:"Length {{length, number}} of {{component}} must be greater than or equal to {{minimumLength, number}}",lengthOfComponentMustBeLessThanOrEqualTo:"Length {{length, number}} of {{component}} must be less than or equal to {{maximumLength, number}}",lengthOfComponentMustBeEqualTo:"Length {{length, number}} of {{component}} must be equal to {{exactLength, number}}",invalidCharacterAtPosition:"Invalid character '{{c}}' at position {{position, number}}",invalidCharacterAtPositionOfComponent:"Invalid character '{{c}}' at position {{position, number}} of {{component}}",exclusionNotSupported:"Exclusion value of {{exclusion, number}} is not supported",endSequenceValueMustBeLessThanOrEqualTo:"End sequence value (start sequence value + count - 1) must be less than {{domain, number}}"},RecordValidator:{typeNameKeyNotFound:'{{typeName}} "{{key}}" not found'}};var Be={Transformer:{domainMustBeGreaterThanZero:"Le domaine {{domain, number}} doit \xEAtre sup\xE9rieur \xE0 0",tweakMustBeGreaterThanOrEqualToZero:"Le r\xE9glage {{tweak, number}} doit \xEAtre sup\xE9rieur ou \xE9gal \xE0 0",valueMustBeGreaterThanOrEqualToZero:"La valeur {{value, number}} doit \xEAtre sup\xE9rieure ou \xE9gale \xE0 0",valueMustBeLessThan:"La valeur {{value, number}} doit \xEAtre inf\xE9rieure \xE0 {{domain, number}}",minimumValueMustBeGreaterThanOrEqualToZero:"La valeur minimale {{minimumValue, number}} doit \xEAtre sup\xE9rieure ou \xE9gale \xE0 0",maximumValueMustBeLessThan:"La valeur maximale {{maximumValue, number}} doit \xEAtre inf\xE9rieure \xE0 {{domain, number}}"},RegExpValidator:{stringDoesNotMatchPattern:"La cha\xEEne {{s}} ne correspond pas au mod\xE8le"},CharacterSetValidator:{firstZeroFirstCharacter:"Le jeu de caract\xE8res doit prendre en charge z\xE9ro comme premier caract\xE8re",allNumericAllNumericCharacters:"Le jeu de caract\xE8res doit prendre en charge tous les caract\xE8res num\xE9riques en s\xE9quence",stringMustNotBeAllNumeric:"La cha\xEEne ne doit pas \xEAtre enti\xE8rement num\xE9rique",lengthMustBeGreaterThanOrEqualTo:"La longueur {{length, number}} doit \xEAtre sup\xE9rieure ou \xE9gale \xE0 {{minimumLength, number}}",lengthMustBeLessThanOrEqualTo:"La longueur {{length, number}} doit \xEAtre inf\xE9rieure ou \xE9gale \xE0 {{maximumLength, number}}",lengthMustBeEqualTo:"La longueur {{length, number}} doit \xEAtre \xE9gale \xE0 {{exactLength, number}}",lengthOfComponentMustBeGreaterThanOrEqualTo:"La longueur {{length, number}} de {{component}} doit \xEAtre sup\xE9rieure ou \xE9gale \xE0 {{minimumLength, number}}",lengthOfComponentMustBeLessThanOrEqualTo:"La longueur {{length, number}} de {{component}} doit \xEAtre inf\xE9rieure ou \xE9gale \xE0 {{maximumLength, number}}",lengthOfComponentMustBeEqualTo:"La longueur {{length, number}} de {{component}} doit \xEAtre \xE9gale \xE0 {{exactLength, number}}",invalidCharacterAtPosition:"Caract\xE8re non valide '{{c}}' \xE0 la position {{position, number}}",invalidCharacterAtPositionOfComponent:"Caract\xE8re non valide '{{c}}' \xE0 la position {{position, number}} de {{component}}",exclusionNotSupported:"La valeur d'exclusion de {{exclusion, number}} n'est pas prise en charge",endSequenceValueMustBeLessThanOrEqualTo:"La valeur de la s\xE9quence de fin (valeur de la s\xE9quence de d\xE9but + nombre - 1) doit \xEAtre inf\xE9rieure \xE0 {{domain, number}}"},RecordValidator:{typeNameKeyNotFound:"{{typeName}} \xAB\xA0{{key}}\xA0\xBB introuvable"}};var ke="aidct_utility",je={en:{aidct_utility:$e},fr:{aidct_utility:Be}},m=S.createInstance();async function dt(a,e=!1){return(0,re.i18nInit)(m,a,e,ke,je,re.i18nCoreInit)}var Z=class{#e;#t;#n;#i;#r;#s;constructor(e,t){this.#e=BigInt(e),this.#t=this.#e+BigInt(t),this.#n=t,t>=0?(this.#i=1n,this.#r=this.#e,this.#s=this.#t-1n):(this.#i=-1n,this.#r=this.#t+1n,this.#s=this.#e)}get startValue(){return this.#e}get endValue(){return this.#t}get count(){return this.#n}get minimumValue(){return this.#r}get maximumValue(){return this.#s}*[Symbol.iterator](){for(let e=this.#e;e!==this.#t;e+=this.#i)yield e}};function U(a,e){return{*[Symbol.iterator](){let t=0;for(let n of a)yield e(n,t++)}}}var P=class a{static#e=new Map;#t;constructor(e){if(this.#t=BigInt(e),this.#t<=0n)throw new RangeError(m.t("Transformer.domainMustBeGreaterThanZero",{domain:e}))}static get(e,t){let n=BigInt(e),r=a.#e.get(n);r===void 0&&(r=new Map,a.#e.set(n,r));let i=t===void 0?void 0:BigInt(t),s=r.get(i);return s===void 0&&(s=i===void 0?new ne(n):new ie(n,i),r.set(i,s)),s}get domain(){return this.#t}#n(e){if(e<0n)throw new RangeError(m.t("Transformer.valueMustBeGreaterThanOrEqualToZero",{value:e}));if(e>=this.domain)throw new RangeError(m.t("Transformer.valueMustBeLessThan",{value:e,domain:this.domain}))}#i(e){let t=BigInt(e);return this.#n(t),this.doForward(t)}#r(e,t,n){return e(this.#i(t),n)}forward(e,t){let n;if(typeof e!="object")n=t===void 0?this.#i(e):this.#r(t,e);else if(e instanceof Z){if(e.minimumValue<0n)throw new RangeError(m.t("Transformer.minimumValueMustBeGreaterThanOrEqualToZero",{minimumValue:e.minimumValue}));if(e.maximumValue>=this.domain)throw new RangeError(m.t("Transformer.maximumValueMustBeLessThan",{maximumValue:e.maximumValue,domain:this.domain}));n=t===void 0?U(e,r=>this.doForward(r)):U(e,(r,i)=>t(this.doForward(r),i))}else n=t===void 0?U(e,r=>this.#i(r)):U(e,(r,i)=>this.#r(t,r,i));return n}reverse(e){let t=BigInt(e);return this.#n(t),this.doReverse(t)}},ne=class extends P{doForward(e){return e}doReverse(e){return e}},ie=class a extends P{static#e=new Uint8Array([1,2,4,8,16,32,64,128]);static#t=new Uint8Array([254,253,251,247,239,223,191,127]);#n;#i;#r;#s;#a;constructor(e,t){if(super(e),t<0n)throw new RangeError(m.t("Transformer.tweakMustBeGreaterThanOrEqualToZero",{tweak:t}));let n=0;for(let o=this.domain-1n;o!==0n;o>>=8n)n++;this.#n=n;let r=[],i=[],s=[];for(let o=this.domain*BigInt(t)*603868999n;o!==0n;o>>=8n){r.unshift(Number(BigInt.asUintN(8,o)));let u=Number(BigInt.asUintN(3,o));i.push(a.#e[u]),s.push(a.#t[u])}if(n===1){let o=a.#e.filter(u=>u<e).reduce((u,l)=>u|l,0);this.#i=new Uint8Array([r.reduce((u,l)=>u^l,0)&o]),this.#r=new Uint8Array([a.#e[0]]),this.#s=new Uint8Array([a.#t[0]]),this.#a=1}else this.#i=new Uint8Array(r),this.#r=new Uint8Array(i),this.#s=new Uint8Array(s),this.#a=r.length}#o(e){let t=new Uint8Array(this.#n);for(let n=this.#n-1,r=e;n>=0&&r!==0n;n--,r>>=8n)t[n]=Number(BigInt.asUintN(8,r));return t}static#u(e){return e.reduce((t,n)=>t<<8n|BigInt(n),0n)}#l(e,t,n){let r=e.length,i=new Uint8Array(r),s=[],o=[],u=this.#r[t];e.forEach((c,f)=>{let d=c&u;i[f]=d,(d!==0?s:o).push(f)});let l=this.#s[t],h=new Uint8Array(r);return[...s,...o].forEach((c,f)=>{n?h[f]=e[c]&l|i[f]:h[c]=e[f]&l|i[c]}),h}#c(e,t,n){let r=this.#i[t];return e.map(i=>{let s=i^r;return r=n?s:i,s})}doForward(e){let t=this.#o(e),n;do{for(let r=0;r<this.#a;r++)t=this.#c(this.#l(t,r,!0),r,!0);n=a.#u(t)}while(n>=this.domain);return n}doReverse(e){let t=this.#o(e),n;do{for(let r=this.#a-1;r>=0;r--)t=this.#l(this.#c(t,r,!1),r,!1);n=a.#u(t)}while(n>=this.domain);return n}};var J=class{#e;constructor(e){this.#e=e}get regExp(){return this.#e}createErrorMessage(e){return m.t("RegExpValidator.stringDoesNotMatchPattern",{s:e})}validate(e){if(!this.#e.test(e))throw new RangeError(this.createErrorMessage(e))}};var be=class{#e;#t;constructor(e,t){this.#e=e,this.#t=t}get typeName(){return this.#e}get record(){return this.#t}validate(e){if(!(e in this.record))throw new RangeError(m.t("RecordValidator.typeNameKeyNotFound",{typeName:this.typeName,key:e}))}};var x={None:0,FirstZero:1,AllNumeric:2};var se=class a{static#e=new class extends J{createErrorMessage(e){return m.t("CharacterSetValidator.stringMustNotBeAllNumeric")}}(/\D/u);#t;#n;#i;constructor(e,...t){this.#t=e;let n=new Map;e.forEach((r,i)=>{n.set(r,i)}),this.#n=n,this.#i=t}get characterSet(){return this.#t}get characterSetSize(){return this.#t.length}get exclusionSupport(){return this.#i}character(e){return this.#t[e]}characterIndex(e){return this.#n.get(e)}characterIndexes(e){return Array.from(e).map(t=>this.#n.get(t))}static#r(e){return typeof e=="function"?e():e}validateExclusion(e){if(e!==x.None&&!this.#i.includes(e))throw new RangeError(m.t("CharacterSetValidator.exclusionNotSupported",{exclusion:e}))}validate(e,t){let n=e.length,r=t?.minimumLength,i=t?.maximumLength;if(r!==void 0&&n<r){let o;throw i!==void 0&&i===r?o=m.t(t?.component===void 0?"CharacterSetValidator.lengthMustBeEqualTo":"CharacterSetValidator.lengthOfComponentMustBeEqualTo",{component:a.#r(t?.component),length:n,exactLength:r}):o=m.t(t?.component===void 0?"CharacterSetValidator.lengthMustBeGreaterThanOrEqualTo":"CharacterSetValidator.lengthOfComponentMustBeGreaterThanOrEqualTo",{component:a.#r(t?.component),length:n,minimumLength:r}),new RangeError(o)}if(i!==void 0&&n>i)throw new RangeError(m.t(t?.component===void 0?"CharacterSetValidator.lengthMustBeLessThanOrEqualTo":"CharacterSetValidator.lengthOfComponentMustBeLessThanOrEqualTo",{component:a.#r(t?.component),length:n,maximumLength:i}));let s=this.characterIndexes(e).findIndex(o=>o===void 0);if(s!==-1)throw new RangeError(m.t(t?.component===void 0?"CharacterSetValidator.invalidCharacterAtPosition":"CharacterSetValidator.invalidCharacterAtPositionOfComponent",{component:a.#r(t?.component),c:e.charAt(s),position:s+(t?.positionOffset??0)+1}));if(t?.exclusion!==void 0)switch(this.validateExclusion(t.exclusion),t.exclusion){case x.None:break;case x.FirstZero:if(e.startsWith("0"))throw new RangeError(m.t(t.component===void 0?"CharacterSetValidator.invalidCharacterAtPosition":"CharacterSetValidator.invalidCharacterAtPositionOfComponent",{component:a.#r(t.component),c:"0",position:(t.positionOffset??0)+1}));break;case x.AllNumeric:a.#e.validate(e);break}}},$=class a extends se{static MAXIMUM_STRING_LENGTH=40;static#e;static#t(e){let t=new Array(this.MAXIMUM_STRING_LENGTH+1),n=BigInt(e);for(let r=0,i=1n;r<=this.MAXIMUM_STRING_LENGTH;r++,i*=n)t[r]=i;return t}static powerOf10(e){return a.#e??=a.#t(10),a.#e[e]}#n;#i;#r;#s;constructor(e,...t){super(e,...t),this.#n=BigInt(this.characterSetSize),this.#i=BigInt(this.characterSetSize-1);let n=[],r=a.#t(this.characterSetSize);if(n[x.None]=r,t.includes(x.FirstZero)){if(e[0]!=="0")throw new RangeError(m.t("CharacterSetValidator.firstZeroFirstCharacter"));let s=new Array(a.MAXIMUM_STRING_LENGTH+1);s[0]=0n;for(let o=1;o<=a.MAXIMUM_STRING_LENGTH;o++)s[o]=this.#i*r[o-1];n[x.FirstZero]=s}if(t.includes(x.AllNumeric)){let o=function(f){let d=f[0];for(let p of f){if(p===void 0||p!==d)throw new RangeError(m.t("CharacterSetValidator.allNumericAllNumericCharacters"));d=p+1}};var i=o;let s=new Array(a.MAXIMUM_STRING_LENGTH+1),u=this.characterIndexes("0123456789");o(u);let l=BigInt(u[0]),h=new Array(a.MAXIMUM_STRING_LENGTH+1),c=0n;for(let f=0;f<=a.MAXIMUM_STRING_LENGTH;f++)s[f]=r[f]-a.powerOf10(f),h[f]=c,c=c*this.#n+l;this.#s=h,n[x.AllNumeric]=s}else this.#s=[];this.#r=n}#a(e){return this.#r[x.None][e]}#o(e,t,n){let r;if(t===0){if(!e&&n<10n)throw new RangeError(m.t("CharacterSetValidator.stringMustNotBeAllNumeric"));r=10n}else{let i=this.#a(t),s=a.powerOf10(t),o=e?i-s:i,u=n/o;u>=10n?r=a.powerOf10(t+1):r=u*s+this.#o(e,t-1,n-u*o)}return r}#u(e){if(e<0)throw new RangeError(m.t("CharacterSetValidator.lengthMustBeGreaterThanOrEqualTo",{length:e,minimumLength:0}));if(e>a.MAXIMUM_STRING_LENGTH)throw new RangeError(m.t("CharacterSetValidator.lengthMustBeLessThanOrEqualTo",{length:e,maximumLength:a.MAXIMUM_STRING_LENGTH}))}create(e,t,n=x.None,r,i){this.#u(e),this.validateExclusion(n);let s=n===x.AllNumeric?this.#s[e]:0n;return P.get(this.#r[n][e],r).forward(t,(u,l)=>{let h="";if(e!==0){let c=u;n===x.AllNumeric&&c>=s&&(c+=this.#o(!0,e,c-s));for(let f=e-1;f>0;f--){let d=c/this.#n;h=this.character(Number(c-d*this.#n))+h,c=d}h=this.character(n===x.FirstZero?Number(c%this.#i)+1:Number(c%this.#n))+h}return i===void 0?h:i(h,l)})}valueFor(e,t=x.None,n){let r=e.length;this.#u(r),this.validateExclusion(t);let i=BigInt(this.characterSetSize),s=this.characterIndexes(e).reduce((o,u,l)=>{if(u===void 0)throw new RangeError(m.t("CharacterSetValidator.invalidCharacterAtPosition",{c:e.charAt(l),position:l+1}));let h;if(l===0&&t===x.FirstZero){if(u===0)throw new RangeError(m.t("CharacterSetValidator.invalidCharacterAtPosition",{c:"0",position:1}));h=BigInt(u-1)}else h=o*i+BigInt(u);return h},0n);if(t===x.AllNumeric){let o=this.#s[r];s>=o&&(s-=this.#o(!1,r,s-o))}return P.get(this.#r[t][r],n).reverse(s)}},De=new $(["0","1","2","3","4","5","6","7","8","9"],x.FirstZero),pt=De,Ue=new $(["0","1","2","3","4","5","6","7","8","9","A","B","C","D","E","F"],x.FirstZero,x.AllNumeric),gt=Ue,Ke=new $(["A","B","C","D","E","F","G","H","I","J","K","L","M","N","O","P","Q","R","S","T","U","V","W","X","Y","Z"]),mt=Ke,He=new $(["0","1","2","3","4","5","6","7","8","9","A","B","C","D","E","F","G","H","I","J","K","L","M","N","O","P","Q","R","S","T","U","V","W","X","Y","Z"],x.FirstZero,x.AllNumeric),xt=He;0&&(module.exports={ALPHABETIC_CREATOR,ALPHABETIC_VALIDATOR,ALPHANUMERIC_CREATOR,ALPHANUMERIC_VALIDATOR,CharacterSetCreator,CharacterSetValidator,EncryptionTransformer,Exclusions,HEXADECIMAL_CREATOR,HEXADECIMAL_VALIDATOR,IdentityTransformer,NUMERIC_CREATOR,NUMERIC_VALIDATOR,RecordValidator,RegExpValidator,Sequence,Transformer,i18nUtilityInit,i18nextUtility,mapIterable,utilityNS,utilityResourceBundle});
2
- /*!
3
- * Copyright © 2024-2026 Dolphin Data Development Ltd. and AIDC Toolkit
4
- * contributors
5
- *
6
- * Licensed under the Apache License, Version 2.0 (the "License");
7
- * you may not use this file except in compliance with the License.
8
- * You may obtain a copy of the License at
9
- *
10
- * https://www.apache.org/licenses/LICENSE-2.0
11
- *
12
- * Unless required by applicable law or agreed to in writing, software
13
- * distributed under the License is distributed on an "AS IS" BASIS,
14
- * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
15
- * See the License for the specific language governing permissions and
16
- * limitations under the License.
17
- */