@bitgo-beta/sdk-coin-atom 1.1.2-alpha.24 → 1.1.2-alpha.26
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/CHANGELOG.md +0 -31
- package/dist/src/atom.d.ts +9 -53
- package/dist/src/atom.d.ts.map +1 -1
- package/dist/src/atom.js +31 -146
- package/dist/src/lib/constants.d.ts +4 -6
- package/dist/src/lib/constants.d.ts.map +1 -1
- package/dist/src/lib/constants.js +7 -8
- package/dist/src/lib/iface.d.ts +13 -25
- package/dist/src/lib/iface.d.ts.map +1 -1
- package/dist/src/lib/iface.js +1 -1
- package/dist/src/lib/index.d.ts +0 -3
- package/dist/src/lib/index.d.ts.map +1 -1
- package/dist/src/lib/index.js +2 -8
- package/dist/src/lib/keyPair.d.ts +2 -0
- package/dist/src/lib/keyPair.d.ts.map +1 -1
- package/dist/src/lib/keyPair.js +12 -4
- package/dist/src/lib/transaction.d.ts +12 -18
- package/dist/src/lib/transaction.d.ts.map +1 -1
- package/dist/src/lib/transaction.js +69 -169
- package/dist/src/lib/transactionBuilder.d.ts +30 -26
- package/dist/src/lib/transactionBuilder.d.ts.map +1 -1
- package/dist/src/lib/transactionBuilder.js +130 -86
- package/dist/src/lib/transactionBuilderFactory.d.ts +6 -9
- package/dist/src/lib/transactionBuilderFactory.d.ts.map +1 -1
- package/dist/src/lib/transactionBuilderFactory.js +11 -25
- package/dist/src/lib/transferBuilder.d.ts +2 -5
- package/dist/src/lib/transferBuilder.d.ts.map +1 -1
- package/dist/src/lib/transferBuilder.js +2 -18
- package/dist/src/lib/utils.d.ts +69 -83
- package/dist/src/lib/utils.d.ts.map +1 -1
- package/dist/src/lib/utils.js +139 -348
- package/package.json +8 -10
- package/dist/src/lib/StakingActivateBuilder.d.ts +0 -11
- package/dist/src/lib/StakingActivateBuilder.d.ts.map +0 -1
- package/dist/src/lib/StakingActivateBuilder.js +0 -31
- package/dist/src/lib/StakingDeactivateBuilder.d.ts +0 -11
- package/dist/src/lib/StakingDeactivateBuilder.d.ts.map +0 -1
- package/dist/src/lib/StakingDeactivateBuilder.js +0 -31
- package/dist/src/lib/StakingWithdrawRewardsBuilder.d.ts +0 -11
- package/dist/src/lib/StakingWithdrawRewardsBuilder.d.ts.map +0 -1
- package/dist/src/lib/StakingWithdrawRewardsBuilder.js +0 -31
|
@@ -1,11 +1,8 @@
|
|
|
1
|
-
import { TransactionType } from '@bitgo-beta/sdk-core';
|
|
2
|
-
import { BaseCoin as CoinConfig } from '@bitgo-beta/statics';
|
|
3
|
-
import { SendMessage } from './iface';
|
|
4
1
|
import { TransactionBuilder } from './transactionBuilder';
|
|
2
|
+
import { BaseCoin as CoinConfig } from '@bitgo-beta/statics';
|
|
3
|
+
import { TransactionType } from '@bitgo-beta/sdk-core';
|
|
5
4
|
export declare class TransferBuilder extends TransactionBuilder {
|
|
6
5
|
constructor(_coinConfig: Readonly<CoinConfig>);
|
|
7
6
|
protected get transactionType(): TransactionType;
|
|
8
|
-
/** @inheritdoc */
|
|
9
|
-
messages(sendMessages: SendMessage[]): this;
|
|
10
7
|
}
|
|
11
8
|
//# sourceMappingURL=transferBuilder.d.ts.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"transferBuilder.d.ts","sourceRoot":"","sources":["../../../src/lib/transferBuilder.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,
|
|
1
|
+
{"version":3,"file":"transferBuilder.d.ts","sourceRoot":"","sources":["../../../src/lib/transferBuilder.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,kBAAkB,EAAE,MAAM,sBAAsB,CAAC;AAC1D,OAAO,EAAE,QAAQ,IAAI,UAAU,EAAE,MAAM,qBAAqB,CAAC;AAC7D,OAAO,EAAE,eAAe,EAAE,MAAM,sBAAsB,CAAC;AAEvD,qBAAa,eAAgB,SAAQ,kBAAkB;gBACzC,WAAW,EAAE,QAAQ,CAAC,UAAU,CAAC;IAI7C,SAAS,KAAK,eAAe,IAAI,eAAe,CAE/C;CACF"}
|
|
@@ -1,13 +1,8 @@
|
|
|
1
1
|
"use strict";
|
|
2
|
-
var __importDefault = (this && this.__importDefault) || function (mod) {
|
|
3
|
-
return (mod && mod.__esModule) ? mod : { "default": mod };
|
|
4
|
-
};
|
|
5
2
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
6
3
|
exports.TransferBuilder = void 0;
|
|
7
|
-
const sdk_core_1 = require("@bitgo-beta/sdk-core");
|
|
8
|
-
const constants_1 = require("./constants");
|
|
9
4
|
const transactionBuilder_1 = require("./transactionBuilder");
|
|
10
|
-
const
|
|
5
|
+
const sdk_core_1 = require("@bitgo-beta/sdk-core");
|
|
11
6
|
class TransferBuilder extends transactionBuilder_1.TransactionBuilder {
|
|
12
7
|
constructor(_coinConfig) {
|
|
13
8
|
super(_coinConfig);
|
|
@@ -15,17 +10,6 @@ class TransferBuilder extends transactionBuilder_1.TransactionBuilder {
|
|
|
15
10
|
get transactionType() {
|
|
16
11
|
return sdk_core_1.TransactionType.Send;
|
|
17
12
|
}
|
|
18
|
-
/** @inheritdoc */
|
|
19
|
-
messages(sendMessages) {
|
|
20
|
-
this._messages = sendMessages.map((sendMessage) => {
|
|
21
|
-
utils_1.default.validateSendMessage(sendMessage);
|
|
22
|
-
return {
|
|
23
|
-
typeUrl: constants_1.sendMsgTypeUrl,
|
|
24
|
-
value: sendMessage,
|
|
25
|
-
};
|
|
26
|
-
});
|
|
27
|
-
return this;
|
|
28
|
-
}
|
|
29
13
|
}
|
|
30
14
|
exports.TransferBuilder = TransferBuilder;
|
|
31
|
-
//# sourceMappingURL=data:application/json;base64,
|
|
15
|
+
//# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoidHJhbnNmZXJCdWlsZGVyLmpzIiwic291cmNlUm9vdCI6IiIsInNvdXJjZXMiOlsiLi4vLi4vLi4vc3JjL2xpYi90cmFuc2ZlckJ1aWxkZXIudHMiXSwibmFtZXMiOltdLCJtYXBwaW5ncyI6Ijs7O0FBQUEsNkRBQTBEO0FBRTFELG1EQUF1RDtBQUV2RCxNQUFhLGVBQWdCLFNBQVEsdUNBQWtCO0lBQ3JELFlBQVksV0FBaUM7UUFDM0MsS0FBSyxDQUFDLFdBQVcsQ0FBQyxDQUFDO0lBQ3JCLENBQUM7SUFFRCxJQUFjLGVBQWU7UUFDM0IsT0FBTywwQkFBZSxDQUFDLElBQUksQ0FBQztJQUM5QixDQUFDO0NBQ0Y7QUFSRCwwQ0FRQyIsInNvdXJjZXNDb250ZW50IjpbImltcG9ydCB7IFRyYW5zYWN0aW9uQnVpbGRlciB9IGZyb20gJy4vdHJhbnNhY3Rpb25CdWlsZGVyJztcbmltcG9ydCB7IEJhc2VDb2luIGFzIENvaW5Db25maWcgfSBmcm9tICdAYml0Z28tYmV0YS9zdGF0aWNzJztcbmltcG9ydCB7IFRyYW5zYWN0aW9uVHlwZSB9IGZyb20gJ0BiaXRnby1iZXRhL3Nkay1jb3JlJztcblxuZXhwb3J0IGNsYXNzIFRyYW5zZmVyQnVpbGRlciBleHRlbmRzIFRyYW5zYWN0aW9uQnVpbGRlciB7XG4gIGNvbnN0cnVjdG9yKF9jb2luQ29uZmlnOiBSZWFkb25seTxDb2luQ29uZmlnPikge1xuICAgIHN1cGVyKF9jb2luQ29uZmlnKTtcbiAgfVxuXG4gIHByb3RlY3RlZCBnZXQgdHJhbnNhY3Rpb25UeXBlKCk6IFRyYW5zYWN0aW9uVHlwZSB7XG4gICAgcmV0dXJuIFRyYW5zYWN0aW9uVHlwZS5TZW5kO1xuICB9XG59XG4iXX0=
|
package/dist/src/lib/utils.d.ts
CHANGED
|
@@ -1,9 +1,8 @@
|
|
|
1
1
|
/// <reference types="node" />
|
|
2
|
-
import { BaseUtils,
|
|
2
|
+
import { BaseUtils, Signature } from '@bitgo-beta/sdk-core';
|
|
3
3
|
import { DecodedTxRaw } from '@cosmjs/proto-signing';
|
|
4
|
-
import {
|
|
5
|
-
import {
|
|
6
|
-
import { AtomTransaction, DelegateOrUndelegeteMessage, FeeData, MessageData, SendMessage, WithdrawDelegatorRewardsMessage } from './iface';
|
|
4
|
+
import { TxRaw } from 'cosmjs-types/cosmos/tx/v1beta1/tx';
|
|
5
|
+
import { AtomTransaction, FeeData, MessageData } from './iface';
|
|
7
6
|
export declare class Utils implements BaseUtils {
|
|
8
7
|
private registry;
|
|
9
8
|
/** @inheritdoc */
|
|
@@ -21,19 +20,24 @@ export declare class Utils implements BaseUtils {
|
|
|
21
20
|
*/
|
|
22
21
|
validateBlake2b(hash: string): boolean;
|
|
23
22
|
/**
|
|
24
|
-
*
|
|
23
|
+
* Checks if raw transaction can be deserialized
|
|
25
24
|
*
|
|
26
|
-
* @param {string}
|
|
25
|
+
* @param {string} rawTransaction - transaction in base64 string format
|
|
27
26
|
* @returns {boolean} - the validation result
|
|
28
27
|
*/
|
|
29
|
-
|
|
28
|
+
private isValidRawTransaction;
|
|
29
|
+
/**
|
|
30
|
+
* Check the raw transaction has a valid format in the blockchain context, throw otherwise.
|
|
31
|
+
*
|
|
32
|
+
* @param {string} rawTransaction - Transaction in base64 string format
|
|
33
|
+
*/
|
|
34
|
+
validateRawTransaction(rawTransaction: string | undefined): void;
|
|
30
35
|
/**
|
|
31
36
|
* Validates if the address matches with regex @see accountAddressRegex
|
|
32
37
|
*
|
|
33
|
-
* @param
|
|
34
|
-
* @returns {boolean} - the validation result
|
|
38
|
+
* @param address
|
|
35
39
|
*/
|
|
36
|
-
|
|
40
|
+
isValidAddress(address: string): boolean;
|
|
37
41
|
/**
|
|
38
42
|
* Validates whether amounts are in range
|
|
39
43
|
*
|
|
@@ -43,126 +47,108 @@ export declare class Utils implements BaseUtils {
|
|
|
43
47
|
isValidAmounts(amounts: number[]): boolean;
|
|
44
48
|
/**
|
|
45
49
|
* Validates whether amount is in range
|
|
46
|
-
*
|
|
47
|
-
* @
|
|
50
|
+
*
|
|
51
|
+
* @param amount
|
|
52
|
+
* @returns
|
|
48
53
|
*/
|
|
49
54
|
isValidAmount(amount: number): boolean;
|
|
50
55
|
/**
|
|
51
56
|
* Decodes raw tx data into messages, signing info, and fee data
|
|
52
|
-
* @param
|
|
53
|
-
* @returns {DecodedTxRaw} Decoded transaction
|
|
57
|
+
* @param txHex - raw base64 tx
|
|
54
58
|
*/
|
|
55
59
|
getDecodedTxFromRawBase64(txRaw: string): DecodedTxRaw;
|
|
56
60
|
/**
|
|
57
61
|
* Returns the array of messages in the body of the decoded transaction
|
|
58
|
-
* @param
|
|
59
|
-
* @returns {EncodeObject[]} messages along with type url
|
|
62
|
+
* @param decodedTx
|
|
60
63
|
*/
|
|
61
64
|
private getEncodedMessagesFromDecodedTx;
|
|
65
|
+
/**
|
|
66
|
+
* Arranges a decoded message into our MessageData value interface
|
|
67
|
+
* @param decodedMessage
|
|
68
|
+
* @private
|
|
69
|
+
*/
|
|
70
|
+
private getMessageValueDataFromDecodedMessage;
|
|
71
|
+
/**
|
|
72
|
+
* Returns an array of MessageData[] from an encoded messages array
|
|
73
|
+
* @param encodedMessages
|
|
74
|
+
* @private
|
|
75
|
+
*/
|
|
76
|
+
private getMessageDataFromEncodedMessages;
|
|
62
77
|
/**
|
|
63
78
|
* Pulls the sequence number from a DecodedTxRaw AuthInfo property
|
|
64
|
-
* @param
|
|
65
|
-
* @
|
|
79
|
+
* @param decodedTx
|
|
80
|
+
* @private
|
|
66
81
|
*/
|
|
67
82
|
getSequenceFromDecodedTx(decodedTx: DecodedTxRaw): number;
|
|
68
83
|
/**
|
|
69
84
|
* Pulls the typeUrl from the encoded message of a DecodedTxRaw
|
|
70
|
-
* @param
|
|
71
|
-
* @returns {string} cosmos proto type url
|
|
85
|
+
* @param decodedTx
|
|
72
86
|
*/
|
|
73
87
|
getTypeUrlFromDecodedTx(decodedTx: DecodedTxRaw): string;
|
|
74
88
|
/**
|
|
75
89
|
* Returns the fee data from the decoded transaction
|
|
76
|
-
* @param
|
|
77
|
-
* @returns
|
|
90
|
+
* @param decodedTx
|
|
91
|
+
* @returns
|
|
78
92
|
*/
|
|
79
93
|
getGasBudgetFromDecodedTx(decodedTx: DecodedTxRaw): FeeData;
|
|
80
94
|
/**
|
|
81
95
|
* Returns the publicKey from the decoded transaction
|
|
82
|
-
* @param
|
|
83
|
-
* @returns
|
|
96
|
+
* @param decodedTx
|
|
97
|
+
* @returns publicKey in hex format if it exists, undefined otherwise
|
|
84
98
|
*/
|
|
85
99
|
getPublicKeyFromDecodedTx(decodedTx: DecodedTxRaw): string | undefined;
|
|
86
100
|
/**
|
|
87
101
|
* Returns the array of MessageData[] from the decoded transaction
|
|
88
|
-
* @param
|
|
89
|
-
* @returns {MessageData[]} Send transaction message data
|
|
102
|
+
* @param decodedTx
|
|
90
103
|
*/
|
|
91
|
-
|
|
104
|
+
getMessageDataFromDecodedTx(decodedTx: DecodedTxRaw): MessageData[];
|
|
92
105
|
/**
|
|
93
|
-
*
|
|
94
|
-
*
|
|
95
|
-
* @
|
|
96
|
-
|
|
97
|
-
|
|
98
|
-
/**
|
|
99
|
-
* Returns the array of MessageData[] from the decoded transaction
|
|
100
|
-
* @param {DecodedTxRaw} decodedTx
|
|
101
|
-
* @returns {MessageData[]} WithdrawDelegatorRewards transaction message data
|
|
102
|
-
*/
|
|
103
|
-
getWithdrawRewardsMessageDataFromDecodedTx(decodedTx: DecodedTxRaw): MessageData[];
|
|
104
|
-
/**
|
|
105
|
-
* Returns the array of MessageData[] from the decoded transaction
|
|
106
|
-
* @param {DecodedTxRaw} decodedTx
|
|
107
|
-
* @returns {MessageData[]} Delegate of undelegate transaction message data
|
|
108
|
-
*/
|
|
109
|
-
getWithdrawDelegatorRewardsMessageDataFromDecodedTx(decodedTx: DecodedTxRaw): MessageData[];
|
|
110
|
-
/**
|
|
111
|
-
* Determines bitgo transaction type based on cosmos proto type url
|
|
112
|
-
* @param {string} typeUrl
|
|
113
|
-
* @returns {TransactionType | undefined} TransactionType if url is supported else undefined
|
|
106
|
+
* Creates a sign doc from an atom transaction @see AtomTransaction
|
|
107
|
+
*
|
|
108
|
+
* @Precondition atomTransaction.accountNumber and atomTransaction.chainId must be defined
|
|
109
|
+
* @param atomTransaction
|
|
110
|
+
* @returns
|
|
114
111
|
*/
|
|
115
|
-
|
|
112
|
+
createSignDocFromAtomTransaction(atomTransaction: AtomTransaction): import("cosmjs-types/cosmos/tx/v1beta1/tx").SignDoc;
|
|
116
113
|
/**
|
|
117
114
|
* Creates a txRaw from an atom transaction @see AtomTransaction
|
|
115
|
+
*
|
|
118
116
|
* @Precondition atomTransaction.publicKey must be defined
|
|
119
|
-
* @param
|
|
120
|
-
* @returns
|
|
117
|
+
* @param atomTransaction
|
|
118
|
+
* @returns
|
|
121
119
|
*/
|
|
122
120
|
createTxRawFromAtomTransaction(atomTransaction: AtomTransaction): TxRaw;
|
|
123
121
|
/**
|
|
124
122
|
* Encodes a signature into a txRaw
|
|
125
|
-
*
|
|
126
|
-
* @param
|
|
127
|
-
* @param
|
|
128
|
-
* @returns
|
|
123
|
+
*
|
|
124
|
+
* @param signature
|
|
125
|
+
* @param tx
|
|
126
|
+
* @returns
|
|
129
127
|
*/
|
|
130
|
-
createSignedTxRaw(
|
|
128
|
+
createSignedTxRaw(signature: Signature, tx: {
|
|
131
129
|
bodyBytes: Uint8Array;
|
|
132
130
|
authInfoBytes: Uint8Array;
|
|
133
131
|
}): TxRaw;
|
|
134
132
|
/**
|
|
135
133
|
* Decodes a raw transaction into a DecodedTxRaw and checks if it has non empty signatures
|
|
136
|
-
*
|
|
137
|
-
* @
|
|
134
|
+
*
|
|
135
|
+
* @param rawTransaction
|
|
136
|
+
* @returns
|
|
138
137
|
*/
|
|
139
138
|
isSignedRawTx(rawTransaction: string): boolean;
|
|
140
139
|
/**
|
|
141
|
-
*
|
|
142
|
-
*
|
|
143
|
-
* @
|
|
144
|
-
|
|
145
|
-
|
|
146
|
-
|
|
147
|
-
|
|
148
|
-
|
|
149
|
-
|
|
150
|
-
|
|
151
|
-
|
|
152
|
-
|
|
153
|
-
validateSequence(sequence: number): void;
|
|
154
|
-
validatePublicKey(publicKey: string | undefined): void;
|
|
155
|
-
/**
|
|
156
|
-
* Creates a sign doc from an atom transaction @see AtomTransaction
|
|
157
|
-
* @Precondition atomTransaction.accountNumber and atomTransaction.chainId must be defined
|
|
158
|
-
* @param {AtomTransaction} atomTransaction
|
|
159
|
-
* @returns {SignDoc} sign doc
|
|
160
|
-
*/
|
|
161
|
-
createSignDoc(atomTransaction: AtomTransaction, accountNumber: number | undefined, chainId: string | undefined): SignDoc;
|
|
162
|
-
validateDelegateOrUndelegateMessage(delegateMessage: DelegateOrUndelegeteMessage): void;
|
|
163
|
-
validateWithdrawRewardsMessage(withdrawRewardsMessage: WithdrawDelegatorRewardsMessage): void;
|
|
164
|
-
validateSendMessage(sendMessage: SendMessage): void;
|
|
165
|
-
isValidHexString(hexString: string): boolean;
|
|
140
|
+
* Decodes a raw transaction into a DecodedTxRaw and returns the signer info in form of {pubKey, signature}
|
|
141
|
+
*
|
|
142
|
+
* @Assumption Only one signature is present in the raw transaction
|
|
143
|
+
* @param rawTransaction
|
|
144
|
+
* @returns
|
|
145
|
+
*/
|
|
146
|
+
getSignerInfoFromRawSignedTx(rawTransaction: string): {
|
|
147
|
+
pubKey: {
|
|
148
|
+
pub: string;
|
|
149
|
+
};
|
|
150
|
+
signature: Buffer;
|
|
151
|
+
};
|
|
166
152
|
}
|
|
167
153
|
declare const utils: Utils;
|
|
168
154
|
export default utils;
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"utils.d.ts","sourceRoot":"","sources":["../../../src/lib/utils.ts"],"names":[],"mappings":";AAAA,OAAO,
|
|
1
|
+
{"version":3,"file":"utils.d.ts","sourceRoot":"","sources":["../../../src/lib/utils.ts"],"names":[],"mappings":";AAAA,OAAO,EAAE,SAAS,EAA8C,SAAS,EAAE,MAAM,sBAAsB,CAAC;AAGxG,OAAO,EACL,YAAY,EAQb,MAAM,uBAAuB,CAAC;AAG/B,OAAO,EAAE,KAAK,EAAE,MAAM,mCAAmC,CAAC;AAI1D,OAAO,EAAE,eAAe,EAAE,OAAO,EAAE,WAAW,EAAE,MAAM,SAAS,CAAC;AAGhE,qBAAa,KAAM,YAAW,SAAS;IACrC,OAAO,CAAC,QAAQ,CAA2C;IAE3D,kBAAkB;IAClB,cAAc,CAAC,IAAI,EAAE,MAAM,GAAG,OAAO;IAIrC,kBAAkB;IAClB,iBAAiB,CAAC,GAAG,EAAE,MAAM,GAAG,OAAO;IASvC,kBAAkB;IAClB,gBAAgB,CAAC,GAAG,EAAE,MAAM,GAAG,OAAO;IAStC,kBAAkB;IAClB,gBAAgB,CAAC,SAAS,EAAE,MAAM,GAAG,OAAO;IAI5C,kBAAkB;IAClB,oBAAoB,CAAC,IAAI,EAAE,MAAM,GAAG,OAAO;IAI3C;;OAEG;IACH,eAAe,CAAC,IAAI,EAAE,MAAM,GAAG,OAAO;IAMtC;;;;;OAKG;IACH,OAAO,CAAC,qBAAqB;IA8B7B;;;;OAIG;IACH,sBAAsB,CAAC,cAAc,EAAE,MAAM,GAAG,SAAS,GAAG,IAAI;IAShE;;;;OAIG;IACH,cAAc,CAAC,OAAO,EAAE,MAAM,GAAG,OAAO;IAIxC;;;;;OAKG;IACH,cAAc,CAAC,OAAO,EAAE,MAAM,EAAE,GAAG,OAAO;IAS1C;;;;;OAKG;IACH,aAAa,CAAC,MAAM,EAAE,MAAM,GAAG,OAAO;IAQtC;;;OAGG;IACH,yBAAyB,CAAC,KAAK,EAAE,MAAM,GAAG,YAAY;IAItD;;;OAGG;IACH,OAAO,CAAC,+BAA+B;IAIvC;;;;OAIG;IACH,OAAO,CAAC,qCAAqC;IAQ7C;;;;OAIG;IACH,OAAO,CAAC,iCAAiC;IAWzC;;;;OAIG;IACH,wBAAwB,CAAC,SAAS,EAAE,YAAY,GAAG,MAAM;IAIzD;;;OAGG;IACH,uBAAuB,CAAC,SAAS,EAAE,YAAY,GAAG,MAAM;IAKxD;;;;OAIG;IACH,yBAAyB,CAAC,SAAS,EAAE,YAAY,GAAG,OAAO;IAO3D;;;;OAIG;IACH,yBAAyB,CAAC,SAAS,EAAE,YAAY,GAAG,MAAM,GAAG,SAAS;IAQtE;;;OAGG;IACH,2BAA2B,CAAC,SAAS,EAAE,YAAY,GAAG,WAAW,EAAE;IAKnE;;;;;;OAMG;IACH,gCAAgC,CAAC,eAAe,EAAE,eAAe;IAWjE;;;;;;OAMG;IACH,8BAA8B,CAAC,eAAe,EAAE,eAAe,GAAG,KAAK;IAwBvE;;;;;;OAMG;IACH,iBAAiB,CAAC,SAAS,EAAE,SAAS,EAAE,EAAE,EAAE;QAAE,SAAS,EAAE,UAAU,CAAC;QAAC,aAAa,EAAE,UAAU,CAAA;KAAE,GAAG,KAAK;IASxG;;;;;OAKG;IACH,aAAa,CAAC,cAAc,EAAE,MAAM,GAAG,OAAO;IAQ9C;;;;;;OAMG;IACH,4BAA4B,CAAC,cAAc,EAAE,MAAM;;;;;;CAapD;AAED,QAAA,MAAM,KAAK,OAAc,CAAC;AAE1B,eAAe,KAAK,CAAC"}
|