@dhedge/trading-widget 5.9.0 → 5.12.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +68 -42
- package/const.cjs +1 -1
- package/const.js +21 -20
- package/core-kit/const/default-data.d.ts +1 -0
- package/core-kit/const/logger.d.ts +2 -5
- package/core-kit/const/storage.d.ts +0 -1
- package/core-kit/hooks/state/action.d.ts +0 -1
- package/core-kit/hooks/trading/deposit-v2/deposit-transaction/use-deposit-common.d.ts +1 -1
- package/core-kit/hooks/trading/deposit-v2/use-get-vault-deposit-transaction-arguments.d.ts +1 -1
- package/core-kit/hooks/trading/deposit-v2/use-vault-deposit-tokens.d.ts +5 -1
- package/core-kit/hooks/trading/index.d.ts +0 -1
- package/core-kit/hooks/trading/withdraw-v2/init-step/use-fetch-init-withdraw-complex-asset-data.d.ts +2 -1
- package/core-kit/hooks/web3/index.d.ts +0 -1
- package/core-kit/types/state.types.d.ts +0 -1
- package/core-kit/types/trading-panel.types.d.ts +2 -3
- package/core-kit/utils/complex-withdraw-asset-data.d.ts +6 -0
- package/core-kit/utils/deposit.d.ts +4 -2
- package/core-kit/utils/index.d.ts +1 -1
- package/core-kit/utils/slippage-auto-simulation.d.ts +8 -0
- package/core-kit/utils/transaction.d.ts +2 -1
- package/{storage-C0zg_Mfy.js → gmx-3UudxpaT.js} +186 -178
- package/gmx-Bmop5mtI.cjs +1 -0
- package/index.cjs +1 -1
- package/index.d.ts +4 -2
- package/index.js +7814 -6931
- package/limit-orders/common/network-check-button.d.ts +7 -0
- package/limit-orders/common/network-check-button.hooks.d.ts +4 -0
- package/limit-orders/common/utils.d.ts +2 -0
- package/limit-orders/index.d.ts +9 -5
- package/limit-orders/limit-buys/component/input-group/input-amount-field.d.ts +2 -0
- package/limit-orders/limit-buys/component/input-group/input-amount-field.hooks.d.ts +11 -0
- package/limit-orders/limit-buys/component/input-group/input-group.d.ts +2 -0
- package/limit-orders/limit-buys/component/input-group/input-group.hooks.d.ts +15 -0
- package/limit-orders/limit-buys/component/input-group/slippage-deadline-fields.d.ts +2 -0
- package/limit-orders/limit-buys/component/input-group/slippage-deadline-fields.hooks.d.ts +5 -0
- package/limit-orders/limit-buys/component/input-group/token-select-overlay.d.ts +10 -0
- package/limit-orders/limit-buys/component/limit-buy-button/sign-limit-buy-button.d.ts +6 -0
- package/limit-orders/limit-buys/component/limit-buy-button/sign-limit-buy-button.hooks.d.ts +6 -0
- package/limit-orders/limit-buys/component/limit-buy-content.d.ts +6 -0
- package/limit-orders/limit-buys/component/limit-buy-order-modal.d.ts +14 -0
- package/limit-orders/limit-buys/component/limit-buy-overlay.d.ts +11 -0
- package/limit-orders/limit-buys/component/terms-confirmation.d.ts +8 -0
- package/limit-orders/limit-buys/constants.d.ts +55 -0
- package/limit-orders/limit-buys/hooks/state.d.ts +2 -0
- package/limit-orders/limit-buys/hooks/use-approve-and-sign-limit-buy.d.ts +7 -0
- package/limit-orders/limit-buys/hooks/use-is-permit2-approved.d.ts +1 -0
- package/limit-orders/limit-buys/hooks/use-permit2-approve-transaction.d.ts +5 -0
- package/limit-orders/limit-buys/hooks/use-sign-limit-buy-order.d.ts +3 -0
- package/limit-orders/limit-buys/providers/state-provider/reducer.d.ts +3 -0
- package/limit-orders/limit-buys/providers/state-provider/state-provider.d.ts +6 -0
- package/limit-orders/limit-buys/providers/state-provider/state-provider.types.d.ts +69 -0
- package/limit-orders/limit-buys/providers/translation-provider/index.d.ts +3 -0
- package/limit-orders/limit-buys/providers/translation-provider/translation-provider.d.ts +4 -0
- package/limit-orders/limit-buys/providers/translation-provider/translation-provider.defaults.d.ts +2 -0
- package/limit-orders/limit-buys/providers/translation-provider/translation-provider.hooks.d.ts +1 -0
- package/limit-orders/limit-buys/providers/translation-provider/translation-provider.types.d.ts +29 -0
- package/limit-orders/limit-buys/types.d.ts +27 -0
- package/limit-orders/limit-buys/utils.d.ts +4 -0
- package/limit-orders/{component → limit-sells/component}/input-group/input-group.hooks.d.ts +0 -2
- package/limit-orders/{component → limit-sells/component}/limit-order-button/approve-and-create-limit-order-button.d.ts +1 -0
- package/limit-orders/{component → limit-sells/component}/limit-order-content.d.ts +1 -1
- package/limit-orders/{component → limit-sells/component}/limit-order-overlay.d.ts +3 -3
- package/limit-orders/{component/limit-order-modal.d.ts → limit-sells/component/limit-sell-order-modal.d.ts} +5 -5
- package/limit-orders/limit-sells/component/terms-confirmation.d.ts +8 -0
- package/limit-orders/{constants.d.ts → limit-sells/constants.d.ts} +2 -2
- package/limit-orders/limit-sells/hooks/use-invalidate-limit-sell-order-query.d.ts +1 -0
- package/limit-orders/{hooks → limit-sells/hooks}/use-on-limit-order-settled.d.ts +1 -1
- package/limit-orders/{hooks/use-user-limit-order.d.ts → limit-sells/hooks/use-user-limit-sell-order.d.ts} +3 -3
- package/limit-orders/{providers → limit-sells/providers}/state-provider/reducer.d.ts +1 -1
- package/limit-orders/{providers → limit-sells/providers}/state-provider/state-provider.d.ts +1 -1
- package/limit-orders/{providers → limit-sells/providers}/state-provider/state-provider.types.d.ts +1 -1
- package/limit-orders/{utils.d.ts → limit-sells/utils.d.ts} +3 -3
- package/limit-orders/providers/translation-provider/translation-provider.types.d.ts +1 -0
- package/package.json +1 -1
- package/slippage-auto-simulation-B0sf5jE_.js +400 -0
- package/slippage-auto-simulation-yZX7Qmre.cjs +1 -0
- package/{derive-BmKPodpX.js → storage-CSc9iE5L.js} +6 -2
- package/storage-DHoO5PX_.cjs +1 -0
- package/style.css +1 -1
- package/trading-widget/components/deposit/button/valid-deposit-button/valid-deposit-button.hooks.d.ts +0 -2
- package/trading-widget/components/widget/widget-buttons/index.d.ts +1 -0
- package/trading-widget/components/widget/widget-buttons/limit-buy-button/limit-buy-button.d.ts +3 -0
- package/trading-widget/components/widget/widget-overlay/hyper-evm-warning-overlay/hyper-evm-warning-overlay.d.ts +3 -0
- package/trading-widget/components/widget/widget-overlay/index.d.ts +2 -0
- package/trading-widget/components/widget/widget-overlay/limit-buys-overlay/limit-buys-overlay.d.ts +3 -0
- package/trading-widget/components/widget/widget-overlay/limit-buys-overlay/limit-buys-overlay.hooks.d.ts +17 -0
- package/trading-widget/components/widget/widget-settings/index.d.ts +0 -1
- package/trading-widget/components/widget/widget-settings/slippage-selector/slippage-selector.hooks.d.ts +0 -1
- package/trading-widget/hooks/index.d.ts +3 -1
- package/trading-widget/hooks/use-display-limit-buy-overlay.d.ts +1 -0
- package/trading-widget/hooks/use-open-limit-buys-overlay.d.ts +4 -0
- package/trading-widget/hooks/use-show-hyper-evm-deposit-warning.d.ts +1 -0
- package/trading-widget/providers/config-provider/config-provider.types.d.ts +4 -1
- package/trading-widget/providers/config-provider/index.d.ts +1 -0
- package/trading-widget/providers/config-provider/use-resolved-default-swap-transaction-slippage.d.ts +1 -0
- package/trading-widget/providers/translation-provider/translation-provider.types.d.ts +7 -5
- package/trading-widget/types/overlay.types.d.ts +2 -0
- package/utils.cjs +1 -1
- package/utils.js +29 -29
- package/complex-withdraw-asset-data-D8GMw8ql.js +0 -391
- package/complex-withdraw-asset-data-DSjzOaBD.cjs +0 -1
- package/core-kit/hooks/trading/deposit-v2/deposit-transaction/use-batch-approve-transaction.d.ts +0 -141
- package/core-kit/hooks/trading/deposit-v2/deposit-transaction/use-batch-deposit.d.ts +0 -1
- package/core-kit/hooks/trading/trade-handlers/use-batch-trading-settle-handler.d.ts +0 -5
- package/core-kit/hooks/trading/use-is-batch-contract-writes-trading.d.ts +0 -1
- package/core-kit/hooks/web3/use-custom-send-calls.d.ts +0 -14
- package/core-kit/hooks/web3/use-is-batch-contract-writes-supported.d.ts +0 -1
- package/core-kit/utils/batch-transactions.d.ts +0 -2
- package/derive-CsdqSZEg.cjs +0 -1
- package/limit-orders/component/input-group/terms-content.d.ts +0 -6
- package/limit-orders/component/limit-order-button/network-check-button.d.ts +0 -2
- package/limit-orders/component/limit-order-button/network-check-button.hooks.d.ts +0 -4
- package/limit-orders/hooks/use-invalidate-limit-order-query.d.ts +0 -1
- package/storage-B9jNfIvl.cjs +0 -1
- package/trading-widget/components/deposit/button/batch-trade-button.d.ts +0 -2
- package/trading-widget/components/widget/widget-settings/batch-transactions-switch/batch-transactions-switch.d.ts +0 -2
- package/trading-widget/components/widget/widget-settings/batch-transactions-switch/batch-transactions-switch.hooks.d.ts +0 -1
- package/trading-widget/hooks/use-trading-type-name.d.ts +0 -2
- /package/limit-orders/{component/common → common}/action-button.d.ts +0 -0
- /package/limit-orders/{component/common → common}/asset-price-panel.d.ts +0 -0
- /package/limit-orders/{component/common → common}/modal-content.d.ts +0 -0
- /package/limit-orders/{component/common → common}/modal-dialog.d.ts +0 -0
- /package/limit-orders/{component/common → common}/percentage-input.d.ts +0 -0
- /package/limit-orders/{component/common → common}/price-input.d.ts +0 -0
- /package/limit-orders/{component/common → common}/switch-panel.d.ts +0 -0
- /package/limit-orders/{component → limit-sells/component}/input-group/input-group.d.ts +0 -0
- /package/limit-orders/{component → limit-sells/component}/limit-order-button/approve-and-create-limit-order-button.hooks.d.ts +0 -0
- /package/limit-orders/{component → limit-sells/component}/limit-order-button/limit-order-delete-button.d.ts +0 -0
- /package/limit-orders/{component → limit-sells/component}/limit-order-button/limit-order-delete-button.hooks.d.ts +0 -0
- /package/limit-orders/{component → limit-sells/component}/limit-order-content.hooks.d.ts +0 -0
- /package/limit-orders/{component → limit-sells/component}/limit-order-modal.hooks.d.ts +0 -0
- /package/limit-orders/{hooks → limit-sells/hooks}/state.d.ts +0 -0
- /package/limit-orders/{hooks → limit-sells/hooks}/use-approve-and-create-limit-order.d.ts +0 -0
- /package/limit-orders/{hooks → limit-sells/hooks}/use-create-limit-order-transaction.d.ts +0 -0
- /package/limit-orders/{hooks → limit-sells/hooks}/use-existing-limit-order-default-prices.d.ts +0 -0
- /package/limit-orders/{hooks → limit-sells/hooks}/use-is-limit-order-approved.d.ts +0 -0
- /package/limit-orders/{hooks → limit-sells/hooks}/use-limit-order-approve-transaction.d.ts +0 -0
- /package/limit-orders/{hooks → limit-sells/hooks}/use-limit-order-covered-vault-amount.d.ts +0 -0
- /package/limit-orders/{hooks → limit-sells/hooks}/use-listen-limit-order-execution.d.ts +0 -0
|
@@ -3,21 +3,32 @@ import { formatDuration as j } from "date-fns";
|
|
|
3
3
|
import { erc20Abi as Q } from "viem";
|
|
4
4
|
const J = "0x0000000000000000000000000000000000000000", Be = BigInt(
|
|
5
5
|
"0xffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff"
|
|
6
|
-
), l = 18, Ue = "1000000000000000000", We = 59e3, Fe = 3e4, ke = 15e3,
|
|
6
|
+
), l = 18, Ue = "1000000000000000000", We = 59e3, Fe = 3e4, ke = 15e3, Ve = 5e3, ee = 400, He = ee * 1.2, Ge = j({ hours: 24 }), Ye = {
|
|
7
7
|
address: J,
|
|
8
8
|
symbol: "",
|
|
9
9
|
chainId: t.id,
|
|
10
10
|
depositParams: { customTokens: [] },
|
|
11
11
|
withdrawParams: { customTokens: [] },
|
|
12
12
|
deprecated: !1
|
|
13
|
-
}, Ke = "deposit", ze = 0.5, te = 0, Xe = 0.5, qe = 0.02, Ze = 0.5, $e = [te], je =
|
|
13
|
+
}, Ke = "deposit", ze = 0.5, te = 0, Xe = 0.5, qe = 0.02, Ze = 0.5, $e = [te], je = [
|
|
14
|
+
0.05,
|
|
15
|
+
0.1,
|
|
16
|
+
0.3,
|
|
17
|
+
0.5,
|
|
18
|
+
0.75,
|
|
19
|
+
1,
|
|
20
|
+
1.5,
|
|
21
|
+
2,
|
|
22
|
+
3,
|
|
23
|
+
5
|
|
24
|
+
], Qe = "withdrawSafe", Je = "initWithdrawal", et = "unrollAndClaim", tt = "completeWithdrawal", at = 3e7, nt = 1.25, st = 1e4, it = 13e3, pt = 3, rt = 2e4, dt = 15e3, ot = {
|
|
14
25
|
[a.id]: a,
|
|
15
26
|
[i.id]: i,
|
|
16
27
|
[t.id]: t,
|
|
17
28
|
[s.id]: s,
|
|
18
29
|
[n.id]: n,
|
|
19
30
|
[y.id]: y
|
|
20
|
-
},
|
|
31
|
+
}, yt = {
|
|
21
32
|
[a.id]: {
|
|
22
33
|
nativeTokenSymbol: "ETH",
|
|
23
34
|
wrappedNativeTokenName: "WETH",
|
|
@@ -54,29 +65,29 @@ const J = "0x0000000000000000000000000000000000000000", Be = BigInt(
|
|
|
54
65
|
address: "0x5555555555555555555555555555555555555555",
|
|
55
66
|
decimals: l
|
|
56
67
|
}
|
|
57
|
-
}, m = 299e5,
|
|
68
|
+
}, m = 299e5, ut = {
|
|
58
69
|
[a.id]: m,
|
|
59
70
|
[i.id]: m,
|
|
60
71
|
[t.id]: m,
|
|
61
72
|
[s.id]: m,
|
|
62
73
|
[n.id]: m,
|
|
63
74
|
[y.id]: m
|
|
64
|
-
},
|
|
75
|
+
}, lt = {
|
|
65
76
|
[a.id]: "https://eth-mainnet.g.alchemy.com/v2",
|
|
66
77
|
[t.id]: "https://opt-mainnet.g.alchemy.com/v2",
|
|
67
78
|
[i.id]: "https://polygon-mainnet.g.alchemy.com/v2",
|
|
68
79
|
[s.id]: "https://arb-mainnet.g.alchemy.com/v2",
|
|
69
80
|
[n.id]: "https://base-mainnet.g.alchemy.com/v2",
|
|
70
81
|
[y.id]: "https://hyperliquid-mainnet.g.alchemy.com/v2"
|
|
71
|
-
},
|
|
82
|
+
}, mt = {
|
|
72
83
|
USD: "$",
|
|
73
84
|
ETH: "Ξ",
|
|
74
85
|
BTC: "₿"
|
|
75
|
-
},
|
|
86
|
+
}, ct = {
|
|
76
87
|
USD: 2,
|
|
77
88
|
ETH: 4,
|
|
78
89
|
BTC: 6
|
|
79
|
-
},
|
|
90
|
+
}, Tt = ["USDC", "USDT"], r = {
|
|
80
91
|
INVEST_INPUT_FOCUS: "invest_input_focus",
|
|
81
92
|
APPROVED_TOKEN: "approved_token",
|
|
82
93
|
DEPOSIT: "deposit",
|
|
@@ -88,45 +99,46 @@ const J = "0x0000000000000000000000000000000000000000", Be = BigInt(
|
|
|
88
99
|
WITHDRAWAL: "withdrawal",
|
|
89
100
|
TRADING_SETTINGS_OPENED: "trading_settings_opened",
|
|
90
101
|
INFINITE_ALLOWANCE_CHANGE: "infinite_allowance_change",
|
|
91
|
-
BATCH_TRANSACTIONS_CHANGE: "batch_transactions_change",
|
|
92
102
|
CREATE_LIMIT_SELL_ORDER: "limit_order_create",
|
|
103
|
+
CREATE_LIMIT_BUY_ORDER: "limit_buy_order_create",
|
|
93
104
|
OPEN_LIMIT_SELL_VIEW: "open_limit_sell_view",
|
|
105
|
+
OPEN_LIMIT_BUY_VIEW: "open_limit_buy_view",
|
|
94
106
|
LIMIT_ORDER_WITHDRAW: "limit_order_withdraw",
|
|
95
107
|
LIMIT_ORDER_WITHDRAW_DELETE: "limit_order_withdraw_delete"
|
|
96
|
-
},
|
|
97
|
-
approve: [
|
|
98
|
-
deposit: [
|
|
108
|
+
}, bt = {
|
|
109
|
+
approve: [r.APPROVED_TOKEN],
|
|
110
|
+
deposit: [r.DEPOSIT],
|
|
99
111
|
multi_withdraw: [
|
|
100
|
-
|
|
101
|
-
|
|
112
|
+
r.WITHDRAWAL,
|
|
113
|
+
r.MULTI_ASSET_WITHDRAW
|
|
102
114
|
],
|
|
103
115
|
single_withdraw: [
|
|
104
|
-
|
|
105
|
-
|
|
116
|
+
r.WITHDRAWAL,
|
|
117
|
+
r.SINGLE_ASSET_WITHDRAW
|
|
106
118
|
],
|
|
107
119
|
single_withdraw_and_claim: [
|
|
108
|
-
|
|
109
|
-
|
|
120
|
+
r.WITHDRAWAL,
|
|
121
|
+
r.SINGLE_ASSET_WITHDRAW_AND_CLAIM
|
|
110
122
|
],
|
|
111
|
-
claim: [
|
|
112
|
-
swap: [
|
|
113
|
-
create_limit_sell_order: [
|
|
114
|
-
|
|
123
|
+
claim: [r.CLAIM],
|
|
124
|
+
swap: [r.SWAP],
|
|
125
|
+
create_limit_sell_order: [r.CREATE_LIMIT_SELL_ORDER],
|
|
126
|
+
create_limit_buy_order: [r.CREATE_LIMIT_BUY_ORDER],
|
|
127
|
+
limit_order_withdraw: [r.LIMIT_ORDER_WITHDRAW],
|
|
115
128
|
delete_limit_order_withdraw: [
|
|
116
|
-
|
|
129
|
+
r.LIMIT_ORDER_WITHDRAW_DELETE
|
|
117
130
|
]
|
|
118
|
-
},
|
|
131
|
+
}, ft = {
|
|
119
132
|
IS_INFINITE: { NAME: "is_infinite", TYPE: "number" },
|
|
120
133
|
SYMBOL: { NAME: "symbol", TYPE: "string" },
|
|
121
134
|
CHAIN_ID: { NAME: "chain_id", TYPE: "number" },
|
|
122
135
|
ADDRESS: { NAME: "address", TYPE: "string" },
|
|
123
|
-
IS_BATCH_TRANSACTIONS_ENABLED: { NAME: "is_batch_enabled", TYPE: "number" },
|
|
124
136
|
SOURCE: { NAME: "source", TYPE: "string" }
|
|
125
137
|
};
|
|
126
138
|
var o = /* @__PURE__ */ ((u) => (u.ETH = "ETH", u.MAINNET = "MAINNET", u.POLYGON = "POLYGON", u.OE = "OPTIMISM", u.ARBI = "ARBITRUM", u.BASE = "BASE", u))(o || {});
|
|
127
139
|
const T = process.env.NEXT_PUBLIC_INFURA_API_KEY;
|
|
128
140
|
s.id + "", `${T}`, t.id + "", `${T}`, i.id + "", `${T}`, n.id + "", `${T}`, a.id + "", `${T}`;
|
|
129
|
-
const
|
|
141
|
+
const _t = {
|
|
130
142
|
[s.id]: {
|
|
131
143
|
...s,
|
|
132
144
|
name: "Arbitrum",
|
|
@@ -167,10 +179,10 @@ const ft = {
|
|
|
167
179
|
};
|
|
168
180
|
o.ETH + "", a.id, o.MAINNET + "", a.id, o.POLYGON + "", i.id, o.OE + "", t.id, o.ARBI + "", s.id, o.BASE + "", n.id;
|
|
169
181
|
a.id + "", t.id + "", i.id + "", s.id + "", n.id + "", y.id + "";
|
|
170
|
-
const
|
|
182
|
+
const I = "0x0000000000000000000000000000000000000000";
|
|
171
183
|
BigInt("0xffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff");
|
|
172
184
|
a.id + "", BigInt(100), t.id + "", BigInt(600), i.id + "", BigInt(600), n.id + "", BigInt(600), s.id + "", BigInt(5300);
|
|
173
|
-
const
|
|
185
|
+
const S = "0x96D33bCF84DdE326014248E2896F79bbb9c13D6d", R = "0xbDd84294bC8299861A2121F749A25EFEb7168a32", w = "0x87870Bca3F3fD6335C3F4ce8392D69350B4fA4E2", M = "0xffFb5fB14606EB3a548C113026355020dDF27535", h = "0x794a61358D6845594F94dc1DB02A252b5b4814aD", O = "0xA5679C4272A056Bb83f039961fae7D99C48529F5", g = "0x26a687e8244f1866E9Aa2D400c8b9957Aa8e6Ad4", v = "0x49Afe3abCf66CF09Fab86cb1139D8811C8afe56F", C = "0xf067575Eb60c7587C11e867907AA7284833704d1", ae = "0x59525b9b23adc475ef91d98dae06b568ba574ce5", At = "0xa907504d7a4c415b4e6e1d0866d96afe8202f0e5", Dt = "0x1849324228d852a67eb7443e42d967e480ffe95d", L = "0xa238dd80c259a72e81d7e4664a9801593f98d1c5", P = "0xFcBEc28c43E356693971a24bf3F2Fd7D965E2ebA", ne = "0x07e144e336fcc3fe928a8a2a5714da64354c1aab", x = "0x5e61a079A178f0E5784107a4963baAe0c5a680c6", N = "0x794a61358D6845594F94dc1DB02A252b5b4814aD", B = "0x2Ed1bd7f66e47113672f3870308b5E867C5bb743", U = "0x3bFE2a472d2964Ea4070725b7Fb0A868b3f08b63", W = "0xfdc7b8bFe0DD3513Cc669bB8d601Cb83e2F69cB0", se = "0x8dFf5E27EA6b7AC08EbFdf9eB090F32ee9a30fcf", F = "0x794a61358D6845594F94dc1DB02A252b5b4814aD", k = "0x45b90480D6F643dE2f128db091A357C3c90399f2", V = "0xB71410736d2C8F2DAf30dA9D332dA10534d2624d", ie = "0x615037C2Df6FA97634c5aD2d8144708b9dd3B176", pe = "0x47065E508433E22d73Be3c5B61EB9abafD450364", Et = "0x4F754e0F0924afD74980886b0B479Fa1D7C58D0D";
|
|
174
186
|
a.id + "", s.id + "", n.id + "", t.id + "", i.id + "";
|
|
175
187
|
a.id + "", s.id + "", n.id + "", t.id + "", i.id + "";
|
|
176
188
|
a.id + "", s.id + "", n.id + "", t.id + "", i.id + "";
|
|
@@ -965,7 +977,7 @@ const E = [
|
|
|
965
977
|
stateMutability: "nonpayable",
|
|
966
978
|
type: "function"
|
|
967
979
|
}
|
|
968
|
-
],
|
|
980
|
+
], re = [
|
|
969
981
|
{
|
|
970
982
|
inputs: [
|
|
971
983
|
{
|
|
@@ -1403,7 +1415,7 @@ const E = [
|
|
|
1403
1415
|
stateMutability: "nonpayable",
|
|
1404
1416
|
type: "function"
|
|
1405
1417
|
}
|
|
1406
|
-
],
|
|
1418
|
+
], It = [
|
|
1407
1419
|
{
|
|
1408
1420
|
type: "tuple[]",
|
|
1409
1421
|
components: [
|
|
@@ -4088,9 +4100,9 @@ const E = [
|
|
|
4088
4100
|
stateMutability: "nonpayable",
|
|
4089
4101
|
type: "function"
|
|
4090
4102
|
}
|
|
4091
|
-
],
|
|
4103
|
+
], Rt = {
|
|
4092
4104
|
[a.id]: {
|
|
4093
|
-
factory:
|
|
4105
|
+
factory: S,
|
|
4094
4106
|
easySwapperV2: R,
|
|
4095
4107
|
aaveLendingPoolV3: w
|
|
4096
4108
|
},
|
|
@@ -4099,7 +4111,7 @@ const E = [
|
|
|
4099
4111
|
aaveLendingPoolV2: se,
|
|
4100
4112
|
aaveLendingPoolV3: F,
|
|
4101
4113
|
easySwapperV2: k,
|
|
4102
|
-
limitOrder:
|
|
4114
|
+
limitOrder: V
|
|
4103
4115
|
},
|
|
4104
4116
|
[t.id]: {
|
|
4105
4117
|
factory: x,
|
|
@@ -4123,10 +4135,10 @@ const E = [
|
|
|
4123
4135
|
},
|
|
4124
4136
|
[y.id]: {
|
|
4125
4137
|
factory: ie,
|
|
4126
|
-
easySwapperV2:
|
|
4138
|
+
easySwapperV2: pe
|
|
4127
4139
|
}
|
|
4128
|
-
},
|
|
4129
|
-
factory:
|
|
4140
|
+
}, wt = {
|
|
4141
|
+
factory: re,
|
|
4130
4142
|
aaveLendingPoolV2: E,
|
|
4131
4143
|
aaveLendingPoolV3: E,
|
|
4132
4144
|
rewardDistribution: ye,
|
|
@@ -4136,7 +4148,7 @@ const E = [
|
|
|
4136
4148
|
flatcoinPointsModule: ue,
|
|
4137
4149
|
easySwapperV2: me,
|
|
4138
4150
|
limitOrder: ce
|
|
4139
|
-
},
|
|
4151
|
+
}, Mt = "Gas estimate error occurred", ht = "See console logs to report error details.", Ot = "Missing simulation params", gt = "Simulation timeout", Te = "swap_data_deposit_error", be = "swap_data_withdraw_error", fe = "SwapFailed", b = {
|
|
4140
4152
|
title: "Low Slippage",
|
|
4141
4153
|
hint: "Please increase slippage tolerance and try again."
|
|
4142
4154
|
}, _e = {
|
|
@@ -4293,15 +4305,15 @@ const E = [
|
|
|
4293
4305
|
InvalidPrices: {
|
|
4294
4306
|
title: Ae
|
|
4295
4307
|
}
|
|
4296
|
-
},
|
|
4308
|
+
}, vt = [
|
|
4297
4309
|
...Object.keys(_e),
|
|
4298
4310
|
...Object.keys(De)
|
|
4299
|
-
], e = 18,
|
|
4311
|
+
], e = 18, H = {
|
|
4300
4312
|
address: "0xff970a61a04b1ca14834a43f5de4533ebddb5cc8",
|
|
4301
4313
|
symbol: "USDCe",
|
|
4302
4314
|
decimals: 6,
|
|
4303
4315
|
value: ""
|
|
4304
|
-
},
|
|
4316
|
+
}, d = {
|
|
4305
4317
|
address: "0xaf88d065e77c8cC2239327C5EDb3A432268e5831",
|
|
4306
4318
|
symbol: "USDC",
|
|
4307
4319
|
decimals: 6,
|
|
@@ -4316,32 +4328,32 @@ const E = [
|
|
|
4316
4328
|
symbol: "WBTC",
|
|
4317
4329
|
decimals: 8,
|
|
4318
4330
|
value: ""
|
|
4319
|
-
},
|
|
4331
|
+
}, Ct = {
|
|
4320
4332
|
address: "0x6c84a8f1c29108F47a79964b5Fe888D4f4D0dE40",
|
|
4321
4333
|
symbol: "tBTC",
|
|
4322
4334
|
decimals: e,
|
|
4323
4335
|
value: ""
|
|
4324
|
-
},
|
|
4336
|
+
}, Lt = {
|
|
4325
4337
|
address: "0x5979D7b546E38E414F7E9822514be443A4800529",
|
|
4326
4338
|
symbol: "wstETH",
|
|
4327
4339
|
decimals: e,
|
|
4328
4340
|
value: ""
|
|
4329
|
-
},
|
|
4341
|
+
}, Pt = {
|
|
4330
4342
|
address: "0xfd086bc7cd5c481dcc9c85ebe478a1c0b69fcbb9",
|
|
4331
4343
|
symbol: "USDT",
|
|
4332
4344
|
decimals: 6,
|
|
4333
4345
|
value: ""
|
|
4334
|
-
},
|
|
4346
|
+
}, xt = {
|
|
4335
4347
|
address: "0x2bcC6D6CdBbDC0a4071e48bb3B969b06B3330c07",
|
|
4336
4348
|
symbol: "SOL",
|
|
4337
4349
|
decimals: 9,
|
|
4338
4350
|
value: ""
|
|
4339
|
-
},
|
|
4351
|
+
}, Nt = {
|
|
4340
4352
|
address: "0xa9004a5421372e1d83fb1f85b0fc986c912f91f3",
|
|
4341
4353
|
symbol: "WBNB",
|
|
4342
4354
|
decimals: e,
|
|
4343
4355
|
value: ""
|
|
4344
|
-
},
|
|
4356
|
+
}, Bt = {
|
|
4345
4357
|
address: "0xf97f4df75117a78c1a5a0dbb814af92458539fb4",
|
|
4346
4358
|
symbol: "LINK",
|
|
4347
4359
|
decimals: e,
|
|
@@ -4351,7 +4363,7 @@ const E = [
|
|
|
4351
4363
|
symbol: "USDC",
|
|
4352
4364
|
decimals: 6,
|
|
4353
4365
|
value: ""
|
|
4354
|
-
},
|
|
4366
|
+
}, Ut = {
|
|
4355
4367
|
address: "0xd9aaec86b65d86f6a7b5b1b0c42ffa531710b6ca",
|
|
4356
4368
|
symbol: "USDbC",
|
|
4357
4369
|
decimals: 6,
|
|
@@ -4361,12 +4373,12 @@ const E = [
|
|
|
4361
4373
|
symbol: "WETH",
|
|
4362
4374
|
decimals: e,
|
|
4363
4375
|
value: ""
|
|
4364
|
-
},
|
|
4376
|
+
}, Wt = {
|
|
4365
4377
|
address: "0x2ae3f1ec7f1f5012cfeab0185bfc7aa3cf0dec22",
|
|
4366
4378
|
symbol: "cbETH",
|
|
4367
4379
|
decimals: e,
|
|
4368
4380
|
value: ""
|
|
4369
|
-
},
|
|
4381
|
+
}, Ie = {
|
|
4370
4382
|
address: "0xcbb7c0000ab88b473b1f5afd9ef808440eed33bf",
|
|
4371
4383
|
symbol: "cbBTC",
|
|
4372
4384
|
decimals: 8,
|
|
@@ -4376,12 +4388,12 @@ const E = [
|
|
|
4376
4388
|
symbol: "rETH",
|
|
4377
4389
|
decimals: e,
|
|
4378
4390
|
value: ""
|
|
4379
|
-
},
|
|
4391
|
+
}, Ft = {
|
|
4380
4392
|
address: "0x236aa50979D5f3De3Bd1Eeb40E81137F22ab794b",
|
|
4381
4393
|
symbol: "tBTC",
|
|
4382
4394
|
decimals: e,
|
|
4383
4395
|
value: ""
|
|
4384
|
-
},
|
|
4396
|
+
}, kt = {
|
|
4385
4397
|
address: "0xc1cba3fcea344f92d9239c08c0568f6f2f0ee452",
|
|
4386
4398
|
symbol: "wstETH",
|
|
4387
4399
|
decimals: e,
|
|
@@ -4391,7 +4403,7 @@ const E = [
|
|
|
4391
4403
|
symbol: "USDCe",
|
|
4392
4404
|
decimals: 6,
|
|
4393
4405
|
value: ""
|
|
4394
|
-
},
|
|
4406
|
+
}, Se = {
|
|
4395
4407
|
address: "0x0b2C639c533813f4Aa9D7837CAf62653d097Ff85",
|
|
4396
4408
|
symbol: "USDC",
|
|
4397
4409
|
decimals: 6,
|
|
@@ -4406,7 +4418,7 @@ const E = [
|
|
|
4406
4418
|
symbol: "WETH",
|
|
4407
4419
|
decimals: e,
|
|
4408
4420
|
value: ""
|
|
4409
|
-
},
|
|
4421
|
+
}, Vt = {
|
|
4410
4422
|
address: "0x8c6f28f2F1A3C87F0f938b96d27520d9751ec8d9",
|
|
4411
4423
|
symbol: "sUSD",
|
|
4412
4424
|
decimals: e,
|
|
@@ -4426,17 +4438,17 @@ const E = [
|
|
|
4426
4438
|
symbol: "sETH",
|
|
4427
4439
|
decimals: e,
|
|
4428
4440
|
value: ""
|
|
4429
|
-
},
|
|
4441
|
+
}, Gt = {
|
|
4430
4442
|
address: "0x350a791bfc2c21f9ed5d10980dad2e2638ffa7f6",
|
|
4431
4443
|
symbol: "LINK",
|
|
4432
4444
|
decimals: e,
|
|
4433
4445
|
value: ""
|
|
4434
|
-
},
|
|
4446
|
+
}, Yt = {
|
|
4435
4447
|
address: "0x6c84a8f1c29108F47a79964b5Fe888D4f4D0dE40",
|
|
4436
4448
|
symbol: "tBTC",
|
|
4437
4449
|
decimals: e,
|
|
4438
4450
|
value: ""
|
|
4439
|
-
},
|
|
4451
|
+
}, Kt = {
|
|
4440
4452
|
address: "0x1F32b1c2345538c0c6f582fCB022739c4A194Ebb",
|
|
4441
4453
|
symbol: "wstETH",
|
|
4442
4454
|
decimals: e,
|
|
@@ -4456,7 +4468,7 @@ const E = [
|
|
|
4456
4468
|
symbol: "USDC",
|
|
4457
4469
|
decimals: 6,
|
|
4458
4470
|
value: ""
|
|
4459
|
-
},
|
|
4471
|
+
}, zt = {
|
|
4460
4472
|
address: "0x553d3d295e0f695b9228246232edf400ed3560b5",
|
|
4461
4473
|
symbol: "PAXG",
|
|
4462
4474
|
decimals: e,
|
|
@@ -4481,7 +4493,7 @@ const E = [
|
|
|
4481
4493
|
symbol: "DAI",
|
|
4482
4494
|
decimals: e,
|
|
4483
4495
|
value: ""
|
|
4484
|
-
},
|
|
4496
|
+
}, Xt = {
|
|
4485
4497
|
address: "0x236aa50979d5f3de3bd1eeb40e81137f22ab794b",
|
|
4486
4498
|
symbol: "tBTC",
|
|
4487
4499
|
decimals: e,
|
|
@@ -4506,36 +4518,36 @@ const E = [
|
|
|
4506
4518
|
symbol: "USDT",
|
|
4507
4519
|
decimals: 6,
|
|
4508
4520
|
value: ""
|
|
4509
|
-
},
|
|
4521
|
+
}, qt = {
|
|
4510
4522
|
address: "0x68749665ff8d2d112fa859aa293f07a622782f38",
|
|
4511
4523
|
symbol: "XAUt",
|
|
4512
4524
|
decimals: 6,
|
|
4513
4525
|
value: ""
|
|
4514
|
-
},
|
|
4515
|
-
address:
|
|
4526
|
+
}, Zt = {
|
|
4527
|
+
address: I,
|
|
4516
4528
|
symbol: "all",
|
|
4517
4529
|
decimals: e,
|
|
4518
4530
|
value: ""
|
|
4519
|
-
},
|
|
4520
|
-
[
|
|
4531
|
+
}, $t = {
|
|
4532
|
+
[H.address.toLowerCase()]: "USDCe",
|
|
4521
4533
|
[Y.address.toLowerCase()]: "USDCe",
|
|
4522
4534
|
[X.address.toLowerCase()]: "USDCe"
|
|
4523
|
-
},
|
|
4535
|
+
}, jt = {
|
|
4524
4536
|
[a.id]: Z,
|
|
4525
4537
|
[t.id]: K,
|
|
4526
4538
|
[n.id]: G,
|
|
4527
4539
|
[i.id]: z,
|
|
4528
4540
|
[s.id]: A
|
|
4529
|
-
},
|
|
4541
|
+
}, Qt = {
|
|
4530
4542
|
[t.id]: f,
|
|
4531
|
-
[n.id]:
|
|
4543
|
+
[n.id]: Ie,
|
|
4532
4544
|
[i.id]: q,
|
|
4533
4545
|
[s.id]: c,
|
|
4534
4546
|
[a.id]: $
|
|
4535
|
-
},
|
|
4547
|
+
}, Jt = {
|
|
4536
4548
|
[t.id]: {
|
|
4537
4549
|
WETH: K,
|
|
4538
|
-
USDC:
|
|
4550
|
+
USDC: Se,
|
|
4539
4551
|
WBTC: f,
|
|
4540
4552
|
USDCe: Y,
|
|
4541
4553
|
USDT: Re,
|
|
@@ -4552,9 +4564,9 @@ const E = [
|
|
|
4552
4564
|
},
|
|
4553
4565
|
[s.id]: {
|
|
4554
4566
|
WETH: A,
|
|
4555
|
-
USDC:
|
|
4567
|
+
USDC: d,
|
|
4556
4568
|
WBTC: c,
|
|
4557
|
-
USDCe:
|
|
4569
|
+
USDCe: H
|
|
4558
4570
|
},
|
|
4559
4571
|
[n.id]: {
|
|
4560
4572
|
WETH: G,
|
|
@@ -4566,13 +4578,13 @@ const E = [
|
|
|
4566
4578
|
WBTC: $,
|
|
4567
4579
|
USDT: Ce
|
|
4568
4580
|
}
|
|
4569
|
-
},
|
|
4581
|
+
}, ea = "https://hermes.pyth.network", ta = "https://flat.money/flatcoin", aa = "https://v1.flat.money/flatcoin", _ = {
|
|
4570
4582
|
RETH_BASE: "0xdb0cd65dcc7fe07003ce1201f91e1f966fa95768",
|
|
4571
4583
|
WBTC_OPTIMISM: "0x6d857e9d24a7566bb72a3fb0847a3e0e4e1c2879",
|
|
4572
4584
|
WBTC_ARBITRUM: "0xb1353d51991e79fefd4bfdba2a03e9f0232814a6"
|
|
4573
|
-
},
|
|
4585
|
+
}, na = Object.values(
|
|
4574
4586
|
_
|
|
4575
|
-
),
|
|
4587
|
+
), sa = {
|
|
4576
4588
|
[_.RETH_BASE]: {
|
|
4577
4589
|
symbol: D.symbol,
|
|
4578
4590
|
decimals: D.decimals,
|
|
@@ -4588,11 +4600,11 @@ const E = [
|
|
|
4588
4600
|
decimals: c.decimals,
|
|
4589
4601
|
address: c.address
|
|
4590
4602
|
}
|
|
4591
|
-
}, Le = "0xb95fb324b8a2faf8ec4f76e3df46c718402736e2",
|
|
4603
|
+
}, Le = "0xb95fb324b8a2faf8ec4f76e3df46c718402736e2", ia = [
|
|
4592
4604
|
Le,
|
|
4593
4605
|
"0x357cb23571ef7a3d6189b7facfc361ea71f7cab5"
|
|
4594
4606
|
// WBTC_OPTIMISM
|
|
4595
|
-
],
|
|
4607
|
+
], pa = {
|
|
4596
4608
|
[n.id]: 2e3,
|
|
4597
4609
|
// Base network requires a longer delay according to manual testing
|
|
4598
4610
|
[a.id]: 300,
|
|
@@ -4609,12 +4621,12 @@ const E = [
|
|
|
4609
4621
|
ZAP_NATIVE_DEPOSIT_CUSTOM: "zapNativeDepositWithCustomCooldown",
|
|
4610
4622
|
ZAP_DEPOSIT: "zapDeposit",
|
|
4611
4623
|
ZAP_DEPOSIT_CUSTOM: "zapDepositWithCustomCooldown"
|
|
4612
|
-
},
|
|
4624
|
+
}, da = [
|
|
4613
4625
|
"multi_withdraw",
|
|
4614
4626
|
"swap",
|
|
4615
4627
|
"claim",
|
|
4616
4628
|
"single_withdraw_and_claim"
|
|
4617
|
-
],
|
|
4629
|
+
], p = {
|
|
4618
4630
|
SOL_ARBITRUM: "0x09400d9db990d5ed3f35d7be61dfaeb900af03c9",
|
|
4619
4631
|
BTC_ARBITRUM: "0x47c031236e19d024b42f8ae6780e44a573170703",
|
|
4620
4632
|
WETH_WETH_ARBITRUM: "0x70d95587d40a2caf56bd97485ab3eec10bee6336",
|
|
@@ -4630,126 +4642,122 @@ const E = [
|
|
|
4630
4642
|
PUMP_ARBITRUM: "0x4c0bb704529fa49a26bd854802d70206982c6f1b",
|
|
4631
4643
|
GOLD_ARBITRUM: "0xeb28ad1a2e497f4acc5d9b87e7b496623c93061e",
|
|
4632
4644
|
AAVE_ARBITRUM: "0x1cbba6346f110c8a5ea739ef2d1eb182990e4eb2"
|
|
4633
|
-
},
|
|
4634
|
-
|
|
4635
|
-
),
|
|
4636
|
-
[
|
|
4637
|
-
[
|
|
4638
|
-
[
|
|
4639
|
-
[
|
|
4640
|
-
[
|
|
4641
|
-
[
|
|
4642
|
-
[
|
|
4643
|
-
[
|
|
4644
|
-
[
|
|
4645
|
-
[
|
|
4646
|
-
[
|
|
4647
|
-
[
|
|
4648
|
-
[
|
|
4649
|
-
[
|
|
4650
|
-
[
|
|
4651
|
-
}, ya = {
|
|
4652
|
-
"0x9a916e55f5b67226734cd7b465d51bce1d11a89a": p
|
|
4653
|
-
// USDmny Arbitrum
|
|
4645
|
+
}, oa = Object.values(
|
|
4646
|
+
p
|
|
4647
|
+
), ya = {
|
|
4648
|
+
[p.SOL_ARBITRUM]: d,
|
|
4649
|
+
[p.BTC_ARBITRUM]: c,
|
|
4650
|
+
[p.WETH_WETH_ARBITRUM]: A,
|
|
4651
|
+
[p.WETH_USDC_ARBITRUM]: A,
|
|
4652
|
+
[p.SUI_ARBITRUM]: d,
|
|
4653
|
+
[p.DOGE_ARBITRUM]: d,
|
|
4654
|
+
[p.XRP_ARBITRUM]: d,
|
|
4655
|
+
[p.CRV_ARBITRUM]: d,
|
|
4656
|
+
[p.HYPE_ARBITRUM]: d,
|
|
4657
|
+
[p.BNB_ARBITRUM]: d,
|
|
4658
|
+
[p.LINK_ARBITRUM]: d,
|
|
4659
|
+
[p.PUMP_ARBITRUM]: d,
|
|
4660
|
+
[p.BNB_WBTC_USDC_ARBITRUM]: d,
|
|
4661
|
+
[p.GOLD_ARBITRUM]: d,
|
|
4662
|
+
[p.AAVE_ARBITRUM]: d
|
|
4654
4663
|
}, ua = {
|
|
4655
|
-
|
|
4656
|
-
|
|
4657
|
-
REF_POOL: "ref_pool"
|
|
4664
|
+
"0x9a916e55f5b67226734cd7b465d51bce1d11a89a": d
|
|
4665
|
+
// USDmny Arbitrum
|
|
4658
4666
|
};
|
|
4659
4667
|
export {
|
|
4660
|
-
|
|
4661
|
-
|
|
4662
|
-
|
|
4663
|
-
|
|
4668
|
+
st as $,
|
|
4669
|
+
lt as A,
|
|
4670
|
+
$t as B,
|
|
4671
|
+
ot as C,
|
|
4664
4672
|
ee as D,
|
|
4665
|
-
|
|
4666
|
-
|
|
4667
|
-
|
|
4673
|
+
tt as E,
|
|
4674
|
+
Je as F,
|
|
4675
|
+
et as G,
|
|
4668
4676
|
Ye as H,
|
|
4669
|
-
|
|
4677
|
+
He as I,
|
|
4670
4678
|
We as J,
|
|
4671
|
-
|
|
4672
|
-
|
|
4673
|
-
|
|
4674
|
-
|
|
4675
|
-
|
|
4676
|
-
|
|
4679
|
+
Ve as K,
|
|
4680
|
+
Jt as L,
|
|
4681
|
+
sa as M,
|
|
4682
|
+
na as N,
|
|
4683
|
+
ia as O,
|
|
4684
|
+
ta as P,
|
|
4677
4685
|
Le as Q,
|
|
4678
|
-
|
|
4679
|
-
|
|
4680
|
-
|
|
4681
|
-
|
|
4682
|
-
|
|
4683
|
-
|
|
4684
|
-
|
|
4686
|
+
aa as R,
|
|
4687
|
+
Mt as S,
|
|
4688
|
+
nt as T,
|
|
4689
|
+
oa as U,
|
|
4690
|
+
p as V,
|
|
4691
|
+
ya as W,
|
|
4692
|
+
ua as X,
|
|
4685
4693
|
Ae as Y,
|
|
4686
4694
|
De as Z,
|
|
4687
|
-
|
|
4688
|
-
|
|
4689
|
-
|
|
4690
|
-
|
|
4691
|
-
|
|
4692
|
-
|
|
4693
|
-
|
|
4694
|
-
|
|
4695
|
-
|
|
4696
|
-
|
|
4697
|
-
|
|
4698
|
-
|
|
4695
|
+
bt as _,
|
|
4696
|
+
pa as a,
|
|
4697
|
+
Nt as a$,
|
|
4698
|
+
ut as a0,
|
|
4699
|
+
Zt as a1,
|
|
4700
|
+
Be as a2,
|
|
4701
|
+
at as a3,
|
|
4702
|
+
ea as a4,
|
|
4703
|
+
ke as a5,
|
|
4704
|
+
gt as a6,
|
|
4705
|
+
je as a7,
|
|
4706
|
+
Tt as a8,
|
|
4699
4707
|
fe as a9,
|
|
4700
4708
|
Y as aA,
|
|
4701
4709
|
X as aB,
|
|
4702
|
-
|
|
4703
|
-
|
|
4710
|
+
Ie as aC,
|
|
4711
|
+
Wt as aD,
|
|
4704
4712
|
we as aE,
|
|
4705
4713
|
ge as aF,
|
|
4706
|
-
|
|
4707
|
-
|
|
4708
|
-
|
|
4714
|
+
Bt as aG,
|
|
4715
|
+
Gt as aH,
|
|
4716
|
+
zt as aI,
|
|
4709
4717
|
D as aJ,
|
|
4710
4718
|
ye as aK,
|
|
4711
4719
|
Ht as aL,
|
|
4712
|
-
|
|
4713
|
-
|
|
4714
|
-
|
|
4715
|
-
|
|
4716
|
-
|
|
4717
|
-
|
|
4718
|
-
|
|
4720
|
+
Vt as aM,
|
|
4721
|
+
Ct as aN,
|
|
4722
|
+
Ft as aO,
|
|
4723
|
+
Yt as aP,
|
|
4724
|
+
Xt as aQ,
|
|
4725
|
+
Ut as aR,
|
|
4726
|
+
d as aS,
|
|
4719
4727
|
Ee as aT,
|
|
4720
4728
|
ve as aU,
|
|
4721
|
-
|
|
4729
|
+
Se as aV,
|
|
4722
4730
|
Me as aW,
|
|
4723
|
-
|
|
4731
|
+
Pt as aX,
|
|
4724
4732
|
Ce as aY,
|
|
4725
4733
|
Re as aZ,
|
|
4726
4734
|
Oe as a_,
|
|
4727
4735
|
rt as aa,
|
|
4728
|
-
|
|
4729
|
-
|
|
4736
|
+
ft as ab,
|
|
4737
|
+
r as ac,
|
|
4730
4738
|
_e as ad,
|
|
4731
|
-
|
|
4732
|
-
|
|
4733
|
-
|
|
4739
|
+
vt as ae,
|
|
4740
|
+
Qt as af,
|
|
4741
|
+
jt as ag,
|
|
4734
4742
|
be as ah,
|
|
4735
|
-
|
|
4736
|
-
|
|
4737
|
-
|
|
4738
|
-
|
|
4743
|
+
wt as ai,
|
|
4744
|
+
Rt as aj,
|
|
4745
|
+
I as ak,
|
|
4746
|
+
It as al,
|
|
4739
4747
|
St as am,
|
|
4740
4748
|
e as an,
|
|
4741
|
-
|
|
4742
|
-
|
|
4743
|
-
|
|
4749
|
+
At as ao,
|
|
4750
|
+
Dt as ap,
|
|
4751
|
+
re as aq,
|
|
4744
4752
|
de as ar,
|
|
4745
4753
|
me as as,
|
|
4746
4754
|
oe as at,
|
|
4747
4755
|
ue as au,
|
|
4748
|
-
|
|
4749
|
-
|
|
4756
|
+
_t as av,
|
|
4757
|
+
Et as aw,
|
|
4750
4758
|
ce as ax,
|
|
4751
4759
|
E as ay,
|
|
4752
|
-
|
|
4760
|
+
H as az,
|
|
4753
4761
|
J as b,
|
|
4754
4762
|
c as b0,
|
|
4755
4763
|
$ as b1,
|
|
@@ -4761,32 +4769,32 @@ export {
|
|
|
4761
4769
|
K as b7,
|
|
4762
4770
|
z as b8,
|
|
4763
4771
|
he as b9,
|
|
4764
|
-
|
|
4765
|
-
|
|
4766
|
-
|
|
4767
|
-
|
|
4768
|
-
|
|
4769
|
-
|
|
4770
|
-
|
|
4771
|
-
|
|
4772
|
-
|
|
4772
|
+
xt as ba,
|
|
4773
|
+
Lt as bb,
|
|
4774
|
+
kt as bc,
|
|
4775
|
+
Kt as bd,
|
|
4776
|
+
qt as be,
|
|
4777
|
+
yt as c,
|
|
4778
|
+
da as d,
|
|
4779
|
+
ct as e,
|
|
4780
|
+
mt as f,
|
|
4773
4781
|
Ke as g,
|
|
4774
4782
|
te as h,
|
|
4775
4783
|
$e as i,
|
|
4776
|
-
|
|
4784
|
+
ht as j,
|
|
4777
4785
|
Ge as k,
|
|
4778
4786
|
m as l,
|
|
4779
|
-
|
|
4780
|
-
|
|
4787
|
+
Qe as m,
|
|
4788
|
+
dt as n,
|
|
4781
4789
|
Xe as o,
|
|
4782
4790
|
Fe as p,
|
|
4783
4791
|
l as q,
|
|
4784
|
-
|
|
4792
|
+
it as r,
|
|
4785
4793
|
qe as s,
|
|
4786
|
-
|
|
4794
|
+
Ot as t,
|
|
4787
4795
|
Ze as u,
|
|
4788
4796
|
Ue as v,
|
|
4789
|
-
|
|
4797
|
+
pt as w,
|
|
4790
4798
|
ze as x,
|
|
4791
4799
|
Te as y,
|
|
4792
4800
|
ra as z
|