@dynamic-labs-wallet/core 0.0.0-preview.112 → 0.0.0-preview.114.2
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/index.cjs.js +51 -8
- package/index.esm.js +45 -7
- package/package.json +1 -1
- package/src/api/client.d.ts.map +1 -1
- package/src/constants.d.ts +23 -2
- package/src/constants.d.ts.map +1 -1
package/index.cjs.js
CHANGED
|
@@ -4,10 +4,29 @@ var axios = require('axios');
|
|
|
4
4
|
|
|
5
5
|
const DYNAMIC_AUTH_PROD_BASE_API_URL = 'https://app.dynamicauth.com';
|
|
6
6
|
const DYNAMIC_AUTH_PREPROD_BASE_API_URL = 'https://app.dynamic-preprod.xyz';
|
|
7
|
+
const DYNAMIC_AUTH_DEV_BASE_API_URL = 'http://localhost:4200';
|
|
8
|
+
var ENVIRONMENT_ENUM = /*#__PURE__*/ function(ENVIRONMENT_ENUM) {
|
|
9
|
+
ENVIRONMENT_ENUM["development"] = "development";
|
|
10
|
+
ENVIRONMENT_ENUM["preprod"] = "preprod";
|
|
11
|
+
ENVIRONMENT_ENUM["production"] = "production";
|
|
12
|
+
return ENVIRONMENT_ENUM;
|
|
13
|
+
}({});
|
|
7
14
|
const DYNAMIC_CLIENT_RELAY_PROD_BASE_API_URL = 'https://app-dynamicauth-com-app-6e12fc400995.relay.evervault.app';
|
|
8
15
|
const DYNAMIC_CLIENT_RELAY_PREPROD_BASE_API_URL = 'https://app-dynamic-preprod-xyz-app-32d15525a875.relay.evervault.app';
|
|
16
|
+
const DYNAMIC_CLIENT_RELAY_DEV_BASE_API_URL = 'http://localhost:4200';
|
|
17
|
+
const DYNAMIC_AUTH_BASE_API_URL_MAP = {
|
|
18
|
+
["production"]: DYNAMIC_AUTH_PROD_BASE_API_URL,
|
|
19
|
+
["preprod"]: DYNAMIC_AUTH_PREPROD_BASE_API_URL,
|
|
20
|
+
["development"]: DYNAMIC_AUTH_DEV_BASE_API_URL
|
|
21
|
+
};
|
|
22
|
+
const DYNAMIC_CLIENT_RELAY_MAP = {
|
|
23
|
+
["production"]: DYNAMIC_CLIENT_RELAY_PROD_BASE_API_URL,
|
|
24
|
+
["preprod"]: DYNAMIC_CLIENT_RELAY_PREPROD_BASE_API_URL,
|
|
25
|
+
["development"]: DYNAMIC_CLIENT_RELAY_DEV_BASE_API_URL
|
|
26
|
+
};
|
|
9
27
|
const MPC_RELAY_PROD_API_URL = 'relay.dynamicauth.com';
|
|
10
28
|
const MPC_RELAY_PREPROD_API_URL = 'relay.dynamic-preprod.xyz';
|
|
29
|
+
const MPC_RELAY_DEV_API_URL = 'relay.localhost:4200';
|
|
11
30
|
const SOLANA_RPC_URL = 'https://api.devnet.solana.com';
|
|
12
31
|
const chain = {
|
|
13
32
|
EVM: 'EVM',
|
|
@@ -36,9 +55,11 @@ var BackupLocation = /*#__PURE__*/ function(BackupLocation) {
|
|
|
36
55
|
BackupLocation["EXTERNAL"] = "external";
|
|
37
56
|
return BackupLocation;
|
|
38
57
|
}({});
|
|
39
|
-
|
|
40
|
-
|
|
41
|
-
|
|
58
|
+
const IFRAME_DOMAIN_MAP = {
|
|
59
|
+
development: 'http://localhost:3333',
|
|
60
|
+
preprod: 'https://waas.dynamic-preprod.xyz',
|
|
61
|
+
production: 'https://waas.dynamicauth.com'
|
|
62
|
+
};
|
|
42
63
|
const ChainEnumToVerifiedCredentialName = {
|
|
43
64
|
BTC: 'bip122',
|
|
44
65
|
EVM: 'eip155',
|
|
@@ -383,13 +404,30 @@ class BaseClient {
|
|
|
383
404
|
const headers = {};
|
|
384
405
|
headers['Authorization'] = authToken ? `Bearer ${authToken}` : undefined;
|
|
385
406
|
this.environmentId = environmentId;
|
|
386
|
-
|
|
387
|
-
|
|
407
|
+
let environment;
|
|
408
|
+
switch(baseApiUrl){
|
|
409
|
+
case undefined:
|
|
410
|
+
environment = ENVIRONMENT_ENUM.production;
|
|
411
|
+
break;
|
|
412
|
+
case DYNAMIC_AUTH_PROD_BASE_API_URL:
|
|
413
|
+
environment = ENVIRONMENT_ENUM.production;
|
|
414
|
+
break;
|
|
415
|
+
case DYNAMIC_AUTH_PREPROD_BASE_API_URL:
|
|
416
|
+
environment = ENVIRONMENT_ENUM.preprod;
|
|
417
|
+
break;
|
|
418
|
+
case DYNAMIC_AUTH_DEV_BASE_API_URL:
|
|
419
|
+
environment = ENVIRONMENT_ENUM.development;
|
|
420
|
+
break;
|
|
421
|
+
default:
|
|
422
|
+
environment = ENVIRONMENT_ENUM.development;
|
|
423
|
+
break;
|
|
424
|
+
}
|
|
425
|
+
this.baseApiUrl = baseApiUrl != null ? baseApiUrl : DYNAMIC_AUTH_BASE_API_URL_MAP[environment];
|
|
388
426
|
this.apiClient = axios.create({
|
|
389
427
|
baseURL: this.baseApiUrl,
|
|
390
428
|
headers
|
|
391
429
|
});
|
|
392
|
-
this.clientRelayBaseApiUrl =
|
|
430
|
+
this.clientRelayBaseApiUrl = baseClientRelayApiUrl != null ? baseClientRelayApiUrl : DYNAMIC_CLIENT_RELAY_MAP[environment];
|
|
393
431
|
this.clientRelayApiClient = axios.create({
|
|
394
432
|
baseURL: this.clientRelayBaseApiUrl,
|
|
395
433
|
headers
|
|
@@ -689,15 +727,20 @@ exports.BITCOIN_DERIVATION_PATHS = BITCOIN_DERIVATION_PATHS;
|
|
|
689
727
|
exports.BackupLocation = BackupLocation;
|
|
690
728
|
exports.ChainEnumToVerifiedCredentialName = ChainEnumToVerifiedCredentialName;
|
|
691
729
|
exports.CreateRoomPartiesOptions = CreateRoomPartiesOptions;
|
|
730
|
+
exports.DYNAMIC_AUTH_BASE_API_URL_MAP = DYNAMIC_AUTH_BASE_API_URL_MAP;
|
|
731
|
+
exports.DYNAMIC_AUTH_DEV_BASE_API_URL = DYNAMIC_AUTH_DEV_BASE_API_URL;
|
|
692
732
|
exports.DYNAMIC_AUTH_PREPROD_BASE_API_URL = DYNAMIC_AUTH_PREPROD_BASE_API_URL;
|
|
693
733
|
exports.DYNAMIC_AUTH_PROD_BASE_API_URL = DYNAMIC_AUTH_PROD_BASE_API_URL;
|
|
734
|
+
exports.DYNAMIC_CLIENT_RELAY_DEV_BASE_API_URL = DYNAMIC_CLIENT_RELAY_DEV_BASE_API_URL;
|
|
735
|
+
exports.DYNAMIC_CLIENT_RELAY_MAP = DYNAMIC_CLIENT_RELAY_MAP;
|
|
694
736
|
exports.DYNAMIC_CLIENT_RELAY_PREPROD_BASE_API_URL = DYNAMIC_CLIENT_RELAY_PREPROD_BASE_API_URL;
|
|
695
737
|
exports.DYNAMIC_CLIENT_RELAY_PROD_BASE_API_URL = DYNAMIC_CLIENT_RELAY_PROD_BASE_API_URL;
|
|
696
738
|
exports.DynamicApiClient = DynamicApiClient;
|
|
697
|
-
exports.
|
|
698
|
-
exports.
|
|
739
|
+
exports.ENVIRONMENT_ENUM = ENVIRONMENT_ENUM;
|
|
740
|
+
exports.IFRAME_DOMAIN_MAP = IFRAME_DOMAIN_MAP;
|
|
699
741
|
exports.MPC_CHAIN_CONFIG = MPC_CHAIN_CONFIG;
|
|
700
742
|
exports.MPC_CONFIG = MPC_CONFIG;
|
|
743
|
+
exports.MPC_RELAY_DEV_API_URL = MPC_RELAY_DEV_API_URL;
|
|
701
744
|
exports.MPC_RELAY_PREPROD_API_URL = MPC_RELAY_PREPROD_API_URL;
|
|
702
745
|
exports.MPC_RELAY_PROD_API_URL = MPC_RELAY_PROD_API_URL;
|
|
703
746
|
exports.SOLANA_RPC_URL = SOLANA_RPC_URL;
|
package/index.esm.js
CHANGED
|
@@ -2,10 +2,29 @@ import axios from 'axios';
|
|
|
2
2
|
|
|
3
3
|
const DYNAMIC_AUTH_PROD_BASE_API_URL = 'https://app.dynamicauth.com';
|
|
4
4
|
const DYNAMIC_AUTH_PREPROD_BASE_API_URL = 'https://app.dynamic-preprod.xyz';
|
|
5
|
+
const DYNAMIC_AUTH_DEV_BASE_API_URL = 'http://localhost:4200';
|
|
6
|
+
var ENVIRONMENT_ENUM = /*#__PURE__*/ function(ENVIRONMENT_ENUM) {
|
|
7
|
+
ENVIRONMENT_ENUM["development"] = "development";
|
|
8
|
+
ENVIRONMENT_ENUM["preprod"] = "preprod";
|
|
9
|
+
ENVIRONMENT_ENUM["production"] = "production";
|
|
10
|
+
return ENVIRONMENT_ENUM;
|
|
11
|
+
}({});
|
|
5
12
|
const DYNAMIC_CLIENT_RELAY_PROD_BASE_API_URL = 'https://app-dynamicauth-com-app-6e12fc400995.relay.evervault.app';
|
|
6
13
|
const DYNAMIC_CLIENT_RELAY_PREPROD_BASE_API_URL = 'https://app-dynamic-preprod-xyz-app-32d15525a875.relay.evervault.app';
|
|
14
|
+
const DYNAMIC_CLIENT_RELAY_DEV_BASE_API_URL = 'http://localhost:4200';
|
|
15
|
+
const DYNAMIC_AUTH_BASE_API_URL_MAP = {
|
|
16
|
+
["production"]: DYNAMIC_AUTH_PROD_BASE_API_URL,
|
|
17
|
+
["preprod"]: DYNAMIC_AUTH_PREPROD_BASE_API_URL,
|
|
18
|
+
["development"]: DYNAMIC_AUTH_DEV_BASE_API_URL
|
|
19
|
+
};
|
|
20
|
+
const DYNAMIC_CLIENT_RELAY_MAP = {
|
|
21
|
+
["production"]: DYNAMIC_CLIENT_RELAY_PROD_BASE_API_URL,
|
|
22
|
+
["preprod"]: DYNAMIC_CLIENT_RELAY_PREPROD_BASE_API_URL,
|
|
23
|
+
["development"]: DYNAMIC_CLIENT_RELAY_DEV_BASE_API_URL
|
|
24
|
+
};
|
|
7
25
|
const MPC_RELAY_PROD_API_URL = 'relay.dynamicauth.com';
|
|
8
26
|
const MPC_RELAY_PREPROD_API_URL = 'relay.dynamic-preprod.xyz';
|
|
27
|
+
const MPC_RELAY_DEV_API_URL = 'relay.localhost:4200';
|
|
9
28
|
const SOLANA_RPC_URL = 'https://api.devnet.solana.com';
|
|
10
29
|
const chain = {
|
|
11
30
|
EVM: 'EVM',
|
|
@@ -34,9 +53,11 @@ var BackupLocation = /*#__PURE__*/ function(BackupLocation) {
|
|
|
34
53
|
BackupLocation["EXTERNAL"] = "external";
|
|
35
54
|
return BackupLocation;
|
|
36
55
|
}({});
|
|
37
|
-
|
|
38
|
-
|
|
39
|
-
|
|
56
|
+
const IFRAME_DOMAIN_MAP = {
|
|
57
|
+
development: 'http://localhost:3333',
|
|
58
|
+
preprod: 'https://waas.dynamic-preprod.xyz',
|
|
59
|
+
production: 'https://waas.dynamicauth.com'
|
|
60
|
+
};
|
|
40
61
|
const ChainEnumToVerifiedCredentialName = {
|
|
41
62
|
BTC: 'bip122',
|
|
42
63
|
EVM: 'eip155',
|
|
@@ -381,13 +402,30 @@ class BaseClient {
|
|
|
381
402
|
const headers = {};
|
|
382
403
|
headers['Authorization'] = authToken ? `Bearer ${authToken}` : undefined;
|
|
383
404
|
this.environmentId = environmentId;
|
|
384
|
-
|
|
385
|
-
|
|
405
|
+
let environment;
|
|
406
|
+
switch(baseApiUrl){
|
|
407
|
+
case undefined:
|
|
408
|
+
environment = ENVIRONMENT_ENUM.production;
|
|
409
|
+
break;
|
|
410
|
+
case DYNAMIC_AUTH_PROD_BASE_API_URL:
|
|
411
|
+
environment = ENVIRONMENT_ENUM.production;
|
|
412
|
+
break;
|
|
413
|
+
case DYNAMIC_AUTH_PREPROD_BASE_API_URL:
|
|
414
|
+
environment = ENVIRONMENT_ENUM.preprod;
|
|
415
|
+
break;
|
|
416
|
+
case DYNAMIC_AUTH_DEV_BASE_API_URL:
|
|
417
|
+
environment = ENVIRONMENT_ENUM.development;
|
|
418
|
+
break;
|
|
419
|
+
default:
|
|
420
|
+
environment = ENVIRONMENT_ENUM.development;
|
|
421
|
+
break;
|
|
422
|
+
}
|
|
423
|
+
this.baseApiUrl = baseApiUrl != null ? baseApiUrl : DYNAMIC_AUTH_BASE_API_URL_MAP[environment];
|
|
386
424
|
this.apiClient = axios.create({
|
|
387
425
|
baseURL: this.baseApiUrl,
|
|
388
426
|
headers
|
|
389
427
|
});
|
|
390
|
-
this.clientRelayBaseApiUrl =
|
|
428
|
+
this.clientRelayBaseApiUrl = baseClientRelayApiUrl != null ? baseClientRelayApiUrl : DYNAMIC_CLIENT_RELAY_MAP[environment];
|
|
391
429
|
this.clientRelayApiClient = axios.create({
|
|
392
430
|
baseURL: this.clientRelayBaseApiUrl,
|
|
393
431
|
headers
|
|
@@ -683,4 +721,4 @@ class DynamicApiClient extends BaseClient {
|
|
|
683
721
|
}
|
|
684
722
|
}
|
|
685
723
|
|
|
686
|
-
export { BITCOIN_DERIVATION_PATHS, BackupLocation, ChainEnumToVerifiedCredentialName, CreateRoomPartiesOptions, DYNAMIC_AUTH_PREPROD_BASE_API_URL, DYNAMIC_AUTH_PROD_BASE_API_URL, DYNAMIC_CLIENT_RELAY_PREPROD_BASE_API_URL, DYNAMIC_CLIENT_RELAY_PROD_BASE_API_URL, DynamicApiClient,
|
|
724
|
+
export { BITCOIN_DERIVATION_PATHS, BackupLocation, ChainEnumToVerifiedCredentialName, CreateRoomPartiesOptions, DYNAMIC_AUTH_BASE_API_URL_MAP, DYNAMIC_AUTH_DEV_BASE_API_URL, DYNAMIC_AUTH_PREPROD_BASE_API_URL, DYNAMIC_AUTH_PROD_BASE_API_URL, DYNAMIC_CLIENT_RELAY_DEV_BASE_API_URL, DYNAMIC_CLIENT_RELAY_MAP, DYNAMIC_CLIENT_RELAY_PREPROD_BASE_API_URL, DYNAMIC_CLIENT_RELAY_PROD_BASE_API_URL, DynamicApiClient, ENVIRONMENT_ENUM, IFRAME_DOMAIN_MAP, MPC_CHAIN_CONFIG, MPC_CONFIG, MPC_RELAY_DEV_API_URL, MPC_RELAY_PREPROD_API_URL, MPC_RELAY_PROD_API_URL, SOLANA_RPC_URL, SigningAlgorithm, SuccessEventType, ThresholdSignatureScheme, VerifiedCredentialNameToChainEnum, WalletOperation, chain, getClientThreshold, getDynamicServerThreshold, getMPCChainConfig, getReshareConfig, getServerWalletReshareConfig, getTSSConfig };
|
package/package.json
CHANGED
package/src/api/client.d.ts.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"client.d.ts","sourceRoot":"","sources":["../../src/api/client.ts"],"names":[],"mappings":"AAAA,OAAc,EAAE,KAAK,aAAa,EAAE,MAAM,OAAO,CAAC;
|
|
1
|
+
{"version":3,"file":"client.d.ts","sourceRoot":"","sources":["../../src/api/client.ts"],"names":[],"mappings":"AAAA,OAAc,EAAE,KAAK,aAAa,EAAE,MAAM,OAAO,CAAC;AAUlD,qBAAa,UAAU;IACd,SAAS,EAAE,aAAa,CAAC;IACzB,UAAU,EAAE,MAAM,CAAC;IACnB,aAAa,EAAE,MAAM,CAAC;IACtB,qBAAqB,EAAE,MAAM,CAAC;IAC9B,oBAAoB,EAAE,aAAa,CAAC;gBAE/B,EACV,aAAa,EACb,UAAU,EACV,SAAS,EACT,qBAAqB,GACtB,EAAE;QACD,aAAa,EAAE,MAAM,CAAC;QACtB,UAAU,CAAC,EAAE,MAAM,CAAC;QACpB,SAAS,EAAE,MAAM,CAAC;QAClB,qBAAqB,CAAC,EAAE,MAAM,CAAC;KAChC;CAuCF"}
|
package/src/constants.d.ts
CHANGED
|
@@ -1,9 +1,27 @@
|
|
|
1
1
|
export declare const DYNAMIC_AUTH_PROD_BASE_API_URL = "https://app.dynamicauth.com";
|
|
2
2
|
export declare const DYNAMIC_AUTH_PREPROD_BASE_API_URL = "https://app.dynamic-preprod.xyz";
|
|
3
|
+
export declare const DYNAMIC_AUTH_DEV_BASE_API_URL = "http://localhost:4200";
|
|
4
|
+
export declare enum ENVIRONMENT_ENUM {
|
|
5
|
+
development = "development",
|
|
6
|
+
preprod = "preprod",
|
|
7
|
+
production = "production"
|
|
8
|
+
}
|
|
3
9
|
export declare const DYNAMIC_CLIENT_RELAY_PROD_BASE_API_URL = "https://app-dynamicauth-com-app-6e12fc400995.relay.evervault.app";
|
|
4
10
|
export declare const DYNAMIC_CLIENT_RELAY_PREPROD_BASE_API_URL = "https://app-dynamic-preprod-xyz-app-32d15525a875.relay.evervault.app";
|
|
11
|
+
export declare const DYNAMIC_CLIENT_RELAY_DEV_BASE_API_URL = "http://localhost:4200";
|
|
12
|
+
export declare const DYNAMIC_AUTH_BASE_API_URL_MAP: {
|
|
13
|
+
readonly production: "https://app.dynamicauth.com";
|
|
14
|
+
readonly preprod: "https://app.dynamic-preprod.xyz";
|
|
15
|
+
readonly development: "http://localhost:4200";
|
|
16
|
+
};
|
|
17
|
+
export declare const DYNAMIC_CLIENT_RELAY_MAP: {
|
|
18
|
+
readonly production: "https://app-dynamicauth-com-app-6e12fc400995.relay.evervault.app";
|
|
19
|
+
readonly preprod: "https://app-dynamic-preprod-xyz-app-32d15525a875.relay.evervault.app";
|
|
20
|
+
readonly development: "http://localhost:4200";
|
|
21
|
+
};
|
|
5
22
|
export declare const MPC_RELAY_PROD_API_URL = "relay.dynamicauth.com";
|
|
6
23
|
export declare const MPC_RELAY_PREPROD_API_URL = "relay.dynamic-preprod.xyz";
|
|
24
|
+
export declare const MPC_RELAY_DEV_API_URL = "relay.localhost:4200";
|
|
7
25
|
export declare const SOLANA_RPC_URL = "https://api.devnet.solana.com";
|
|
8
26
|
export declare const chain: {
|
|
9
27
|
readonly EVM: "EVM";
|
|
@@ -31,8 +49,11 @@ export declare enum BackupLocation {
|
|
|
31
49
|
USER = "user",
|
|
32
50
|
EXTERNAL = "external"
|
|
33
51
|
}
|
|
34
|
-
export declare const
|
|
35
|
-
|
|
52
|
+
export declare const IFRAME_DOMAIN_MAP: {
|
|
53
|
+
readonly development: "http://localhost:3333";
|
|
54
|
+
readonly preprod: "https://waas.dynamic-preprod.xyz";
|
|
55
|
+
readonly production: "https://waas.dynamicauth.com";
|
|
56
|
+
};
|
|
36
57
|
export declare const ChainEnumToVerifiedCredentialName: {
|
|
37
58
|
[key: string]: string;
|
|
38
59
|
};
|
package/src/constants.d.ts.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"constants.d.ts","sourceRoot":"","sources":["../../packages/src/constants.ts"],"names":[],"mappings":"AAAA,eAAO,MAAM,8BAA8B,gCAAgC,CAAC;AAC5E,eAAO,MAAM,iCAAiC,oCACX,CAAC;
|
|
1
|
+
{"version":3,"file":"constants.d.ts","sourceRoot":"","sources":["../../packages/src/constants.ts"],"names":[],"mappings":"AAAA,eAAO,MAAM,8BAA8B,gCAAgC,CAAC;AAC5E,eAAO,MAAM,iCAAiC,oCACX,CAAC;AACpC,eAAO,MAAM,6BAA6B,0BAA0B,CAAC;AAErE,oBAAY,gBAAgB;IAC1B,WAAW,gBAAgB;IAC3B,OAAO,YAAY;IACnB,UAAU,eAAe;CAC1B;AAED,eAAO,MAAM,sCAAsC,qEACiB,CAAC;AACrE,eAAO,MAAM,yCAAyC,yEACkB,CAAC;AACzE,eAAO,MAAM,qCAAqC,0BAA0B,CAAC;AAE7E,eAAO,MAAM,6BAA6B;;;;CAIhC,CAAC;AAEX,eAAO,MAAM,wBAAwB;;;;CAI3B,CAAC;AAEX,eAAO,MAAM,sBAAsB,0BAA0B,CAAC;AAC9D,eAAO,MAAM,yBAAyB,8BAA8B,CAAC;AACrE,eAAO,MAAM,qBAAqB,yBAAyB,CAAC;AAE5D,eAAO,MAAM,cAAc,kCAAkC,CAAC;AAE9D,eAAO,MAAM,KAAK;;;;;;;CAOR,CAAC;AAEX,MAAM,MAAM,SAAS,GAAG,CAAC,OAAO,KAAK,CAAC,CAAC,MAAM,OAAO,KAAK,CAAC,CAAC;AAE3D,oBAAY,eAAe;IACzB,eAAe,oBAAoB;IACnC,iBAAiB,sBAAsB;IACvC,YAAY,iBAAiB;IAC7B,gBAAgB,qBAAqB;IACrC,OAAO,YAAY;IACnB,OAAO,YAAY;IACnB,kBAAkB,uBAAuB;IACzC,YAAY,iBAAiB;CAC9B;AAED,oBAAY,cAAc;IACxB,OAAO,YAAY;IACnB,YAAY,gBAAgB;IAC5B,MAAM,WAAW;IACjB,IAAI,SAAS;IACb,QAAQ,aAAa;CACtB;AAED,eAAO,MAAM,iBAAiB;;;;CAIpB,CAAC;AAEX,eAAO,MAAM,iCAAiC,EAAE;IAAE,CAAC,GAAG,EAAE,MAAM,GAAG,MAAM,CAAA;CAKtE,CAAC;AAEF,eAAO,MAAM,iCAAiC,EAAE;IAAE,CAAC,GAAG,EAAE,MAAM,GAAG,MAAM,CAAA;CAItE,CAAC"}
|