@nexeraid/identity-schemas 2.199.0-dev → 2.200.0-dev

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.
@@ -22332,24 +22332,53 @@ export declare const NotabeneTxCreateResponse: z.ZodObject<{
22332
22332
  }[] | null | undefined;
22333
22333
  }>;
22334
22334
  export type NotabeneTxCreateResponse = z.infer<typeof NotabeneTxCreateResponse>;
22335
- export declare const NotabeneErrorCode: z.ZodEnum<["NotabeneTransactionError", "UserDIDNotAdminforVASPError", "NotabenePaymentNoCustomerError", "NotabenePaymentNoSubscriptionError", "NotabeneTransactionNoActiveSubscriptionError", "NotabeneCryptoAssetNotAvailable", "NotabeneTransactionValidationError", "NotabeneTransactionBelowThresholdError", "NotabeneTransactionSunriseLimitReachedError"]>;
22335
+ export declare const NotabeneErrorCode: z.ZodEnum<["NotabeneTransactionError", "UserDIDNotAdminforVASPError", "NotabenePaymentNoCustomerError", "NotabenePaymentNoSubscriptionError", "NotabeneTransactionNoActiveSubscriptionError", "NotabeneCryptoAssetNotAvailable", "NotabeneTransactionValidationError", "NotabeneTransactionBelowThresholdError", "NotabeneTransactionSunriseLimitReachedError", "NotabenePaymentError", "TrustFrameworkVASPNotFoundError"]>;
22336
22336
  export declare const NotabeneTxCreateError: z.ZodObject<{
22337
- name: z.ZodOptional<z.ZodNullable<z.ZodEnum<["NotabeneTransactionError", "UserDIDNotAdminforVASPError", "NotabenePaymentNoCustomerError", "NotabenePaymentNoSubscriptionError", "NotabeneTransactionNoActiveSubscriptionError", "NotabeneCryptoAssetNotAvailable", "NotabeneTransactionValidationError", "NotabeneTransactionBelowThresholdError", "NotabeneTransactionSunriseLimitReachedError"]>>>;
22337
+ name: z.ZodOptional<z.ZodNullable<z.ZodEnum<["NotabeneTransactionError", "UserDIDNotAdminforVASPError", "NotabenePaymentNoCustomerError", "NotabenePaymentNoSubscriptionError", "NotabeneTransactionNoActiveSubscriptionError", "NotabeneCryptoAssetNotAvailable", "NotabeneTransactionValidationError", "NotabeneTransactionBelowThresholdError", "NotabeneTransactionSunriseLimitReachedError", "NotabenePaymentError", "TrustFrameworkVASPNotFoundError"]>>>;
22338
22338
  code: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
22339
22339
  message: z.ZodOptional<z.ZodNullable<z.ZodString>>;
22340
22340
  stack: z.ZodOptional<z.ZodNullable<z.ZodString>>;
22341
22341
  }, "strip", z.ZodTypeAny, {
22342
22342
  code?: number | null | undefined;
22343
22343
  message?: string | null | undefined;
22344
- name?: "NotabeneTransactionError" | "UserDIDNotAdminforVASPError" | "NotabenePaymentNoCustomerError" | "NotabenePaymentNoSubscriptionError" | "NotabeneTransactionNoActiveSubscriptionError" | "NotabeneCryptoAssetNotAvailable" | "NotabeneTransactionValidationError" | "NotabeneTransactionBelowThresholdError" | "NotabeneTransactionSunriseLimitReachedError" | null | undefined;
22344
+ name?: "NotabeneTransactionError" | "UserDIDNotAdminforVASPError" | "NotabenePaymentNoCustomerError" | "NotabenePaymentNoSubscriptionError" | "NotabeneTransactionNoActiveSubscriptionError" | "NotabeneCryptoAssetNotAvailable" | "NotabeneTransactionValidationError" | "NotabeneTransactionBelowThresholdError" | "NotabeneTransactionSunriseLimitReachedError" | "NotabenePaymentError" | "TrustFrameworkVASPNotFoundError" | null | undefined;
22345
22345
  stack?: string | null | undefined;
22346
22346
  }, {
22347
22347
  code?: number | null | undefined;
22348
22348
  message?: string | null | undefined;
22349
- name?: "NotabeneTransactionError" | "UserDIDNotAdminforVASPError" | "NotabenePaymentNoCustomerError" | "NotabenePaymentNoSubscriptionError" | "NotabeneTransactionNoActiveSubscriptionError" | "NotabeneCryptoAssetNotAvailable" | "NotabeneTransactionValidationError" | "NotabeneTransactionBelowThresholdError" | "NotabeneTransactionSunriseLimitReachedError" | null | undefined;
22349
+ name?: "NotabeneTransactionError" | "UserDIDNotAdminforVASPError" | "NotabenePaymentNoCustomerError" | "NotabenePaymentNoSubscriptionError" | "NotabeneTransactionNoActiveSubscriptionError" | "NotabeneCryptoAssetNotAvailable" | "NotabeneTransactionValidationError" | "NotabeneTransactionBelowThresholdError" | "NotabeneTransactionSunriseLimitReachedError" | "NotabenePaymentError" | "TrustFrameworkVASPNotFoundError" | null | undefined;
22350
22350
  stack?: string | null | undefined;
22351
22351
  }>;
22352
22352
  export type NotabeneTxCreateError = z.infer<typeof NotabeneTxCreateError>;
22353
+ export declare const NotabeneTxValidateFullResponse: z.ZodObject<{
22354
+ isValid: z.ZodBoolean;
22355
+ type: z.ZodEnum<["BELOW_THRESHOLD", "NON_CUSTODIAL", "TRAVELRULE", "UNKNOWN"]>;
22356
+ beneficiaryAddressType: z.ZodOptional<z.ZodNullable<z.ZodEnum<["UNKNOWN", "HOSTED", "UNHOSTED"]>>>;
22357
+ addressSource: z.ZodOptional<z.ZodNullable<z.ZodEnum<["UNKNOWN", "ADDRESS_HASH", "ADDRESS_GRAPH", "CHAINALYSIS", "ELLIPTIC"]>>>;
22358
+ beneficiaryVASPdid: z.ZodOptional<z.ZodNullable<z.ZodString>>;
22359
+ beneficiaryVASPname: z.ZodOptional<z.ZodNullable<z.ZodString>>;
22360
+ errors: z.ZodOptional<z.ZodNullable<z.ZodArray<z.ZodString, "many">>>;
22361
+ warnings: z.ZodOptional<z.ZodNullable<z.ZodArray<z.ZodString, "many">>>;
22362
+ }, "strip", z.ZodTypeAny, {
22363
+ type: "BELOW_THRESHOLD" | "NON_CUSTODIAL" | "TRAVELRULE" | "UNKNOWN";
22364
+ isValid: boolean;
22365
+ errors?: string[] | null | undefined;
22366
+ warnings?: string[] | null | undefined;
22367
+ beneficiaryVASPdid?: string | null | undefined;
22368
+ beneficiaryVASPname?: string | null | undefined;
22369
+ beneficiaryAddressType?: "UNKNOWN" | "HOSTED" | "UNHOSTED" | null | undefined;
22370
+ addressSource?: "UNKNOWN" | "ADDRESS_HASH" | "ADDRESS_GRAPH" | "CHAINALYSIS" | "ELLIPTIC" | null | undefined;
22371
+ }, {
22372
+ type: "BELOW_THRESHOLD" | "NON_CUSTODIAL" | "TRAVELRULE" | "UNKNOWN";
22373
+ isValid: boolean;
22374
+ errors?: string[] | null | undefined;
22375
+ warnings?: string[] | null | undefined;
22376
+ beneficiaryVASPdid?: string | null | undefined;
22377
+ beneficiaryVASPname?: string | null | undefined;
22378
+ beneficiaryAddressType?: "UNKNOWN" | "HOSTED" | "UNHOSTED" | null | undefined;
22379
+ addressSource?: "UNKNOWN" | "ADDRESS_HASH" | "ADDRESS_GRAPH" | "CHAINALYSIS" | "ELLIPTIC" | null | undefined;
22380
+ }>;
22381
+ export type NotabeneTxValidateFullResponse = z.infer<typeof NotabeneTxValidateFullResponse>;
22353
22382
  export declare const NotabeneJurisdictionsRequest: z.ZodObject<{
22354
22383
  countryCode: z.ZodOptional<z.ZodString>;
22355
22384
  fallbackToFATF: z.ZodOptional<z.ZodBoolean>;
@@ -1 +1 @@
1
- {"version":3,"file":"notabene.schema.d.ts","sourceRoot":"../../../../../src/providers/notabene","sources":["notabene.schema.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,CAAC,EAAE,MAAM,KAAK,CAAC;AAaxB,eAAO,MAAM,gBAAgB,oEAAoB,CAAC;AAElD,eAAO,MAAM,gBAAgB;;;;;;;;;;;;;;;EAK3B,CAAC;AAEH,MAAM,MAAM,gBAAgB,GAAG,CAAC,CAAC,KAAK,CAAC,OAAO,gBAAgB,CAAC,CAAC;AAEhE,eAAO,MAAM,SAAS;;;;;;;;;;;;;;;EAKpB,CAAC;AAEH,MAAM,MAAM,SAAS,GAAG,CAAC,CAAC,KAAK,CAAC,OAAO,SAAS,CAAC,CAAC;AAElD,eAAO,MAAM,cAAc;;;;;;;;;EAGzB,CAAC;AACH,MAAM,MAAM,cAAc,GAAG,CAAC,CAAC,KAAK,CAAC,OAAO,cAAc,CAAC,CAAC;AAE5D,eAAO,MAAM,iBAAiB;;;;;;;;;;;;;;;;;;;;;;;;IAAuC,CAAC;AACtE,MAAM,MAAM,iBAAiB,GAAG,CAAC,CAAC,KAAK,CAAC,OAAO,iBAAiB,CAAC,CAAC;AAElE,eAAO,MAAM,qBAAqB;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;EAoBhC,CAAC;AACH,MAAM,MAAM,qBAAqB,GAAG,CAAC,CAAC,KAAK,CAAC,OAAO,qBAAqB,CAAC,CAAC;AAI1E,eAAO,MAAM,kBAAkB,qDAA+B,CAAC;AAe/D,eAAO,MAAM,sBAAsB,6FAAmC,CAAC;AA4DvE,eAAO,MAAM,6BAA6B,qCAEzC,CAAC;AAgIF,eAAO,MAAM,uBAAuB;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;EAiClC,CAAC;AACH,MAAM,MAAM,uBAAuB,GAAG,CAAC,CAAC,KAAK,CAAC,OAAO,uBAAuB,CAAC,CAAC;AAiB9E,eAAO,MAAM,sBAAsB,+KAA2B,CAAC;AAC/D,MAAM,MAAM,sBAAsB,GAAG,CAAC,CAAC,KAAK,CAAC,OAAO,sBAAsB,CAAC,CAAC;AAW5E,eAAO,MAAM,wBAAwB;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;EA4GnC,CAAC;AACH,MAAM,MAAM,wBAAwB,GAAG,CAAC,CAAC,KAAK,CAAC,OAAO,wBAAwB,CAAC,CAAC;AAahF,eAAO,MAAM,iBAAiB,kWAA8B,CAAC;AAE7D,eAAO,MAAM,qBAAqB;;;;;;;;;;;;;;;EAKhC,CAAC;AACH,MAAM,MAAM,qBAAqB,GAAG,CAAC,CAAC,KAAK,CAAC,OAAO,qBAAqB,CAAC,CAAC;AAE1E,eAAO,MAAM,4BAA4B;;;;;;;;;;;;EAUvC,CAAC;AACH,MAAM,MAAM,4BAA4B,GAAG,CAAC,CAAC,KAAK,CAChD,OAAO,4BAA4B,CACpC,CAAC;AAcF,eAAO,MAAM,8BAA8B;;;;;;;;;;;;;;;;;;;;;;EAQzC,CAAC;AACH,MAAM,MAAM,8BAA8B,GAAG,CAAC,CAAC,KAAK,CAClD,OAAO,8BAA8B,CACtC,CAAC;AAEF,eAAO,MAAM,oCAAoC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;EAW/C,CAAC;AACH,MAAM,MAAM,oCAAoC,GAAG,CAAC,CAAC,KAAK,CACxD,OAAO,oCAAoC,CAC5C,CAAC;AAEF,eAAO,MAAM,6BAA6B;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;WAEzC,CAAC;AACF,MAAM,MAAM,6BAA6B,GAAG,CAAC,CAAC,KAAK,CACjD,OAAO,6BAA6B,CACrC,CAAC"}
1
+ {"version":3,"file":"notabene.schema.d.ts","sourceRoot":"../../../../../src/providers/notabene","sources":["notabene.schema.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,CAAC,EAAE,MAAM,KAAK,CAAC;AAaxB,eAAO,MAAM,gBAAgB,oEAAoB,CAAC;AAElD,eAAO,MAAM,gBAAgB;;;;;;;;;;;;;;;EAK3B,CAAC;AAEH,MAAM,MAAM,gBAAgB,GAAG,CAAC,CAAC,KAAK,CAAC,OAAO,gBAAgB,CAAC,CAAC;AAEhE,eAAO,MAAM,SAAS;;;;;;;;;;;;;;;EAKpB,CAAC;AAEH,MAAM,MAAM,SAAS,GAAG,CAAC,CAAC,KAAK,CAAC,OAAO,SAAS,CAAC,CAAC;AAElD,eAAO,MAAM,cAAc;;;;;;;;;EAGzB,CAAC;AACH,MAAM,MAAM,cAAc,GAAG,CAAC,CAAC,KAAK,CAAC,OAAO,cAAc,CAAC,CAAC;AAE5D,eAAO,MAAM,iBAAiB;;;;;;;;;;;;;;;;;;;;;;;;IAAuC,CAAC;AACtE,MAAM,MAAM,iBAAiB,GAAG,CAAC,CAAC,KAAK,CAAC,OAAO,iBAAiB,CAAC,CAAC;AAElE,eAAO,MAAM,qBAAqB;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;EAoBhC,CAAC;AACH,MAAM,MAAM,qBAAqB,GAAG,CAAC,CAAC,KAAK,CAAC,OAAO,qBAAqB,CAAC,CAAC;AAI1E,eAAO,MAAM,kBAAkB,qDAA+B,CAAC;AAe/D,eAAO,MAAM,sBAAsB,6FAAmC,CAAC;AA4DvE,eAAO,MAAM,6BAA6B,qCAEzC,CAAC;AAgIF,eAAO,MAAM,uBAAuB;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;EAiClC,CAAC;AACH,MAAM,MAAM,uBAAuB,GAAG,CAAC,CAAC,KAAK,CAAC,OAAO,uBAAuB,CAAC,CAAC;AAiB9E,eAAO,MAAM,sBAAsB,+KAA2B,CAAC;AAC/D,MAAM,MAAM,sBAAsB,GAAG,CAAC,CAAC,KAAK,CAAC,OAAO,sBAAsB,CAAC,CAAC;AAW5E,eAAO,MAAM,wBAAwB;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;EA4GnC,CAAC;AACH,MAAM,MAAM,wBAAwB,GAAG,CAAC,CAAC,KAAK,CAAC,OAAO,wBAAwB,CAAC,CAAC;AAehF,eAAO,MAAM,iBAAiB,6ZAA8B,CAAC;AAE7D,eAAO,MAAM,qBAAqB;;;;;;;;;;;;;;;EAKhC,CAAC;AACH,MAAM,MAAM,qBAAqB,GAAG,CAAC,CAAC,KAAK,CAAC,OAAO,qBAAqB,CAAC,CAAC;AAE1E,eAAO,MAAM,8BAA8B;;;;;;;;;;;;;;;;;;;;;;;;;;;EAiBzC,CAAC;AACH,MAAM,MAAM,8BAA8B,GAAG,CAAC,CAAC,KAAK,CAClD,OAAO,8BAA8B,CACtC,CAAC;AAEF,eAAO,MAAM,4BAA4B;;;;;;;;;;;;EAUvC,CAAC;AACH,MAAM,MAAM,4BAA4B,GAAG,CAAC,CAAC,KAAK,CAChD,OAAO,4BAA4B,CACpC,CAAC;AAcF,eAAO,MAAM,8BAA8B;;;;;;;;;;;;;;;;;;;;;;EAQzC,CAAC;AACH,MAAM,MAAM,8BAA8B,GAAG,CAAC,CAAC,KAAK,CAClD,OAAO,8BAA8B,CACtC,CAAC;AAEF,eAAO,MAAM,oCAAoC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;EAW/C,CAAC;AACH,MAAM,MAAM,oCAAoC,GAAG,CAAC,CAAC,KAAK,CACxD,OAAO,oCAAoC,CAC5C,CAAC;AAEF,eAAO,MAAM,6BAA6B;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;WAEzC,CAAC;AACF,MAAM,MAAM,6BAA6B,GAAG,CAAC,CAAC,KAAK,CACjD,OAAO,6BAA6B,CACrC,CAAC"}
@@ -7,7 +7,7 @@ var z = require('zod');
7
7
  var identityApi_schema = require('./identity-api.schema-897fa13f.cjs.dev.cjs');
8
8
  var tfheUtilities = require('./tfhe-utilities-a00acbf7.cjs.dev.cjs');
9
9
  var vault_dist_nexeraidIdentitySchemasVault = require('../vault/dist/nexeraid-identity-schemas-vault.cjs.dev.cjs');
10
- var notabene_schema = require('./notabene.schema-eaefb531.cjs.dev.cjs');
10
+ var notabene_schema = require('./notabene.schema-499609b3.cjs.dev.cjs');
11
11
  require('nanoid');
12
12
  require('decimal.js');
13
13
  require('crypto');
@@ -7,7 +7,7 @@ var z = require('zod');
7
7
  var identityApi_schema = require('./identity-api.schema-f130919a.cjs.prod.cjs');
8
8
  var tfheUtilities = require('./tfhe-utilities-a685a571.cjs.prod.cjs');
9
9
  var vault_dist_nexeraidIdentitySchemasVault = require('../vault/dist/nexeraid-identity-schemas-vault.cjs.prod.cjs');
10
- var notabene_schema = require('./notabene.schema-e4c4160f.cjs.prod.cjs');
10
+ var notabene_schema = require('./notabene.schema-f4142b3c.cjs.prod.cjs');
11
11
  require('nanoid');
12
12
  require('decimal.js');
13
13
  require('crypto');
@@ -5,7 +5,7 @@ import { C as CredentialTypes } from './identity-api.schema-ace335f7.esm.mjs';
5
5
  export { v as ACTION_STATUSES, t as ACTION_TRIGGERS, b8 as ARRAY_OPERATORS, aM as AUTHORIZATION_REQUEST_MESSAGE_TYPES, A as AVAILABLE_FLOWS, a4 as AbbreviatedWorkflowScenario, a2 as Action, w as ActionStatus, u as ActionTrigger, s as ActionType, x as ActionValue, bo as AllCredentialValues, c4 as AllScenarioExecutionAuthorizationData, bY as AnyTxAuthDataSignatureResponse, b$ as AnyTxAuthInputJsSdk, bR as ApiTezosTxAuthInput, bL as ApiTxAuthInput, b9 as ArrayOperator, aU as AuthQrCodeData, ap as AuthSession, ar as AuthSessionData, aP as AuthorizationRequestMessage, aO as AuthorizationRequestMessageType, aN as AuthorizationRequestMessageTypes, aS as AuthorizationResponseMessage, n as AvailableFlow, be as BOOLEAN_OPERATORS, M as BackwardsCompatibleScenarioType, L as BackwardsCompatibleScenarioTypes, N as BaseQueryResponse, bf as BooleanOperator, aJ as CIRCUIT_IDS, bz as ChallengeQuerySchema, as as ChallengeResponse, aK as CircuitId, b as CloseScreenNotification, a7 as ComplianceImplementationStepsInput, c3 as CreateAuthRequestProps, a6 as CreateTemplateScenario, cf as CredentialMediaType, ca as CredentialNames, aT as CredentialQrCodeData, c9 as CredentialSchemas, cd as CredentialType, C as CredentialTypes, bg as DATE_OPERATORS, bi as DISPLAY_MODE, D as DataAvailableOnStart, bh as DateOperator, bj as DisplayMode, bZ as Eip155TxAuthInputJsSdk, U as ExecuteQueryResponse, bX as ExtendedTezosTxAuthDataSignatureResponse, bV as ExtendedTezosTxAuthInput, bW as ExtendedTxAuthDataSignatureResponse, bU as ExtendedTxAuthInput, ao as GenerateWalletChallengeRequest, a9 as GetCredentialsRequest, aa as GetCredentialsResponse, av as GetCustomerStatusRequest, aA as GetCustomerStatusResponse, bT as GetTezosTxAuthDataSignatureResponse, bO as GetTxAuthDataSignatureFailureResponse, bP as GetTxAuthDataSignatureResponse, bN as GetTxAuthDataSignatureSuccessResponse, ai as GetTxAuthSigRequest, ak as GetTxAuthSigRequestTezos, aj as GetTxAuthSigResponse, al as GetTxAuthSigResponseTezos, aD as HostMessage, am as HostRequestMessage, H as HostResponseMessage, bn as IDInformationTfhe, aB as IdentityAppMessage, aE as IdentityMessage, i as IdentityNotificationMessage, m as IdentityRequestMessage, an as IdentityResponseMessage, aw as IdentitySdkMessage, ax as IdentitySdkMessageWithIdentifier, aC as IdentityWallet, j as InitialDataRequest, o as InitialDataResponse, I as IsVerifiedNotification, ag as IsVerifiedRequest, ah as IsVerifiedResponse, K as KycCompletionData, c as KycCompletionNotification, aH as MediaType, aI as MediaTypePID, aq as MobileExchangeTokenResponse, bc as NUMERIC_OPERATORS, cb as NexeraCredentialType, bd as NumericOperator, bA as OLD_CHALLENGE_QUERY_OPERATORS, bB as OLD_ChallengeQueryOperator, bE as OLD_ChallengeQueryOperatorToOperator, bw as OLD_ChallengeQuerySchema, bG as OLD_QueryCredentialType, bF as OLD_QueryCredentialTypes, b0 as OPERATORS, g as OcvSdkInitialized, O as OffChainScenarioExecutionData, Q as OffChainZKPRuleResult, d as OnChainScenarioExecutionData, b1 as Operator, bC as OperatorMappings, bD as OperatorToOLD_ChallengeQueryOperator, bv as PartialQueryConfigSimplified, P as PolygonIdInitialized, ac as PolygonIdRequest, ab as PolygonIdRequestData, ae as PolygonIdResponse, ad as PolygonIdResponseData, c2 as PrivacyPreservingMonitoring, aQ as ProofData, a_ as QUERY_LOGIC_OPERATOR, aV as QrCodeLinkWithSchemaType, bp as QueriesOptions, bs as QueryConfigSimplified, br as QueryConfigTfhe, by as QueryCredentialType, bx as QueryCredentialTypes, bt as QueryGroupConfigSimplified, a$ as QueryLogicOperator, bq as QueryType, aF as RequiredDataRowSchema, aG as RequiredVerificationData, V as RuleEngineResponse, R as RuleEngineScenarioExecutionData, bu as RuleResultQueryConfig, Y as RuleResultStatus, Z as RuleResultStatusLabels, X as RuleResultStatuses, b3 as RuleTimeframe, r as SCENARIO_ACTION_TYPES, c5 as SCENARIO_AUTHORIZATION_STATUSES, ba as STRING_OPERATORS, bk as SUPPORTED_TYPES, S as ScenarioAuthorizationData, c6 as ScenarioAuthorizationStatus, e as ScenarioExecutionData, f as ScenarioExecutionNotification, W as ScenarioExecutionResponse, E as ScenarioMode, B as ScenarioModes, J as ScenarioSchema, G as ScenarioStatus, F as ScenarioStatuses, z as ScenarioType, y as ScenarioTypes, _ as SdkVerificationOutput, a as SdkVerificationResponseSchema, l as SendTransactionRequest, k as SignatureRequest, p as SignatureResponse, a8 as SimplifiedCredential, a3 as SimplifiedScenario, aZ as SpecialDataSetType, aY as SpecialDataSetTypes, h as StartCompletedNotification, af as StartFlowRequest, bb as StringOperator, bl as SupportedQueryInputType, bm as SupportedQueryInputTypes, b2 as TIMEFRAME, a5 as TemplateScenario, bQ as TezosTxAuthInput, b_ as TezosTxAuthInputJsSdk, bS as TezosTxSignatureResponse, T as TransactionData, q as TransactionResponse, az as TxAuthDataSignatureGatingError, au as TxAuthDataSignatureGatingRequest, ay as TxAuthDataSignatureResponse, bK as TxAuthInput, bM as TxSignatureResponse, ce as VerifiableCredential, a1 as VerificationOutput, a0 as VerificationSessionStatus, $ as VerificationSessionStatuses, c8 as VerifyWalletChallengeRequest, at as WalletSignResponse, c7 as WalletSignatureResponse, b4 as ZKPOperator, c0 as ZKPRequest, c1 as ZKPRequestFromZKVerifier, aL as ZeroKnowledgeProofRequest, aR as ZeroKnowledgeProofResponse, cc as getCredentialName, bI as getOldCredentialPath, bH as getOldCredentialType, bJ as oldCredentialPathToDataLink, b5 as operatorDisplayMap, aW as parseIden3Message, aX as parseSessionIdFromUrl, b7 as timeframeAlertDisplayMap, b6 as timeframeDisplayMap } from './identity-api.schema-ace335f7.esm.mjs';
6
6
  export { s as IDInformationTfheCredentialSubjectCONFIG, V as VC_JSON_SCHEMA_MAP, c as cleanObject, a as getAvailableFields, g as getCredentialSchemaLocation, b as getFieldConfig } from './tfhe-utilities-e68cd2ad.esm.mjs';
7
7
  export { Separator, computeVaultKey, generateZodObjectPaths, resolvePathOnDataSchema, resolvePathOnMapSchema } from '../vault/dist/nexeraid-identity-schemas-vault.esm.mjs';
8
- import { N as NotabeneTxCreateStatus } from './notabene.schema-9de93973.esm.mjs';
8
+ import { N as NotabeneTxCreateStatus } from './notabene.schema-61d983be.esm.mjs';
9
9
  import 'nanoid';
10
10
  import 'decimal.js';
11
11
  import 'crypto';
@@ -3123,7 +3123,7 @@ var NotabeneTxCreateResponse = z.z.object({
3123
3123
  text: z.z.string().nullish()
3124
3124
  })).nullish()
3125
3125
  });
3126
- var NOTABENE_ERROR_CODE = ["NotabeneTransactionError", "UserDIDNotAdminforVASPError", "NotabenePaymentNoCustomerError", "NotabenePaymentNoSubscriptionError", "NotabeneTransactionNoActiveSubscriptionError", "NotabeneCryptoAssetNotAvailable", "NotabeneTransactionValidationError", "NotabeneTransactionBelowThresholdError", "NotabeneTransactionSunriseLimitReachedError"];
3126
+ var NOTABENE_ERROR_CODE = ["NotabeneTransactionError", "UserDIDNotAdminforVASPError", "NotabenePaymentNoCustomerError", "NotabenePaymentNoSubscriptionError", "NotabeneTransactionNoActiveSubscriptionError", "NotabeneCryptoAssetNotAvailable", "NotabeneTransactionValidationError", "NotabeneTransactionBelowThresholdError", "NotabeneTransactionSunriseLimitReachedError", "NotabenePaymentError", "TrustFrameworkVASPNotFoundError"];
3127
3127
  var NotabeneErrorCode = z.z["enum"](NOTABENE_ERROR_CODE);
3128
3128
  var NotabeneTxCreateError = z.z.object({
3129
3129
  name: NotabeneErrorCode.nullish(),
@@ -3131,6 +3131,16 @@ var NotabeneTxCreateError = z.z.object({
3131
3131
  message: z.z.string().nullish(),
3132
3132
  stack: z.z.string().nullish()
3133
3133
  });
3134
+ var NotabeneTxValidateFullResponse = z.z.object({
3135
+ isValid: z.z["boolean"](),
3136
+ type: z.z["enum"](["BELOW_THRESHOLD", "NON_CUSTODIAL", "TRAVELRULE", "UNKNOWN"]),
3137
+ beneficiaryAddressType: z.z["enum"](["UNKNOWN", "HOSTED", "UNHOSTED"]).nullish(),
3138
+ addressSource: z.z["enum"](["UNKNOWN", "ADDRESS_HASH", "ADDRESS_GRAPH", "CHAINALYSIS", "ELLIPTIC"]).nullish(),
3139
+ beneficiaryVASPdid: commonDID.nullish(),
3140
+ beneficiaryVASPname: z.z.string().nullish(),
3141
+ errors: z.z.array(z.z.string()).nullish(),
3142
+ warnings: z.z.array(z.z.string()).nullish()
3143
+ });
3134
3144
  var NotabeneJurisdictionsRequest = z.z.object({
3135
3145
  countryCode: z.z.string().regex(/^\w{2}$/).optional(),
3136
3146
  fallbackToFATF: z.z["boolean"]().optional(),
@@ -3340,6 +3350,7 @@ exports.NotabeneTxCreateError = NotabeneTxCreateError;
3340
3350
  exports.NotabeneTxCreateRequest = NotabeneTxCreateRequest;
3341
3351
  exports.NotabeneTxCreateResponse = NotabeneTxCreateResponse;
3342
3352
  exports.NotabeneTxCreateStatus = NotabeneTxCreateStatus;
3353
+ exports.NotabeneTxValidateFullResponse = NotabeneTxValidateFullResponse;
3343
3354
  exports.PhoneMetadata = PhoneMetadata;
3344
3355
  exports.PhoneVerificationAnalysisResponse = PhoneVerificationAnalysisResponse;
3345
3356
  exports.ProofOfAddressDocumentType = ProofOfAddressDocumentType;
@@ -3117,7 +3117,7 @@ var NotabeneTxCreateResponse = z.object({
3117
3117
  text: z.string().nullish()
3118
3118
  })).nullish()
3119
3119
  });
3120
- var NOTABENE_ERROR_CODE = ["NotabeneTransactionError", "UserDIDNotAdminforVASPError", "NotabenePaymentNoCustomerError", "NotabenePaymentNoSubscriptionError", "NotabeneTransactionNoActiveSubscriptionError", "NotabeneCryptoAssetNotAvailable", "NotabeneTransactionValidationError", "NotabeneTransactionBelowThresholdError", "NotabeneTransactionSunriseLimitReachedError"];
3120
+ var NOTABENE_ERROR_CODE = ["NotabeneTransactionError", "UserDIDNotAdminforVASPError", "NotabenePaymentNoCustomerError", "NotabenePaymentNoSubscriptionError", "NotabeneTransactionNoActiveSubscriptionError", "NotabeneCryptoAssetNotAvailable", "NotabeneTransactionValidationError", "NotabeneTransactionBelowThresholdError", "NotabeneTransactionSunriseLimitReachedError", "NotabenePaymentError", "TrustFrameworkVASPNotFoundError"];
3121
3121
  var NotabeneErrorCode = z["enum"](NOTABENE_ERROR_CODE);
3122
3122
  var NotabeneTxCreateError = z.object({
3123
3123
  name: NotabeneErrorCode.nullish(),
@@ -3125,6 +3125,16 @@ var NotabeneTxCreateError = z.object({
3125
3125
  message: z.string().nullish(),
3126
3126
  stack: z.string().nullish()
3127
3127
  });
3128
+ var NotabeneTxValidateFullResponse = z.object({
3129
+ isValid: z["boolean"](),
3130
+ type: z["enum"](["BELOW_THRESHOLD", "NON_CUSTODIAL", "TRAVELRULE", "UNKNOWN"]),
3131
+ beneficiaryAddressType: z["enum"](["UNKNOWN", "HOSTED", "UNHOSTED"]).nullish(),
3132
+ addressSource: z["enum"](["UNKNOWN", "ADDRESS_HASH", "ADDRESS_GRAPH", "CHAINALYSIS", "ELLIPTIC"]).nullish(),
3133
+ beneficiaryVASPdid: commonDID.nullish(),
3134
+ beneficiaryVASPname: z.string().nullish(),
3135
+ errors: z.array(z.string()).nullish(),
3136
+ warnings: z.array(z.string()).nullish()
3137
+ });
3128
3138
  var NotabeneJurisdictionsRequest = z.object({
3129
3139
  countryCode: z.string().regex(/^\w{2}$/).optional(),
3130
3140
  fallbackToFATF: z["boolean"]().optional(),
@@ -3150,4 +3160,4 @@ var NotabeneJurisdictionsUnitaryResponse = z.object({
3150
3160
  });
3151
3161
  var NotabeneJurisdictionsResponse = z.array(NotabeneJurisdictionsUnitaryResponse);
3152
3162
 
3153
- export { SynapsSessionErrorResponse as $, ProofOfAddressDocumentTypes as A, BigCryptoChain as B, ComplyAdvantageSearchResponse as C, DocumentIdTypes as D, EmailVerificationAnalysisResponse as E, File$1 as F, ProofOfAddressDocumentType as G, ProofOfAddressMetadata as H, IpQualityServiceAnalysisResponse as I, PhoneMetadata as J, EmailMetadata as K, LivenessMetadata as L, MergedProviders as M, NotabeneTxCreateStatus as N, AMLMetadata as O, PhoneVerificationAnalysisResponse as P, Step as Q, RequestProperty as R, Statuses as S, SynapsSessionEvent as T, SynapsStepEvent as U, typeToHumanReadable as V, WrappedIpQualityServiceErrorResponse as W, SynapsSessionRequest as X, SESSION_NOT_FOUND as Y, UNKNOWN_ERROR as Z, RESULT_PARSER_ERROR as _, ComplyAdvantageSearchErrorResponse as a, MerkleScienceConfig as a$, SynapsSessionResponse as a0, SynapsStepRequest as a1, STEP_NOT_FOUND as a2, SynapsStepErrorResponse as a3, SynapsStepResponse as a4, CoerceDateUTC as a5, SEARCH_FILTER_SANCTION_TYPE as a6, SearchFilterSanctionType as a7, SEARCH_FILTER_PEP_TYPE as a8, SearchFilterPepType as a9, UpdateSearchEntitiesInput as aA, ComplyAdvantageUser as aB, MatchTypeDetail as aC, ComplyAdvantageMedia as aD, ComplyAdvantageSearchDataResponseHit as aE, ComplyAdvantageSearchDataResponse as aF, ComplyAdvantageKeyInformation as aG, ComplyAdvantageAmlItemSource as aH, ComplyAdvantageAmlFullListing as aI, ComplyAdvantageSearchEntitiesDataResponse as aJ, ComplyAdvantageSearchEntitiesSuccessResponse as aK, ComplyAdvantageSearchEntitiesResponse as aL, ComplyAdvantageSearchRequest as aM, ComplyAdvantageSearchRequests as aN, ComplyAdvantageUpdateSearchRequest as aO, ComplyAdvantageUpdateSearchEntitiesRequest as aP, ComplyAdvantageUpdateSearchEntitiesSuccessResponse as aQ, ComplyAdvantageUpdateSearchEntitiesResponse as aR, ComplyAdvantageMonitorSearchDataResponse as aS, ComplyAdvantageMonitorSearchSuccessResponse as aT, ComplyAdvantageMonitorSearchResponse as aU, ComplyAdvantageMonitoredSearchUpdate as aV, ProviderWithoutConfig as aW, IdentityProviderOptions as aX, IdentityProvider as aY, DataProviderOptions as aZ, DataProvider as a_, SEARCH_FILTER_ADVERSE_MEDIA_TYPE as aa, SearchFilterAdverseMediaType as ab, HIGH_RISK_TYPES as ac, MEDIUM_RISK_TYPES as ad, COMPLY_ADVANTAGE_RESPONSE_MATCH_TYPE as ae, ComplyAdvantageResponseMatchType as af, mappingMatchTypeToLabel as ag, COMPLY_ADVANTAGE_RESPONSE_MATCH_STATUS as ah, ComplyAdvantageReponseMatchStatus as ai, SEARCH_FILTER_TYPES as aj, SearchFilterType as ak, SearchEntityTypes as al, SearchEntityType as am, SearchFilters as an, COMPLY_ADVANTAGE_NATIONALITY_FIELD_SOURCES as ao, ComplyAdvantageNationalityFieldSources as ap, COMPLY_ADVANTAGE_COUNTRY_FIELD_SOURCES as aq, ComplyAdvantageCountryFieldSources as ar, COMPLY_ADVANTAGE_DATE_OF_BIRTH_FIELD_SOURCES as as, ComplyAdvantageDateOfBirthFieldSources as at, CreateSearchInput as au, MatchStatuses as av, MatchStatus as aw, RiskLevels as ax, RiskLevel as ay, UpdateSearchInput as az, ComplyAdvantageSearchSuccessResponse as b, SUMSUB_REVIEW_STATUSES as b$, ChainalysisConfig as b0, TRMLabsConfig as b1, CrystalIntelligenceConfig as b2, ScorechainConfig as b3, WorkflowsScorechainConfig as b4, BigConfig as b5, IpQualityConfig as b6, NotabeneConfig as b7, ProviderIntegrationTypeOptions as b8, ProviderIntegrationType as b9, DeleteProviderResponse as bA, WEBHOOK_TYPES as bB, WebhookType as bC, ApplicantMemberOfSchema as bD, SumSubWebhookSchema as bE, BaseApplicantActionSchema as bF, SUMSUB_STEPS as bG, SumSubStep as bH, SUMSUB_APPLICANT_TYPES as bI, SumSubApplicantType as bJ, SUMSUB_REVIEW_ANSWERS as bK, SumSubReviewAnswer as bL, SUMSUB_REVIEW_REJECT_TYPES as bM, SumSubReviewRejectType as bN, SumsubReviewDecision as bO, SumsubCountryCode as bP, SumSubAddress as bQ, SumSubApplicantInfo as bR, INDIVIDUAL_BENEFICIARY_RELATIONS as bS, IndividualBeneficiaryRelation as bT, BENEFICIARY_TYPES as bU, BeneficiaryType as bV, BeneficiaryCompanyCustomerClaims as bW, BeneficiaryCompanyCustomerClaimsArray as bX, SumSubCompanyApplicantInfo as bY, SUMSUB_WEBHOOK_INTERNAL_STATUS as bZ, SumsubWebhookInternalStatus as b_, BaseProvider as ba, NexeraIdSSIDProvider as bb, NexeraIdKYBProvider as bc, BigProvider as bd, ScorechainProvider as be, MerkleScienceProvider as bf, ChainalysisProvider as bg, TRMLabsProvider as bh, CrystalIntelligenceProvider as bi, NotabeneProvider as bj, IpqualityscoreProvider as bk, ComplyAdvantageProviderConfigTypes as bl, ComplyAdvantageProviderConfigFilters as bm, ComplyAdvantageProviderConfigElement as bn, ComplyAdvantageProvider as bo, SynapsProvider as bp, ProviderData as bq, ProviderDataProject as br, GetProvidersResponse as bs, GetProviderResponse as bt, CreateProviderInput as bu, CreateProviderResponse as bv, UpdateProviderInput as bw, UpdateProviderResponse as bx, ToggleProviderInput as by, DeleteProviderInput as bz, IpQualityAnalysisRequest as c, ProofOfResidenceDocumentType as c$, SumSubReviewStatus as c0, SUMSUB_DOC_TYPES as c1, SumSubDocType as c2, SUMSUB_KYC_DOC_TYPES as c3, SumSubKycDocType as c4, KYC_DOC_SIDES as c5, KycDocSide as c6, SUMSUB_FLOW_LEVEL as c7, SumSubFlowLevel as c8, SumSubRequiredIdDoc as c9, SumsubKybSessionFlowSectionStatus as cA, SumsubKybSessionFlowSectionItem as cB, SumsubKybSessionFlowSection as cC, SumSubSimilarApplicantsSchema as cD, ApplicantImages as cE, SUMSUB_REVIEW_REJECT_LABELS as cF, SumSubReviewRejectLabel as cG, SUMSUB_REVIEW_REJECT_LABELS_DESCRIPTION as cH, KYC_STEP_TYPES as cI, KycStep as cJ, KycStepStatuses as cK, KycStepStatus as cL, KYC_RESULTS as cM, KycResult as cN, KYC_SESSION_STATUSES as cO, KycSessionStatus as cP, EmailVerificationResponse as cQ, SelectKycSessionStep as cR, APPLICANT_CHECK_STATUSES as cS, ApplicantCheckStatus as cT, SelectKycSession as cU, SelectKycSessionWithCompletedSteps as cV, GetKycSessionInput as cW, GetKycSessionResponse as cX, UpdateKycSessionOutput as cY, VideoKycMetaData as cZ, ProofOfResidenceMetaData as c_, UploadDocumentRequest as ca, SumSubReviewResultSchema as cb, SumSubImageReviewResultSchema as cc, SumSubImageStatus as cd, SumsubApplicantTypes as ce, SumsubApplicantType as cf, SumSubIndividualApplicantSchema as cg, SumSubCompanyApplicantSchema as ch, SumSubImageId as ci, SUMSUB_COMPANY_BENEFICIARY_GROUP as cj, SumsubCompanyBeneficiaryGroup as ck, SumsubStepStatus as cl, SumSubVerificationStepSchema as cm, SumSubApplicantVerificationStepSchema as cn, SUMSUB_MEDIA_CONTENT_TYPES as co, SumSubMediaContentType as cp, DocumentMetadataSchema as cq, DocumentSubmitResponse as cr, SumSubApplicantReviewStatusSchema as cs, SumSubApplicantResetSchema as ct, SumSubGenerateExternalWebSdkLinkSchema as cu, SumsubVideoCallData as cv, SumsubKycDataSchema as cw, SumsubKybDataSchema as cx, SumSubApplicantSchema as cy, SUMSUB_KYB_SESSION_FLOW_SECTION_STATUS as cz, IpQualityAnalysisResponse as d, NationalIdentifierType as d$, GetCredentialsOutput as d0, CustomerContactInformationOutput as d1, CredentialMetadata as d2, GetKycSessionResponseWithCredentialsMetadata as d3, IDImageMetaData as d4, SelfieImageMetaData as d5, ApiErrorResponse as d6, ApiErrorCommandResponse as d7, ApiSuccessCommandResponse as d8, GetKycSessionsOutput as d9, ChainalysisRegisterApiResponse as dA, ChainalysisRiskLevel as dB, ChainalysisErrorCodes as dC, ChainalysisRiskAssessmentApiResponse as dD, ChainalysisApiError as dE, ChainalysisRegisterResponse as dF, ChainalysisRiskAssessmentResponse as dG, CoinMarketCapRequest as dH, CoinMarketCapQuote as dI, CoinMarketCapQuotes as dJ, CoinMarketCapApiResponse as dK, CoinMarketCapFiatId as dL, TRMLabsAddressesScreeningApiRequest as dM, TRM_RISK_SCORE_LEVEL as dN, TRM_RISK_SCORE_LEVEL_LABEL as dO, TRMLabsRiskScoreToScorechainRiskMapping as dP, TRMLabsAddressesScreening as dQ, TRMLabsAddressesScreeningResponse as dR, CrystalWalletScreeningApiRequest as dS, CrystalWalletScreeningResponse as dT, NotabeneAudience as dU, AuthTokenRequest as dV, AuthToken as dW, AuthTokenError as dX, AuthTokenResponse as dY, NotabeneAssetResponse as dZ, NameIdentifierType as d_, KYB_STEP_TYPES as da, KybStep as db, KYB_RESULTS as dc, KybResult as dd, KYB_SESSION_STATUSES as de, KybSessionStatus as df, COMPANY_DOCUMENT_STATUS as dg, CompanyDocumentStatus as dh, CompanyDocumentMetaData as di, BeneficiaryVerificationStatus as dj, BeneficiaryVerificationStatusArray as dk, SelectKybSession as dl, GetKybSessionInput as dm, GetKybSessionResponse as dn, UpdateKybSessionOutput as dp, CustomerDocumentMetaData as dq, CustomerStatusResults as dr, MerkleBlockChainTypes as ds, MerkleBlockChainName as dt, MerkleBlockChainCodes as du, MerkleAddressRequest as dv, MerkleAddressApiResponse as dw, MerkleAddressApiError as dx, MerkleAddressResponse as dy, ChainalysisRequest as dz, IpQualityServiceAnalysis as e, LegalPersonNameIdentifierType as e0, NotabeneTxCreateRequest as e1, NotabeneTxCreateResponse as e2, NotabeneErrorCode as e3, NotabeneTxCreateError as e4, NotabeneJurisdictionsRequest as e5, NotabeneJurisdictionsCondition as e6, NotabeneJurisdictionsUnitaryResponse as e7, NotabeneJurisdictionsResponse as e8, IpQualityServiceErrorResponse as f, BigPropertiesLiteral as g, BigProperties as h, BigProperty as i, BigCSErrorCodes as j, BitRankRequest as k, BitRankVerified as l, BitRankVerifiedErrorResponse as m, BitRankVerifiedError as n, BitRankVerifiedResponse as o, Status$3 as p, WebhookPayload as q, NestedSession as r, Session as s, SessionWithoutSteps as t, StepTypes as u, StepType as v, ReasonCodes as w, ReasonCode as x, DocumentIdType as y, DocumentIdMetadata as z };
3163
+ export { SynapsSessionErrorResponse as $, ProofOfAddressDocumentTypes as A, BigCryptoChain as B, ComplyAdvantageSearchResponse as C, DocumentIdTypes as D, EmailVerificationAnalysisResponse as E, File$1 as F, ProofOfAddressDocumentType as G, ProofOfAddressMetadata as H, IpQualityServiceAnalysisResponse as I, PhoneMetadata as J, EmailMetadata as K, LivenessMetadata as L, MergedProviders as M, NotabeneTxCreateStatus as N, AMLMetadata as O, PhoneVerificationAnalysisResponse as P, Step as Q, RequestProperty as R, Statuses as S, SynapsSessionEvent as T, SynapsStepEvent as U, typeToHumanReadable as V, WrappedIpQualityServiceErrorResponse as W, SynapsSessionRequest as X, SESSION_NOT_FOUND as Y, UNKNOWN_ERROR as Z, RESULT_PARSER_ERROR as _, ComplyAdvantageSearchErrorResponse as a, MerkleScienceConfig as a$, SynapsSessionResponse as a0, SynapsStepRequest as a1, STEP_NOT_FOUND as a2, SynapsStepErrorResponse as a3, SynapsStepResponse as a4, CoerceDateUTC as a5, SEARCH_FILTER_SANCTION_TYPE as a6, SearchFilterSanctionType as a7, SEARCH_FILTER_PEP_TYPE as a8, SearchFilterPepType as a9, UpdateSearchEntitiesInput as aA, ComplyAdvantageUser as aB, MatchTypeDetail as aC, ComplyAdvantageMedia as aD, ComplyAdvantageSearchDataResponseHit as aE, ComplyAdvantageSearchDataResponse as aF, ComplyAdvantageKeyInformation as aG, ComplyAdvantageAmlItemSource as aH, ComplyAdvantageAmlFullListing as aI, ComplyAdvantageSearchEntitiesDataResponse as aJ, ComplyAdvantageSearchEntitiesSuccessResponse as aK, ComplyAdvantageSearchEntitiesResponse as aL, ComplyAdvantageSearchRequest as aM, ComplyAdvantageSearchRequests as aN, ComplyAdvantageUpdateSearchRequest as aO, ComplyAdvantageUpdateSearchEntitiesRequest as aP, ComplyAdvantageUpdateSearchEntitiesSuccessResponse as aQ, ComplyAdvantageUpdateSearchEntitiesResponse as aR, ComplyAdvantageMonitorSearchDataResponse as aS, ComplyAdvantageMonitorSearchSuccessResponse as aT, ComplyAdvantageMonitorSearchResponse as aU, ComplyAdvantageMonitoredSearchUpdate as aV, ProviderWithoutConfig as aW, IdentityProviderOptions as aX, IdentityProvider as aY, DataProviderOptions as aZ, DataProvider as a_, SEARCH_FILTER_ADVERSE_MEDIA_TYPE as aa, SearchFilterAdverseMediaType as ab, HIGH_RISK_TYPES as ac, MEDIUM_RISK_TYPES as ad, COMPLY_ADVANTAGE_RESPONSE_MATCH_TYPE as ae, ComplyAdvantageResponseMatchType as af, mappingMatchTypeToLabel as ag, COMPLY_ADVANTAGE_RESPONSE_MATCH_STATUS as ah, ComplyAdvantageReponseMatchStatus as ai, SEARCH_FILTER_TYPES as aj, SearchFilterType as ak, SearchEntityTypes as al, SearchEntityType as am, SearchFilters as an, COMPLY_ADVANTAGE_NATIONALITY_FIELD_SOURCES as ao, ComplyAdvantageNationalityFieldSources as ap, COMPLY_ADVANTAGE_COUNTRY_FIELD_SOURCES as aq, ComplyAdvantageCountryFieldSources as ar, COMPLY_ADVANTAGE_DATE_OF_BIRTH_FIELD_SOURCES as as, ComplyAdvantageDateOfBirthFieldSources as at, CreateSearchInput as au, MatchStatuses as av, MatchStatus as aw, RiskLevels as ax, RiskLevel as ay, UpdateSearchInput as az, ComplyAdvantageSearchSuccessResponse as b, SUMSUB_REVIEW_STATUSES as b$, ChainalysisConfig as b0, TRMLabsConfig as b1, CrystalIntelligenceConfig as b2, ScorechainConfig as b3, WorkflowsScorechainConfig as b4, BigConfig as b5, IpQualityConfig as b6, NotabeneConfig as b7, ProviderIntegrationTypeOptions as b8, ProviderIntegrationType as b9, DeleteProviderResponse as bA, WEBHOOK_TYPES as bB, WebhookType as bC, ApplicantMemberOfSchema as bD, SumSubWebhookSchema as bE, BaseApplicantActionSchema as bF, SUMSUB_STEPS as bG, SumSubStep as bH, SUMSUB_APPLICANT_TYPES as bI, SumSubApplicantType as bJ, SUMSUB_REVIEW_ANSWERS as bK, SumSubReviewAnswer as bL, SUMSUB_REVIEW_REJECT_TYPES as bM, SumSubReviewRejectType as bN, SumsubReviewDecision as bO, SumsubCountryCode as bP, SumSubAddress as bQ, SumSubApplicantInfo as bR, INDIVIDUAL_BENEFICIARY_RELATIONS as bS, IndividualBeneficiaryRelation as bT, BENEFICIARY_TYPES as bU, BeneficiaryType as bV, BeneficiaryCompanyCustomerClaims as bW, BeneficiaryCompanyCustomerClaimsArray as bX, SumSubCompanyApplicantInfo as bY, SUMSUB_WEBHOOK_INTERNAL_STATUS as bZ, SumsubWebhookInternalStatus as b_, BaseProvider as ba, NexeraIdSSIDProvider as bb, NexeraIdKYBProvider as bc, BigProvider as bd, ScorechainProvider as be, MerkleScienceProvider as bf, ChainalysisProvider as bg, TRMLabsProvider as bh, CrystalIntelligenceProvider as bi, NotabeneProvider as bj, IpqualityscoreProvider as bk, ComplyAdvantageProviderConfigTypes as bl, ComplyAdvantageProviderConfigFilters as bm, ComplyAdvantageProviderConfigElement as bn, ComplyAdvantageProvider as bo, SynapsProvider as bp, ProviderData as bq, ProviderDataProject as br, GetProvidersResponse as bs, GetProviderResponse as bt, CreateProviderInput as bu, CreateProviderResponse as bv, UpdateProviderInput as bw, UpdateProviderResponse as bx, ToggleProviderInput as by, DeleteProviderInput as bz, IpQualityAnalysisRequest as c, ProofOfResidenceDocumentType as c$, SumSubReviewStatus as c0, SUMSUB_DOC_TYPES as c1, SumSubDocType as c2, SUMSUB_KYC_DOC_TYPES as c3, SumSubKycDocType as c4, KYC_DOC_SIDES as c5, KycDocSide as c6, SUMSUB_FLOW_LEVEL as c7, SumSubFlowLevel as c8, SumSubRequiredIdDoc as c9, SumsubKybSessionFlowSectionStatus as cA, SumsubKybSessionFlowSectionItem as cB, SumsubKybSessionFlowSection as cC, SumSubSimilarApplicantsSchema as cD, ApplicantImages as cE, SUMSUB_REVIEW_REJECT_LABELS as cF, SumSubReviewRejectLabel as cG, SUMSUB_REVIEW_REJECT_LABELS_DESCRIPTION as cH, KYC_STEP_TYPES as cI, KycStep as cJ, KycStepStatuses as cK, KycStepStatus as cL, KYC_RESULTS as cM, KycResult as cN, KYC_SESSION_STATUSES as cO, KycSessionStatus as cP, EmailVerificationResponse as cQ, SelectKycSessionStep as cR, APPLICANT_CHECK_STATUSES as cS, ApplicantCheckStatus as cT, SelectKycSession as cU, SelectKycSessionWithCompletedSteps as cV, GetKycSessionInput as cW, GetKycSessionResponse as cX, UpdateKycSessionOutput as cY, VideoKycMetaData as cZ, ProofOfResidenceMetaData as c_, UploadDocumentRequest as ca, SumSubReviewResultSchema as cb, SumSubImageReviewResultSchema as cc, SumSubImageStatus as cd, SumsubApplicantTypes as ce, SumsubApplicantType as cf, SumSubIndividualApplicantSchema as cg, SumSubCompanyApplicantSchema as ch, SumSubImageId as ci, SUMSUB_COMPANY_BENEFICIARY_GROUP as cj, SumsubCompanyBeneficiaryGroup as ck, SumsubStepStatus as cl, SumSubVerificationStepSchema as cm, SumSubApplicantVerificationStepSchema as cn, SUMSUB_MEDIA_CONTENT_TYPES as co, SumSubMediaContentType as cp, DocumentMetadataSchema as cq, DocumentSubmitResponse as cr, SumSubApplicantReviewStatusSchema as cs, SumSubApplicantResetSchema as ct, SumSubGenerateExternalWebSdkLinkSchema as cu, SumsubVideoCallData as cv, SumsubKycDataSchema as cw, SumsubKybDataSchema as cx, SumSubApplicantSchema as cy, SUMSUB_KYB_SESSION_FLOW_SECTION_STATUS as cz, IpQualityAnalysisResponse as d, NationalIdentifierType as d$, GetCredentialsOutput as d0, CustomerContactInformationOutput as d1, CredentialMetadata as d2, GetKycSessionResponseWithCredentialsMetadata as d3, IDImageMetaData as d4, SelfieImageMetaData as d5, ApiErrorResponse as d6, ApiErrorCommandResponse as d7, ApiSuccessCommandResponse as d8, GetKycSessionsOutput as d9, ChainalysisRegisterApiResponse as dA, ChainalysisRiskLevel as dB, ChainalysisErrorCodes as dC, ChainalysisRiskAssessmentApiResponse as dD, ChainalysisApiError as dE, ChainalysisRegisterResponse as dF, ChainalysisRiskAssessmentResponse as dG, CoinMarketCapRequest as dH, CoinMarketCapQuote as dI, CoinMarketCapQuotes as dJ, CoinMarketCapApiResponse as dK, CoinMarketCapFiatId as dL, TRMLabsAddressesScreeningApiRequest as dM, TRM_RISK_SCORE_LEVEL as dN, TRM_RISK_SCORE_LEVEL_LABEL as dO, TRMLabsRiskScoreToScorechainRiskMapping as dP, TRMLabsAddressesScreening as dQ, TRMLabsAddressesScreeningResponse as dR, CrystalWalletScreeningApiRequest as dS, CrystalWalletScreeningResponse as dT, NotabeneAudience as dU, AuthTokenRequest as dV, AuthToken as dW, AuthTokenError as dX, AuthTokenResponse as dY, NotabeneAssetResponse as dZ, NameIdentifierType as d_, KYB_STEP_TYPES as da, KybStep as db, KYB_RESULTS as dc, KybResult as dd, KYB_SESSION_STATUSES as de, KybSessionStatus as df, COMPANY_DOCUMENT_STATUS as dg, CompanyDocumentStatus as dh, CompanyDocumentMetaData as di, BeneficiaryVerificationStatus as dj, BeneficiaryVerificationStatusArray as dk, SelectKybSession as dl, GetKybSessionInput as dm, GetKybSessionResponse as dn, UpdateKybSessionOutput as dp, CustomerDocumentMetaData as dq, CustomerStatusResults as dr, MerkleBlockChainTypes as ds, MerkleBlockChainName as dt, MerkleBlockChainCodes as du, MerkleAddressRequest as dv, MerkleAddressApiResponse as dw, MerkleAddressApiError as dx, MerkleAddressResponse as dy, ChainalysisRequest as dz, IpQualityServiceAnalysis as e, LegalPersonNameIdentifierType as e0, NotabeneTxCreateRequest as e1, NotabeneTxCreateResponse as e2, NotabeneErrorCode as e3, NotabeneTxCreateError as e4, NotabeneTxValidateFullResponse as e5, NotabeneJurisdictionsRequest as e6, NotabeneJurisdictionsCondition as e7, NotabeneJurisdictionsUnitaryResponse as e8, NotabeneJurisdictionsResponse as e9, IpQualityServiceErrorResponse as f, BigPropertiesLiteral as g, BigProperties as h, BigProperty as i, BigCSErrorCodes as j, BitRankRequest as k, BitRankVerified as l, BitRankVerifiedErrorResponse as m, BitRankVerifiedError as n, BitRankVerifiedResponse as o, Status$3 as p, WebhookPayload as q, NestedSession as r, Session as s, SessionWithoutSteps as t, StepTypes as u, StepType as v, ReasonCodes as w, ReasonCode as x, DocumentIdType as y, DocumentIdMetadata as z };
@@ -3123,7 +3123,7 @@ var NotabeneTxCreateResponse = z.z.object({
3123
3123
  text: z.z.string().nullish()
3124
3124
  })).nullish()
3125
3125
  });
3126
- var NOTABENE_ERROR_CODE = ["NotabeneTransactionError", "UserDIDNotAdminforVASPError", "NotabenePaymentNoCustomerError", "NotabenePaymentNoSubscriptionError", "NotabeneTransactionNoActiveSubscriptionError", "NotabeneCryptoAssetNotAvailable", "NotabeneTransactionValidationError", "NotabeneTransactionBelowThresholdError", "NotabeneTransactionSunriseLimitReachedError"];
3126
+ var NOTABENE_ERROR_CODE = ["NotabeneTransactionError", "UserDIDNotAdminforVASPError", "NotabenePaymentNoCustomerError", "NotabenePaymentNoSubscriptionError", "NotabeneTransactionNoActiveSubscriptionError", "NotabeneCryptoAssetNotAvailable", "NotabeneTransactionValidationError", "NotabeneTransactionBelowThresholdError", "NotabeneTransactionSunriseLimitReachedError", "NotabenePaymentError", "TrustFrameworkVASPNotFoundError"];
3127
3127
  var NotabeneErrorCode = z.z["enum"](NOTABENE_ERROR_CODE);
3128
3128
  var NotabeneTxCreateError = z.z.object({
3129
3129
  name: NotabeneErrorCode.nullish(),
@@ -3131,6 +3131,16 @@ var NotabeneTxCreateError = z.z.object({
3131
3131
  message: z.z.string().nullish(),
3132
3132
  stack: z.z.string().nullish()
3133
3133
  });
3134
+ var NotabeneTxValidateFullResponse = z.z.object({
3135
+ isValid: z.z["boolean"](),
3136
+ type: z.z["enum"](["BELOW_THRESHOLD", "NON_CUSTODIAL", "TRAVELRULE", "UNKNOWN"]),
3137
+ beneficiaryAddressType: z.z["enum"](["UNKNOWN", "HOSTED", "UNHOSTED"]).nullish(),
3138
+ addressSource: z.z["enum"](["UNKNOWN", "ADDRESS_HASH", "ADDRESS_GRAPH", "CHAINALYSIS", "ELLIPTIC"]).nullish(),
3139
+ beneficiaryVASPdid: commonDID.nullish(),
3140
+ beneficiaryVASPname: z.z.string().nullish(),
3141
+ errors: z.z.array(z.z.string()).nullish(),
3142
+ warnings: z.z.array(z.z.string()).nullish()
3143
+ });
3134
3144
  var NotabeneJurisdictionsRequest = z.z.object({
3135
3145
  countryCode: z.z.string().regex(/^\w{2}$/).optional(),
3136
3146
  fallbackToFATF: z.z["boolean"]().optional(),
@@ -3340,6 +3350,7 @@ exports.NotabeneTxCreateError = NotabeneTxCreateError;
3340
3350
  exports.NotabeneTxCreateRequest = NotabeneTxCreateRequest;
3341
3351
  exports.NotabeneTxCreateResponse = NotabeneTxCreateResponse;
3342
3352
  exports.NotabeneTxCreateStatus = NotabeneTxCreateStatus;
3353
+ exports.NotabeneTxValidateFullResponse = NotabeneTxValidateFullResponse;
3343
3354
  exports.PhoneMetadata = PhoneMetadata;
3344
3355
  exports.PhoneVerificationAnalysisResponse = PhoneVerificationAnalysisResponse;
3345
3356
  exports.ProofOfAddressDocumentType = ProofOfAddressDocumentType;
package/dist/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@nexeraid/identity-schemas",
3
- "version": "2.199.0",
3
+ "version": "2.200.0",
4
4
  "description": "",
5
5
  "keywords": [],
6
6
  "license": "ISC",
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@nexeraid/identity-schemas",
3
- "version": "2.199.0-dev",
3
+ "version": "2.200.0-dev",
4
4
  "description": "",
5
5
  "keywords": [],
6
6
  "license": "ISC",
@@ -3,7 +3,7 @@
3
3
  Object.defineProperty(exports, '__esModule', { value: true });
4
4
 
5
5
  var vault_schema = require('../../dist/vault.schema-31179c6c.cjs.dev.cjs');
6
- var notabene_schema = require('../../dist/notabene.schema-eaefb531.cjs.dev.cjs');
6
+ var notabene_schema = require('../../dist/notabene.schema-499609b3.cjs.dev.cjs');
7
7
  require('zod');
8
8
  require('nanoid');
9
9
  require('decimal.js');
@@ -11460,6 +11460,7 @@ exports.NotabeneTxCreateError = notabene_schema.NotabeneTxCreateError;
11460
11460
  exports.NotabeneTxCreateRequest = notabene_schema.NotabeneTxCreateRequest;
11461
11461
  exports.NotabeneTxCreateResponse = notabene_schema.NotabeneTxCreateResponse;
11462
11462
  exports.NotabeneTxCreateStatus = notabene_schema.NotabeneTxCreateStatus;
11463
+ exports.NotabeneTxValidateFullResponse = notabene_schema.NotabeneTxValidateFullResponse;
11463
11464
  exports.PhoneMetadata = notabene_schema.PhoneMetadata;
11464
11465
  exports.PhoneVerificationAnalysisResponse = notabene_schema.PhoneVerificationAnalysisResponse;
11465
11466
  exports.ProofOfAddressDocumentType = notabene_schema.ProofOfAddressDocumentType;
@@ -3,7 +3,7 @@
3
3
  Object.defineProperty(exports, '__esModule', { value: true });
4
4
 
5
5
  var vault_schema = require('../../dist/vault.schema-a7ef3965.cjs.prod.cjs');
6
- var notabene_schema = require('../../dist/notabene.schema-e4c4160f.cjs.prod.cjs');
6
+ var notabene_schema = require('../../dist/notabene.schema-f4142b3c.cjs.prod.cjs');
7
7
  require('zod');
8
8
  require('nanoid');
9
9
  require('decimal.js');
@@ -11460,6 +11460,7 @@ exports.NotabeneTxCreateError = notabene_schema.NotabeneTxCreateError;
11460
11460
  exports.NotabeneTxCreateRequest = notabene_schema.NotabeneTxCreateRequest;
11461
11461
  exports.NotabeneTxCreateResponse = notabene_schema.NotabeneTxCreateResponse;
11462
11462
  exports.NotabeneTxCreateStatus = notabene_schema.NotabeneTxCreateStatus;
11463
+ exports.NotabeneTxValidateFullResponse = notabene_schema.NotabeneTxValidateFullResponse;
11463
11464
  exports.PhoneMetadata = notabene_schema.PhoneMetadata;
11464
11465
  exports.PhoneVerificationAnalysisResponse = notabene_schema.PhoneVerificationAnalysisResponse;
11465
11466
  exports.ProofOfAddressDocumentType = notabene_schema.ProofOfAddressDocumentType;
@@ -1,5 +1,5 @@
1
1
  export { g5 as ANALYSIS_TYPES, g6 as AnalysisType, ge as Coin, gj as EntityRiskDefaultsMap, gi as EntityRiskDefaultsValues, gp as GetActiveBlockchains, go as GetActiveBlockchainsRequest, gq as GetActiveBlockchainsResponse, gu as GetAddressAnalysis, gr as GetAddressAnalysisRequest, gw as GetAddressAnalysisResponse, gv as GetTransactionAnalysis, gs as GetTransactionAnalysisRequest, gx as GetTransactionAnalysisResponse, ga as NonMinimalScorechainBlockchain, g7 as OBJECT_TYPES, g8 as ObjectType, gz as RawScorechainResult, gh as RiskExplanation, gf as RiskSeverity, gm as ScorechainAnalysis, g9 as ScorechainBlockchain, gb as ScorechainBlockchainToNamespace, gt as ScorechainEntity, gg as ScorechainEntityType, gl as ScorechainError, gk as ScorechainErrorResponse, gA as ScorechainRiskToRiskLevel, gD as ScorechainTransactionRiskLevel, gC as ScorechainWalletRiskLevel, gB as ScorechainWalletRiskLevels, gy as ScoringAnalysisApiRequest, g0 as ScoringAnalysisRequest, gn as ScoringAnalysisResponse, g1 as WorkflowsScoringAnalysisRequest, gd as compareRiskLevels, gc as getRiskLevelByRiskScore } from '../../dist/vault.schema-8f9dcd31.esm.mjs';
2
- export { O as AMLMetadata, cS as APPLICANT_CHECK_STATUSES, d7 as ApiErrorCommandResponse, d6 as ApiErrorResponse, d8 as ApiSuccessCommandResponse, cT as ApplicantCheckStatus, cE as ApplicantImages, bD as ApplicantMemberOfSchema, dW as AuthToken, dX as AuthTokenError, dV as AuthTokenRequest, dY as AuthTokenResponse, bU as BENEFICIARY_TYPES, bF as BaseApplicantActionSchema, ba as BaseProvider, bW as BeneficiaryCompanyCustomerClaims, bX as BeneficiaryCompanyCustomerClaimsArray, bV as BeneficiaryType, dj as BeneficiaryVerificationStatus, dk as BeneficiaryVerificationStatusArray, j as BigCSErrorCodes, b5 as BigConfig, B as BigCryptoChain, h as BigProperties, g as BigPropertiesLiteral, i as BigProperty, bd as BigProvider, k as BitRankRequest, l as BitRankVerified, n as BitRankVerifiedError, m as BitRankVerifiedErrorResponse, o as BitRankVerifiedResponse, dg as COMPANY_DOCUMENT_STATUS, aq as COMPLY_ADVANTAGE_COUNTRY_FIELD_SOURCES, as as COMPLY_ADVANTAGE_DATE_OF_BIRTH_FIELD_SOURCES, ao as COMPLY_ADVANTAGE_NATIONALITY_FIELD_SOURCES, ah as COMPLY_ADVANTAGE_RESPONSE_MATCH_STATUS, ae as COMPLY_ADVANTAGE_RESPONSE_MATCH_TYPE, dE as ChainalysisApiError, b0 as ChainalysisConfig, dC as ChainalysisErrorCodes, bg as ChainalysisProvider, dA as ChainalysisRegisterApiResponse, dF as ChainalysisRegisterResponse, dz as ChainalysisRequest, dD as ChainalysisRiskAssessmentApiResponse, dG as ChainalysisRiskAssessmentResponse, dB as ChainalysisRiskLevel, a5 as CoerceDateUTC, dK as CoinMarketCapApiResponse, dL as CoinMarketCapFiatId, dI as CoinMarketCapQuote, dJ as CoinMarketCapQuotes, dH as CoinMarketCapRequest, di as CompanyDocumentMetaData, dh as CompanyDocumentStatus, aI as ComplyAdvantageAmlFullListing, aH as ComplyAdvantageAmlItemSource, ar as ComplyAdvantageCountryFieldSources, at as ComplyAdvantageDateOfBirthFieldSources, aG as ComplyAdvantageKeyInformation, aD as ComplyAdvantageMedia, aS as ComplyAdvantageMonitorSearchDataResponse, aU as ComplyAdvantageMonitorSearchResponse, aT as ComplyAdvantageMonitorSearchSuccessResponse, aV as ComplyAdvantageMonitoredSearchUpdate, ap as ComplyAdvantageNationalityFieldSources, bo as ComplyAdvantageProvider, bn as ComplyAdvantageProviderConfigElement, bm as ComplyAdvantageProviderConfigFilters, bl as ComplyAdvantageProviderConfigTypes, ai as ComplyAdvantageReponseMatchStatus, af as ComplyAdvantageResponseMatchType, aF as ComplyAdvantageSearchDataResponse, aE as ComplyAdvantageSearchDataResponseHit, aJ as ComplyAdvantageSearchEntitiesDataResponse, aL as ComplyAdvantageSearchEntitiesResponse, aK as ComplyAdvantageSearchEntitiesSuccessResponse, a as ComplyAdvantageSearchErrorResponse, aM as ComplyAdvantageSearchRequest, aN as ComplyAdvantageSearchRequests, C as ComplyAdvantageSearchResponse, b as ComplyAdvantageSearchSuccessResponse, aP as ComplyAdvantageUpdateSearchEntitiesRequest, aR as ComplyAdvantageUpdateSearchEntitiesResponse, aQ as ComplyAdvantageUpdateSearchEntitiesSuccessResponse, aO as ComplyAdvantageUpdateSearchRequest, aB as ComplyAdvantageUser, bu as CreateProviderInput, bv as CreateProviderResponse, au as CreateSearchInput, d2 as CredentialMetadata, b2 as CrystalIntelligenceConfig, bi as CrystalIntelligenceProvider, dS as CrystalWalletScreeningApiRequest, dT as CrystalWalletScreeningResponse, d1 as CustomerContactInformationOutput, dq as CustomerDocumentMetaData, dr as CustomerStatusResults, a_ as DataProvider, aZ as DataProviderOptions, bz as DeleteProviderInput, bA as DeleteProviderResponse, z as DocumentIdMetadata, y as DocumentIdType, D as DocumentIdTypes, cq as DocumentMetadataSchema, cr as DocumentSubmitResponse, K as EmailMetadata, E as EmailVerificationAnalysisResponse, cQ as EmailVerificationResponse, F as File, d0 as GetCredentialsOutput, dm as GetKybSessionInput, dn as GetKybSessionResponse, cW as GetKycSessionInput, cX as GetKycSessionResponse, d3 as GetKycSessionResponseWithCredentialsMetadata, d9 as GetKycSessionsOutput, bt as GetProviderResponse, bs as GetProvidersResponse, ac as HIGH_RISK_TYPES, d4 as IDImageMetaData, bS as INDIVIDUAL_BENEFICIARY_RELATIONS, aY as IdentityProvider, aX as IdentityProviderOptions, bT as IndividualBeneficiaryRelation, c as IpQualityAnalysisRequest, d as IpQualityAnalysisResponse, b6 as IpQualityConfig, e as IpQualityServiceAnalysis, I as IpQualityServiceAnalysisResponse, f as IpQualityServiceErrorResponse, bk as IpqualityscoreProvider, dc as KYB_RESULTS, de as KYB_SESSION_STATUSES, da as KYB_STEP_TYPES, c5 as KYC_DOC_SIDES, cM as KYC_RESULTS, cO as KYC_SESSION_STATUSES, cI as KYC_STEP_TYPES, dd as KybResult, df as KybSessionStatus, db as KybStep, c6 as KycDocSide, cN as KycResult, cP as KycSessionStatus, cJ as KycStep, cL as KycStepStatus, cK as KycStepStatuses, e0 as LegalPersonNameIdentifierType, L as LivenessMetadata, ad as MEDIUM_RISK_TYPES, aw as MatchStatus, av as MatchStatuses, aC as MatchTypeDetail, M as MergedProviders, dx as MerkleAddressApiError, dw as MerkleAddressApiResponse, dv as MerkleAddressRequest, dy as MerkleAddressResponse, du as MerkleBlockChainCodes, dt as MerkleBlockChainName, ds as MerkleBlockChainTypes, a$ as MerkleScienceConfig, bf as MerkleScienceProvider, d_ as NameIdentifierType, d$ as NationalIdentifierType, r as NestedSession, bc as NexeraIdKYBProvider, bb as NexeraIdSSIDProvider, dZ as NotabeneAssetResponse, dU as NotabeneAudience, b7 as NotabeneConfig, e3 as NotabeneErrorCode, e6 as NotabeneJurisdictionsCondition, e5 as NotabeneJurisdictionsRequest, e8 as NotabeneJurisdictionsResponse, e7 as NotabeneJurisdictionsUnitaryResponse, bj as NotabeneProvider, e4 as NotabeneTxCreateError, e1 as NotabeneTxCreateRequest, e2 as NotabeneTxCreateResponse, N as NotabeneTxCreateStatus, J as PhoneMetadata, P as PhoneVerificationAnalysisResponse, G as ProofOfAddressDocumentType, A as ProofOfAddressDocumentTypes, H as ProofOfAddressMetadata, c$ as ProofOfResidenceDocumentType, c_ as ProofOfResidenceMetaData, bq as ProviderData, br as ProviderDataProject, b9 as ProviderIntegrationType, b8 as ProviderIntegrationTypeOptions, aW as ProviderWithoutConfig, _ as RESULT_PARSER_ERROR, x as ReasonCode, w as ReasonCodes, R as RequestProperty, ay as RiskLevel, ax as RiskLevels, aa as SEARCH_FILTER_ADVERSE_MEDIA_TYPE, a8 as SEARCH_FILTER_PEP_TYPE, a6 as SEARCH_FILTER_SANCTION_TYPE, aj as SEARCH_FILTER_TYPES, Y as SESSION_NOT_FOUND, a2 as STEP_NOT_FOUND, bI as SUMSUB_APPLICANT_TYPES, cj as SUMSUB_COMPANY_BENEFICIARY_GROUP, c1 as SUMSUB_DOC_TYPES, c7 as SUMSUB_FLOW_LEVEL, cz as SUMSUB_KYB_SESSION_FLOW_SECTION_STATUS, c3 as SUMSUB_KYC_DOC_TYPES, co as SUMSUB_MEDIA_CONTENT_TYPES, bK as SUMSUB_REVIEW_ANSWERS, cF as SUMSUB_REVIEW_REJECT_LABELS, cH as SUMSUB_REVIEW_REJECT_LABELS_DESCRIPTION, bM as SUMSUB_REVIEW_REJECT_TYPES, b$ as SUMSUB_REVIEW_STATUSES, bG as SUMSUB_STEPS, bZ as SUMSUB_WEBHOOK_INTERNAL_STATUS, b3 as ScorechainConfig, be as ScorechainProvider, am as SearchEntityType, al as SearchEntityTypes, ab as SearchFilterAdverseMediaType, a9 as SearchFilterPepType, a7 as SearchFilterSanctionType, ak as SearchFilterType, an as SearchFilters, dl as SelectKybSession, cU as SelectKycSession, cR as SelectKycSessionStep, cV as SelectKycSessionWithCompletedSteps, d5 as SelfieImageMetaData, s as Session, t as SessionWithoutSteps, p as Status, S as Statuses, Q as Step, v as StepType, u as StepTypes, bQ as SumSubAddress, bR as SumSubApplicantInfo, ct as SumSubApplicantResetSchema, cs as SumSubApplicantReviewStatusSchema, cy as SumSubApplicantSchema, bJ as SumSubApplicantType, cn as SumSubApplicantVerificationStepSchema, bY as SumSubCompanyApplicantInfo, ch as SumSubCompanyApplicantSchema, c2 as SumSubDocType, c8 as SumSubFlowLevel, cu as SumSubGenerateExternalWebSdkLinkSchema, ci as SumSubImageId, cc as SumSubImageReviewResultSchema, cd as SumSubImageStatus, cg as SumSubIndividualApplicantSchema, c4 as SumSubKycDocType, cp as SumSubMediaContentType, c9 as SumSubRequiredIdDoc, bL as SumSubReviewAnswer, cG as SumSubReviewRejectLabel, bN as SumSubReviewRejectType, cb as SumSubReviewResultSchema, c0 as SumSubReviewStatus, cD as SumSubSimilarApplicantsSchema, bH as SumSubStep, cm as SumSubVerificationStepSchema, bE as SumSubWebhookSchema, cf as SumsubApplicantType, ce as SumsubApplicantTypes, ck as SumsubCompanyBeneficiaryGroup, bP as SumsubCountryCode, cx as SumsubKybDataSchema, cC as SumsubKybSessionFlowSection, cB as SumsubKybSessionFlowSectionItem, cA as SumsubKybSessionFlowSectionStatus, cw as SumsubKycDataSchema, bO as SumsubReviewDecision, cl as SumsubStepStatus, cv as SumsubVideoCallData, b_ as SumsubWebhookInternalStatus, bp as SynapsProvider, $ as SynapsSessionErrorResponse, T as SynapsSessionEvent, X as SynapsSessionRequest, a0 as SynapsSessionResponse, a3 as SynapsStepErrorResponse, U as SynapsStepEvent, a1 as SynapsStepRequest, a4 as SynapsStepResponse, dQ as TRMLabsAddressesScreening, dM as TRMLabsAddressesScreeningApiRequest, dR as TRMLabsAddressesScreeningResponse, b1 as TRMLabsConfig, bh as TRMLabsProvider, dP as TRMLabsRiskScoreToScorechainRiskMapping, dN as TRM_RISK_SCORE_LEVEL, dO as TRM_RISK_SCORE_LEVEL_LABEL, by as ToggleProviderInput, Z as UNKNOWN_ERROR, dp as UpdateKybSessionOutput, cY as UpdateKycSessionOutput, bw as UpdateProviderInput, bx as UpdateProviderResponse, aA as UpdateSearchEntitiesInput, az as UpdateSearchInput, ca as UploadDocumentRequest, cZ as VideoKycMetaData, bB as WEBHOOK_TYPES, q as WebhookPayload, bC as WebhookType, b4 as WorkflowsScorechainConfig, W as WrappedIpQualityServiceErrorResponse, ag as mappingMatchTypeToLabel, V as typeToHumanReadable } from '../../dist/notabene.schema-9de93973.esm.mjs';
2
+ export { O as AMLMetadata, cS as APPLICANT_CHECK_STATUSES, d7 as ApiErrorCommandResponse, d6 as ApiErrorResponse, d8 as ApiSuccessCommandResponse, cT as ApplicantCheckStatus, cE as ApplicantImages, bD as ApplicantMemberOfSchema, dW as AuthToken, dX as AuthTokenError, dV as AuthTokenRequest, dY as AuthTokenResponse, bU as BENEFICIARY_TYPES, bF as BaseApplicantActionSchema, ba as BaseProvider, bW as BeneficiaryCompanyCustomerClaims, bX as BeneficiaryCompanyCustomerClaimsArray, bV as BeneficiaryType, dj as BeneficiaryVerificationStatus, dk as BeneficiaryVerificationStatusArray, j as BigCSErrorCodes, b5 as BigConfig, B as BigCryptoChain, h as BigProperties, g as BigPropertiesLiteral, i as BigProperty, bd as BigProvider, k as BitRankRequest, l as BitRankVerified, n as BitRankVerifiedError, m as BitRankVerifiedErrorResponse, o as BitRankVerifiedResponse, dg as COMPANY_DOCUMENT_STATUS, aq as COMPLY_ADVANTAGE_COUNTRY_FIELD_SOURCES, as as COMPLY_ADVANTAGE_DATE_OF_BIRTH_FIELD_SOURCES, ao as COMPLY_ADVANTAGE_NATIONALITY_FIELD_SOURCES, ah as COMPLY_ADVANTAGE_RESPONSE_MATCH_STATUS, ae as COMPLY_ADVANTAGE_RESPONSE_MATCH_TYPE, dE as ChainalysisApiError, b0 as ChainalysisConfig, dC as ChainalysisErrorCodes, bg as ChainalysisProvider, dA as ChainalysisRegisterApiResponse, dF as ChainalysisRegisterResponse, dz as ChainalysisRequest, dD as ChainalysisRiskAssessmentApiResponse, dG as ChainalysisRiskAssessmentResponse, dB as ChainalysisRiskLevel, a5 as CoerceDateUTC, dK as CoinMarketCapApiResponse, dL as CoinMarketCapFiatId, dI as CoinMarketCapQuote, dJ as CoinMarketCapQuotes, dH as CoinMarketCapRequest, di as CompanyDocumentMetaData, dh as CompanyDocumentStatus, aI as ComplyAdvantageAmlFullListing, aH as ComplyAdvantageAmlItemSource, ar as ComplyAdvantageCountryFieldSources, at as ComplyAdvantageDateOfBirthFieldSources, aG as ComplyAdvantageKeyInformation, aD as ComplyAdvantageMedia, aS as ComplyAdvantageMonitorSearchDataResponse, aU as ComplyAdvantageMonitorSearchResponse, aT as ComplyAdvantageMonitorSearchSuccessResponse, aV as ComplyAdvantageMonitoredSearchUpdate, ap as ComplyAdvantageNationalityFieldSources, bo as ComplyAdvantageProvider, bn as ComplyAdvantageProviderConfigElement, bm as ComplyAdvantageProviderConfigFilters, bl as ComplyAdvantageProviderConfigTypes, ai as ComplyAdvantageReponseMatchStatus, af as ComplyAdvantageResponseMatchType, aF as ComplyAdvantageSearchDataResponse, aE as ComplyAdvantageSearchDataResponseHit, aJ as ComplyAdvantageSearchEntitiesDataResponse, aL as ComplyAdvantageSearchEntitiesResponse, aK as ComplyAdvantageSearchEntitiesSuccessResponse, a as ComplyAdvantageSearchErrorResponse, aM as ComplyAdvantageSearchRequest, aN as ComplyAdvantageSearchRequests, C as ComplyAdvantageSearchResponse, b as ComplyAdvantageSearchSuccessResponse, aP as ComplyAdvantageUpdateSearchEntitiesRequest, aR as ComplyAdvantageUpdateSearchEntitiesResponse, aQ as ComplyAdvantageUpdateSearchEntitiesSuccessResponse, aO as ComplyAdvantageUpdateSearchRequest, aB as ComplyAdvantageUser, bu as CreateProviderInput, bv as CreateProviderResponse, au as CreateSearchInput, d2 as CredentialMetadata, b2 as CrystalIntelligenceConfig, bi as CrystalIntelligenceProvider, dS as CrystalWalletScreeningApiRequest, dT as CrystalWalletScreeningResponse, d1 as CustomerContactInformationOutput, dq as CustomerDocumentMetaData, dr as CustomerStatusResults, a_ as DataProvider, aZ as DataProviderOptions, bz as DeleteProviderInput, bA as DeleteProviderResponse, z as DocumentIdMetadata, y as DocumentIdType, D as DocumentIdTypes, cq as DocumentMetadataSchema, cr as DocumentSubmitResponse, K as EmailMetadata, E as EmailVerificationAnalysisResponse, cQ as EmailVerificationResponse, F as File, d0 as GetCredentialsOutput, dm as GetKybSessionInput, dn as GetKybSessionResponse, cW as GetKycSessionInput, cX as GetKycSessionResponse, d3 as GetKycSessionResponseWithCredentialsMetadata, d9 as GetKycSessionsOutput, bt as GetProviderResponse, bs as GetProvidersResponse, ac as HIGH_RISK_TYPES, d4 as IDImageMetaData, bS as INDIVIDUAL_BENEFICIARY_RELATIONS, aY as IdentityProvider, aX as IdentityProviderOptions, bT as IndividualBeneficiaryRelation, c as IpQualityAnalysisRequest, d as IpQualityAnalysisResponse, b6 as IpQualityConfig, e as IpQualityServiceAnalysis, I as IpQualityServiceAnalysisResponse, f as IpQualityServiceErrorResponse, bk as IpqualityscoreProvider, dc as KYB_RESULTS, de as KYB_SESSION_STATUSES, da as KYB_STEP_TYPES, c5 as KYC_DOC_SIDES, cM as KYC_RESULTS, cO as KYC_SESSION_STATUSES, cI as KYC_STEP_TYPES, dd as KybResult, df as KybSessionStatus, db as KybStep, c6 as KycDocSide, cN as KycResult, cP as KycSessionStatus, cJ as KycStep, cL as KycStepStatus, cK as KycStepStatuses, e0 as LegalPersonNameIdentifierType, L as LivenessMetadata, ad as MEDIUM_RISK_TYPES, aw as MatchStatus, av as MatchStatuses, aC as MatchTypeDetail, M as MergedProviders, dx as MerkleAddressApiError, dw as MerkleAddressApiResponse, dv as MerkleAddressRequest, dy as MerkleAddressResponse, du as MerkleBlockChainCodes, dt as MerkleBlockChainName, ds as MerkleBlockChainTypes, a$ as MerkleScienceConfig, bf as MerkleScienceProvider, d_ as NameIdentifierType, d$ as NationalIdentifierType, r as NestedSession, bc as NexeraIdKYBProvider, bb as NexeraIdSSIDProvider, dZ as NotabeneAssetResponse, dU as NotabeneAudience, b7 as NotabeneConfig, e3 as NotabeneErrorCode, e7 as NotabeneJurisdictionsCondition, e6 as NotabeneJurisdictionsRequest, e9 as NotabeneJurisdictionsResponse, e8 as NotabeneJurisdictionsUnitaryResponse, bj as NotabeneProvider, e4 as NotabeneTxCreateError, e1 as NotabeneTxCreateRequest, e2 as NotabeneTxCreateResponse, N as NotabeneTxCreateStatus, e5 as NotabeneTxValidateFullResponse, J as PhoneMetadata, P as PhoneVerificationAnalysisResponse, G as ProofOfAddressDocumentType, A as ProofOfAddressDocumentTypes, H as ProofOfAddressMetadata, c$ as ProofOfResidenceDocumentType, c_ as ProofOfResidenceMetaData, bq as ProviderData, br as ProviderDataProject, b9 as ProviderIntegrationType, b8 as ProviderIntegrationTypeOptions, aW as ProviderWithoutConfig, _ as RESULT_PARSER_ERROR, x as ReasonCode, w as ReasonCodes, R as RequestProperty, ay as RiskLevel, ax as RiskLevels, aa as SEARCH_FILTER_ADVERSE_MEDIA_TYPE, a8 as SEARCH_FILTER_PEP_TYPE, a6 as SEARCH_FILTER_SANCTION_TYPE, aj as SEARCH_FILTER_TYPES, Y as SESSION_NOT_FOUND, a2 as STEP_NOT_FOUND, bI as SUMSUB_APPLICANT_TYPES, cj as SUMSUB_COMPANY_BENEFICIARY_GROUP, c1 as SUMSUB_DOC_TYPES, c7 as SUMSUB_FLOW_LEVEL, cz as SUMSUB_KYB_SESSION_FLOW_SECTION_STATUS, c3 as SUMSUB_KYC_DOC_TYPES, co as SUMSUB_MEDIA_CONTENT_TYPES, bK as SUMSUB_REVIEW_ANSWERS, cF as SUMSUB_REVIEW_REJECT_LABELS, cH as SUMSUB_REVIEW_REJECT_LABELS_DESCRIPTION, bM as SUMSUB_REVIEW_REJECT_TYPES, b$ as SUMSUB_REVIEW_STATUSES, bG as SUMSUB_STEPS, bZ as SUMSUB_WEBHOOK_INTERNAL_STATUS, b3 as ScorechainConfig, be as ScorechainProvider, am as SearchEntityType, al as SearchEntityTypes, ab as SearchFilterAdverseMediaType, a9 as SearchFilterPepType, a7 as SearchFilterSanctionType, ak as SearchFilterType, an as SearchFilters, dl as SelectKybSession, cU as SelectKycSession, cR as SelectKycSessionStep, cV as SelectKycSessionWithCompletedSteps, d5 as SelfieImageMetaData, s as Session, t as SessionWithoutSteps, p as Status, S as Statuses, Q as Step, v as StepType, u as StepTypes, bQ as SumSubAddress, bR as SumSubApplicantInfo, ct as SumSubApplicantResetSchema, cs as SumSubApplicantReviewStatusSchema, cy as SumSubApplicantSchema, bJ as SumSubApplicantType, cn as SumSubApplicantVerificationStepSchema, bY as SumSubCompanyApplicantInfo, ch as SumSubCompanyApplicantSchema, c2 as SumSubDocType, c8 as SumSubFlowLevel, cu as SumSubGenerateExternalWebSdkLinkSchema, ci as SumSubImageId, cc as SumSubImageReviewResultSchema, cd as SumSubImageStatus, cg as SumSubIndividualApplicantSchema, c4 as SumSubKycDocType, cp as SumSubMediaContentType, c9 as SumSubRequiredIdDoc, bL as SumSubReviewAnswer, cG as SumSubReviewRejectLabel, bN as SumSubReviewRejectType, cb as SumSubReviewResultSchema, c0 as SumSubReviewStatus, cD as SumSubSimilarApplicantsSchema, bH as SumSubStep, cm as SumSubVerificationStepSchema, bE as SumSubWebhookSchema, cf as SumsubApplicantType, ce as SumsubApplicantTypes, ck as SumsubCompanyBeneficiaryGroup, bP as SumsubCountryCode, cx as SumsubKybDataSchema, cC as SumsubKybSessionFlowSection, cB as SumsubKybSessionFlowSectionItem, cA as SumsubKybSessionFlowSectionStatus, cw as SumsubKycDataSchema, bO as SumsubReviewDecision, cl as SumsubStepStatus, cv as SumsubVideoCallData, b_ as SumsubWebhookInternalStatus, bp as SynapsProvider, $ as SynapsSessionErrorResponse, T as SynapsSessionEvent, X as SynapsSessionRequest, a0 as SynapsSessionResponse, a3 as SynapsStepErrorResponse, U as SynapsStepEvent, a1 as SynapsStepRequest, a4 as SynapsStepResponse, dQ as TRMLabsAddressesScreening, dM as TRMLabsAddressesScreeningApiRequest, dR as TRMLabsAddressesScreeningResponse, b1 as TRMLabsConfig, bh as TRMLabsProvider, dP as TRMLabsRiskScoreToScorechainRiskMapping, dN as TRM_RISK_SCORE_LEVEL, dO as TRM_RISK_SCORE_LEVEL_LABEL, by as ToggleProviderInput, Z as UNKNOWN_ERROR, dp as UpdateKybSessionOutput, cY as UpdateKycSessionOutput, bw as UpdateProviderInput, bx as UpdateProviderResponse, aA as UpdateSearchEntitiesInput, az as UpdateSearchInput, ca as UploadDocumentRequest, cZ as VideoKycMetaData, bB as WEBHOOK_TYPES, q as WebhookPayload, bC as WebhookType, b4 as WorkflowsScorechainConfig, W as WrappedIpQualityServiceErrorResponse, ag as mappingMatchTypeToLabel, V as typeToHumanReadable } from '../../dist/notabene.schema-61d983be.esm.mjs';
3
3
  import 'zod';
4
4
  import 'nanoid';
5
5
  import 'decimal.js';
@@ -5,7 +5,7 @@ Object.defineProperty(exports, '__esModule', { value: true });
5
5
  var z = require('zod');
6
6
  var vault_schema = require('../../dist/vault.schema-31179c6c.cjs.dev.cjs');
7
7
  var identityApi_schema = require('../../dist/identity-api.schema-897fa13f.cjs.dev.cjs');
8
- var notabene_schema = require('../../dist/notabene.schema-eaefb531.cjs.dev.cjs');
8
+ var notabene_schema = require('../../dist/notabene.schema-499609b3.cjs.dev.cjs');
9
9
  var toArray = require('../../dist/toArray-5e5125f2.cjs.dev.cjs');
10
10
  var zodToJsonSchema = require('zod-to-json-schema');
11
11
  require('nanoid');
@@ -5,7 +5,7 @@ Object.defineProperty(exports, '__esModule', { value: true });
5
5
  var z = require('zod');
6
6
  var vault_schema = require('../../dist/vault.schema-a7ef3965.cjs.prod.cjs');
7
7
  var identityApi_schema = require('../../dist/identity-api.schema-f130919a.cjs.prod.cjs');
8
- var notabene_schema = require('../../dist/notabene.schema-e4c4160f.cjs.prod.cjs');
8
+ var notabene_schema = require('../../dist/notabene.schema-f4142b3c.cjs.prod.cjs');
9
9
  var toArray = require('../../dist/toArray-9f6e79c6.cjs.prod.cjs');
10
10
  var zodToJsonSchema = require('zod-to-json-schema');
11
11
  require('nanoid');
@@ -1,7 +1,7 @@
1
1
  import { z } from 'zod';
2
2
  import { aX as UuidString, dM as ExternalCustomerId, dK as WorkflowId, bf as RiskScoreType, bh as CustomerType, bn as CustomerOnboardingLevel, bp as CustomerStatus, b3 as ISO3CountryCode, au as BlockchainAddress, e4 as GenericVerifiableCredentialSchema, fQ as WalletScreeningData, et as TransactionTypes, ez as TransactionReviewStatuses, fZ as _toConsumableArray, aW as EnvironmentSchema } from '../../dist/vault.schema-8f9dcd31.esm.mjs';
3
3
  import { Y as RuleResultStatus } from '../../dist/identity-api.schema-ace335f7.esm.mjs';
4
- import { M as MergedProviders, I as IpQualityServiceAnalysisResponse, C as ComplyAdvantageSearchResponse, a as ComplyAdvantageSearchErrorResponse, b as ComplyAdvantageSearchSuccessResponse } from '../../dist/notabene.schema-9de93973.esm.mjs';
4
+ import { M as MergedProviders, I as IpQualityServiceAnalysisResponse, C as ComplyAdvantageSearchResponse, a as ComplyAdvantageSearchErrorResponse, b as ComplyAdvantageSearchSuccessResponse } from '../../dist/notabene.schema-61d983be.esm.mjs';
5
5
  import { _ as _toArray } from '../../dist/toArray-c7fd14be.esm.mjs';
6
6
  import { zodToJsonSchema } from 'zod-to-json-schema';
7
7
  import 'nanoid';