@keep-network/tbtc-v2 0.1.1-dev.6 → 0.1.1-dev.62
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.adoc +12 -0
- package/artifacts/Bank.json +752 -0
- package/artifacts/Bridge.json +3962 -0
- package/artifacts/Deposit.json +117 -0
- package/artifacts/DepositSweep.json +76 -0
- package/artifacts/EcdsaDkgValidator.json +532 -0
- package/artifacts/EcdsaInactivity.json +156 -0
- package/artifacts/Fraud.json +154 -0
- package/artifacts/KeepRegistry.json +99 -0
- package/artifacts/KeepStake.json +286 -0
- package/artifacts/KeepToken.json +711 -0
- package/artifacts/KeepTokenStaking.json +483 -0
- package/artifacts/MovingFunds.json +227 -0
- package/artifacts/NuCypherStakingEscrow.json +256 -0
- package/artifacts/NuCypherToken.json +711 -0
- package/artifacts/RandomBeaconStub.json +141 -0
- package/artifacts/Redemption.json +162 -0
- package/artifacts/ReimbursementPool.json +509 -0
- package/artifacts/Relay.json +123 -0
- package/artifacts/SortitionPool.json +944 -0
- package/artifacts/T.json +1148 -0
- package/artifacts/TBTC.json +27 -26
- package/artifacts/TBTCToken.json +27 -26
- package/artifacts/TokenStaking.json +2288 -0
- package/artifacts/TokenholderGovernor.json +1795 -0
- package/artifacts/TokenholderTimelock.json +1058 -0
- package/artifacts/VendingMachine.json +30 -29
- package/artifacts/VendingMachineKeep.json +400 -0
- package/artifacts/VendingMachineNuCypher.json +400 -0
- package/artifacts/WalletRegistry.json +2709 -0
- package/artifacts/WalletRegistryGovernance.json +2364 -0
- package/artifacts/Wallets.json +186 -0
- package/artifacts/solcInputs/05c98d94f96a77da7702c7818a8cadac.json +227 -0
- package/build/contracts/GovernanceUtils.sol/GovernanceUtils.dbg.json +1 -1
- package/build/contracts/GovernanceUtils.sol/GovernanceUtils.json +2 -2
- package/build/contracts/bank/Bank.sol/Bank.dbg.json +1 -1
- package/build/contracts/bank/Bank.sol/Bank.json +20 -2
- package/build/contracts/bridge/BitcoinTx.sol/BitcoinTx.dbg.json +4 -0
- package/build/contracts/bridge/BitcoinTx.sol/BitcoinTx.json +10 -0
- package/build/contracts/bridge/Bridge.sol/Bridge.dbg.json +1 -1
- package/build/contracts/bridge/Bridge.sol/Bridge.json +2470 -132
- package/build/contracts/bridge/BridgeState.sol/BridgeState.dbg.json +4 -0
- package/build/contracts/bridge/BridgeState.sol/BridgeState.json +220 -0
- package/build/contracts/bridge/Deposit.sol/Deposit.dbg.json +4 -0
- package/build/contracts/bridge/Deposit.sol/Deposit.json +72 -0
- package/build/contracts/bridge/DepositSweep.sol/DepositSweep.dbg.json +4 -0
- package/build/contracts/bridge/DepositSweep.sol/DepositSweep.json +30 -0
- package/build/contracts/bridge/EcdsaLib.sol/EcdsaLib.dbg.json +4 -0
- package/build/contracts/bridge/EcdsaLib.sol/EcdsaLib.json +10 -0
- package/build/contracts/bridge/Fraud.sol/Fraud.dbg.json +4 -0
- package/build/contracts/bridge/Fraud.sol/Fraud.json +86 -0
- package/build/contracts/bridge/Heartbeat.sol/Heartbeat.dbg.json +4 -0
- package/build/contracts/bridge/Heartbeat.sol/Heartbeat.json +10 -0
- package/build/contracts/bridge/IRelay.sol/IRelay.dbg.json +4 -0
- package/build/contracts/bridge/IRelay.sol/IRelay.json +37 -0
- package/build/contracts/bridge/MovingFunds.sol/MovingFunds.dbg.json +4 -0
- package/build/contracts/bridge/MovingFunds.sol/MovingFunds.json +125 -0
- package/build/contracts/bridge/Redemption.sol/OutboundTx.dbg.json +4 -0
- package/build/contracts/bridge/Redemption.sol/OutboundTx.json +10 -0
- package/build/contracts/bridge/Redemption.sol/Redemption.dbg.json +4 -0
- package/build/contracts/bridge/Redemption.sol/Redemption.json +92 -0
- package/build/contracts/bridge/VendingMachine.sol/VendingMachine.dbg.json +1 -1
- package/build/contracts/bridge/VendingMachine.sol/VendingMachine.json +2 -2
- package/build/contracts/bridge/Wallets.sol/Wallets.dbg.json +4 -0
- package/build/contracts/bridge/Wallets.sol/Wallets.json +112 -0
- package/build/contracts/token/TBTC.sol/TBTC.dbg.json +1 -1
- package/build/contracts/token/TBTC.sol/TBTC.json +2 -2
- package/build/contracts/vault/DonationVault.sol/DonationVault.dbg.json +4 -0
- package/build/contracts/vault/DonationVault.sol/DonationVault.json +103 -0
- package/build/contracts/vault/IVault.sol/IVault.dbg.json +1 -1
- package/build/contracts/vault/IVault.sol/IVault.json +19 -1
- package/build/contracts/vault/TBTCVault.sol/TBTCVault.dbg.json +1 -1
- package/build/contracts/vault/TBTCVault.sol/TBTCVault.json +36 -18
- package/contracts/GovernanceUtils.sol +1 -1
- package/contracts/bank/Bank.sol +34 -18
- package/contracts/bridge/BitcoinTx.sol +318 -0
- package/contracts/bridge/Bridge.sol +1527 -247
- package/contracts/bridge/BridgeState.sol +698 -0
- package/contracts/bridge/Deposit.sol +266 -0
- package/contracts/bridge/DepositSweep.sol +514 -0
- package/contracts/bridge/EcdsaLib.sol +45 -0
- package/contracts/bridge/Fraud.sol +508 -0
- package/contracts/bridge/Heartbeat.sol +107 -0
- package/contracts/bridge/IRelay.sol +28 -0
- package/contracts/bridge/MovingFunds.sol +1034 -0
- package/contracts/bridge/Redemption.sol +868 -0
- package/contracts/bridge/VendingMachine.sol +1 -1
- package/contracts/bridge/Wallets.sol +550 -0
- package/contracts/token/TBTC.sol +1 -1
- package/contracts/vault/DonationVault.sol +125 -0
- package/contracts/vault/IVault.sol +32 -10
- package/contracts/vault/TBTCVault.sol +20 -2
- package/deploy/00_resolve_relay.ts +28 -0
- package/deploy/04_deploy_bank.ts +27 -0
- package/deploy/05_deploy_bridge.ts +67 -0
- package/deploy/06_bank_update_bridge.ts +19 -0
- package/deploy/07_transfer_ownership.ts +15 -0
- package/deploy/08_transfer_governance.ts +20 -0
- package/export.json +15711 -475
- package/package.json +27 -24
- package/artifacts/solcInputs/c4fd2c31cc58f5fe0cc586dd84a84b60.json +0 -125
|
@@ -3,6 +3,62 @@
|
|
|
3
3
|
"contractName": "Bridge",
|
|
4
4
|
"sourceName": "contracts/bridge/Bridge.sol",
|
|
5
5
|
"abi": [
|
|
6
|
+
{
|
|
7
|
+
"inputs": [
|
|
8
|
+
{
|
|
9
|
+
"internalType": "address",
|
|
10
|
+
"name": "_bank",
|
|
11
|
+
"type": "address"
|
|
12
|
+
},
|
|
13
|
+
{
|
|
14
|
+
"internalType": "address",
|
|
15
|
+
"name": "_relay",
|
|
16
|
+
"type": "address"
|
|
17
|
+
},
|
|
18
|
+
{
|
|
19
|
+
"internalType": "address",
|
|
20
|
+
"name": "_treasury",
|
|
21
|
+
"type": "address"
|
|
22
|
+
},
|
|
23
|
+
{
|
|
24
|
+
"internalType": "address",
|
|
25
|
+
"name": "_ecdsaWalletRegistry",
|
|
26
|
+
"type": "address"
|
|
27
|
+
},
|
|
28
|
+
{
|
|
29
|
+
"internalType": "uint256",
|
|
30
|
+
"name": "_txProofDifficultyFactor",
|
|
31
|
+
"type": "uint256"
|
|
32
|
+
}
|
|
33
|
+
],
|
|
34
|
+
"stateMutability": "nonpayable",
|
|
35
|
+
"type": "constructor"
|
|
36
|
+
},
|
|
37
|
+
{
|
|
38
|
+
"anonymous": false,
|
|
39
|
+
"inputs": [
|
|
40
|
+
{
|
|
41
|
+
"indexed": false,
|
|
42
|
+
"internalType": "uint64",
|
|
43
|
+
"name": "depositDustThreshold",
|
|
44
|
+
"type": "uint64"
|
|
45
|
+
},
|
|
46
|
+
{
|
|
47
|
+
"indexed": false,
|
|
48
|
+
"internalType": "uint64",
|
|
49
|
+
"name": "depositTreasuryFeeDivisor",
|
|
50
|
+
"type": "uint64"
|
|
51
|
+
},
|
|
52
|
+
{
|
|
53
|
+
"indexed": false,
|
|
54
|
+
"internalType": "uint64",
|
|
55
|
+
"name": "depositTxMaxFee",
|
|
56
|
+
"type": "uint64"
|
|
57
|
+
}
|
|
58
|
+
],
|
|
59
|
+
"name": "DepositParametersUpdated",
|
|
60
|
+
"type": "event"
|
|
61
|
+
},
|
|
6
62
|
{
|
|
7
63
|
"anonymous": false,
|
|
8
64
|
"inputs": [
|
|
@@ -14,9 +70,9 @@
|
|
|
14
70
|
},
|
|
15
71
|
{
|
|
16
72
|
"indexed": false,
|
|
17
|
-
"internalType": "
|
|
73
|
+
"internalType": "uint32",
|
|
18
74
|
"name": "fundingOutputIndex",
|
|
19
|
-
"type": "
|
|
75
|
+
"type": "uint32"
|
|
20
76
|
},
|
|
21
77
|
{
|
|
22
78
|
"indexed": false,
|
|
@@ -24,6 +80,12 @@
|
|
|
24
80
|
"name": "depositor",
|
|
25
81
|
"type": "address"
|
|
26
82
|
},
|
|
83
|
+
{
|
|
84
|
+
"indexed": false,
|
|
85
|
+
"internalType": "uint64",
|
|
86
|
+
"name": "amount",
|
|
87
|
+
"type": "uint64"
|
|
88
|
+
},
|
|
27
89
|
{
|
|
28
90
|
"indexed": false,
|
|
29
91
|
"internalType": "bytes8",
|
|
@@ -47,175 +109,2451 @@
|
|
|
47
109
|
"internalType": "bytes4",
|
|
48
110
|
"name": "refundLocktime",
|
|
49
111
|
"type": "bytes4"
|
|
112
|
+
},
|
|
113
|
+
{
|
|
114
|
+
"indexed": false,
|
|
115
|
+
"internalType": "address",
|
|
116
|
+
"name": "vault",
|
|
117
|
+
"type": "address"
|
|
50
118
|
}
|
|
51
119
|
],
|
|
52
120
|
"name": "DepositRevealed",
|
|
53
121
|
"type": "event"
|
|
54
122
|
},
|
|
55
123
|
{
|
|
124
|
+
"anonymous": false,
|
|
56
125
|
"inputs": [
|
|
57
126
|
{
|
|
58
|
-
"
|
|
59
|
-
|
|
60
|
-
|
|
61
|
-
|
|
62
|
-
"type": "bytes4"
|
|
63
|
-
},
|
|
64
|
-
{
|
|
65
|
-
"internalType": "bytes",
|
|
66
|
-
"name": "inputVector",
|
|
67
|
-
"type": "bytes"
|
|
68
|
-
},
|
|
69
|
-
{
|
|
70
|
-
"internalType": "bytes",
|
|
71
|
-
"name": "outputVector",
|
|
72
|
-
"type": "bytes"
|
|
73
|
-
},
|
|
74
|
-
{
|
|
75
|
-
"internalType": "bytes4",
|
|
76
|
-
"name": "locktime",
|
|
77
|
-
"type": "bytes4"
|
|
78
|
-
}
|
|
79
|
-
],
|
|
80
|
-
"internalType": "struct Bridge.TxInfo",
|
|
81
|
-
"name": "fundingTx",
|
|
82
|
-
"type": "tuple"
|
|
127
|
+
"indexed": false,
|
|
128
|
+
"internalType": "bytes20",
|
|
129
|
+
"name": "walletPubKeyHash",
|
|
130
|
+
"type": "bytes20"
|
|
83
131
|
},
|
|
84
132
|
{
|
|
85
|
-
"
|
|
86
|
-
|
|
87
|
-
|
|
88
|
-
|
|
89
|
-
"type": "uint8"
|
|
90
|
-
},
|
|
91
|
-
{
|
|
92
|
-
"internalType": "address",
|
|
93
|
-
"name": "depositor",
|
|
94
|
-
"type": "address"
|
|
95
|
-
},
|
|
96
|
-
{
|
|
97
|
-
"internalType": "bytes8",
|
|
98
|
-
"name": "blindingFactor",
|
|
99
|
-
"type": "bytes8"
|
|
100
|
-
},
|
|
101
|
-
{
|
|
102
|
-
"internalType": "bytes20",
|
|
103
|
-
"name": "walletPubKeyHash",
|
|
104
|
-
"type": "bytes20"
|
|
105
|
-
},
|
|
106
|
-
{
|
|
107
|
-
"internalType": "bytes20",
|
|
108
|
-
"name": "refundPubKeyHash",
|
|
109
|
-
"type": "bytes20"
|
|
110
|
-
},
|
|
111
|
-
{
|
|
112
|
-
"internalType": "bytes4",
|
|
113
|
-
"name": "refundLocktime",
|
|
114
|
-
"type": "bytes4"
|
|
115
|
-
},
|
|
116
|
-
{
|
|
117
|
-
"internalType": "address",
|
|
118
|
-
"name": "vault",
|
|
119
|
-
"type": "address"
|
|
120
|
-
}
|
|
121
|
-
],
|
|
122
|
-
"internalType": "struct Bridge.RevealInfo",
|
|
123
|
-
"name": "reveal",
|
|
124
|
-
"type": "tuple"
|
|
133
|
+
"indexed": false,
|
|
134
|
+
"internalType": "bytes32",
|
|
135
|
+
"name": "sweepTxHash",
|
|
136
|
+
"type": "bytes32"
|
|
125
137
|
}
|
|
126
138
|
],
|
|
127
|
-
"name": "
|
|
128
|
-
"
|
|
129
|
-
"stateMutability": "nonpayable",
|
|
130
|
-
"type": "function"
|
|
139
|
+
"name": "DepositsSwept",
|
|
140
|
+
"type": "event"
|
|
131
141
|
},
|
|
132
142
|
{
|
|
143
|
+
"anonymous": false,
|
|
133
144
|
"inputs": [
|
|
134
145
|
{
|
|
135
|
-
"
|
|
136
|
-
|
|
137
|
-
|
|
138
|
-
|
|
139
|
-
"type": "bytes4"
|
|
140
|
-
},
|
|
141
|
-
{
|
|
142
|
-
"internalType": "bytes",
|
|
143
|
-
"name": "inputVector",
|
|
144
|
-
"type": "bytes"
|
|
145
|
-
},
|
|
146
|
-
{
|
|
147
|
-
"internalType": "bytes",
|
|
148
|
-
"name": "outputVector",
|
|
149
|
-
"type": "bytes"
|
|
150
|
-
},
|
|
151
|
-
{
|
|
152
|
-
"internalType": "bytes4",
|
|
153
|
-
"name": "locktime",
|
|
154
|
-
"type": "bytes4"
|
|
155
|
-
}
|
|
156
|
-
],
|
|
157
|
-
"internalType": "struct Bridge.TxInfo",
|
|
158
|
-
"name": "sweepTx",
|
|
159
|
-
"type": "tuple"
|
|
146
|
+
"indexed": false,
|
|
147
|
+
"internalType": "bytes20",
|
|
148
|
+
"name": "walletPubKeyHash",
|
|
149
|
+
"type": "bytes20"
|
|
160
150
|
},
|
|
161
151
|
{
|
|
162
|
-
"
|
|
163
|
-
"
|
|
164
|
-
"
|
|
152
|
+
"indexed": false,
|
|
153
|
+
"internalType": "bytes32",
|
|
154
|
+
"name": "sighash",
|
|
155
|
+
"type": "bytes32"
|
|
156
|
+
}
|
|
157
|
+
],
|
|
158
|
+
"name": "FraudChallengeDefeatTimedOut",
|
|
159
|
+
"type": "event"
|
|
160
|
+
},
|
|
161
|
+
{
|
|
162
|
+
"anonymous": false,
|
|
163
|
+
"inputs": [
|
|
164
|
+
{
|
|
165
|
+
"indexed": false,
|
|
166
|
+
"internalType": "bytes20",
|
|
167
|
+
"name": "walletPubKeyHash",
|
|
168
|
+
"type": "bytes20"
|
|
165
169
|
},
|
|
166
170
|
{
|
|
167
|
-
"
|
|
168
|
-
"
|
|
169
|
-
"
|
|
171
|
+
"indexed": false,
|
|
172
|
+
"internalType": "bytes32",
|
|
173
|
+
"name": "sighash",
|
|
174
|
+
"type": "bytes32"
|
|
175
|
+
}
|
|
176
|
+
],
|
|
177
|
+
"name": "FraudChallengeDefeated",
|
|
178
|
+
"type": "event"
|
|
179
|
+
},
|
|
180
|
+
{
|
|
181
|
+
"anonymous": false,
|
|
182
|
+
"inputs": [
|
|
183
|
+
{
|
|
184
|
+
"indexed": false,
|
|
185
|
+
"internalType": "bytes20",
|
|
186
|
+
"name": "walletPubKeyHash",
|
|
187
|
+
"type": "bytes20"
|
|
170
188
|
},
|
|
171
189
|
{
|
|
172
|
-
"
|
|
173
|
-
"
|
|
174
|
-
"
|
|
190
|
+
"indexed": false,
|
|
191
|
+
"internalType": "bytes32",
|
|
192
|
+
"name": "sighash",
|
|
193
|
+
"type": "bytes32"
|
|
194
|
+
},
|
|
195
|
+
{
|
|
196
|
+
"indexed": false,
|
|
197
|
+
"internalType": "uint8",
|
|
198
|
+
"name": "v",
|
|
199
|
+
"type": "uint8"
|
|
200
|
+
},
|
|
201
|
+
{
|
|
202
|
+
"indexed": false,
|
|
203
|
+
"internalType": "bytes32",
|
|
204
|
+
"name": "r",
|
|
205
|
+
"type": "bytes32"
|
|
206
|
+
},
|
|
207
|
+
{
|
|
208
|
+
"indexed": false,
|
|
209
|
+
"internalType": "bytes32",
|
|
210
|
+
"name": "s",
|
|
211
|
+
"type": "bytes32"
|
|
175
212
|
}
|
|
176
213
|
],
|
|
177
|
-
"name": "
|
|
178
|
-
"
|
|
179
|
-
"stateMutability": "nonpayable",
|
|
180
|
-
"type": "function"
|
|
214
|
+
"name": "FraudChallengeSubmitted",
|
|
215
|
+
"type": "event"
|
|
181
216
|
},
|
|
182
217
|
{
|
|
218
|
+
"anonymous": false,
|
|
183
219
|
"inputs": [
|
|
184
220
|
{
|
|
221
|
+
"indexed": false,
|
|
185
222
|
"internalType": "uint256",
|
|
186
|
-
"name": "",
|
|
223
|
+
"name": "fraudChallengeDepositAmount",
|
|
187
224
|
"type": "uint256"
|
|
188
|
-
}
|
|
189
|
-
],
|
|
190
|
-
"name": "unswept",
|
|
191
|
-
"outputs": [
|
|
225
|
+
},
|
|
192
226
|
{
|
|
193
|
-
"
|
|
194
|
-
"
|
|
195
|
-
"
|
|
227
|
+
"indexed": false,
|
|
228
|
+
"internalType": "uint256",
|
|
229
|
+
"name": "fraudChallengeDefeatTimeout",
|
|
230
|
+
"type": "uint256"
|
|
196
231
|
},
|
|
197
232
|
{
|
|
198
|
-
"
|
|
199
|
-
"
|
|
200
|
-
"
|
|
233
|
+
"indexed": false,
|
|
234
|
+
"internalType": "uint96",
|
|
235
|
+
"name": "fraudSlashingAmount",
|
|
236
|
+
"type": "uint96"
|
|
201
237
|
},
|
|
202
238
|
{
|
|
203
|
-
"
|
|
204
|
-
"
|
|
205
|
-
"
|
|
239
|
+
"indexed": false,
|
|
240
|
+
"internalType": "uint256",
|
|
241
|
+
"name": "fraudNotifierRewardMultiplier",
|
|
242
|
+
"type": "uint256"
|
|
243
|
+
}
|
|
244
|
+
],
|
|
245
|
+
"name": "FraudParametersUpdated",
|
|
246
|
+
"type": "event"
|
|
247
|
+
},
|
|
248
|
+
{
|
|
249
|
+
"anonymous": false,
|
|
250
|
+
"inputs": [
|
|
251
|
+
{
|
|
252
|
+
"indexed": false,
|
|
253
|
+
"internalType": "address",
|
|
254
|
+
"name": "oldGovernance",
|
|
255
|
+
"type": "address"
|
|
206
256
|
},
|
|
207
257
|
{
|
|
258
|
+
"indexed": false,
|
|
208
259
|
"internalType": "address",
|
|
209
|
-
"name": "
|
|
260
|
+
"name": "newGovernance",
|
|
210
261
|
"type": "address"
|
|
211
262
|
}
|
|
212
263
|
],
|
|
213
|
-
"
|
|
214
|
-
"type": "
|
|
215
|
-
}
|
|
216
|
-
|
|
217
|
-
"bytecode": "0x608060405234801561001057600080fd5b506129e1806100206000396000f3fe608060405234801561001057600080fd5b50600436106100415760003560e01c806325750db71461004657806343c6de29146100625780638d658d4e14610095575b600080fd5b610060600480360381019061005b91906116d0565b6100b1565b005b61007c60048036038101906100779190611725565b61059f565b60405161008c9493929190611d9d565b60405180910390f35b6100af60048036038101906100aa9190611625565b61062c565b005b60008160200160208101906100c69190611558565b8260400160208101906100d991906115fc565b8360600160208101906100ec9190611581565b8460800160208101906100ff9190611581565b8560a001602081019061011291906115d3565b604051602001610126959493929190611c62565b604051602081830303815290604052905060006101b383600001602081019061014f919061174e565b60ff168580604001906101629190611f51565b8080601f016020809104026020016040519081016040528093929190818152602001838380828437600081840152601f19601f8201169050808301925050505050505061063290919063ffffffff16565b905060006101c082610872565b9050601481511415610229576101d583610c14565b80519060200120818051906020012014610224576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161021b90611ef1565b60405180910390fd5b6102c6565b60208151141561028a5761023c83610ce1565b61024582610da7565b14610285576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161027c90611e91565b60405180910390fd5b6102c5565b6040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016102bc90611eb1565b60405180910390fd5b5b600061033a8660000160208101906102de91906115d3565b8780602001906102ee9190611f51565b8980604001906102fe9190611f51565b8b606001602081019061031191906115d3565b60405160200161032696959493929190611c01565b604051602081830303815290604052610ce1565b9050600080600083886000016020810190610355919061174e565b604051602001610366929190611bd5565b6040516020818303038152906040528051906020012060001c81526020019081526020016000209050600081600001601c9054906101000a900463ffffffff1663ffffffff16146103ec576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016103e390611ed1565b60405180910390fd5b600060208501519050808260000160146101000a81548167ffffffffffffffff021916908360c01c021790555086602001602081019061042c9190611558565b8260000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055504282600001601c6101000a81548163ffffffff021916908363ffffffff1602179055508660c00160208101906104a49190611558565b8260010160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055507fa62fd60993aa217b6f00fbb6f377e73a7bbf09f76e730ca9c99f9d54edddc7e88388600001602081019061051b919061174e565b89602001602081019061052e9190611558565b8a604001602081019061054191906115fc565b8b60600160208101906105549190611581565b8c60800160208101906105679190611581565b8d60a001602081019061057a91906115d3565b60405161058d9796959493929190611de2565b60405180910390a15050505050505050565b60006020528060005260406000206000915090508060000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16908060000160149054906101000a900460c01b9080600001601c9054906101000a900463ffffffff16908060010160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905084565b50505050565b606060008061064085610dca565b80925081935050507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8214156106ab576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016106a290611e51565b60405180910390fd5b8084106106ed576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016106e490611f11565b60405180910390fd5b60606000808460016106ff9190612030565b905060005b878110156107be5761072d82838b5161071d9190612288565b8b610ec69092919063ffffffff16565b935061073884610f8c565b92507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff83141561079d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161079490611e71565b60405180910390fd5b82826107a99190612030565b915080806107b69061244a565b915050610704565b506107e081828a516107d09190612288565b8a610ec69092919063ffffffff16565b92506107eb83610f8c565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff821415610850576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161084790611e71565b60405180910390fd5b61086581838a610ec69092919063ffffffff16565b9550505050505092915050565b60606000826008815181106108b0577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b602001015160f81c60f81b60f81c905082516009826108cf9190612086565b60ff16146108ef5760405180602001604052806000815250915050610c0f565b60008360098151811061092b577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b602001015160f81c60f81b60f81c60ff161415610a1e5760028160ff1610156109665760405180602001604052806000815250915050610c0f565b600083600a815181106109a2577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b602001015160f81c60f81b60f81c60ff1690506002826109c291906122bc565b60ff16811415806109e15750602081141580156109e0575060148114155b5b156109ff576040518060200160405280600081525092505050610c0f565b610a15600b8286610ec69092919063ffffffff16565b92505050610c0f565b6000610a3760086003866110709092919063ffffffff16565b90507fe1683aec1a10d43657f3f2c82e683d8e19e8a3f320ce9d3bf22c6ca6ab4cbce6811415610b3b57601484600b81518110610a9d577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b602001015160f81c60f81b60f81c60ff16141580610afd57507f3b50b2715f5a28d2a7eeb517f17ec797e8536bd425bf31fc4f6bf7ce1e34b77d610afa60028651610ae89190612288565b6002876110709092919063ffffffff16565b14155b15610b1b576040518060200160405280600081525092505050610c0f565b610b32600c601486610ec69092919063ffffffff16565b92505050610c0f565b7fa0916ee0b243ee20fb4ce56170744d86b54d7ae03a418a7a12156f40dedcf7d7811415610bfa5760878460018651610b749190612288565b81518110610bab577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b602001015160f81c60f81b60f81c60ff1614610bda576040518060200160405280600081525092505050610c0f565b610bf1600b601486610ec69092919063ffffffff16565b92505050610c0f565b50604051806020016040528060008152509150505b919050565b60606003600283604051610c289190611c4b565b602060405180830381855afa158015610c45573d6000803e3d6000fd5b5050506040513d601f19601f82011682018060405250810190610c6891906115aa565b604051602001610c789190611bba565b604051602081830303815290604052604051610c949190611c4b565b602060405180830381855afa158015610cb1573d6000803e3d6000fd5b5050506040515160601b604051602001610ccb9190611b9f565b6040516020818303038152906040529050919050565b600060028083604051610cf49190611c4b565b602060405180830381855afa158015610d11573d6000803e3d6000fd5b5050506040513d601f19601f82011682018060405250810190610d3491906115aa565b604051602001610d449190611bba565b604051602081830303815290604052604051610d609190611c4b565b602060405180830381855afa158015610d7d573d6000803e3d6000fd5b5050506040513d601f19601f82011682018060405250810190610da091906115aa565b9050919050565b60008082511415610dbd576000801b9050610dc5565b602082015190505b919050565b6000806000610dd8846110e2565b905060008160ff161415610e4057600084600081518110610e22577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b602001015160f81c60f81b60f81c8060ff1690509250925050610ec1565b806001610e4d9190612086565b60ff1684511015610e85577fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff60009250925050610ec1565b6000610eb0610eab610ea660018560ff1689610ec69092919063ffffffff16565b611202565b611369565b905081818160ff1691509350935050505b915091565b60606000821415610ee857604051806020016040528060008152509050610f85565b60008284610ef69190612030565b90508381118015610f08575080855110155b610f47576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f3e90611f31565b60405180910390fd5b604051915082604083010160405282825283850182038460208701018481015b80821015610f8057815183830152602082019150610f67565b505050505b9392505050565b6000600982511015610fc0577fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff905061106b565b6000610fe46008808551610fd49190612288565b85610ec69092919063ffffffff16565b9050600080610ff283610dca565b80925081935050507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82141561104d577fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff935050505061106b565b8082600961105b9190612030565b6110659190612030565b93505050505b919050565b600080828461107f9190612030565b90508381118015611091575080855110155b6110d0576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110c790611f31565b60405180910390fd5b82846020870101209150509392505050565b600060ff82600081518110611120577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b602001015160f81c60f81b60f81c60ff16141561114057600890506111fd565b60fe8260008151811061117c577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b602001015160f81c60f81b60f81c60ff16141561119c57600490506111fd565b60fd826000815181106111d8577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b602001015160f81c60f81b60f81c60ff1614156111f857600290506111fd565b600090505b919050565b60606000825167ffffffffffffffff811115611247577f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6040519080825280601f01601f1916602001820160405280156112795781602001600182028036833780820191505090505b50905060005b835181101561135f578381815181106112c1577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b602001015160f81c60f81b8260018387516112dc9190612288565b6112e69190612288565b8151811061131d577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a90535080806113579061244a565b91505061127f565b5080915050919050565b60008060005b835181101561141d576001816113859190612030565b84516113919190612288565b600861139d919061222e565b60026113a99190612110565b8482815181106113e2577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b602001015160f81c60f81b60f81c60ff166113fd919061222e565b826114089190612030565b915080806114159061244a565b91505061136f565b5080915050919050565b600061143a61143584611fcd565b611fa8565b90508281526020810184848401111561145257600080fd5b61145d8482856123d7565b509392505050565b6000813590506114748161290a565b92915050565b60008135905061148981612921565b92915050565b60008151905061149e81612938565b92915050565b6000813590506114b38161294f565b92915050565b6000813590506114c881612966565b92915050565b600082601f8301126114df57600080fd5b81356114ef848260208601611427565b91505092915050565b600060e0828403121561150a57600080fd5b81905092915050565b60006080828403121561152557600080fd5b81905092915050565b60008135905061153d8161297d565b92915050565b60008135905061155281612994565b92915050565b60006020828403121561156a57600080fd5b600061157884828501611465565b91505092915050565b60006020828403121561159357600080fd5b60006115a18482850161147a565b91505092915050565b6000602082840312156115bc57600080fd5b60006115ca8482850161148f565b91505092915050565b6000602082840312156115e557600080fd5b60006115f3848285016114a4565b91505092915050565b60006020828403121561160e57600080fd5b600061161c848285016114b9565b91505092915050565b6000806000806080858703121561163b57600080fd5b600085013567ffffffffffffffff81111561165557600080fd5b61166187828801611513565b945050602085013567ffffffffffffffff81111561167e57600080fd5b61168a878288016114ce565b935050604061169b8782880161152e565b925050606085013567ffffffffffffffff8111156116b857600080fd5b6116c4878288016114ce565b91505092959194509250565b60008061010083850312156116e457600080fd5b600083013567ffffffffffffffff8111156116fe57600080fd5b61170a85828601611513565b925050602061171b858286016114f8565b9150509250929050565b60006020828403121561173757600080fd5b60006117458482850161152e565b91505092915050565b60006020828403121561176057600080fd5b600061176e84828501611543565b91505092915050565b611780816122f0565b82525050565b611797611792826122f0565b612493565b82525050565b6117a681612302565b82525050565b6117bd6117b882612302565b6124a5565b82525050565b6117cc8161232e565b82525050565b6117e36117de8261232e565b6124af565b82525050565b6117f281612338565b82525050565b61180961180482612338565b6124b9565b82525050565b61181881612364565b82525050565b61182f61182a82612364565b6124c3565b82525050565b60006118418385612009565b935061184e8385846123d7565b82840190509392505050565b600061186582611ffe565b61186f8185612009565b935061187f8185602086016123e6565b80840191505092915050565b6000611898600183612025565b91506118a382612587565b600182019050919050565b60006118bb600183612025565b91506118c6826125b0565b600182019050919050565b60006118de600183612025565b91506118e9826125d9565b600182019050919050565b6000611901600183612025565b915061190c82612602565b600182019050919050565b6000611924602283612014565b915061192f8261262b565b604082019050919050565b6000611947601a83612014565b91506119528261267a565b602082019050919050565b600061196a600183612025565b9150611975826126a3565b600182019050919050565b600061198d600183612025565b9150611998826126cc565b600182019050919050565b60006119b0600183612025565b91506119bb826126f5565b600182019050919050565b60006119d3601983612014565b91506119de8261271e565b602082019050919050565b60006119f6601883612014565b9150611a0182612747565b602082019050919050565b6000611a19600183612025565b9150611a2482612770565b600182019050919050565b6000611a3c600183612025565b9150611a4782612799565b600182019050919050565b6000611a5f600183612025565b9150611a6a826127c2565b600182019050919050565b6000611a82601883612014565b9150611a8d826127eb565b602082019050919050565b6000611aa5601983612014565b9150611ab082612814565b602082019050919050565b6000611ac8600183612025565b9150611ad38261283d565b600182019050919050565b6000611aeb601183612014565b9150611af682612866565b602082019050919050565b6000611b0e601383612014565b9150611b198261288f565b602082019050919050565b6000611b31600183612025565b9150611b3c826128b8565b600182019050919050565b6000611b54600183612025565b9150611b5f826128e1565b600182019050919050565b611b73816123ba565b82525050565b611b82816123ca565b82525050565b611b99611b94826123ca565b6124df565b82525050565b6000611bab82846117ac565b60148201915081905092915050565b6000611bc682846117d2565b60208201915081905092915050565b6000611be182856117d2565b602082019150611bf18284611b88565b6001820191508190509392505050565b6000611c0d82896117f8565b600482019150611c1e828789611835565b9150611c2b828587611835565b9150611c3782846117f8565b600482019150819050979650505050505050565b6000611c57828461185a565b915081905092915050565b6000611c6d8261195d565b9150611c798288611786565b601482019150611c88826118f4565b9150611c9382611abb565b9150611c9f828761181e565b600882019150611cae826118f4565b9150611cb982611a2f565b9150611cc482611980565b9150611ccf8261195d565b9150611cdb82866117ac565b601482019150611cea82611a0c565b9150611cf58261188b565b9150611d0082611b47565b9150611d0b826118ae565b9150611d1682611a2f565b9150611d2182611980565b9150611d2c8261195d565b9150611d3882856117ac565b601482019150611d47826118d1565b9150611d5282611b24565b9150611d5e82846117f8565b600482019150611d6d826119a3565b9150611d78826118f4565b9150611d8382611b47565b9150611d8e82611a52565b91508190509695505050505050565b6000608082019050611db26000830187611777565b611dbf602083018661180f565b611dcc6040830185611b6a565b611dd96060830184611777565b95945050505050565b600060e082019050611df7600083018a6117c3565b611e046020830189611b79565b611e116040830188611777565b611e1e606083018761180f565b611e2b608083018661179d565b611e3860a083018561179d565b611e4560c08301846117e9565b98975050505050505050565b60006020820190508181036000830152611e6a81611917565b9050919050565b60006020820190508181036000830152611e8a8161193a565b9050919050565b60006020820190508181036000830152611eaa816119c6565b9050919050565b60006020820190508181036000830152611eca816119e9565b9050919050565b60006020820190508181036000830152611eea81611a75565b9050919050565b60006020820190508181036000830152611f0a81611a98565b9050919050565b60006020820190508181036000830152611f2a81611ade565b9050919050565b60006020820190508181036000830152611f4a81611b01565b9050919050565b60008083356001602003843603038112611f6a57600080fd5b80840192508235915067ffffffffffffffff821115611f8857600080fd5b602083019250600182023603831315611fa057600080fd5b509250929050565b6000611fb2611fc3565b9050611fbe8282612419565b919050565b6000604051905090565b600067ffffffffffffffff821115611fe857611fe7612520565b5b611ff18261254f565b9050602081019050919050565b600081519050919050565b600081905092915050565b600082825260208201905092915050565b600081905092915050565b600061203b826123b0565b9150612046836123b0565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0382111561207b5761207a6124f1565b5b828201905092915050565b6000612091826123ca565b915061209c836123ca565b92508260ff038211156120b2576120b16124f1565b5b828201905092915050565b6000808291508390505b6001851115612107578086048111156120e3576120e26124f1565b5b60018516156120f25780820291505b80810290506121008561257a565b94506120c7565b94509492505050565b600061211b826123b0565b9150612126836123b0565b92506121537fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff848461215b565b905092915050565b60008261216b5760019050612227565b816121795760009050612227565b816001811461218f5760028114612199576121c8565b6001915050612227565b60ff8411156121ab576121aa6124f1565b5b8360020a9150848211156121c2576121c16124f1565b5b50612227565b5060208310610133831016604e8410600b84101617156121fd5782820a9050838111156121f8576121f76124f1565b5b612227565b61220a84848460016120bd565b92509050818404811115612221576122206124f1565b5b81810290505b9392505050565b6000612239826123b0565b9150612244836123b0565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff048311821515161561227d5761227c6124f1565b5b828202905092915050565b6000612293826123b0565b915061229e836123b0565b9250828210156122b1576122b06124f1565b5b828203905092915050565b60006122c7826123ca565b91506122d2836123ca565b9250828210156122e5576122e46124f1565b5b828203905092915050565b60006122fb82612390565b9050919050565b60007fffffffffffffffffffffffffffffffffffffffff00000000000000000000000082169050919050565b6000819050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b60007fffffffffffffffff00000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b600063ffffffff82169050919050565b600060ff82169050919050565b82818337600083830152505050565b60005b838110156124045780820151818401526020810190506123e9565b83811115612413576000848401525b50505050565b6124228261254f565b810181811067ffffffffffffffff8211171561244157612440612520565b5b80604052505050565b6000612455826123b0565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff821415612488576124876124f1565b5b600182019050919050565b600061249e826124cd565b9050919050565b6000819050919050565b6000819050919050565b6000819050919050565b6000819050919050565b60006124d88261256d565b9050919050565b60006124ea82612560565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6000601f19601f8301169050919050565b60008160f81b9050919050565b60008160601b9050919050565b60008160011c9050919050565b7f6300000000000000000000000000000000000000000000000000000000000000600082015250565b7f6700000000000000000000000000000000000000000000000000000000000000600082015250565b7f8800000000000000000000000000000000000000000000000000000000000000600082015250565b7f7500000000000000000000000000000000000000000000000000000000000000600082015250565b7f52656164206f76657272756e20647572696e6720566172496e7420706172736960008201527f6e67000000000000000000000000000000000000000000000000000000000000602082015250565b7f42616420566172496e7420696e207363726970745075626b6579000000000000600082015250565b7f1400000000000000000000000000000000000000000000000000000000000000600082015250565b7fa900000000000000000000000000000000000000000000000000000000000000600082015250565b7fb100000000000000000000000000000000000000000000000000000000000000600082015250565b7f57726f6e672033322d6279746520736372697074206861736800000000000000600082015250565b7f57726f6e67207363726970742068617368206c656e6774680000000000000000600082015250565b7f8700000000000000000000000000000000000000000000000000000000000000600082015250565b7f7600000000000000000000000000000000000000000000000000000000000000600082015250565b7f6800000000000000000000000000000000000000000000000000000000000000600082015250565b7f4465706f73697420616c72656164792072657665616c65640000000000000000600082015250565b7f57726f6e672032302d6279746520736372697074206861736800000000000000600082015250565b7f0800000000000000000000000000000000000000000000000000000000000000600082015250565b7f566f75742072656164206f76657272756e000000000000000000000000000000600082015250565b7f536c696365206f7574206f6620626f756e647300000000000000000000000000600082015250565b7f0400000000000000000000000000000000000000000000000000000000000000600082015250565b7fac00000000000000000000000000000000000000000000000000000000000000600082015250565b612913816122f0565b811461291e57600080fd5b50565b61292a81612302565b811461293557600080fd5b50565b6129418161232e565b811461294c57600080fd5b50565b61295881612338565b811461296357600080fd5b50565b61296f81612364565b811461297a57600080fd5b50565b612986816123b0565b811461299157600080fd5b50565b61299d816123ca565b81146129a857600080fd5b5056fea2646970667358221220e903e196da4db5ea41ef76b13a3de9d0e1e34fbe5988fd342c978dde89f9175164736f6c63430008040033",
|
|
218
|
-
"deployedBytecode": "0x608060405234801561001057600080fd5b50600436106100415760003560e01c806325750db71461004657806343c6de29146100625780638d658d4e14610095575b600080fd5b610060600480360381019061005b91906116d0565b6100b1565b005b61007c60048036038101906100779190611725565b61059f565b60405161008c9493929190611d9d565b60405180910390f35b6100af60048036038101906100aa9190611625565b61062c565b005b60008160200160208101906100c69190611558565b8260400160208101906100d991906115fc565b8360600160208101906100ec9190611581565b8460800160208101906100ff9190611581565b8560a001602081019061011291906115d3565b604051602001610126959493929190611c62565b604051602081830303815290604052905060006101b383600001602081019061014f919061174e565b60ff168580604001906101629190611f51565b8080601f016020809104026020016040519081016040528093929190818152602001838380828437600081840152601f19601f8201169050808301925050505050505061063290919063ffffffff16565b905060006101c082610872565b9050601481511415610229576101d583610c14565b80519060200120818051906020012014610224576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161021b90611ef1565b60405180910390fd5b6102c6565b60208151141561028a5761023c83610ce1565b61024582610da7565b14610285576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161027c90611e91565b60405180910390fd5b6102c5565b6040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016102bc90611eb1565b60405180910390fd5b5b600061033a8660000160208101906102de91906115d3565b8780602001906102ee9190611f51565b8980604001906102fe9190611f51565b8b606001602081019061031191906115d3565b60405160200161032696959493929190611c01565b604051602081830303815290604052610ce1565b9050600080600083886000016020810190610355919061174e565b604051602001610366929190611bd5565b6040516020818303038152906040528051906020012060001c81526020019081526020016000209050600081600001601c9054906101000a900463ffffffff1663ffffffff16146103ec576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016103e390611ed1565b60405180910390fd5b600060208501519050808260000160146101000a81548167ffffffffffffffff021916908360c01c021790555086602001602081019061042c9190611558565b8260000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055504282600001601c6101000a81548163ffffffff021916908363ffffffff1602179055508660c00160208101906104a49190611558565b8260010160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055507fa62fd60993aa217b6f00fbb6f377e73a7bbf09f76e730ca9c99f9d54edddc7e88388600001602081019061051b919061174e565b89602001602081019061052e9190611558565b8a604001602081019061054191906115fc565b8b60600160208101906105549190611581565b8c60800160208101906105679190611581565b8d60a001602081019061057a91906115d3565b60405161058d9796959493929190611de2565b60405180910390a15050505050505050565b60006020528060005260406000206000915090508060000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16908060000160149054906101000a900460c01b9080600001601c9054906101000a900463ffffffff16908060010160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905084565b50505050565b606060008061064085610dca565b80925081935050507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8214156106ab576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016106a290611e51565b60405180910390fd5b8084106106ed576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016106e490611f11565b60405180910390fd5b60606000808460016106ff9190612030565b905060005b878110156107be5761072d82838b5161071d9190612288565b8b610ec69092919063ffffffff16565b935061073884610f8c565b92507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff83141561079d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161079490611e71565b60405180910390fd5b82826107a99190612030565b915080806107b69061244a565b915050610704565b506107e081828a516107d09190612288565b8a610ec69092919063ffffffff16565b92506107eb83610f8c565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff821415610850576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161084790611e71565b60405180910390fd5b61086581838a610ec69092919063ffffffff16565b9550505050505092915050565b60606000826008815181106108b0577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b602001015160f81c60f81b60f81c905082516009826108cf9190612086565b60ff16146108ef5760405180602001604052806000815250915050610c0f565b60008360098151811061092b577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b602001015160f81c60f81b60f81c60ff161415610a1e5760028160ff1610156109665760405180602001604052806000815250915050610c0f565b600083600a815181106109a2577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b602001015160f81c60f81b60f81c60ff1690506002826109c291906122bc565b60ff16811415806109e15750602081141580156109e0575060148114155b5b156109ff576040518060200160405280600081525092505050610c0f565b610a15600b8286610ec69092919063ffffffff16565b92505050610c0f565b6000610a3760086003866110709092919063ffffffff16565b90507fe1683aec1a10d43657f3f2c82e683d8e19e8a3f320ce9d3bf22c6ca6ab4cbce6811415610b3b57601484600b81518110610a9d577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b602001015160f81c60f81b60f81c60ff16141580610afd57507f3b50b2715f5a28d2a7eeb517f17ec797e8536bd425bf31fc4f6bf7ce1e34b77d610afa60028651610ae89190612288565b6002876110709092919063ffffffff16565b14155b15610b1b576040518060200160405280600081525092505050610c0f565b610b32600c601486610ec69092919063ffffffff16565b92505050610c0f565b7fa0916ee0b243ee20fb4ce56170744d86b54d7ae03a418a7a12156f40dedcf7d7811415610bfa5760878460018651610b749190612288565b81518110610bab577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b602001015160f81c60f81b60f81c60ff1614610bda576040518060200160405280600081525092505050610c0f565b610bf1600b601486610ec69092919063ffffffff16565b92505050610c0f565b50604051806020016040528060008152509150505b919050565b60606003600283604051610c289190611c4b565b602060405180830381855afa158015610c45573d6000803e3d6000fd5b5050506040513d601f19601f82011682018060405250810190610c6891906115aa565b604051602001610c789190611bba565b604051602081830303815290604052604051610c949190611c4b565b602060405180830381855afa158015610cb1573d6000803e3d6000fd5b5050506040515160601b604051602001610ccb9190611b9f565b6040516020818303038152906040529050919050565b600060028083604051610cf49190611c4b565b602060405180830381855afa158015610d11573d6000803e3d6000fd5b5050506040513d601f19601f82011682018060405250810190610d3491906115aa565b604051602001610d449190611bba565b604051602081830303815290604052604051610d609190611c4b565b602060405180830381855afa158015610d7d573d6000803e3d6000fd5b5050506040513d601f19601f82011682018060405250810190610da091906115aa565b9050919050565b60008082511415610dbd576000801b9050610dc5565b602082015190505b919050565b6000806000610dd8846110e2565b905060008160ff161415610e4057600084600081518110610e22577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b602001015160f81c60f81b60f81c8060ff1690509250925050610ec1565b806001610e4d9190612086565b60ff1684511015610e85577fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff60009250925050610ec1565b6000610eb0610eab610ea660018560ff1689610ec69092919063ffffffff16565b611202565b611369565b905081818160ff1691509350935050505b915091565b60606000821415610ee857604051806020016040528060008152509050610f85565b60008284610ef69190612030565b90508381118015610f08575080855110155b610f47576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f3e90611f31565b60405180910390fd5b604051915082604083010160405282825283850182038460208701018481015b80821015610f8057815183830152602082019150610f67565b505050505b9392505050565b6000600982511015610fc0577fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff905061106b565b6000610fe46008808551610fd49190612288565b85610ec69092919063ffffffff16565b9050600080610ff283610dca565b80925081935050507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82141561104d577fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff935050505061106b565b8082600961105b9190612030565b6110659190612030565b93505050505b919050565b600080828461107f9190612030565b90508381118015611091575080855110155b6110d0576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110c790611f31565b60405180910390fd5b82846020870101209150509392505050565b600060ff82600081518110611120577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b602001015160f81c60f81b60f81c60ff16141561114057600890506111fd565b60fe8260008151811061117c577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b602001015160f81c60f81b60f81c60ff16141561119c57600490506111fd565b60fd826000815181106111d8577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b602001015160f81c60f81b60f81c60ff1614156111f857600290506111fd565b600090505b919050565b60606000825167ffffffffffffffff811115611247577f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6040519080825280601f01601f1916602001820160405280156112795781602001600182028036833780820191505090505b50905060005b835181101561135f578381815181106112c1577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b602001015160f81c60f81b8260018387516112dc9190612288565b6112e69190612288565b8151811061131d577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a90535080806113579061244a565b91505061127f565b5080915050919050565b60008060005b835181101561141d576001816113859190612030565b84516113919190612288565b600861139d919061222e565b60026113a99190612110565b8482815181106113e2577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b602001015160f81c60f81b60f81c60ff166113fd919061222e565b826114089190612030565b915080806114159061244a565b91505061136f565b5080915050919050565b600061143a61143584611fcd565b611fa8565b90508281526020810184848401111561145257600080fd5b61145d8482856123d7565b509392505050565b6000813590506114748161290a565b92915050565b60008135905061148981612921565b92915050565b60008151905061149e81612938565b92915050565b6000813590506114b38161294f565b92915050565b6000813590506114c881612966565b92915050565b600082601f8301126114df57600080fd5b81356114ef848260208601611427565b91505092915050565b600060e0828403121561150a57600080fd5b81905092915050565b60006080828403121561152557600080fd5b81905092915050565b60008135905061153d8161297d565b92915050565b60008135905061155281612994565b92915050565b60006020828403121561156a57600080fd5b600061157884828501611465565b91505092915050565b60006020828403121561159357600080fd5b60006115a18482850161147a565b91505092915050565b6000602082840312156115bc57600080fd5b60006115ca8482850161148f565b91505092915050565b6000602082840312156115e557600080fd5b60006115f3848285016114a4565b91505092915050565b60006020828403121561160e57600080fd5b600061161c848285016114b9565b91505092915050565b6000806000806080858703121561163b57600080fd5b600085013567ffffffffffffffff81111561165557600080fd5b61166187828801611513565b945050602085013567ffffffffffffffff81111561167e57600080fd5b61168a878288016114ce565b935050604061169b8782880161152e565b925050606085013567ffffffffffffffff8111156116b857600080fd5b6116c4878288016114ce565b91505092959194509250565b60008061010083850312156116e457600080fd5b600083013567ffffffffffffffff8111156116fe57600080fd5b61170a85828601611513565b925050602061171b858286016114f8565b9150509250929050565b60006020828403121561173757600080fd5b60006117458482850161152e565b91505092915050565b60006020828403121561176057600080fd5b600061176e84828501611543565b91505092915050565b611780816122f0565b82525050565b611797611792826122f0565b612493565b82525050565b6117a681612302565b82525050565b6117bd6117b882612302565b6124a5565b82525050565b6117cc8161232e565b82525050565b6117e36117de8261232e565b6124af565b82525050565b6117f281612338565b82525050565b61180961180482612338565b6124b9565b82525050565b61181881612364565b82525050565b61182f61182a82612364565b6124c3565b82525050565b60006118418385612009565b935061184e8385846123d7565b82840190509392505050565b600061186582611ffe565b61186f8185612009565b935061187f8185602086016123e6565b80840191505092915050565b6000611898600183612025565b91506118a382612587565b600182019050919050565b60006118bb600183612025565b91506118c6826125b0565b600182019050919050565b60006118de600183612025565b91506118e9826125d9565b600182019050919050565b6000611901600183612025565b915061190c82612602565b600182019050919050565b6000611924602283612014565b915061192f8261262b565b604082019050919050565b6000611947601a83612014565b91506119528261267a565b602082019050919050565b600061196a600183612025565b9150611975826126a3565b600182019050919050565b600061198d600183612025565b9150611998826126cc565b600182019050919050565b60006119b0600183612025565b91506119bb826126f5565b600182019050919050565b60006119d3601983612014565b91506119de8261271e565b602082019050919050565b60006119f6601883612014565b9150611a0182612747565b602082019050919050565b6000611a19600183612025565b9150611a2482612770565b600182019050919050565b6000611a3c600183612025565b9150611a4782612799565b600182019050919050565b6000611a5f600183612025565b9150611a6a826127c2565b600182019050919050565b6000611a82601883612014565b9150611a8d826127eb565b602082019050919050565b6000611aa5601983612014565b9150611ab082612814565b602082019050919050565b6000611ac8600183612025565b9150611ad38261283d565b600182019050919050565b6000611aeb601183612014565b9150611af682612866565b602082019050919050565b6000611b0e601383612014565b9150611b198261288f565b602082019050919050565b6000611b31600183612025565b9150611b3c826128b8565b600182019050919050565b6000611b54600183612025565b9150611b5f826128e1565b600182019050919050565b611b73816123ba565b82525050565b611b82816123ca565b82525050565b611b99611b94826123ca565b6124df565b82525050565b6000611bab82846117ac565b60148201915081905092915050565b6000611bc682846117d2565b60208201915081905092915050565b6000611be182856117d2565b602082019150611bf18284611b88565b6001820191508190509392505050565b6000611c0d82896117f8565b600482019150611c1e828789611835565b9150611c2b828587611835565b9150611c3782846117f8565b600482019150819050979650505050505050565b6000611c57828461185a565b915081905092915050565b6000611c6d8261195d565b9150611c798288611786565b601482019150611c88826118f4565b9150611c9382611abb565b9150611c9f828761181e565b600882019150611cae826118f4565b9150611cb982611a2f565b9150611cc482611980565b9150611ccf8261195d565b9150611cdb82866117ac565b601482019150611cea82611a0c565b9150611cf58261188b565b9150611d0082611b47565b9150611d0b826118ae565b9150611d1682611a2f565b9150611d2182611980565b9150611d2c8261195d565b9150611d3882856117ac565b601482019150611d47826118d1565b9150611d5282611b24565b9150611d5e82846117f8565b600482019150611d6d826119a3565b9150611d78826118f4565b9150611d8382611b47565b9150611d8e82611a52565b91508190509695505050505050565b6000608082019050611db26000830187611777565b611dbf602083018661180f565b611dcc6040830185611b6a565b611dd96060830184611777565b95945050505050565b600060e082019050611df7600083018a6117c3565b611e046020830189611b79565b611e116040830188611777565b611e1e606083018761180f565b611e2b608083018661179d565b611e3860a083018561179d565b611e4560c08301846117e9565b98975050505050505050565b60006020820190508181036000830152611e6a81611917565b9050919050565b60006020820190508181036000830152611e8a8161193a565b9050919050565b60006020820190508181036000830152611eaa816119c6565b9050919050565b60006020820190508181036000830152611eca816119e9565b9050919050565b60006020820190508181036000830152611eea81611a75565b9050919050565b60006020820190508181036000830152611f0a81611a98565b9050919050565b60006020820190508181036000830152611f2a81611ade565b9050919050565b60006020820190508181036000830152611f4a81611b01565b9050919050565b60008083356001602003843603038112611f6a57600080fd5b80840192508235915067ffffffffffffffff821115611f8857600080fd5b602083019250600182023603831315611fa057600080fd5b509250929050565b6000611fb2611fc3565b9050611fbe8282612419565b919050565b6000604051905090565b600067ffffffffffffffff821115611fe857611fe7612520565b5b611ff18261254f565b9050602081019050919050565b600081519050919050565b600081905092915050565b600082825260208201905092915050565b600081905092915050565b600061203b826123b0565b9150612046836123b0565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0382111561207b5761207a6124f1565b5b828201905092915050565b6000612091826123ca565b915061209c836123ca565b92508260ff038211156120b2576120b16124f1565b5b828201905092915050565b6000808291508390505b6001851115612107578086048111156120e3576120e26124f1565b5b60018516156120f25780820291505b80810290506121008561257a565b94506120c7565b94509492505050565b600061211b826123b0565b9150612126836123b0565b92506121537fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff848461215b565b905092915050565b60008261216b5760019050612227565b816121795760009050612227565b816001811461218f5760028114612199576121c8565b6001915050612227565b60ff8411156121ab576121aa6124f1565b5b8360020a9150848211156121c2576121c16124f1565b5b50612227565b5060208310610133831016604e8410600b84101617156121fd5782820a9050838111156121f8576121f76124f1565b5b612227565b61220a84848460016120bd565b92509050818404811115612221576122206124f1565b5b81810290505b9392505050565b6000612239826123b0565b9150612244836123b0565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff048311821515161561227d5761227c6124f1565b5b828202905092915050565b6000612293826123b0565b915061229e836123b0565b9250828210156122b1576122b06124f1565b5b828203905092915050565b60006122c7826123ca565b91506122d2836123ca565b9250828210156122e5576122e46124f1565b5b828203905092915050565b60006122fb82612390565b9050919050565b60007fffffffffffffffffffffffffffffffffffffffff00000000000000000000000082169050919050565b6000819050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b60007fffffffffffffffff00000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b600063ffffffff82169050919050565b600060ff82169050919050565b82818337600083830152505050565b60005b838110156124045780820151818401526020810190506123e9565b83811115612413576000848401525b50505050565b6124228261254f565b810181811067ffffffffffffffff8211171561244157612440612520565b5b80604052505050565b6000612455826123b0565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff821415612488576124876124f1565b5b600182019050919050565b600061249e826124cd565b9050919050565b6000819050919050565b6000819050919050565b6000819050919050565b6000819050919050565b60006124d88261256d565b9050919050565b60006124ea82612560565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6000601f19601f8301169050919050565b60008160f81b9050919050565b60008160601b9050919050565b60008160011c9050919050565b7f6300000000000000000000000000000000000000000000000000000000000000600082015250565b7f6700000000000000000000000000000000000000000000000000000000000000600082015250565b7f8800000000000000000000000000000000000000000000000000000000000000600082015250565b7f7500000000000000000000000000000000000000000000000000000000000000600082015250565b7f52656164206f76657272756e20647572696e6720566172496e7420706172736960008201527f6e67000000000000000000000000000000000000000000000000000000000000602082015250565b7f42616420566172496e7420696e207363726970745075626b6579000000000000600082015250565b7f1400000000000000000000000000000000000000000000000000000000000000600082015250565b7fa900000000000000000000000000000000000000000000000000000000000000600082015250565b7fb100000000000000000000000000000000000000000000000000000000000000600082015250565b7f57726f6e672033322d6279746520736372697074206861736800000000000000600082015250565b7f57726f6e67207363726970742068617368206c656e6774680000000000000000600082015250565b7f8700000000000000000000000000000000000000000000000000000000000000600082015250565b7f7600000000000000000000000000000000000000000000000000000000000000600082015250565b7f6800000000000000000000000000000000000000000000000000000000000000600082015250565b7f4465706f73697420616c72656164792072657665616c65640000000000000000600082015250565b7f57726f6e672032302d6279746520736372697074206861736800000000000000600082015250565b7f0800000000000000000000000000000000000000000000000000000000000000600082015250565b7f566f75742072656164206f76657272756e000000000000000000000000000000600082015250565b7f536c696365206f7574206f6620626f756e647300000000000000000000000000600082015250565b7f0400000000000000000000000000000000000000000000000000000000000000600082015250565b7fac00000000000000000000000000000000000000000000000000000000000000600082015250565b612913816122f0565b811461291e57600080fd5b50565b61292a81612302565b811461293557600080fd5b50565b6129418161232e565b811461294c57600080fd5b50565b61295881612338565b811461296357600080fd5b50565b61296f81612364565b811461297a57600080fd5b50565b612986816123b0565b811461299157600080fd5b50565b61299d816123ca565b81146129a857600080fd5b5056fea2646970667358221220e903e196da4db5ea41ef76b13a3de9d0e1e34fbe5988fd342c978dde89f9175164736f6c63430008040033",
|
|
219
|
-
|
|
220
|
-
|
|
264
|
+
"name": "GovernanceTransferred",
|
|
265
|
+
"type": "event"
|
|
266
|
+
},
|
|
267
|
+
{
|
|
268
|
+
"anonymous": false,
|
|
269
|
+
"inputs": [
|
|
270
|
+
{
|
|
271
|
+
"indexed": false,
|
|
272
|
+
"internalType": "bytes20",
|
|
273
|
+
"name": "walletPubKeyHash",
|
|
274
|
+
"type": "bytes20"
|
|
275
|
+
},
|
|
276
|
+
{
|
|
277
|
+
"indexed": false,
|
|
278
|
+
"internalType": "bytes32",
|
|
279
|
+
"name": "movingFundsTxHash",
|
|
280
|
+
"type": "bytes32"
|
|
281
|
+
},
|
|
282
|
+
{
|
|
283
|
+
"indexed": false,
|
|
284
|
+
"internalType": "uint32",
|
|
285
|
+
"name": "movingFundsTxOutputIndex",
|
|
286
|
+
"type": "uint32"
|
|
287
|
+
}
|
|
288
|
+
],
|
|
289
|
+
"name": "MovedFundsSweepTimedOut",
|
|
290
|
+
"type": "event"
|
|
291
|
+
},
|
|
292
|
+
{
|
|
293
|
+
"anonymous": false,
|
|
294
|
+
"inputs": [
|
|
295
|
+
{
|
|
296
|
+
"indexed": false,
|
|
297
|
+
"internalType": "bytes20",
|
|
298
|
+
"name": "walletPubKeyHash",
|
|
299
|
+
"type": "bytes20"
|
|
300
|
+
},
|
|
301
|
+
{
|
|
302
|
+
"indexed": false,
|
|
303
|
+
"internalType": "bytes32",
|
|
304
|
+
"name": "sweepTxHash",
|
|
305
|
+
"type": "bytes32"
|
|
306
|
+
}
|
|
307
|
+
],
|
|
308
|
+
"name": "MovedFundsSwept",
|
|
309
|
+
"type": "event"
|
|
310
|
+
},
|
|
311
|
+
{
|
|
312
|
+
"anonymous": false,
|
|
313
|
+
"inputs": [
|
|
314
|
+
{
|
|
315
|
+
"indexed": false,
|
|
316
|
+
"internalType": "bytes20",
|
|
317
|
+
"name": "walletPubKeyHash",
|
|
318
|
+
"type": "bytes20"
|
|
319
|
+
}
|
|
320
|
+
],
|
|
321
|
+
"name": "MovingFundsBelowDustReported",
|
|
322
|
+
"type": "event"
|
|
323
|
+
},
|
|
324
|
+
{
|
|
325
|
+
"anonymous": false,
|
|
326
|
+
"inputs": [
|
|
327
|
+
{
|
|
328
|
+
"indexed": false,
|
|
329
|
+
"internalType": "bytes20",
|
|
330
|
+
"name": "walletPubKeyHash",
|
|
331
|
+
"type": "bytes20"
|
|
332
|
+
},
|
|
333
|
+
{
|
|
334
|
+
"indexed": false,
|
|
335
|
+
"internalType": "bytes20[]",
|
|
336
|
+
"name": "targetWallets",
|
|
337
|
+
"type": "bytes20[]"
|
|
338
|
+
},
|
|
339
|
+
{
|
|
340
|
+
"indexed": false,
|
|
341
|
+
"internalType": "address",
|
|
342
|
+
"name": "submitter",
|
|
343
|
+
"type": "address"
|
|
344
|
+
}
|
|
345
|
+
],
|
|
346
|
+
"name": "MovingFundsCommitmentSubmitted",
|
|
347
|
+
"type": "event"
|
|
348
|
+
},
|
|
349
|
+
{
|
|
350
|
+
"anonymous": false,
|
|
351
|
+
"inputs": [
|
|
352
|
+
{
|
|
353
|
+
"indexed": false,
|
|
354
|
+
"internalType": "bytes20",
|
|
355
|
+
"name": "walletPubKeyHash",
|
|
356
|
+
"type": "bytes20"
|
|
357
|
+
},
|
|
358
|
+
{
|
|
359
|
+
"indexed": false,
|
|
360
|
+
"internalType": "bytes32",
|
|
361
|
+
"name": "movingFundsTxHash",
|
|
362
|
+
"type": "bytes32"
|
|
363
|
+
}
|
|
364
|
+
],
|
|
365
|
+
"name": "MovingFundsCompleted",
|
|
366
|
+
"type": "event"
|
|
367
|
+
},
|
|
368
|
+
{
|
|
369
|
+
"anonymous": false,
|
|
370
|
+
"inputs": [
|
|
371
|
+
{
|
|
372
|
+
"indexed": false,
|
|
373
|
+
"internalType": "uint64",
|
|
374
|
+
"name": "movingFundsTxMaxTotalFee",
|
|
375
|
+
"type": "uint64"
|
|
376
|
+
},
|
|
377
|
+
{
|
|
378
|
+
"indexed": false,
|
|
379
|
+
"internalType": "uint64",
|
|
380
|
+
"name": "movingFundsDustThreshold",
|
|
381
|
+
"type": "uint64"
|
|
382
|
+
},
|
|
383
|
+
{
|
|
384
|
+
"indexed": false,
|
|
385
|
+
"internalType": "uint32",
|
|
386
|
+
"name": "movingFundsTimeout",
|
|
387
|
+
"type": "uint32"
|
|
388
|
+
},
|
|
389
|
+
{
|
|
390
|
+
"indexed": false,
|
|
391
|
+
"internalType": "uint96",
|
|
392
|
+
"name": "movingFundsTimeoutSlashingAmount",
|
|
393
|
+
"type": "uint96"
|
|
394
|
+
},
|
|
395
|
+
{
|
|
396
|
+
"indexed": false,
|
|
397
|
+
"internalType": "uint256",
|
|
398
|
+
"name": "movingFundsTimeoutNotifierRewardMultiplier",
|
|
399
|
+
"type": "uint256"
|
|
400
|
+
},
|
|
401
|
+
{
|
|
402
|
+
"indexed": false,
|
|
403
|
+
"internalType": "uint64",
|
|
404
|
+
"name": "movedFundsSweepTxMaxTotalFee",
|
|
405
|
+
"type": "uint64"
|
|
406
|
+
},
|
|
407
|
+
{
|
|
408
|
+
"indexed": false,
|
|
409
|
+
"internalType": "uint32",
|
|
410
|
+
"name": "movedFundsSweepTimeout",
|
|
411
|
+
"type": "uint32"
|
|
412
|
+
},
|
|
413
|
+
{
|
|
414
|
+
"indexed": false,
|
|
415
|
+
"internalType": "uint96",
|
|
416
|
+
"name": "movedFundsSweepTimeoutSlashingAmount",
|
|
417
|
+
"type": "uint96"
|
|
418
|
+
},
|
|
419
|
+
{
|
|
420
|
+
"indexed": false,
|
|
421
|
+
"internalType": "uint256",
|
|
422
|
+
"name": "movedFundsSweepTimeoutNotifierRewardMultiplier",
|
|
423
|
+
"type": "uint256"
|
|
424
|
+
}
|
|
425
|
+
],
|
|
426
|
+
"name": "MovingFundsParametersUpdated",
|
|
427
|
+
"type": "event"
|
|
428
|
+
},
|
|
429
|
+
{
|
|
430
|
+
"anonymous": false,
|
|
431
|
+
"inputs": [
|
|
432
|
+
{
|
|
433
|
+
"indexed": false,
|
|
434
|
+
"internalType": "bytes20",
|
|
435
|
+
"name": "walletPubKeyHash",
|
|
436
|
+
"type": "bytes20"
|
|
437
|
+
}
|
|
438
|
+
],
|
|
439
|
+
"name": "MovingFundsTimedOut",
|
|
440
|
+
"type": "event"
|
|
441
|
+
},
|
|
442
|
+
{
|
|
443
|
+
"anonymous": false,
|
|
444
|
+
"inputs": [
|
|
445
|
+
{
|
|
446
|
+
"indexed": true,
|
|
447
|
+
"internalType": "bytes32",
|
|
448
|
+
"name": "ecdsaWalletID",
|
|
449
|
+
"type": "bytes32"
|
|
450
|
+
},
|
|
451
|
+
{
|
|
452
|
+
"indexed": true,
|
|
453
|
+
"internalType": "bytes20",
|
|
454
|
+
"name": "walletPubKeyHash",
|
|
455
|
+
"type": "bytes20"
|
|
456
|
+
}
|
|
457
|
+
],
|
|
458
|
+
"name": "NewWalletRegistered",
|
|
459
|
+
"type": "event"
|
|
460
|
+
},
|
|
461
|
+
{
|
|
462
|
+
"anonymous": false,
|
|
463
|
+
"inputs": [],
|
|
464
|
+
"name": "NewWalletRequested",
|
|
465
|
+
"type": "event"
|
|
466
|
+
},
|
|
467
|
+
{
|
|
468
|
+
"anonymous": false,
|
|
469
|
+
"inputs": [
|
|
470
|
+
{
|
|
471
|
+
"indexed": false,
|
|
472
|
+
"internalType": "uint64",
|
|
473
|
+
"name": "redemptionDustThreshold",
|
|
474
|
+
"type": "uint64"
|
|
475
|
+
},
|
|
476
|
+
{
|
|
477
|
+
"indexed": false,
|
|
478
|
+
"internalType": "uint64",
|
|
479
|
+
"name": "redemptionTreasuryFeeDivisor",
|
|
480
|
+
"type": "uint64"
|
|
481
|
+
},
|
|
482
|
+
{
|
|
483
|
+
"indexed": false,
|
|
484
|
+
"internalType": "uint64",
|
|
485
|
+
"name": "redemptionTxMaxFee",
|
|
486
|
+
"type": "uint64"
|
|
487
|
+
},
|
|
488
|
+
{
|
|
489
|
+
"indexed": false,
|
|
490
|
+
"internalType": "uint256",
|
|
491
|
+
"name": "redemptionTimeout",
|
|
492
|
+
"type": "uint256"
|
|
493
|
+
},
|
|
494
|
+
{
|
|
495
|
+
"indexed": false,
|
|
496
|
+
"internalType": "uint96",
|
|
497
|
+
"name": "redemptionTimeoutSlashingAmount",
|
|
498
|
+
"type": "uint96"
|
|
499
|
+
},
|
|
500
|
+
{
|
|
501
|
+
"indexed": false,
|
|
502
|
+
"internalType": "uint256",
|
|
503
|
+
"name": "redemptionTimeoutNotifierRewardMultiplier",
|
|
504
|
+
"type": "uint256"
|
|
505
|
+
}
|
|
506
|
+
],
|
|
507
|
+
"name": "RedemptionParametersUpdated",
|
|
508
|
+
"type": "event"
|
|
509
|
+
},
|
|
510
|
+
{
|
|
511
|
+
"anonymous": false,
|
|
512
|
+
"inputs": [
|
|
513
|
+
{
|
|
514
|
+
"indexed": false,
|
|
515
|
+
"internalType": "bytes20",
|
|
516
|
+
"name": "walletPubKeyHash",
|
|
517
|
+
"type": "bytes20"
|
|
518
|
+
},
|
|
519
|
+
{
|
|
520
|
+
"indexed": false,
|
|
521
|
+
"internalType": "bytes",
|
|
522
|
+
"name": "redeemerOutputScript",
|
|
523
|
+
"type": "bytes"
|
|
524
|
+
},
|
|
525
|
+
{
|
|
526
|
+
"indexed": false,
|
|
527
|
+
"internalType": "address",
|
|
528
|
+
"name": "redeemer",
|
|
529
|
+
"type": "address"
|
|
530
|
+
},
|
|
531
|
+
{
|
|
532
|
+
"indexed": false,
|
|
533
|
+
"internalType": "uint64",
|
|
534
|
+
"name": "requestedAmount",
|
|
535
|
+
"type": "uint64"
|
|
536
|
+
},
|
|
537
|
+
{
|
|
538
|
+
"indexed": false,
|
|
539
|
+
"internalType": "uint64",
|
|
540
|
+
"name": "treasuryFee",
|
|
541
|
+
"type": "uint64"
|
|
542
|
+
},
|
|
543
|
+
{
|
|
544
|
+
"indexed": false,
|
|
545
|
+
"internalType": "uint64",
|
|
546
|
+
"name": "txMaxFee",
|
|
547
|
+
"type": "uint64"
|
|
548
|
+
}
|
|
549
|
+
],
|
|
550
|
+
"name": "RedemptionRequested",
|
|
551
|
+
"type": "event"
|
|
552
|
+
},
|
|
553
|
+
{
|
|
554
|
+
"anonymous": false,
|
|
555
|
+
"inputs": [
|
|
556
|
+
{
|
|
557
|
+
"indexed": false,
|
|
558
|
+
"internalType": "bytes20",
|
|
559
|
+
"name": "walletPubKeyHash",
|
|
560
|
+
"type": "bytes20"
|
|
561
|
+
},
|
|
562
|
+
{
|
|
563
|
+
"indexed": false,
|
|
564
|
+
"internalType": "bytes",
|
|
565
|
+
"name": "redeemerOutputScript",
|
|
566
|
+
"type": "bytes"
|
|
567
|
+
}
|
|
568
|
+
],
|
|
569
|
+
"name": "RedemptionTimedOut",
|
|
570
|
+
"type": "event"
|
|
571
|
+
},
|
|
572
|
+
{
|
|
573
|
+
"anonymous": false,
|
|
574
|
+
"inputs": [
|
|
575
|
+
{
|
|
576
|
+
"indexed": false,
|
|
577
|
+
"internalType": "bytes20",
|
|
578
|
+
"name": "walletPubKeyHash",
|
|
579
|
+
"type": "bytes20"
|
|
580
|
+
},
|
|
581
|
+
{
|
|
582
|
+
"indexed": false,
|
|
583
|
+
"internalType": "bytes32",
|
|
584
|
+
"name": "redemptionTxHash",
|
|
585
|
+
"type": "bytes32"
|
|
586
|
+
}
|
|
587
|
+
],
|
|
588
|
+
"name": "RedemptionsCompleted",
|
|
589
|
+
"type": "event"
|
|
590
|
+
},
|
|
591
|
+
{
|
|
592
|
+
"anonymous": false,
|
|
593
|
+
"inputs": [
|
|
594
|
+
{
|
|
595
|
+
"indexed": true,
|
|
596
|
+
"internalType": "address",
|
|
597
|
+
"name": "vault",
|
|
598
|
+
"type": "address"
|
|
599
|
+
},
|
|
600
|
+
{
|
|
601
|
+
"indexed": false,
|
|
602
|
+
"internalType": "bool",
|
|
603
|
+
"name": "isTrusted",
|
|
604
|
+
"type": "bool"
|
|
605
|
+
}
|
|
606
|
+
],
|
|
607
|
+
"name": "VaultStatusUpdated",
|
|
608
|
+
"type": "event"
|
|
609
|
+
},
|
|
610
|
+
{
|
|
611
|
+
"anonymous": false,
|
|
612
|
+
"inputs": [
|
|
613
|
+
{
|
|
614
|
+
"indexed": true,
|
|
615
|
+
"internalType": "bytes32",
|
|
616
|
+
"name": "ecdsaWalletID",
|
|
617
|
+
"type": "bytes32"
|
|
618
|
+
},
|
|
619
|
+
{
|
|
620
|
+
"indexed": true,
|
|
621
|
+
"internalType": "bytes20",
|
|
622
|
+
"name": "walletPubKeyHash",
|
|
623
|
+
"type": "bytes20"
|
|
624
|
+
}
|
|
625
|
+
],
|
|
626
|
+
"name": "WalletClosed",
|
|
627
|
+
"type": "event"
|
|
628
|
+
},
|
|
629
|
+
{
|
|
630
|
+
"anonymous": false,
|
|
631
|
+
"inputs": [
|
|
632
|
+
{
|
|
633
|
+
"indexed": true,
|
|
634
|
+
"internalType": "bytes32",
|
|
635
|
+
"name": "ecdsaWalletID",
|
|
636
|
+
"type": "bytes32"
|
|
637
|
+
},
|
|
638
|
+
{
|
|
639
|
+
"indexed": true,
|
|
640
|
+
"internalType": "bytes20",
|
|
641
|
+
"name": "walletPubKeyHash",
|
|
642
|
+
"type": "bytes20"
|
|
643
|
+
}
|
|
644
|
+
],
|
|
645
|
+
"name": "WalletClosing",
|
|
646
|
+
"type": "event"
|
|
647
|
+
},
|
|
648
|
+
{
|
|
649
|
+
"anonymous": false,
|
|
650
|
+
"inputs": [
|
|
651
|
+
{
|
|
652
|
+
"indexed": true,
|
|
653
|
+
"internalType": "bytes32",
|
|
654
|
+
"name": "ecdsaWalletID",
|
|
655
|
+
"type": "bytes32"
|
|
656
|
+
},
|
|
657
|
+
{
|
|
658
|
+
"indexed": true,
|
|
659
|
+
"internalType": "bytes20",
|
|
660
|
+
"name": "walletPubKeyHash",
|
|
661
|
+
"type": "bytes20"
|
|
662
|
+
}
|
|
663
|
+
],
|
|
664
|
+
"name": "WalletMovingFunds",
|
|
665
|
+
"type": "event"
|
|
666
|
+
},
|
|
667
|
+
{
|
|
668
|
+
"anonymous": false,
|
|
669
|
+
"inputs": [
|
|
670
|
+
{
|
|
671
|
+
"indexed": false,
|
|
672
|
+
"internalType": "uint32",
|
|
673
|
+
"name": "walletCreationPeriod",
|
|
674
|
+
"type": "uint32"
|
|
675
|
+
},
|
|
676
|
+
{
|
|
677
|
+
"indexed": false,
|
|
678
|
+
"internalType": "uint64",
|
|
679
|
+
"name": "walletCreationMinBtcBalance",
|
|
680
|
+
"type": "uint64"
|
|
681
|
+
},
|
|
682
|
+
{
|
|
683
|
+
"indexed": false,
|
|
684
|
+
"internalType": "uint64",
|
|
685
|
+
"name": "walletCreationMaxBtcBalance",
|
|
686
|
+
"type": "uint64"
|
|
687
|
+
},
|
|
688
|
+
{
|
|
689
|
+
"indexed": false,
|
|
690
|
+
"internalType": "uint64",
|
|
691
|
+
"name": "walletClosureMinBtcBalance",
|
|
692
|
+
"type": "uint64"
|
|
693
|
+
},
|
|
694
|
+
{
|
|
695
|
+
"indexed": false,
|
|
696
|
+
"internalType": "uint32",
|
|
697
|
+
"name": "walletMaxAge",
|
|
698
|
+
"type": "uint32"
|
|
699
|
+
},
|
|
700
|
+
{
|
|
701
|
+
"indexed": false,
|
|
702
|
+
"internalType": "uint64",
|
|
703
|
+
"name": "walletMaxBtcTransfer",
|
|
704
|
+
"type": "uint64"
|
|
705
|
+
},
|
|
706
|
+
{
|
|
707
|
+
"indexed": false,
|
|
708
|
+
"internalType": "uint32",
|
|
709
|
+
"name": "walletClosingPeriod",
|
|
710
|
+
"type": "uint32"
|
|
711
|
+
}
|
|
712
|
+
],
|
|
713
|
+
"name": "WalletParametersUpdated",
|
|
714
|
+
"type": "event"
|
|
715
|
+
},
|
|
716
|
+
{
|
|
717
|
+
"anonymous": false,
|
|
718
|
+
"inputs": [
|
|
719
|
+
{
|
|
720
|
+
"indexed": true,
|
|
721
|
+
"internalType": "bytes32",
|
|
722
|
+
"name": "ecdsaWalletID",
|
|
723
|
+
"type": "bytes32"
|
|
724
|
+
},
|
|
725
|
+
{
|
|
726
|
+
"indexed": true,
|
|
727
|
+
"internalType": "bytes20",
|
|
728
|
+
"name": "walletPubKeyHash",
|
|
729
|
+
"type": "bytes20"
|
|
730
|
+
}
|
|
731
|
+
],
|
|
732
|
+
"name": "WalletTerminated",
|
|
733
|
+
"type": "event"
|
|
734
|
+
},
|
|
735
|
+
{
|
|
736
|
+
"inputs": [
|
|
737
|
+
{
|
|
738
|
+
"internalType": "bytes32",
|
|
739
|
+
"name": "ecdsaWalletID",
|
|
740
|
+
"type": "bytes32"
|
|
741
|
+
},
|
|
742
|
+
{
|
|
743
|
+
"internalType": "bytes32",
|
|
744
|
+
"name": "publicKeyX",
|
|
745
|
+
"type": "bytes32"
|
|
746
|
+
},
|
|
747
|
+
{
|
|
748
|
+
"internalType": "bytes32",
|
|
749
|
+
"name": "publicKeyY",
|
|
750
|
+
"type": "bytes32"
|
|
751
|
+
}
|
|
752
|
+
],
|
|
753
|
+
"name": "__ecdsaWalletCreatedCallback",
|
|
754
|
+
"outputs": [],
|
|
755
|
+
"stateMutability": "nonpayable",
|
|
756
|
+
"type": "function"
|
|
757
|
+
},
|
|
758
|
+
{
|
|
759
|
+
"inputs": [
|
|
760
|
+
{
|
|
761
|
+
"internalType": "bytes32",
|
|
762
|
+
"name": "",
|
|
763
|
+
"type": "bytes32"
|
|
764
|
+
},
|
|
765
|
+
{
|
|
766
|
+
"internalType": "bytes32",
|
|
767
|
+
"name": "publicKeyX",
|
|
768
|
+
"type": "bytes32"
|
|
769
|
+
},
|
|
770
|
+
{
|
|
771
|
+
"internalType": "bytes32",
|
|
772
|
+
"name": "publicKeyY",
|
|
773
|
+
"type": "bytes32"
|
|
774
|
+
}
|
|
775
|
+
],
|
|
776
|
+
"name": "__ecdsaWalletHeartbeatFailedCallback",
|
|
777
|
+
"outputs": [],
|
|
778
|
+
"stateMutability": "nonpayable",
|
|
779
|
+
"type": "function"
|
|
780
|
+
},
|
|
781
|
+
{
|
|
782
|
+
"inputs": [],
|
|
783
|
+
"name": "activeWalletPubKeyHash",
|
|
784
|
+
"outputs": [
|
|
785
|
+
{
|
|
786
|
+
"internalType": "bytes20",
|
|
787
|
+
"name": "",
|
|
788
|
+
"type": "bytes20"
|
|
789
|
+
}
|
|
790
|
+
],
|
|
791
|
+
"stateMutability": "view",
|
|
792
|
+
"type": "function"
|
|
793
|
+
},
|
|
794
|
+
{
|
|
795
|
+
"inputs": [],
|
|
796
|
+
"name": "contractReferences",
|
|
797
|
+
"outputs": [
|
|
798
|
+
{
|
|
799
|
+
"internalType": "contract Bank",
|
|
800
|
+
"name": "bank",
|
|
801
|
+
"type": "address"
|
|
802
|
+
},
|
|
803
|
+
{
|
|
804
|
+
"internalType": "contract IRelay",
|
|
805
|
+
"name": "relay",
|
|
806
|
+
"type": "address"
|
|
807
|
+
},
|
|
808
|
+
{
|
|
809
|
+
"internalType": "contract IWalletRegistry",
|
|
810
|
+
"name": "ecdsaWalletRegistry",
|
|
811
|
+
"type": "address"
|
|
812
|
+
}
|
|
813
|
+
],
|
|
814
|
+
"stateMutability": "view",
|
|
815
|
+
"type": "function"
|
|
816
|
+
},
|
|
817
|
+
{
|
|
818
|
+
"inputs": [
|
|
819
|
+
{
|
|
820
|
+
"internalType": "bytes",
|
|
821
|
+
"name": "walletPublicKey",
|
|
822
|
+
"type": "bytes"
|
|
823
|
+
},
|
|
824
|
+
{
|
|
825
|
+
"internalType": "bytes",
|
|
826
|
+
"name": "preimage",
|
|
827
|
+
"type": "bytes"
|
|
828
|
+
},
|
|
829
|
+
{
|
|
830
|
+
"internalType": "bool",
|
|
831
|
+
"name": "witness",
|
|
832
|
+
"type": "bool"
|
|
833
|
+
}
|
|
834
|
+
],
|
|
835
|
+
"name": "defeatFraudChallenge",
|
|
836
|
+
"outputs": [],
|
|
837
|
+
"stateMutability": "nonpayable",
|
|
838
|
+
"type": "function"
|
|
839
|
+
},
|
|
840
|
+
{
|
|
841
|
+
"inputs": [],
|
|
842
|
+
"name": "depositParameters",
|
|
843
|
+
"outputs": [
|
|
844
|
+
{
|
|
845
|
+
"internalType": "uint64",
|
|
846
|
+
"name": "depositDustThreshold",
|
|
847
|
+
"type": "uint64"
|
|
848
|
+
},
|
|
849
|
+
{
|
|
850
|
+
"internalType": "uint64",
|
|
851
|
+
"name": "depositTreasuryFeeDivisor",
|
|
852
|
+
"type": "uint64"
|
|
853
|
+
},
|
|
854
|
+
{
|
|
855
|
+
"internalType": "uint64",
|
|
856
|
+
"name": "depositTxMaxFee",
|
|
857
|
+
"type": "uint64"
|
|
858
|
+
}
|
|
859
|
+
],
|
|
860
|
+
"stateMutability": "view",
|
|
861
|
+
"type": "function"
|
|
862
|
+
},
|
|
863
|
+
{
|
|
864
|
+
"inputs": [
|
|
865
|
+
{
|
|
866
|
+
"internalType": "uint256",
|
|
867
|
+
"name": "depositKey",
|
|
868
|
+
"type": "uint256"
|
|
869
|
+
}
|
|
870
|
+
],
|
|
871
|
+
"name": "deposits",
|
|
872
|
+
"outputs": [
|
|
873
|
+
{
|
|
874
|
+
"components": [
|
|
875
|
+
{
|
|
876
|
+
"internalType": "address",
|
|
877
|
+
"name": "depositor",
|
|
878
|
+
"type": "address"
|
|
879
|
+
},
|
|
880
|
+
{
|
|
881
|
+
"internalType": "uint64",
|
|
882
|
+
"name": "amount",
|
|
883
|
+
"type": "uint64"
|
|
884
|
+
},
|
|
885
|
+
{
|
|
886
|
+
"internalType": "uint32",
|
|
887
|
+
"name": "revealedAt",
|
|
888
|
+
"type": "uint32"
|
|
889
|
+
},
|
|
890
|
+
{
|
|
891
|
+
"internalType": "address",
|
|
892
|
+
"name": "vault",
|
|
893
|
+
"type": "address"
|
|
894
|
+
},
|
|
895
|
+
{
|
|
896
|
+
"internalType": "uint64",
|
|
897
|
+
"name": "treasuryFee",
|
|
898
|
+
"type": "uint64"
|
|
899
|
+
},
|
|
900
|
+
{
|
|
901
|
+
"internalType": "uint32",
|
|
902
|
+
"name": "sweptAt",
|
|
903
|
+
"type": "uint32"
|
|
904
|
+
}
|
|
905
|
+
],
|
|
906
|
+
"internalType": "struct Deposit.DepositRequest",
|
|
907
|
+
"name": "",
|
|
908
|
+
"type": "tuple"
|
|
909
|
+
}
|
|
910
|
+
],
|
|
911
|
+
"stateMutability": "view",
|
|
912
|
+
"type": "function"
|
|
913
|
+
},
|
|
914
|
+
{
|
|
915
|
+
"inputs": [
|
|
916
|
+
{
|
|
917
|
+
"internalType": "uint256",
|
|
918
|
+
"name": "challengeKey",
|
|
919
|
+
"type": "uint256"
|
|
920
|
+
}
|
|
921
|
+
],
|
|
922
|
+
"name": "fraudChallenges",
|
|
923
|
+
"outputs": [
|
|
924
|
+
{
|
|
925
|
+
"components": [
|
|
926
|
+
{
|
|
927
|
+
"internalType": "address",
|
|
928
|
+
"name": "challenger",
|
|
929
|
+
"type": "address"
|
|
930
|
+
},
|
|
931
|
+
{
|
|
932
|
+
"internalType": "uint256",
|
|
933
|
+
"name": "depositAmount",
|
|
934
|
+
"type": "uint256"
|
|
935
|
+
},
|
|
936
|
+
{
|
|
937
|
+
"internalType": "uint32",
|
|
938
|
+
"name": "reportedAt",
|
|
939
|
+
"type": "uint32"
|
|
940
|
+
},
|
|
941
|
+
{
|
|
942
|
+
"internalType": "bool",
|
|
943
|
+
"name": "resolved",
|
|
944
|
+
"type": "bool"
|
|
945
|
+
}
|
|
946
|
+
],
|
|
947
|
+
"internalType": "struct Fraud.FraudChallenge",
|
|
948
|
+
"name": "",
|
|
949
|
+
"type": "tuple"
|
|
950
|
+
}
|
|
951
|
+
],
|
|
952
|
+
"stateMutability": "view",
|
|
953
|
+
"type": "function"
|
|
954
|
+
},
|
|
955
|
+
{
|
|
956
|
+
"inputs": [],
|
|
957
|
+
"name": "fraudParameters",
|
|
958
|
+
"outputs": [
|
|
959
|
+
{
|
|
960
|
+
"internalType": "uint256",
|
|
961
|
+
"name": "fraudChallengeDepositAmount",
|
|
962
|
+
"type": "uint256"
|
|
963
|
+
},
|
|
964
|
+
{
|
|
965
|
+
"internalType": "uint256",
|
|
966
|
+
"name": "fraudChallengeDefeatTimeout",
|
|
967
|
+
"type": "uint256"
|
|
968
|
+
},
|
|
969
|
+
{
|
|
970
|
+
"internalType": "uint96",
|
|
971
|
+
"name": "fraudSlashingAmount",
|
|
972
|
+
"type": "uint96"
|
|
973
|
+
},
|
|
974
|
+
{
|
|
975
|
+
"internalType": "uint256",
|
|
976
|
+
"name": "fraudNotifierRewardMultiplier",
|
|
977
|
+
"type": "uint256"
|
|
978
|
+
}
|
|
979
|
+
],
|
|
980
|
+
"stateMutability": "view",
|
|
981
|
+
"type": "function"
|
|
982
|
+
},
|
|
983
|
+
{
|
|
984
|
+
"inputs": [],
|
|
985
|
+
"name": "governance",
|
|
986
|
+
"outputs": [
|
|
987
|
+
{
|
|
988
|
+
"internalType": "address",
|
|
989
|
+
"name": "",
|
|
990
|
+
"type": "address"
|
|
991
|
+
}
|
|
992
|
+
],
|
|
993
|
+
"stateMutability": "view",
|
|
994
|
+
"type": "function"
|
|
995
|
+
},
|
|
996
|
+
{
|
|
997
|
+
"inputs": [
|
|
998
|
+
{
|
|
999
|
+
"internalType": "address",
|
|
1000
|
+
"name": "vault",
|
|
1001
|
+
"type": "address"
|
|
1002
|
+
}
|
|
1003
|
+
],
|
|
1004
|
+
"name": "isVaultTrusted",
|
|
1005
|
+
"outputs": [
|
|
1006
|
+
{
|
|
1007
|
+
"internalType": "bool",
|
|
1008
|
+
"name": "",
|
|
1009
|
+
"type": "bool"
|
|
1010
|
+
}
|
|
1011
|
+
],
|
|
1012
|
+
"stateMutability": "view",
|
|
1013
|
+
"type": "function"
|
|
1014
|
+
},
|
|
1015
|
+
{
|
|
1016
|
+
"inputs": [],
|
|
1017
|
+
"name": "liveWalletsCount",
|
|
1018
|
+
"outputs": [
|
|
1019
|
+
{
|
|
1020
|
+
"internalType": "uint32",
|
|
1021
|
+
"name": "",
|
|
1022
|
+
"type": "uint32"
|
|
1023
|
+
}
|
|
1024
|
+
],
|
|
1025
|
+
"stateMutability": "view",
|
|
1026
|
+
"type": "function"
|
|
1027
|
+
},
|
|
1028
|
+
{
|
|
1029
|
+
"inputs": [
|
|
1030
|
+
{
|
|
1031
|
+
"internalType": "uint256",
|
|
1032
|
+
"name": "requestKey",
|
|
1033
|
+
"type": "uint256"
|
|
1034
|
+
}
|
|
1035
|
+
],
|
|
1036
|
+
"name": "movedFundsSweepRequests",
|
|
1037
|
+
"outputs": [
|
|
1038
|
+
{
|
|
1039
|
+
"components": [
|
|
1040
|
+
{
|
|
1041
|
+
"internalType": "bytes20",
|
|
1042
|
+
"name": "walletPubKeyHash",
|
|
1043
|
+
"type": "bytes20"
|
|
1044
|
+
},
|
|
1045
|
+
{
|
|
1046
|
+
"internalType": "uint64",
|
|
1047
|
+
"name": "value",
|
|
1048
|
+
"type": "uint64"
|
|
1049
|
+
},
|
|
1050
|
+
{
|
|
1051
|
+
"internalType": "uint32",
|
|
1052
|
+
"name": "createdAt",
|
|
1053
|
+
"type": "uint32"
|
|
1054
|
+
},
|
|
1055
|
+
{
|
|
1056
|
+
"internalType": "enum MovingFunds.MovedFundsSweepRequestState",
|
|
1057
|
+
"name": "state",
|
|
1058
|
+
"type": "uint8"
|
|
1059
|
+
}
|
|
1060
|
+
],
|
|
1061
|
+
"internalType": "struct MovingFunds.MovedFundsSweepRequest",
|
|
1062
|
+
"name": "",
|
|
1063
|
+
"type": "tuple"
|
|
1064
|
+
}
|
|
1065
|
+
],
|
|
1066
|
+
"stateMutability": "view",
|
|
1067
|
+
"type": "function"
|
|
1068
|
+
},
|
|
1069
|
+
{
|
|
1070
|
+
"inputs": [],
|
|
1071
|
+
"name": "movingFundsParameters",
|
|
1072
|
+
"outputs": [
|
|
1073
|
+
{
|
|
1074
|
+
"internalType": "uint64",
|
|
1075
|
+
"name": "movingFundsTxMaxTotalFee",
|
|
1076
|
+
"type": "uint64"
|
|
1077
|
+
},
|
|
1078
|
+
{
|
|
1079
|
+
"internalType": "uint64",
|
|
1080
|
+
"name": "movingFundsDustThreshold",
|
|
1081
|
+
"type": "uint64"
|
|
1082
|
+
},
|
|
1083
|
+
{
|
|
1084
|
+
"internalType": "uint32",
|
|
1085
|
+
"name": "movingFundsTimeout",
|
|
1086
|
+
"type": "uint32"
|
|
1087
|
+
},
|
|
1088
|
+
{
|
|
1089
|
+
"internalType": "uint96",
|
|
1090
|
+
"name": "movingFundsTimeoutSlashingAmount",
|
|
1091
|
+
"type": "uint96"
|
|
1092
|
+
},
|
|
1093
|
+
{
|
|
1094
|
+
"internalType": "uint256",
|
|
1095
|
+
"name": "movingFundsTimeoutNotifierRewardMultiplier",
|
|
1096
|
+
"type": "uint256"
|
|
1097
|
+
},
|
|
1098
|
+
{
|
|
1099
|
+
"internalType": "uint64",
|
|
1100
|
+
"name": "movedFundsSweepTxMaxTotalFee",
|
|
1101
|
+
"type": "uint64"
|
|
1102
|
+
},
|
|
1103
|
+
{
|
|
1104
|
+
"internalType": "uint32",
|
|
1105
|
+
"name": "movedFundsSweepTimeout",
|
|
1106
|
+
"type": "uint32"
|
|
1107
|
+
},
|
|
1108
|
+
{
|
|
1109
|
+
"internalType": "uint96",
|
|
1110
|
+
"name": "movedFundsSweepTimeoutSlashingAmount",
|
|
1111
|
+
"type": "uint96"
|
|
1112
|
+
},
|
|
1113
|
+
{
|
|
1114
|
+
"internalType": "uint256",
|
|
1115
|
+
"name": "movedFundsSweepTimeoutNotifierRewardMultiplier",
|
|
1116
|
+
"type": "uint256"
|
|
1117
|
+
}
|
|
1118
|
+
],
|
|
1119
|
+
"stateMutability": "view",
|
|
1120
|
+
"type": "function"
|
|
1121
|
+
},
|
|
1122
|
+
{
|
|
1123
|
+
"inputs": [
|
|
1124
|
+
{
|
|
1125
|
+
"internalType": "bytes20",
|
|
1126
|
+
"name": "walletPubKeyHash",
|
|
1127
|
+
"type": "bytes20"
|
|
1128
|
+
},
|
|
1129
|
+
{
|
|
1130
|
+
"components": [
|
|
1131
|
+
{
|
|
1132
|
+
"internalType": "bytes32",
|
|
1133
|
+
"name": "txHash",
|
|
1134
|
+
"type": "bytes32"
|
|
1135
|
+
},
|
|
1136
|
+
{
|
|
1137
|
+
"internalType": "uint32",
|
|
1138
|
+
"name": "txOutputIndex",
|
|
1139
|
+
"type": "uint32"
|
|
1140
|
+
},
|
|
1141
|
+
{
|
|
1142
|
+
"internalType": "uint64",
|
|
1143
|
+
"name": "txOutputValue",
|
|
1144
|
+
"type": "uint64"
|
|
1145
|
+
}
|
|
1146
|
+
],
|
|
1147
|
+
"internalType": "struct BitcoinTx.UTXO",
|
|
1148
|
+
"name": "walletMainUtxo",
|
|
1149
|
+
"type": "tuple"
|
|
1150
|
+
}
|
|
1151
|
+
],
|
|
1152
|
+
"name": "notifyCloseableWallet",
|
|
1153
|
+
"outputs": [],
|
|
1154
|
+
"stateMutability": "nonpayable",
|
|
1155
|
+
"type": "function"
|
|
1156
|
+
},
|
|
1157
|
+
{
|
|
1158
|
+
"inputs": [
|
|
1159
|
+
{
|
|
1160
|
+
"internalType": "bytes",
|
|
1161
|
+
"name": "walletPublicKey",
|
|
1162
|
+
"type": "bytes"
|
|
1163
|
+
},
|
|
1164
|
+
{
|
|
1165
|
+
"internalType": "uint32[]",
|
|
1166
|
+
"name": "walletMembersIDs",
|
|
1167
|
+
"type": "uint32[]"
|
|
1168
|
+
},
|
|
1169
|
+
{
|
|
1170
|
+
"internalType": "bytes32",
|
|
1171
|
+
"name": "sighash",
|
|
1172
|
+
"type": "bytes32"
|
|
1173
|
+
}
|
|
1174
|
+
],
|
|
1175
|
+
"name": "notifyFraudChallengeDefeatTimeout",
|
|
1176
|
+
"outputs": [],
|
|
1177
|
+
"stateMutability": "nonpayable",
|
|
1178
|
+
"type": "function"
|
|
1179
|
+
},
|
|
1180
|
+
{
|
|
1181
|
+
"inputs": [
|
|
1182
|
+
{
|
|
1183
|
+
"internalType": "bytes32",
|
|
1184
|
+
"name": "movingFundsTxHash",
|
|
1185
|
+
"type": "bytes32"
|
|
1186
|
+
},
|
|
1187
|
+
{
|
|
1188
|
+
"internalType": "uint32",
|
|
1189
|
+
"name": "movingFundsTxOutputIndex",
|
|
1190
|
+
"type": "uint32"
|
|
1191
|
+
},
|
|
1192
|
+
{
|
|
1193
|
+
"internalType": "uint32[]",
|
|
1194
|
+
"name": "walletMembersIDs",
|
|
1195
|
+
"type": "uint32[]"
|
|
1196
|
+
}
|
|
1197
|
+
],
|
|
1198
|
+
"name": "notifyMovedFundsSweepTimeout",
|
|
1199
|
+
"outputs": [],
|
|
1200
|
+
"stateMutability": "nonpayable",
|
|
1201
|
+
"type": "function"
|
|
1202
|
+
},
|
|
1203
|
+
{
|
|
1204
|
+
"inputs": [
|
|
1205
|
+
{
|
|
1206
|
+
"internalType": "bytes20",
|
|
1207
|
+
"name": "walletPubKeyHash",
|
|
1208
|
+
"type": "bytes20"
|
|
1209
|
+
},
|
|
1210
|
+
{
|
|
1211
|
+
"components": [
|
|
1212
|
+
{
|
|
1213
|
+
"internalType": "bytes32",
|
|
1214
|
+
"name": "txHash",
|
|
1215
|
+
"type": "bytes32"
|
|
1216
|
+
},
|
|
1217
|
+
{
|
|
1218
|
+
"internalType": "uint32",
|
|
1219
|
+
"name": "txOutputIndex",
|
|
1220
|
+
"type": "uint32"
|
|
1221
|
+
},
|
|
1222
|
+
{
|
|
1223
|
+
"internalType": "uint64",
|
|
1224
|
+
"name": "txOutputValue",
|
|
1225
|
+
"type": "uint64"
|
|
1226
|
+
}
|
|
1227
|
+
],
|
|
1228
|
+
"internalType": "struct BitcoinTx.UTXO",
|
|
1229
|
+
"name": "mainUtxo",
|
|
1230
|
+
"type": "tuple"
|
|
1231
|
+
}
|
|
1232
|
+
],
|
|
1233
|
+
"name": "notifyMovingFundsBelowDust",
|
|
1234
|
+
"outputs": [],
|
|
1235
|
+
"stateMutability": "nonpayable",
|
|
1236
|
+
"type": "function"
|
|
1237
|
+
},
|
|
1238
|
+
{
|
|
1239
|
+
"inputs": [
|
|
1240
|
+
{
|
|
1241
|
+
"internalType": "bytes20",
|
|
1242
|
+
"name": "walletPubKeyHash",
|
|
1243
|
+
"type": "bytes20"
|
|
1244
|
+
},
|
|
1245
|
+
{
|
|
1246
|
+
"internalType": "uint32[]",
|
|
1247
|
+
"name": "walletMembersIDs",
|
|
1248
|
+
"type": "uint32[]"
|
|
1249
|
+
}
|
|
1250
|
+
],
|
|
1251
|
+
"name": "notifyMovingFundsTimeout",
|
|
1252
|
+
"outputs": [],
|
|
1253
|
+
"stateMutability": "nonpayable",
|
|
1254
|
+
"type": "function"
|
|
1255
|
+
},
|
|
1256
|
+
{
|
|
1257
|
+
"inputs": [
|
|
1258
|
+
{
|
|
1259
|
+
"internalType": "bytes20",
|
|
1260
|
+
"name": "walletPubKeyHash",
|
|
1261
|
+
"type": "bytes20"
|
|
1262
|
+
},
|
|
1263
|
+
{
|
|
1264
|
+
"internalType": "uint32[]",
|
|
1265
|
+
"name": "walletMembersIDs",
|
|
1266
|
+
"type": "uint32[]"
|
|
1267
|
+
},
|
|
1268
|
+
{
|
|
1269
|
+
"internalType": "bytes",
|
|
1270
|
+
"name": "redeemerOutputScript",
|
|
1271
|
+
"type": "bytes"
|
|
1272
|
+
}
|
|
1273
|
+
],
|
|
1274
|
+
"name": "notifyRedemptionTimeout",
|
|
1275
|
+
"outputs": [],
|
|
1276
|
+
"stateMutability": "nonpayable",
|
|
1277
|
+
"type": "function"
|
|
1278
|
+
},
|
|
1279
|
+
{
|
|
1280
|
+
"inputs": [
|
|
1281
|
+
{
|
|
1282
|
+
"internalType": "bytes20",
|
|
1283
|
+
"name": "walletPubKeyHash",
|
|
1284
|
+
"type": "bytes20"
|
|
1285
|
+
}
|
|
1286
|
+
],
|
|
1287
|
+
"name": "notifyWalletClosingPeriodElapsed",
|
|
1288
|
+
"outputs": [],
|
|
1289
|
+
"stateMutability": "nonpayable",
|
|
1290
|
+
"type": "function"
|
|
1291
|
+
},
|
|
1292
|
+
{
|
|
1293
|
+
"inputs": [
|
|
1294
|
+
{
|
|
1295
|
+
"internalType": "uint256",
|
|
1296
|
+
"name": "redemptionKey",
|
|
1297
|
+
"type": "uint256"
|
|
1298
|
+
}
|
|
1299
|
+
],
|
|
1300
|
+
"name": "pendingRedemptions",
|
|
1301
|
+
"outputs": [
|
|
1302
|
+
{
|
|
1303
|
+
"components": [
|
|
1304
|
+
{
|
|
1305
|
+
"internalType": "address",
|
|
1306
|
+
"name": "redeemer",
|
|
1307
|
+
"type": "address"
|
|
1308
|
+
},
|
|
1309
|
+
{
|
|
1310
|
+
"internalType": "uint64",
|
|
1311
|
+
"name": "requestedAmount",
|
|
1312
|
+
"type": "uint64"
|
|
1313
|
+
},
|
|
1314
|
+
{
|
|
1315
|
+
"internalType": "uint64",
|
|
1316
|
+
"name": "treasuryFee",
|
|
1317
|
+
"type": "uint64"
|
|
1318
|
+
},
|
|
1319
|
+
{
|
|
1320
|
+
"internalType": "uint64",
|
|
1321
|
+
"name": "txMaxFee",
|
|
1322
|
+
"type": "uint64"
|
|
1323
|
+
},
|
|
1324
|
+
{
|
|
1325
|
+
"internalType": "uint32",
|
|
1326
|
+
"name": "requestedAt",
|
|
1327
|
+
"type": "uint32"
|
|
1328
|
+
}
|
|
1329
|
+
],
|
|
1330
|
+
"internalType": "struct Redemption.RedemptionRequest",
|
|
1331
|
+
"name": "",
|
|
1332
|
+
"type": "tuple"
|
|
1333
|
+
}
|
|
1334
|
+
],
|
|
1335
|
+
"stateMutability": "view",
|
|
1336
|
+
"type": "function"
|
|
1337
|
+
},
|
|
1338
|
+
{
|
|
1339
|
+
"inputs": [],
|
|
1340
|
+
"name": "redemptionParameters",
|
|
1341
|
+
"outputs": [
|
|
1342
|
+
{
|
|
1343
|
+
"internalType": "uint64",
|
|
1344
|
+
"name": "redemptionDustThreshold",
|
|
1345
|
+
"type": "uint64"
|
|
1346
|
+
},
|
|
1347
|
+
{
|
|
1348
|
+
"internalType": "uint64",
|
|
1349
|
+
"name": "redemptionTreasuryFeeDivisor",
|
|
1350
|
+
"type": "uint64"
|
|
1351
|
+
},
|
|
1352
|
+
{
|
|
1353
|
+
"internalType": "uint64",
|
|
1354
|
+
"name": "redemptionTxMaxFee",
|
|
1355
|
+
"type": "uint64"
|
|
1356
|
+
},
|
|
1357
|
+
{
|
|
1358
|
+
"internalType": "uint256",
|
|
1359
|
+
"name": "redemptionTimeout",
|
|
1360
|
+
"type": "uint256"
|
|
1361
|
+
},
|
|
1362
|
+
{
|
|
1363
|
+
"internalType": "uint96",
|
|
1364
|
+
"name": "redemptionTimeoutSlashingAmount",
|
|
1365
|
+
"type": "uint96"
|
|
1366
|
+
},
|
|
1367
|
+
{
|
|
1368
|
+
"internalType": "uint256",
|
|
1369
|
+
"name": "redemptionTimeoutNotifierRewardMultiplier",
|
|
1370
|
+
"type": "uint256"
|
|
1371
|
+
}
|
|
1372
|
+
],
|
|
1373
|
+
"stateMutability": "view",
|
|
1374
|
+
"type": "function"
|
|
1375
|
+
},
|
|
1376
|
+
{
|
|
1377
|
+
"inputs": [
|
|
1378
|
+
{
|
|
1379
|
+
"components": [
|
|
1380
|
+
{
|
|
1381
|
+
"internalType": "bytes32",
|
|
1382
|
+
"name": "txHash",
|
|
1383
|
+
"type": "bytes32"
|
|
1384
|
+
},
|
|
1385
|
+
{
|
|
1386
|
+
"internalType": "uint32",
|
|
1387
|
+
"name": "txOutputIndex",
|
|
1388
|
+
"type": "uint32"
|
|
1389
|
+
},
|
|
1390
|
+
{
|
|
1391
|
+
"internalType": "uint64",
|
|
1392
|
+
"name": "txOutputValue",
|
|
1393
|
+
"type": "uint64"
|
|
1394
|
+
}
|
|
1395
|
+
],
|
|
1396
|
+
"internalType": "struct BitcoinTx.UTXO",
|
|
1397
|
+
"name": "activeWalletMainUtxo",
|
|
1398
|
+
"type": "tuple"
|
|
1399
|
+
}
|
|
1400
|
+
],
|
|
1401
|
+
"name": "requestNewWallet",
|
|
1402
|
+
"outputs": [],
|
|
1403
|
+
"stateMutability": "nonpayable",
|
|
1404
|
+
"type": "function"
|
|
1405
|
+
},
|
|
1406
|
+
{
|
|
1407
|
+
"inputs": [
|
|
1408
|
+
{
|
|
1409
|
+
"internalType": "bytes20",
|
|
1410
|
+
"name": "walletPubKeyHash",
|
|
1411
|
+
"type": "bytes20"
|
|
1412
|
+
},
|
|
1413
|
+
{
|
|
1414
|
+
"components": [
|
|
1415
|
+
{
|
|
1416
|
+
"internalType": "bytes32",
|
|
1417
|
+
"name": "txHash",
|
|
1418
|
+
"type": "bytes32"
|
|
1419
|
+
},
|
|
1420
|
+
{
|
|
1421
|
+
"internalType": "uint32",
|
|
1422
|
+
"name": "txOutputIndex",
|
|
1423
|
+
"type": "uint32"
|
|
1424
|
+
},
|
|
1425
|
+
{
|
|
1426
|
+
"internalType": "uint64",
|
|
1427
|
+
"name": "txOutputValue",
|
|
1428
|
+
"type": "uint64"
|
|
1429
|
+
}
|
|
1430
|
+
],
|
|
1431
|
+
"internalType": "struct BitcoinTx.UTXO",
|
|
1432
|
+
"name": "mainUtxo",
|
|
1433
|
+
"type": "tuple"
|
|
1434
|
+
},
|
|
1435
|
+
{
|
|
1436
|
+
"internalType": "bytes",
|
|
1437
|
+
"name": "redeemerOutputScript",
|
|
1438
|
+
"type": "bytes"
|
|
1439
|
+
},
|
|
1440
|
+
{
|
|
1441
|
+
"internalType": "uint64",
|
|
1442
|
+
"name": "amount",
|
|
1443
|
+
"type": "uint64"
|
|
1444
|
+
}
|
|
1445
|
+
],
|
|
1446
|
+
"name": "requestRedemption",
|
|
1447
|
+
"outputs": [],
|
|
1448
|
+
"stateMutability": "nonpayable",
|
|
1449
|
+
"type": "function"
|
|
1450
|
+
},
|
|
1451
|
+
{
|
|
1452
|
+
"inputs": [
|
|
1453
|
+
{
|
|
1454
|
+
"components": [
|
|
1455
|
+
{
|
|
1456
|
+
"internalType": "bytes4",
|
|
1457
|
+
"name": "version",
|
|
1458
|
+
"type": "bytes4"
|
|
1459
|
+
},
|
|
1460
|
+
{
|
|
1461
|
+
"internalType": "bytes",
|
|
1462
|
+
"name": "inputVector",
|
|
1463
|
+
"type": "bytes"
|
|
1464
|
+
},
|
|
1465
|
+
{
|
|
1466
|
+
"internalType": "bytes",
|
|
1467
|
+
"name": "outputVector",
|
|
1468
|
+
"type": "bytes"
|
|
1469
|
+
},
|
|
1470
|
+
{
|
|
1471
|
+
"internalType": "bytes4",
|
|
1472
|
+
"name": "locktime",
|
|
1473
|
+
"type": "bytes4"
|
|
1474
|
+
}
|
|
1475
|
+
],
|
|
1476
|
+
"internalType": "struct BitcoinTx.Info",
|
|
1477
|
+
"name": "fundingTx",
|
|
1478
|
+
"type": "tuple"
|
|
1479
|
+
},
|
|
1480
|
+
{
|
|
1481
|
+
"components": [
|
|
1482
|
+
{
|
|
1483
|
+
"internalType": "uint32",
|
|
1484
|
+
"name": "fundingOutputIndex",
|
|
1485
|
+
"type": "uint32"
|
|
1486
|
+
},
|
|
1487
|
+
{
|
|
1488
|
+
"internalType": "address",
|
|
1489
|
+
"name": "depositor",
|
|
1490
|
+
"type": "address"
|
|
1491
|
+
},
|
|
1492
|
+
{
|
|
1493
|
+
"internalType": "bytes8",
|
|
1494
|
+
"name": "blindingFactor",
|
|
1495
|
+
"type": "bytes8"
|
|
1496
|
+
},
|
|
1497
|
+
{
|
|
1498
|
+
"internalType": "bytes20",
|
|
1499
|
+
"name": "walletPubKeyHash",
|
|
1500
|
+
"type": "bytes20"
|
|
1501
|
+
},
|
|
1502
|
+
{
|
|
1503
|
+
"internalType": "bytes20",
|
|
1504
|
+
"name": "refundPubKeyHash",
|
|
1505
|
+
"type": "bytes20"
|
|
1506
|
+
},
|
|
1507
|
+
{
|
|
1508
|
+
"internalType": "bytes4",
|
|
1509
|
+
"name": "refundLocktime",
|
|
1510
|
+
"type": "bytes4"
|
|
1511
|
+
},
|
|
1512
|
+
{
|
|
1513
|
+
"internalType": "address",
|
|
1514
|
+
"name": "vault",
|
|
1515
|
+
"type": "address"
|
|
1516
|
+
}
|
|
1517
|
+
],
|
|
1518
|
+
"internalType": "struct Deposit.DepositRevealInfo",
|
|
1519
|
+
"name": "reveal",
|
|
1520
|
+
"type": "tuple"
|
|
1521
|
+
}
|
|
1522
|
+
],
|
|
1523
|
+
"name": "revealDeposit",
|
|
1524
|
+
"outputs": [],
|
|
1525
|
+
"stateMutability": "nonpayable",
|
|
1526
|
+
"type": "function"
|
|
1527
|
+
},
|
|
1528
|
+
{
|
|
1529
|
+
"inputs": [
|
|
1530
|
+
{
|
|
1531
|
+
"internalType": "address",
|
|
1532
|
+
"name": "vault",
|
|
1533
|
+
"type": "address"
|
|
1534
|
+
},
|
|
1535
|
+
{
|
|
1536
|
+
"internalType": "bool",
|
|
1537
|
+
"name": "isTrusted",
|
|
1538
|
+
"type": "bool"
|
|
1539
|
+
}
|
|
1540
|
+
],
|
|
1541
|
+
"name": "setVaultStatus",
|
|
1542
|
+
"outputs": [],
|
|
1543
|
+
"stateMutability": "nonpayable",
|
|
1544
|
+
"type": "function"
|
|
1545
|
+
},
|
|
1546
|
+
{
|
|
1547
|
+
"inputs": [
|
|
1548
|
+
{
|
|
1549
|
+
"internalType": "uint256",
|
|
1550
|
+
"name": "utxoKey",
|
|
1551
|
+
"type": "uint256"
|
|
1552
|
+
}
|
|
1553
|
+
],
|
|
1554
|
+
"name": "spentMainUTXOs",
|
|
1555
|
+
"outputs": [
|
|
1556
|
+
{
|
|
1557
|
+
"internalType": "bool",
|
|
1558
|
+
"name": "",
|
|
1559
|
+
"type": "bool"
|
|
1560
|
+
}
|
|
1561
|
+
],
|
|
1562
|
+
"stateMutability": "view",
|
|
1563
|
+
"type": "function"
|
|
1564
|
+
},
|
|
1565
|
+
{
|
|
1566
|
+
"inputs": [
|
|
1567
|
+
{
|
|
1568
|
+
"components": [
|
|
1569
|
+
{
|
|
1570
|
+
"internalType": "bytes4",
|
|
1571
|
+
"name": "version",
|
|
1572
|
+
"type": "bytes4"
|
|
1573
|
+
},
|
|
1574
|
+
{
|
|
1575
|
+
"internalType": "bytes",
|
|
1576
|
+
"name": "inputVector",
|
|
1577
|
+
"type": "bytes"
|
|
1578
|
+
},
|
|
1579
|
+
{
|
|
1580
|
+
"internalType": "bytes",
|
|
1581
|
+
"name": "outputVector",
|
|
1582
|
+
"type": "bytes"
|
|
1583
|
+
},
|
|
1584
|
+
{
|
|
1585
|
+
"internalType": "bytes4",
|
|
1586
|
+
"name": "locktime",
|
|
1587
|
+
"type": "bytes4"
|
|
1588
|
+
}
|
|
1589
|
+
],
|
|
1590
|
+
"internalType": "struct BitcoinTx.Info",
|
|
1591
|
+
"name": "sweepTx",
|
|
1592
|
+
"type": "tuple"
|
|
1593
|
+
},
|
|
1594
|
+
{
|
|
1595
|
+
"components": [
|
|
1596
|
+
{
|
|
1597
|
+
"internalType": "bytes",
|
|
1598
|
+
"name": "merkleProof",
|
|
1599
|
+
"type": "bytes"
|
|
1600
|
+
},
|
|
1601
|
+
{
|
|
1602
|
+
"internalType": "uint256",
|
|
1603
|
+
"name": "txIndexInBlock",
|
|
1604
|
+
"type": "uint256"
|
|
1605
|
+
},
|
|
1606
|
+
{
|
|
1607
|
+
"internalType": "bytes",
|
|
1608
|
+
"name": "bitcoinHeaders",
|
|
1609
|
+
"type": "bytes"
|
|
1610
|
+
}
|
|
1611
|
+
],
|
|
1612
|
+
"internalType": "struct BitcoinTx.Proof",
|
|
1613
|
+
"name": "sweepProof",
|
|
1614
|
+
"type": "tuple"
|
|
1615
|
+
},
|
|
1616
|
+
{
|
|
1617
|
+
"components": [
|
|
1618
|
+
{
|
|
1619
|
+
"internalType": "bytes32",
|
|
1620
|
+
"name": "txHash",
|
|
1621
|
+
"type": "bytes32"
|
|
1622
|
+
},
|
|
1623
|
+
{
|
|
1624
|
+
"internalType": "uint32",
|
|
1625
|
+
"name": "txOutputIndex",
|
|
1626
|
+
"type": "uint32"
|
|
1627
|
+
},
|
|
1628
|
+
{
|
|
1629
|
+
"internalType": "uint64",
|
|
1630
|
+
"name": "txOutputValue",
|
|
1631
|
+
"type": "uint64"
|
|
1632
|
+
}
|
|
1633
|
+
],
|
|
1634
|
+
"internalType": "struct BitcoinTx.UTXO",
|
|
1635
|
+
"name": "mainUtxo",
|
|
1636
|
+
"type": "tuple"
|
|
1637
|
+
}
|
|
1638
|
+
],
|
|
1639
|
+
"name": "submitDepositSweepProof",
|
|
1640
|
+
"outputs": [],
|
|
1641
|
+
"stateMutability": "nonpayable",
|
|
1642
|
+
"type": "function"
|
|
1643
|
+
},
|
|
1644
|
+
{
|
|
1645
|
+
"inputs": [
|
|
1646
|
+
{
|
|
1647
|
+
"internalType": "bytes",
|
|
1648
|
+
"name": "walletPublicKey",
|
|
1649
|
+
"type": "bytes"
|
|
1650
|
+
},
|
|
1651
|
+
{
|
|
1652
|
+
"internalType": "bytes32",
|
|
1653
|
+
"name": "sighash",
|
|
1654
|
+
"type": "bytes32"
|
|
1655
|
+
},
|
|
1656
|
+
{
|
|
1657
|
+
"components": [
|
|
1658
|
+
{
|
|
1659
|
+
"internalType": "bytes32",
|
|
1660
|
+
"name": "r",
|
|
1661
|
+
"type": "bytes32"
|
|
1662
|
+
},
|
|
1663
|
+
{
|
|
1664
|
+
"internalType": "bytes32",
|
|
1665
|
+
"name": "s",
|
|
1666
|
+
"type": "bytes32"
|
|
1667
|
+
},
|
|
1668
|
+
{
|
|
1669
|
+
"internalType": "uint8",
|
|
1670
|
+
"name": "v",
|
|
1671
|
+
"type": "uint8"
|
|
1672
|
+
}
|
|
1673
|
+
],
|
|
1674
|
+
"internalType": "struct BitcoinTx.RSVSignature",
|
|
1675
|
+
"name": "signature",
|
|
1676
|
+
"type": "tuple"
|
|
1677
|
+
}
|
|
1678
|
+
],
|
|
1679
|
+
"name": "submitFraudChallenge",
|
|
1680
|
+
"outputs": [],
|
|
1681
|
+
"stateMutability": "payable",
|
|
1682
|
+
"type": "function"
|
|
1683
|
+
},
|
|
1684
|
+
{
|
|
1685
|
+
"inputs": [
|
|
1686
|
+
{
|
|
1687
|
+
"components": [
|
|
1688
|
+
{
|
|
1689
|
+
"internalType": "bytes4",
|
|
1690
|
+
"name": "version",
|
|
1691
|
+
"type": "bytes4"
|
|
1692
|
+
},
|
|
1693
|
+
{
|
|
1694
|
+
"internalType": "bytes",
|
|
1695
|
+
"name": "inputVector",
|
|
1696
|
+
"type": "bytes"
|
|
1697
|
+
},
|
|
1698
|
+
{
|
|
1699
|
+
"internalType": "bytes",
|
|
1700
|
+
"name": "outputVector",
|
|
1701
|
+
"type": "bytes"
|
|
1702
|
+
},
|
|
1703
|
+
{
|
|
1704
|
+
"internalType": "bytes4",
|
|
1705
|
+
"name": "locktime",
|
|
1706
|
+
"type": "bytes4"
|
|
1707
|
+
}
|
|
1708
|
+
],
|
|
1709
|
+
"internalType": "struct BitcoinTx.Info",
|
|
1710
|
+
"name": "sweepTx",
|
|
1711
|
+
"type": "tuple"
|
|
1712
|
+
},
|
|
1713
|
+
{
|
|
1714
|
+
"components": [
|
|
1715
|
+
{
|
|
1716
|
+
"internalType": "bytes",
|
|
1717
|
+
"name": "merkleProof",
|
|
1718
|
+
"type": "bytes"
|
|
1719
|
+
},
|
|
1720
|
+
{
|
|
1721
|
+
"internalType": "uint256",
|
|
1722
|
+
"name": "txIndexInBlock",
|
|
1723
|
+
"type": "uint256"
|
|
1724
|
+
},
|
|
1725
|
+
{
|
|
1726
|
+
"internalType": "bytes",
|
|
1727
|
+
"name": "bitcoinHeaders",
|
|
1728
|
+
"type": "bytes"
|
|
1729
|
+
}
|
|
1730
|
+
],
|
|
1731
|
+
"internalType": "struct BitcoinTx.Proof",
|
|
1732
|
+
"name": "sweepProof",
|
|
1733
|
+
"type": "tuple"
|
|
1734
|
+
},
|
|
1735
|
+
{
|
|
1736
|
+
"components": [
|
|
1737
|
+
{
|
|
1738
|
+
"internalType": "bytes32",
|
|
1739
|
+
"name": "txHash",
|
|
1740
|
+
"type": "bytes32"
|
|
1741
|
+
},
|
|
1742
|
+
{
|
|
1743
|
+
"internalType": "uint32",
|
|
1744
|
+
"name": "txOutputIndex",
|
|
1745
|
+
"type": "uint32"
|
|
1746
|
+
},
|
|
1747
|
+
{
|
|
1748
|
+
"internalType": "uint64",
|
|
1749
|
+
"name": "txOutputValue",
|
|
1750
|
+
"type": "uint64"
|
|
1751
|
+
}
|
|
1752
|
+
],
|
|
1753
|
+
"internalType": "struct BitcoinTx.UTXO",
|
|
1754
|
+
"name": "mainUtxo",
|
|
1755
|
+
"type": "tuple"
|
|
1756
|
+
}
|
|
1757
|
+
],
|
|
1758
|
+
"name": "submitMovedFundsSweepProof",
|
|
1759
|
+
"outputs": [],
|
|
1760
|
+
"stateMutability": "nonpayable",
|
|
1761
|
+
"type": "function"
|
|
1762
|
+
},
|
|
1763
|
+
{
|
|
1764
|
+
"inputs": [
|
|
1765
|
+
{
|
|
1766
|
+
"internalType": "bytes20",
|
|
1767
|
+
"name": "walletPubKeyHash",
|
|
1768
|
+
"type": "bytes20"
|
|
1769
|
+
},
|
|
1770
|
+
{
|
|
1771
|
+
"components": [
|
|
1772
|
+
{
|
|
1773
|
+
"internalType": "bytes32",
|
|
1774
|
+
"name": "txHash",
|
|
1775
|
+
"type": "bytes32"
|
|
1776
|
+
},
|
|
1777
|
+
{
|
|
1778
|
+
"internalType": "uint32",
|
|
1779
|
+
"name": "txOutputIndex",
|
|
1780
|
+
"type": "uint32"
|
|
1781
|
+
},
|
|
1782
|
+
{
|
|
1783
|
+
"internalType": "uint64",
|
|
1784
|
+
"name": "txOutputValue",
|
|
1785
|
+
"type": "uint64"
|
|
1786
|
+
}
|
|
1787
|
+
],
|
|
1788
|
+
"internalType": "struct BitcoinTx.UTXO",
|
|
1789
|
+
"name": "walletMainUtxo",
|
|
1790
|
+
"type": "tuple"
|
|
1791
|
+
},
|
|
1792
|
+
{
|
|
1793
|
+
"internalType": "uint32[]",
|
|
1794
|
+
"name": "walletMembersIDs",
|
|
1795
|
+
"type": "uint32[]"
|
|
1796
|
+
},
|
|
1797
|
+
{
|
|
1798
|
+
"internalType": "uint256",
|
|
1799
|
+
"name": "walletMemberIndex",
|
|
1800
|
+
"type": "uint256"
|
|
1801
|
+
},
|
|
1802
|
+
{
|
|
1803
|
+
"internalType": "bytes20[]",
|
|
1804
|
+
"name": "targetWallets",
|
|
1805
|
+
"type": "bytes20[]"
|
|
1806
|
+
}
|
|
1807
|
+
],
|
|
1808
|
+
"name": "submitMovingFundsCommitment",
|
|
1809
|
+
"outputs": [],
|
|
1810
|
+
"stateMutability": "nonpayable",
|
|
1811
|
+
"type": "function"
|
|
1812
|
+
},
|
|
1813
|
+
{
|
|
1814
|
+
"inputs": [
|
|
1815
|
+
{
|
|
1816
|
+
"components": [
|
|
1817
|
+
{
|
|
1818
|
+
"internalType": "bytes4",
|
|
1819
|
+
"name": "version",
|
|
1820
|
+
"type": "bytes4"
|
|
1821
|
+
},
|
|
1822
|
+
{
|
|
1823
|
+
"internalType": "bytes",
|
|
1824
|
+
"name": "inputVector",
|
|
1825
|
+
"type": "bytes"
|
|
1826
|
+
},
|
|
1827
|
+
{
|
|
1828
|
+
"internalType": "bytes",
|
|
1829
|
+
"name": "outputVector",
|
|
1830
|
+
"type": "bytes"
|
|
1831
|
+
},
|
|
1832
|
+
{
|
|
1833
|
+
"internalType": "bytes4",
|
|
1834
|
+
"name": "locktime",
|
|
1835
|
+
"type": "bytes4"
|
|
1836
|
+
}
|
|
1837
|
+
],
|
|
1838
|
+
"internalType": "struct BitcoinTx.Info",
|
|
1839
|
+
"name": "movingFundsTx",
|
|
1840
|
+
"type": "tuple"
|
|
1841
|
+
},
|
|
1842
|
+
{
|
|
1843
|
+
"components": [
|
|
1844
|
+
{
|
|
1845
|
+
"internalType": "bytes",
|
|
1846
|
+
"name": "merkleProof",
|
|
1847
|
+
"type": "bytes"
|
|
1848
|
+
},
|
|
1849
|
+
{
|
|
1850
|
+
"internalType": "uint256",
|
|
1851
|
+
"name": "txIndexInBlock",
|
|
1852
|
+
"type": "uint256"
|
|
1853
|
+
},
|
|
1854
|
+
{
|
|
1855
|
+
"internalType": "bytes",
|
|
1856
|
+
"name": "bitcoinHeaders",
|
|
1857
|
+
"type": "bytes"
|
|
1858
|
+
}
|
|
1859
|
+
],
|
|
1860
|
+
"internalType": "struct BitcoinTx.Proof",
|
|
1861
|
+
"name": "movingFundsProof",
|
|
1862
|
+
"type": "tuple"
|
|
1863
|
+
},
|
|
1864
|
+
{
|
|
1865
|
+
"components": [
|
|
1866
|
+
{
|
|
1867
|
+
"internalType": "bytes32",
|
|
1868
|
+
"name": "txHash",
|
|
1869
|
+
"type": "bytes32"
|
|
1870
|
+
},
|
|
1871
|
+
{
|
|
1872
|
+
"internalType": "uint32",
|
|
1873
|
+
"name": "txOutputIndex",
|
|
1874
|
+
"type": "uint32"
|
|
1875
|
+
},
|
|
1876
|
+
{
|
|
1877
|
+
"internalType": "uint64",
|
|
1878
|
+
"name": "txOutputValue",
|
|
1879
|
+
"type": "uint64"
|
|
1880
|
+
}
|
|
1881
|
+
],
|
|
1882
|
+
"internalType": "struct BitcoinTx.UTXO",
|
|
1883
|
+
"name": "mainUtxo",
|
|
1884
|
+
"type": "tuple"
|
|
1885
|
+
},
|
|
1886
|
+
{
|
|
1887
|
+
"internalType": "bytes20",
|
|
1888
|
+
"name": "walletPubKeyHash",
|
|
1889
|
+
"type": "bytes20"
|
|
1890
|
+
}
|
|
1891
|
+
],
|
|
1892
|
+
"name": "submitMovingFundsProof",
|
|
1893
|
+
"outputs": [],
|
|
1894
|
+
"stateMutability": "nonpayable",
|
|
1895
|
+
"type": "function"
|
|
1896
|
+
},
|
|
1897
|
+
{
|
|
1898
|
+
"inputs": [
|
|
1899
|
+
{
|
|
1900
|
+
"components": [
|
|
1901
|
+
{
|
|
1902
|
+
"internalType": "bytes4",
|
|
1903
|
+
"name": "version",
|
|
1904
|
+
"type": "bytes4"
|
|
1905
|
+
},
|
|
1906
|
+
{
|
|
1907
|
+
"internalType": "bytes",
|
|
1908
|
+
"name": "inputVector",
|
|
1909
|
+
"type": "bytes"
|
|
1910
|
+
},
|
|
1911
|
+
{
|
|
1912
|
+
"internalType": "bytes",
|
|
1913
|
+
"name": "outputVector",
|
|
1914
|
+
"type": "bytes"
|
|
1915
|
+
},
|
|
1916
|
+
{
|
|
1917
|
+
"internalType": "bytes4",
|
|
1918
|
+
"name": "locktime",
|
|
1919
|
+
"type": "bytes4"
|
|
1920
|
+
}
|
|
1921
|
+
],
|
|
1922
|
+
"internalType": "struct BitcoinTx.Info",
|
|
1923
|
+
"name": "redemptionTx",
|
|
1924
|
+
"type": "tuple"
|
|
1925
|
+
},
|
|
1926
|
+
{
|
|
1927
|
+
"components": [
|
|
1928
|
+
{
|
|
1929
|
+
"internalType": "bytes",
|
|
1930
|
+
"name": "merkleProof",
|
|
1931
|
+
"type": "bytes"
|
|
1932
|
+
},
|
|
1933
|
+
{
|
|
1934
|
+
"internalType": "uint256",
|
|
1935
|
+
"name": "txIndexInBlock",
|
|
1936
|
+
"type": "uint256"
|
|
1937
|
+
},
|
|
1938
|
+
{
|
|
1939
|
+
"internalType": "bytes",
|
|
1940
|
+
"name": "bitcoinHeaders",
|
|
1941
|
+
"type": "bytes"
|
|
1942
|
+
}
|
|
1943
|
+
],
|
|
1944
|
+
"internalType": "struct BitcoinTx.Proof",
|
|
1945
|
+
"name": "redemptionProof",
|
|
1946
|
+
"type": "tuple"
|
|
1947
|
+
},
|
|
1948
|
+
{
|
|
1949
|
+
"components": [
|
|
1950
|
+
{
|
|
1951
|
+
"internalType": "bytes32",
|
|
1952
|
+
"name": "txHash",
|
|
1953
|
+
"type": "bytes32"
|
|
1954
|
+
},
|
|
1955
|
+
{
|
|
1956
|
+
"internalType": "uint32",
|
|
1957
|
+
"name": "txOutputIndex",
|
|
1958
|
+
"type": "uint32"
|
|
1959
|
+
},
|
|
1960
|
+
{
|
|
1961
|
+
"internalType": "uint64",
|
|
1962
|
+
"name": "txOutputValue",
|
|
1963
|
+
"type": "uint64"
|
|
1964
|
+
}
|
|
1965
|
+
],
|
|
1966
|
+
"internalType": "struct BitcoinTx.UTXO",
|
|
1967
|
+
"name": "mainUtxo",
|
|
1968
|
+
"type": "tuple"
|
|
1969
|
+
},
|
|
1970
|
+
{
|
|
1971
|
+
"internalType": "bytes20",
|
|
1972
|
+
"name": "walletPubKeyHash",
|
|
1973
|
+
"type": "bytes20"
|
|
1974
|
+
}
|
|
1975
|
+
],
|
|
1976
|
+
"name": "submitRedemptionProof",
|
|
1977
|
+
"outputs": [],
|
|
1978
|
+
"stateMutability": "nonpayable",
|
|
1979
|
+
"type": "function"
|
|
1980
|
+
},
|
|
1981
|
+
{
|
|
1982
|
+
"inputs": [
|
|
1983
|
+
{
|
|
1984
|
+
"internalType": "uint256",
|
|
1985
|
+
"name": "redemptionKey",
|
|
1986
|
+
"type": "uint256"
|
|
1987
|
+
}
|
|
1988
|
+
],
|
|
1989
|
+
"name": "timedOutRedemptions",
|
|
1990
|
+
"outputs": [
|
|
1991
|
+
{
|
|
1992
|
+
"components": [
|
|
1993
|
+
{
|
|
1994
|
+
"internalType": "address",
|
|
1995
|
+
"name": "redeemer",
|
|
1996
|
+
"type": "address"
|
|
1997
|
+
},
|
|
1998
|
+
{
|
|
1999
|
+
"internalType": "uint64",
|
|
2000
|
+
"name": "requestedAmount",
|
|
2001
|
+
"type": "uint64"
|
|
2002
|
+
},
|
|
2003
|
+
{
|
|
2004
|
+
"internalType": "uint64",
|
|
2005
|
+
"name": "treasuryFee",
|
|
2006
|
+
"type": "uint64"
|
|
2007
|
+
},
|
|
2008
|
+
{
|
|
2009
|
+
"internalType": "uint64",
|
|
2010
|
+
"name": "txMaxFee",
|
|
2011
|
+
"type": "uint64"
|
|
2012
|
+
},
|
|
2013
|
+
{
|
|
2014
|
+
"internalType": "uint32",
|
|
2015
|
+
"name": "requestedAt",
|
|
2016
|
+
"type": "uint32"
|
|
2017
|
+
}
|
|
2018
|
+
],
|
|
2019
|
+
"internalType": "struct Redemption.RedemptionRequest",
|
|
2020
|
+
"name": "",
|
|
2021
|
+
"type": "tuple"
|
|
2022
|
+
}
|
|
2023
|
+
],
|
|
2024
|
+
"stateMutability": "view",
|
|
2025
|
+
"type": "function"
|
|
2026
|
+
},
|
|
2027
|
+
{
|
|
2028
|
+
"inputs": [
|
|
2029
|
+
{
|
|
2030
|
+
"internalType": "address",
|
|
2031
|
+
"name": "newGovernance",
|
|
2032
|
+
"type": "address"
|
|
2033
|
+
}
|
|
2034
|
+
],
|
|
2035
|
+
"name": "transferGovernance",
|
|
2036
|
+
"outputs": [],
|
|
2037
|
+
"stateMutability": "nonpayable",
|
|
2038
|
+
"type": "function"
|
|
2039
|
+
},
|
|
2040
|
+
{
|
|
2041
|
+
"inputs": [],
|
|
2042
|
+
"name": "treasury",
|
|
2043
|
+
"outputs": [
|
|
2044
|
+
{
|
|
2045
|
+
"internalType": "address",
|
|
2046
|
+
"name": "",
|
|
2047
|
+
"type": "address"
|
|
2048
|
+
}
|
|
2049
|
+
],
|
|
2050
|
+
"stateMutability": "view",
|
|
2051
|
+
"type": "function"
|
|
2052
|
+
},
|
|
2053
|
+
{
|
|
2054
|
+
"inputs": [],
|
|
2055
|
+
"name": "txProofDifficultyFactor",
|
|
2056
|
+
"outputs": [
|
|
2057
|
+
{
|
|
2058
|
+
"internalType": "uint256",
|
|
2059
|
+
"name": "",
|
|
2060
|
+
"type": "uint256"
|
|
2061
|
+
}
|
|
2062
|
+
],
|
|
2063
|
+
"stateMutability": "view",
|
|
2064
|
+
"type": "function"
|
|
2065
|
+
},
|
|
2066
|
+
{
|
|
2067
|
+
"inputs": [
|
|
2068
|
+
{
|
|
2069
|
+
"internalType": "uint64",
|
|
2070
|
+
"name": "depositDustThreshold",
|
|
2071
|
+
"type": "uint64"
|
|
2072
|
+
},
|
|
2073
|
+
{
|
|
2074
|
+
"internalType": "uint64",
|
|
2075
|
+
"name": "depositTreasuryFeeDivisor",
|
|
2076
|
+
"type": "uint64"
|
|
2077
|
+
},
|
|
2078
|
+
{
|
|
2079
|
+
"internalType": "uint64",
|
|
2080
|
+
"name": "depositTxMaxFee",
|
|
2081
|
+
"type": "uint64"
|
|
2082
|
+
}
|
|
2083
|
+
],
|
|
2084
|
+
"name": "updateDepositParameters",
|
|
2085
|
+
"outputs": [],
|
|
2086
|
+
"stateMutability": "nonpayable",
|
|
2087
|
+
"type": "function"
|
|
2088
|
+
},
|
|
2089
|
+
{
|
|
2090
|
+
"inputs": [
|
|
2091
|
+
{
|
|
2092
|
+
"internalType": "uint256",
|
|
2093
|
+
"name": "fraudChallengeDepositAmount",
|
|
2094
|
+
"type": "uint256"
|
|
2095
|
+
},
|
|
2096
|
+
{
|
|
2097
|
+
"internalType": "uint256",
|
|
2098
|
+
"name": "fraudChallengeDefeatTimeout",
|
|
2099
|
+
"type": "uint256"
|
|
2100
|
+
},
|
|
2101
|
+
{
|
|
2102
|
+
"internalType": "uint96",
|
|
2103
|
+
"name": "fraudSlashingAmount",
|
|
2104
|
+
"type": "uint96"
|
|
2105
|
+
},
|
|
2106
|
+
{
|
|
2107
|
+
"internalType": "uint256",
|
|
2108
|
+
"name": "fraudNotifierRewardMultiplier",
|
|
2109
|
+
"type": "uint256"
|
|
2110
|
+
}
|
|
2111
|
+
],
|
|
2112
|
+
"name": "updateFraudParameters",
|
|
2113
|
+
"outputs": [],
|
|
2114
|
+
"stateMutability": "nonpayable",
|
|
2115
|
+
"type": "function"
|
|
2116
|
+
},
|
|
2117
|
+
{
|
|
2118
|
+
"inputs": [
|
|
2119
|
+
{
|
|
2120
|
+
"internalType": "uint64",
|
|
2121
|
+
"name": "movingFundsTxMaxTotalFee",
|
|
2122
|
+
"type": "uint64"
|
|
2123
|
+
},
|
|
2124
|
+
{
|
|
2125
|
+
"internalType": "uint64",
|
|
2126
|
+
"name": "movingFundsDustThreshold",
|
|
2127
|
+
"type": "uint64"
|
|
2128
|
+
},
|
|
2129
|
+
{
|
|
2130
|
+
"internalType": "uint32",
|
|
2131
|
+
"name": "movingFundsTimeout",
|
|
2132
|
+
"type": "uint32"
|
|
2133
|
+
},
|
|
2134
|
+
{
|
|
2135
|
+
"internalType": "uint96",
|
|
2136
|
+
"name": "movingFundsTimeoutSlashingAmount",
|
|
2137
|
+
"type": "uint96"
|
|
2138
|
+
},
|
|
2139
|
+
{
|
|
2140
|
+
"internalType": "uint256",
|
|
2141
|
+
"name": "movingFundsTimeoutNotifierRewardMultiplier",
|
|
2142
|
+
"type": "uint256"
|
|
2143
|
+
},
|
|
2144
|
+
{
|
|
2145
|
+
"internalType": "uint64",
|
|
2146
|
+
"name": "movedFundsSweepTxMaxTotalFee",
|
|
2147
|
+
"type": "uint64"
|
|
2148
|
+
},
|
|
2149
|
+
{
|
|
2150
|
+
"internalType": "uint32",
|
|
2151
|
+
"name": "movedFundsSweepTimeout",
|
|
2152
|
+
"type": "uint32"
|
|
2153
|
+
},
|
|
2154
|
+
{
|
|
2155
|
+
"internalType": "uint96",
|
|
2156
|
+
"name": "movedFundsSweepTimeoutSlashingAmount",
|
|
2157
|
+
"type": "uint96"
|
|
2158
|
+
},
|
|
2159
|
+
{
|
|
2160
|
+
"internalType": "uint256",
|
|
2161
|
+
"name": "movedFundsSweepTimeoutNotifierRewardMultiplier",
|
|
2162
|
+
"type": "uint256"
|
|
2163
|
+
}
|
|
2164
|
+
],
|
|
2165
|
+
"name": "updateMovingFundsParameters",
|
|
2166
|
+
"outputs": [],
|
|
2167
|
+
"stateMutability": "nonpayable",
|
|
2168
|
+
"type": "function"
|
|
2169
|
+
},
|
|
2170
|
+
{
|
|
2171
|
+
"inputs": [
|
|
2172
|
+
{
|
|
2173
|
+
"internalType": "uint64",
|
|
2174
|
+
"name": "redemptionDustThreshold",
|
|
2175
|
+
"type": "uint64"
|
|
2176
|
+
},
|
|
2177
|
+
{
|
|
2178
|
+
"internalType": "uint64",
|
|
2179
|
+
"name": "redemptionTreasuryFeeDivisor",
|
|
2180
|
+
"type": "uint64"
|
|
2181
|
+
},
|
|
2182
|
+
{
|
|
2183
|
+
"internalType": "uint64",
|
|
2184
|
+
"name": "redemptionTxMaxFee",
|
|
2185
|
+
"type": "uint64"
|
|
2186
|
+
},
|
|
2187
|
+
{
|
|
2188
|
+
"internalType": "uint256",
|
|
2189
|
+
"name": "redemptionTimeout",
|
|
2190
|
+
"type": "uint256"
|
|
2191
|
+
},
|
|
2192
|
+
{
|
|
2193
|
+
"internalType": "uint96",
|
|
2194
|
+
"name": "redemptionTimeoutSlashingAmount",
|
|
2195
|
+
"type": "uint96"
|
|
2196
|
+
},
|
|
2197
|
+
{
|
|
2198
|
+
"internalType": "uint256",
|
|
2199
|
+
"name": "redemptionTimeoutNotifierRewardMultiplier",
|
|
2200
|
+
"type": "uint256"
|
|
2201
|
+
}
|
|
2202
|
+
],
|
|
2203
|
+
"name": "updateRedemptionParameters",
|
|
2204
|
+
"outputs": [],
|
|
2205
|
+
"stateMutability": "nonpayable",
|
|
2206
|
+
"type": "function"
|
|
2207
|
+
},
|
|
2208
|
+
{
|
|
2209
|
+
"inputs": [
|
|
2210
|
+
{
|
|
2211
|
+
"internalType": "uint32",
|
|
2212
|
+
"name": "walletCreationPeriod",
|
|
2213
|
+
"type": "uint32"
|
|
2214
|
+
},
|
|
2215
|
+
{
|
|
2216
|
+
"internalType": "uint64",
|
|
2217
|
+
"name": "walletCreationMinBtcBalance",
|
|
2218
|
+
"type": "uint64"
|
|
2219
|
+
},
|
|
2220
|
+
{
|
|
2221
|
+
"internalType": "uint64",
|
|
2222
|
+
"name": "walletCreationMaxBtcBalance",
|
|
2223
|
+
"type": "uint64"
|
|
2224
|
+
},
|
|
2225
|
+
{
|
|
2226
|
+
"internalType": "uint64",
|
|
2227
|
+
"name": "walletClosureMinBtcBalance",
|
|
2228
|
+
"type": "uint64"
|
|
2229
|
+
},
|
|
2230
|
+
{
|
|
2231
|
+
"internalType": "uint32",
|
|
2232
|
+
"name": "walletMaxAge",
|
|
2233
|
+
"type": "uint32"
|
|
2234
|
+
},
|
|
2235
|
+
{
|
|
2236
|
+
"internalType": "uint64",
|
|
2237
|
+
"name": "walletMaxBtcTransfer",
|
|
2238
|
+
"type": "uint64"
|
|
2239
|
+
},
|
|
2240
|
+
{
|
|
2241
|
+
"internalType": "uint32",
|
|
2242
|
+
"name": "walletClosingPeriod",
|
|
2243
|
+
"type": "uint32"
|
|
2244
|
+
}
|
|
2245
|
+
],
|
|
2246
|
+
"name": "updateWalletParameters",
|
|
2247
|
+
"outputs": [],
|
|
2248
|
+
"stateMutability": "nonpayable",
|
|
2249
|
+
"type": "function"
|
|
2250
|
+
},
|
|
2251
|
+
{
|
|
2252
|
+
"inputs": [],
|
|
2253
|
+
"name": "walletParameters",
|
|
2254
|
+
"outputs": [
|
|
2255
|
+
{
|
|
2256
|
+
"internalType": "uint32",
|
|
2257
|
+
"name": "walletCreationPeriod",
|
|
2258
|
+
"type": "uint32"
|
|
2259
|
+
},
|
|
2260
|
+
{
|
|
2261
|
+
"internalType": "uint64",
|
|
2262
|
+
"name": "walletCreationMinBtcBalance",
|
|
2263
|
+
"type": "uint64"
|
|
2264
|
+
},
|
|
2265
|
+
{
|
|
2266
|
+
"internalType": "uint64",
|
|
2267
|
+
"name": "walletCreationMaxBtcBalance",
|
|
2268
|
+
"type": "uint64"
|
|
2269
|
+
},
|
|
2270
|
+
{
|
|
2271
|
+
"internalType": "uint64",
|
|
2272
|
+
"name": "walletClosureMinBtcBalance",
|
|
2273
|
+
"type": "uint64"
|
|
2274
|
+
},
|
|
2275
|
+
{
|
|
2276
|
+
"internalType": "uint32",
|
|
2277
|
+
"name": "walletMaxAge",
|
|
2278
|
+
"type": "uint32"
|
|
2279
|
+
},
|
|
2280
|
+
{
|
|
2281
|
+
"internalType": "uint64",
|
|
2282
|
+
"name": "walletMaxBtcTransfer",
|
|
2283
|
+
"type": "uint64"
|
|
2284
|
+
},
|
|
2285
|
+
{
|
|
2286
|
+
"internalType": "uint32",
|
|
2287
|
+
"name": "walletClosingPeriod",
|
|
2288
|
+
"type": "uint32"
|
|
2289
|
+
}
|
|
2290
|
+
],
|
|
2291
|
+
"stateMutability": "view",
|
|
2292
|
+
"type": "function"
|
|
2293
|
+
},
|
|
2294
|
+
{
|
|
2295
|
+
"inputs": [
|
|
2296
|
+
{
|
|
2297
|
+
"internalType": "bytes20",
|
|
2298
|
+
"name": "walletPubKeyHash",
|
|
2299
|
+
"type": "bytes20"
|
|
2300
|
+
}
|
|
2301
|
+
],
|
|
2302
|
+
"name": "wallets",
|
|
2303
|
+
"outputs": [
|
|
2304
|
+
{
|
|
2305
|
+
"components": [
|
|
2306
|
+
{
|
|
2307
|
+
"internalType": "bytes32",
|
|
2308
|
+
"name": "ecdsaWalletID",
|
|
2309
|
+
"type": "bytes32"
|
|
2310
|
+
},
|
|
2311
|
+
{
|
|
2312
|
+
"internalType": "bytes32",
|
|
2313
|
+
"name": "mainUtxoHash",
|
|
2314
|
+
"type": "bytes32"
|
|
2315
|
+
},
|
|
2316
|
+
{
|
|
2317
|
+
"internalType": "uint64",
|
|
2318
|
+
"name": "pendingRedemptionsValue",
|
|
2319
|
+
"type": "uint64"
|
|
2320
|
+
},
|
|
2321
|
+
{
|
|
2322
|
+
"internalType": "uint32",
|
|
2323
|
+
"name": "createdAt",
|
|
2324
|
+
"type": "uint32"
|
|
2325
|
+
},
|
|
2326
|
+
{
|
|
2327
|
+
"internalType": "uint32",
|
|
2328
|
+
"name": "movingFundsRequestedAt",
|
|
2329
|
+
"type": "uint32"
|
|
2330
|
+
},
|
|
2331
|
+
{
|
|
2332
|
+
"internalType": "uint32",
|
|
2333
|
+
"name": "closingStartedAt",
|
|
2334
|
+
"type": "uint32"
|
|
2335
|
+
},
|
|
2336
|
+
{
|
|
2337
|
+
"internalType": "uint32",
|
|
2338
|
+
"name": "pendingMovedFundsSweepRequestsCount",
|
|
2339
|
+
"type": "uint32"
|
|
2340
|
+
},
|
|
2341
|
+
{
|
|
2342
|
+
"internalType": "enum Wallets.WalletState",
|
|
2343
|
+
"name": "state",
|
|
2344
|
+
"type": "uint8"
|
|
2345
|
+
},
|
|
2346
|
+
{
|
|
2347
|
+
"internalType": "bytes32",
|
|
2348
|
+
"name": "movingFundsTargetWalletsCommitmentHash",
|
|
2349
|
+
"type": "bytes32"
|
|
2350
|
+
}
|
|
2351
|
+
],
|
|
2352
|
+
"internalType": "struct Wallets.Wallet",
|
|
2353
|
+
"name": "",
|
|
2354
|
+
"type": "tuple"
|
|
2355
|
+
}
|
|
2356
|
+
],
|
|
2357
|
+
"stateMutability": "view",
|
|
2358
|
+
"type": "function"
|
|
2359
|
+
}
|
|
2360
|
+
],
|
|
2361
|
+
"bytecode": "0x60806040523480156200001157600080fd5b5060405162004472380380620044728339810160408190526200003491620003e1565b6001600160a01b038516620000905760405162461bcd60e51b815260206004820152601b60248201527f42616e6b20616464726573732063616e6e6f74206265207a65726f000000000060448201526064015b60405180910390fd5b600180546001600160a01b0319166001600160a01b03878116919091179091558416620001005760405162461bcd60e51b815260206004820152601c60248201527f52656c617920616464726573732063616e6e6f74206265207a65726f00000000604482015260640162000087565b600280546001600160a01b0319166001600160a01b03868116919091179091558216620001855760405162461bcd60e51b815260206004820152602c60248201527f45434453412057616c6c6574205265676973747279206164647265737320636160448201526b6e6e6f74206265207a65726f60a01b606482015260840162000087565b600380546001600160a01b0319166001600160a01b03848116919091179091558316620001f55760405162461bcd60e51b815260206004820152601f60248201527f547265617375727920616464726573732063616e6e6f74206265207a65726f00604482015260640162000087565b6005805460048390556001600160a01b0385166001600160e01b031990911617613d0960a61b179055600680546001600160801b03191669271000000000000007d0179055600e80546001600160c01b031990811671271000000000000007d000000000000f4240179091556202a300600f556010805469021e19e0c9bab24000006001600160601b03199182168117909255606460118190557d021e19e0c9bab240000000093a800000000000004e200000000000002710600955600a819055600b805490941675021e19e0c9bab240000000093a80000000000000271017909355600c839055671bc16d674ec8000060145562093a806015556016805490911690911790556017557eeff1000000000002faf08000000002540be4000000000005f5e10000093a80601a55601b80546001600160c01b0316621dcd6560c91b179055601c80546234bc0063ffffffff19909116179055620003583362000363565b505050505062000448565b600080546001600160a01b038381166001600160a01b031983168117909355604080519190921680825260208201939093527f5f56bee8cffbe9a78652a74a60705edede02af10b0bbb888ca44b79a0d42ce80910160405180910390a15050565b80516001600160a01b0381168114620003dc57600080fd5b919050565b600080600080600060a08688031215620003fa57600080fd5b6200040586620003c4565b94506200041560208701620003c4565b93506200042560408701620003c4565b92506200043560608701620003c4565b9150608086015190509295509295909350565b61401a80620004586000396000f3fe6080604052600436106102f25760003560e01c8063883d6a111161018f578063b29a604b116100e1578063d38bfff41161008a578063e53c0b5511610064578063e53c0b5514610de0578063e65e19d514610e19578063f18cf1b114610e4657600080fd5b8063d38bfff414610d74578063d6eccdf014610d94578063ded1d24a14610db457600080fd5b8063be05abe3116100bb578063be05abe314610c62578063c42b64d014610d09578063c8b5d2db14610d5457600080fd5b8063b29a604b14610c02578063b34b321614610c22578063b7d372a414610c4257600080fd5b8063a8fa0f4211610143578063b02c43d01161011d578063b02c43d014610a5f578063b2146cd614610ba2578063b216bd3514610be257600080fd5b8063a8fa0f42146109df578063a9de2f3a146109ff578063abaeed8f14610a3f57600080fd5b806392238f321161017457806392238f321461097f578063a145e2d51461099f578063a51e3d1a146109bf57600080fd5b8063883d6a111461093f57806391a9fdde1461095f57600080fd5b806350aea15a1161024857806361ccf97a116101fc5780636e70ce41116101d65780636e70ce411461084657806375b922d1146108d857806377145f211461091f57600080fd5b806361ccf97a1461078557806361d027b3146108155780636d02b43c1461083357600080fd5b80635aa6e6751161022d5780635aa6e6751461070d5780635c0b48121461074557806360d712fc1461076557600080fd5b806350aea15a146106cd578063575e4279146106ed57600080fd5b80632bb818c2116102aa57806333e957cb1161028457806333e957cb146105ae5780633dce98121461068d5780634fb1b4c6146106ad57600080fd5b80632bb818c2146105505780632f429b641461056e57806331a4889a1461058e57600080fd5b80630b6ba19d116102db5780630b6ba19d1461044157806317c96400146104fe57806324028c111461051e57600080fd5b806303d952f7146102f757806307f7d2231461041f575b600080fd5b34801561030357600080fd5b506103b4610312366004612f11565b6040805160a08101825260008082526020820181905291810182905260608101829052608081019190915250600090815260126020908152604091829020825160a08101845281546001600160a01b0381168252600160a01b90046001600160401b039081169382019390935260019091015480831693820193909352600160401b83049091166060820152600160801b90910463ffffffff16608082015290565b6040516104169190600060a0820190506001600160a01b03835116825260208301516001600160401b038082166020850152806040860151166040850152806060860151166060850152505063ffffffff608084015116608083015292915050565b60405180910390f35b34801561042b57600080fd5b5061043f61043a366004612f5f565b610e73565b005b34801561044d57600080fd5b506103b461045c366004612f11565b6040805160a08101825260008082526020820181905291810182905260608101829052608081019190915250600090815260136020908152604091829020825160a08101845281546001600160a01b0381168252600160a01b90046001600160401b039081169382019390935260019091015480831693820193909352600160401b83049091166060820152600160801b90910463ffffffff16608082015290565b34801561050a57600080fd5b5061043f610519366004612faa565b610efc565b34801561052a57600080fd5b50601b54600160a01b900463ffffffff1660405163ffffffff9091168152602001610416565b34801561055c57600080fd5b50600454604051908152602001610416565b34801561057a57600080fd5b5061043f610589366004612fff565b610f6d565b34801561059a57600080fd5b5061043f6105a9366004613110565b610ffa565b3480156105ba57600080fd5b506106496105c9366004612f11565b60408051608081018252600080825260208201819052918101829052606081019190915250600090815260186020908152604091829020825160808101845281546001600160a01b031681526001820154928101929092526002015463ffffffff81169282019290925264010000000090910460ff161515606082015290565b604051610416919081516001600160a01b031681526020808301519082015260408083015163ffffffff169082015260609182015115159181019190915260800190565b34801561069957600080fd5b5061043f6106a8366004613190565b61108c565b3480156106b957600080fd5b5061043f6106c83660046131bc565b61111c565b3480156106d957600080fd5b5061043f6106e8366004613243565b611177565b3480156106f957600080fd5b5061043f610708366004612f5f565b6111d0565b34801561071957600080fd5b5060005461072d906001600160a01b031681565b6040516001600160a01b039091168152602001610416565b34801561075157600080fd5b5061043f61076036600461329c565b611225565b34801561077157600080fd5b5061043f61078036600461331d565b61127a565b34801561079157600080fd5b50601a54601b54601c546040805163ffffffff80861682526001600160401b036401000000008704811660208401526c010000000000000000000000008704811693830193909352600160a01b860483166060830152600160e01b90950485166080820152600160c01b9093041660a08301529190911660c082015260e001610416565b34801561082157600080fd5b506005546001600160a01b031661072d565b61043f610841366004613347565b611333565b34801561085257600080fd5b50610891600e54600f546010546011546001600160401b0380851695600160401b8604821695600160801b900490911693926001600160601b03169190565b604080516001600160401b0397881681529587166020870152939095169284019290925260608301526001600160601b0316608082015260a081019190915260c001610416565b3480156108e457600080fd5b506014546015546016546017546040805194855260208501939093526001600160601b03909116918301919091526060820152608001610416565b34801561092b57600080fd5b5061043f61093a366004613399565b61138c565b34801561094b57600080fd5b5061043f61095a366004613419565b6113e7565b34801561096b57600080fd5b5061043f61097a36600461349f565b611452565b34801561098b57600080fd5b5061043f61099a36600461350a565b6114a9565b3480156109ab57600080fd5b5061043f6109ba36600461355c565b611500565b3480156109cb57600080fd5b5061043f6109da366004613596565b611586565b3480156109eb57600080fd5b5061043f6109fa366004613190565b6115f3565b348015610a0b57600080fd5b50600154600254600354604080516001600160a01b0394851681529284166020840152921691810191909152606001610416565b348015610a4b57600080fd5b5061043f610a5a366004613630565b611659565b348015610a6b57600080fd5b50610b2d610a7a366004612f11565b6040805160c081018252600080825260208201819052918101829052606081018290526080810182905260a081019190915250600090815260076020908152604091829020825160c08101845281546001600160a01b0380821683526001600160401b03600160a01b80840482169685019690965263ffffffff600160e01b938490048116978501979097526001949094015490811660608401529384049092166080820152910490911660a082015290565b6040516104169190600060c0820190506001600160a01b0380845116835260208401516001600160401b0380821660208601526040860151915063ffffffff80831660408701528360608801511660608701528160808801511660808701528060a08801511660a08701525050505092915050565b348015610bae57600080fd5b50610bd2610bbd366004612f11565b60009081526019602052604090205460ff1690565b6040519015158152602001610416565b348015610bee57600080fd5b5061043f610bfd3660046136cb565b6116f1565b348015610c0e57600080fd5b5061043f610c1d366004613731565b61175b565b348015610c2e57600080fd5b5061043f610c3d366004612fff565b6117c9565b348015610c4e57600080fd5b5061043f610c5d36600461349f565b611822565b348015610c6e57600080fd5b50600954600a54600b54600c54604080516001600160401b038087168252600160401b80880482166020840152600160801b880463ffffffff90811694840194909452600160a01b9097046001600160601b0390811660608401526080830196909652841660a08201529483041660c08501526c0100000000000000000000000090910490911660e083015261010082015261012001610416565b348015610d1557600080fd5b5060055460065460408051600160a01b9093046001600160401b0390811684528083166020850152600160401b90920490911690820152606001610416565b348015610d6057600080fd5b5061043f610d6f36600461376e565b611879565b348015610d8057600080fd5b5061043f610d8f366004613789565b611887565b348015610da057600080fd5b5061043f610daf3660046137a4565b611966565b348015610dc057600080fd5b50601b5460601b6040516001600160601b03199091168152602001610416565b348015610dec57600080fd5b50610bd2610dfb366004613789565b6001600160a01b031660009081526008602052604090205460ff1690565b348015610e2557600080fd5b50610e39610e3436600461376e565b6119c1565b6040516104169190613838565b348015610e5257600080fd5b50610e66610e61366004612f11565b611ae4565b60405161041691906138dc565b6040517f260b6cde00000000000000000000000000000000000000000000000000000000815273__$edce581bb06331cf4dae1387760565e5d1$__9063260b6cde90610ec8906001908690869060040161396d565b60006040518083038186803b158015610ee057600080fd5b505af4158015610ef4573d6000803e3d6000fd5b505050505050565b6000546001600160a01b03163314610f5b5760405162461bcd60e51b815260206004820152601c60248201527f43616c6c6572206973206e6f742074686520676f7665726e616e63650000000060448201526064015b60405180910390fd5b610f686001848484611b9c565b505050565b6040517e92bac900000000000000000000000000000000000000000000000000000000815273__$edce581bb06331cf4dae1387760565e5d1$__906292bac990610fc4906001908890889088908890600401613b23565b60006040518083038186803b158015610fdc57600080fd5b505af4158015610ff0573d6000803e3d6000fd5b5050505050505050565b6040517fa76558b300000000000000000000000000000000000000000000000000000000815273__$9935b6ea18e0c526c293569ddd26842c9b$__9063a76558b3906110559060019089908990899089908990600401613bbc565b60006040518083038186803b15801561106d57600080fd5b505af4158015611081573d6000803e3d6000fd5b505050505050505050565b6040517fc87de7f400000000000000000000000000000000000000000000000000000000815260016004820152602481018390526044810182905273__$0f118c52967a3847a37f0a2ef02ffcee04$__9063c87de7f4906064015b60006040518083038186803b1580156110ff57600080fd5b505af4158015611113573d6000803e3d6000fd5b50505050505050565b6040517f89b43a8600000000000000000000000000000000000000000000000000000000815273__$a542940934c03bae9a39609192cb25cc3c$__906389b43a86906110559060019089908990899089908990600401613c06565b6040517f899bef9d00000000000000000000000000000000000000000000000000000000815273__$edce581bb06331cf4dae1387760565e5d1$__9063899bef9d90610fc4906001908890889088908890600401613c47565b6040517f99b0b84700000000000000000000000000000000000000000000000000000000815273__$0f118c52967a3847a37f0a2ef02ffcee04$__906399b0b84790610ec8906001908690869060040161396d565b6040517faea7fd0b00000000000000000000000000000000000000000000000000000000815273__$894ce12e79ca3e5683c1b49e363f37fa22$__9063aea7fd0b90610ec89060019086908690600401613c7e565b6000546001600160a01b031633146112d45760405162461bcd60e51b815260206004820152601c60248201527f43616c6c6572206973206e6f742074686520676f7665726e616e6365000000006044820152606401610f52565b6001600160a01b038216600081815260086020908152604091829020805460ff191685151590811790915591519182527f9065599c12c4294d9e2201638226d0d0beb95c228f468c4e7c2bdb8322b6066f910160405180910390a25050565b6040517f3b5d9f2400000000000000000000000000000000000000000000000000000000815273__$a542940934c03bae9a39609192cb25cc3c$__90633b5d9f2490610fc4906001908890889088908890600401613db1565b6040517f624526fe00000000000000000000000000000000000000000000000000000000815273__$a542940934c03bae9a39609192cb25cc3c$__9063624526fe906110559060019089908990899089908990600401613e0b565b6000546001600160a01b031633146114415760405162461bcd60e51b815260206004820152601c60248201527f43616c6c6572206973206e6f742074686520676f7665726e616e6365000000006044820152606401610f52565b611113600188888888888888611dcf565b6040517f2fcc8fb100000000000000000000000000000000000000000000000000000000815273__$24f7e155a6d011c1bf9032506ba9b1954c$__90632fcc8fb1906110e790600190879087908790600401613e4e565b6040517f07f96c4200000000000000000000000000000000000000000000000000000000815273__$edce581bb06331cf4dae1387760565e5d1$__906307f96c42906110e790600190879087908790600401613e92565b6040517fd079fbb100000000000000000000000000000000000000000000000000000000815273__$0f118c52967a3847a37f0a2ef02ffcee04$__9063d079fbb190611553906001908590600401613ebc565b60006040518083038186803b15801561156b57600080fd5b505af415801561157f573d6000803e3d6000fd5b5050505050565b6000546001600160a01b031633146115e05760405162461bcd60e51b815260206004820152601c60248201527f43616c6c6572206973206e6f742074686520676f7665726e616e6365000000006044820152606401610f52565b61108160018a8a8a8a8a8a8a8a8a612192565b6040517f4afbe4c90000000000000000000000000000000000000000000000000000000081526001600482015260248101849052604481018390526064810182905273__$0f118c52967a3847a37f0a2ef02ffcee04$__90634afbe4c9906084016110e7565b6040517fc8f7794300000000000000000000000000000000000000000000000000000000815273__$edce581bb06331cf4dae1387760565e5d1$__9063c8f77943906116b8906001908b908b908b908b908b908b908b90600401613ed0565b60006040518083038186803b1580156116d057600080fd5b505af41580156116e4573d6000803e3d6000fd5b5050505050505050505050565b6000546001600160a01b0316331461174b5760405162461bcd60e51b815260206004820152601c60248201527f43616c6c6572206973206e6f742074686520676f7665726e616e6365000000006044820152606401610f52565b610ef46001878787878787612741565b6000546001600160a01b031633146117b55760405162461bcd60e51b815260206004820152601c60248201527f43616c6c6572206973206e6f742074686520676f7665726e616e6365000000006044820152606401610f52565b6117c3600185858585612ac6565b50505050565b6040517fa164de6e00000000000000000000000000000000000000000000000000000000815273__$9935b6ea18e0c526c293569ddd26842c9b$__9063a164de6e90610fc4906001908890889088908890600401613b23565b6040517fb79a972500000000000000000000000000000000000000000000000000000000815273__$edce581bb06331cf4dae1387760565e5d1$__9063b79a9725906110e790600190879087908790600401613e4e565b611884600182612c38565b50565b6000546001600160a01b031633146118e15760405162461bcd60e51b815260206004820152601c60248201527f43616c6c6572206973206e6f742074686520676f7665726e616e6365000000006044820152606401610f52565b6001600160a01b03811661195d5760405162461bcd60e51b815260206004820152602260248201527f4e657720676f7665726e616e636520697320746865207a65726f20616464726560448201527f73730000000000000000000000000000000000000000000000000000000000006064820152608401610f52565b61188481612d90565b6040517f7333b36900000000000000000000000000000000000000000000000000000000815273__$9935b6ea18e0c526c293569ddd26842c9b$__90637333b369906110559060019089908990899089908990600401613f5b565b6040805161012081018252600080825260208201819052918101829052606081018290526080810182905260a0810182905260c0810182905260e081018290526101008101919091526001600160601b031982166000908152601d60209081526040918290208251610120810184528154815260018201549281019290925260028101546001600160401b0381169383019390935263ffffffff600160401b8404811660608401526c01000000000000000000000000840481166080840152600160801b8404811660a0840152600160a01b84041660c0830152909160e083019060ff600160c01b909104166005811115611abe57611abe61380e565b6005811115611acf57611acf61380e565b81526020016003820154815250509050919050565b611b0c6040805160808101825260008082526020820181905291810182905290606082015290565b6000828152600d602090815260409182902082516080810184528154606081811b6001600160601b0319168352600160a01b82046001600160401b031694830194909452600160e01b900463ffffffff16938101939093526001810154909183019060ff166003811115611b8257611b8261380e565b6003811115611b9357611b9361380e565b90525092915050565b6000836001600160401b031611611c1b5760405162461bcd60e51b815260206004820152603060248201527f4465706f7369742064757374207468726573686f6c64206d757374206265206760448201527f726561746572207468616e207a65726f000000000000000000000000000000006064820152608401610f52565b6000826001600160401b031611611c9a5760405162461bcd60e51b815260206004820152603660248201527f4465706f736974207472656173757279206665652064697669736f72206d757360448201527f742062652067726561746572207468616e207a65726f000000000000000000006064820152608401610f52565b6000816001600160401b031611611d195760405162461bcd60e51b815260206004820152603560248201527f4465706f736974207472616e73616374696f6e206d617820666565206d75737460448201527f2062652067726561746572207468616e207a65726f00000000000000000000006064820152608401610f52565b6004840180547fffffffff0000000000000000ffffffffffffffffffffffffffffffffffffffff16600160a01b6001600160401b03868116918202929092179092556005860180548583166fffffffffffffffffffffffffffffffff199091168117600160401b938616938402179091556040805193845260208401919091528201527f1ced468902ca566e746a3c8c9516af81f8de9f1021c365083be9f2625ebfb7b59060600160405180910390a150505050565b856001600160401b0316856001600160401b031611611e7c5760405162461bcd60e51b815260206004820152605960248201527f57616c6c6574206372656174696f6e206d6178696d756d204254432062616c6160448201527f6e6365206d7573742062652067726561746572207468616e207468652063726560648201527f6174696f6e206d696e696d756d204254432062616c616e636500000000000000608482015260a401610f52565b6000846001600160401b031611611efb5760405162461bcd60e51b815260206004820152603c60248201527f57616c6c657420636c6f73757265206d696e696d756d204254432062616c616e60448201527f6365206d7573742062652067726561746572207468616e207a65726f000000006064820152608401610f52565b6000826001600160401b031611611f7a5760405162461bcd60e51b815260206004820152603560248201527f57616c6c6574206d6178696d756d20425443207472616e73666572206d75737460448201527f2062652067726561746572207468616e207a65726f00000000000000000000006064820152608401610f52565b60008163ffffffff1611611ff65760405162461bcd60e51b815260206004820152602f60248201527f57616c6c657420636c6f73696e6720706572696f64206d75737420626520677260448201527f6561746572207468616e207a65726f00000000000000000000000000000000006064820152608401610f52565b868860190160006101000a81548163ffffffff021916908363ffffffff160217905550858860190160046101000a8154816001600160401b0302191690836001600160401b031602179055508488601901600c6101000a8154816001600160401b0302191690836001600160401b03160217905550838860190160146101000a8154816001600160401b0302191690836001600160401b031602179055508288601901601c6101000a81548163ffffffff021916908363ffffffff1602179055508188601a0160186101000a8154816001600160401b0302191690836001600160401b031602179055508088601b0160006101000a81548163ffffffff021916908363ffffffff1602179055507fc7d3a9af08692aeae771c329fddd95c7237a9f76fec996325f3959eeff07d4ac87878787878787604051612180979695949392919063ffffffff97881681526001600160401b03968716602082015294861660408601529285166060850152908516608084015290921660a0820152911660c082015260e00190565b60405180910390a15050505050505050565b6000896001600160401b031611612213576040805162461bcd60e51b81526020600482015260248101919091527f4d6f76696e672066756e6473207472616e73616374696f6e206d617820746f7460448201527f616c20666565206d7573742062652067726561746572207468616e207a65726f6064820152608401610f52565b6000886001600160401b0316116122925760405162461bcd60e51b815260206004820152603560248201527f4d6f76696e672066756e64732064757374207468726573686f6c64206d75737460448201527f2062652067726561746572207468616e207a65726f00000000000000000000006064820152608401610f52565b60008763ffffffff161161230e5760405162461bcd60e51b815260206004820152602e60248201527f4d6f76696e672066756e64732074696d656f7574206d7573742062652067726560448201527f61746572207468616e207a65726f0000000000000000000000000000000000006064820152608401610f52565b60648511156123ab5760405162461bcd60e51b815260206004820152604d60248201527f4d6f76696e672066756e64732074696d656f7574206e6f74696669657220726560448201527f77617264206d756c7469706c696572206d75737420626520696e20746865207260648201527f616e6765205b302c203130305d00000000000000000000000000000000000000608482015260a401610f52565b6000846001600160401b0316116124505760405162461bcd60e51b815260206004820152604560248201527f4d6f7665642066756e6473207377656570207472616e73616374696f6e206d6160448201527f7820746f74616c20666565206d7573742062652067726561746572207468616e60648201527f207a65726f000000000000000000000000000000000000000000000000000000608482015260a401610f52565b60008363ffffffff16116124cc5760405162461bcd60e51b815260206004820152603360248201527f4d6f7665642066756e64732073776565702074696d656f7574206d757374206260448201527f652067726561746572207468616e207a65726f000000000000000000000000006064820152608401610f52565b60648111156125695760405162461bcd60e51b815260206004820152605260248201527f4d6f7665642066756e64732073776565702074696d656f7574206e6f7469666960448201527f657220726577617264206d756c7469706c696572206d75737420626520696e2060648201527f7468652072616e6765205b302c203130305d0000000000000000000000000000608482015260a401610f52565b888a60080160006101000a8154816001600160401b0302191690836001600160401b03160217905550878a60080160086101000a8154816001600160401b0302191690836001600160401b03160217905550868a60080160106101000a81548163ffffffff021916908363ffffffff160217905550858a60080160146101000a8154816001600160601b0302191690836001600160601b03160217905550848a60090181905550838a600a0160006101000a8154816001600160401b0302191690836001600160401b03160217905550828a600a0160086101000a81548163ffffffff021916908363ffffffff160217905550818a600a01600c6101000a8154816001600160601b0302191690836001600160601b03160217905550808a600b01819055507f5662a4f84a0d9b64b01c0f14b329ff73e09d4bc2e2684d90174e31615b40a4a289898989898989898960405161272d999897969594939291906001600160401b03998a168152978916602089015263ffffffff96871660408901526001600160601b03958616606089015260808801949094529190961660a08601529490921660c08401529290921660e08201526101008101919091526101200190565b60405180910390a150505050505050505050565b6000866001600160401b0316116127c05760405162461bcd60e51b815260206004820152603360248201527f526564656d7074696f6e2064757374207468726573686f6c64206d757374206260448201527f652067726561746572207468616e207a65726f000000000000000000000000006064820152608401610f52565b6000856001600160401b03161161283f5760405162461bcd60e51b815260206004820152603960248201527f526564656d7074696f6e207472656173757279206665652064697669736f722060448201527f6d7573742062652067726561746572207468616e207a65726f000000000000006064820152608401610f52565b6000846001600160401b0316116128be5760405162461bcd60e51b815260206004820152603860248201527f526564656d7074696f6e207472616e73616374696f6e206d617820666565206d60448201527f7573742062652067726561746572207468616e207a65726f00000000000000006064820152608401610f52565b600083116129345760405162461bcd60e51b815260206004820152602c60248201527f526564656d7074696f6e2074696d656f7574206d75737420626520677265617460448201527f6572207468616e207a65726f00000000000000000000000000000000000000006064820152608401610f52565b60648111156129d15760405162461bcd60e51b815260206004820152604b60248201527f526564656d7074696f6e2074696d656f7574206e6f746966696572207265776160448201527f7264206d756c7469706c696572206d75737420626520696e207468652072616e60648201527f6765205b302c203130305d000000000000000000000000000000000000000000608482015260a401610f52565b600d870180546001600160401b038881166fffffffffffffffffffffffffffffffff199092168217600160401b898316908102919091177fffffffffffffffff0000000000000000ffffffffffffffffffffffffffffffff16600160801b92891692830217909355600e8a01869055600f8a0180546001600160601b0319166001600160601b03871690811790915560108b018590556040805193845260208401949094529282015260608101859052608081019190915260a081018290527f944cd06e316cc3da4159300dd41ab23416c89a5136c41fa79d57fe8a34bcc10f9060c00160405180910390a150505050505050565b60008311612b3c5760405162461bcd60e51b815260206004820152603860248201527f4672617564206368616c6c656e6765206465666561742074696d656f7574206d60448201527f7573742062652067726561746572207468616e207a65726f00000000000000006064820152608401610f52565b6064811115612bb35760405162461bcd60e51b815260206004820152603e60248201527f4672617564206e6f74696669657220726577617264206d756c7469706c69657260448201527f206d75737420626520696e207468652072616e6765205b302c203130305d00006064820152608401610f52565b60138501849055601485018390556015850180546001600160601b0319166001600160601b03841690811790915560168601829055604080518681526020810186905290810191909152606081018290527fd0d6d92441fbb139a023c9c62586dbd767824f37869c45da6443fc3aef64194f9060800160405180910390a15050505050565b6001600160601b031981166000908152601c83016020526040902060036002820154600160c01b900460ff166005811115612c7557612c7561380e565b14612ce85760405162461bcd60e51b815260206004820152602560248201527f45434453412077616c6c6574206d75737420626520696e20436c6f73696e672060448201527f73746174650000000000000000000000000000000000000000000000000000006064820152608401610f52565b601b8301546002820154612d0c9163ffffffff90811691600160801b900416613fae565b63ffffffff164211612d865760405162461bcd60e51b815260206004820152602260248201527f436c6f73696e6720706572696f6420686173206e6f7420656c6170736564207960448201527f65740000000000000000000000000000000000000000000000000000000000006064820152608401610f52565b610f688383612e09565b600080546001600160a01b038381167fffffffffffffffffffffffff000000000000000000000000000000000000000083168117909355604080519190921680825260208201939093527f5f56bee8cffbe9a78652a74a60705edede02af10b0bbb888ca44b79a0d42ce80910160405180910390a15050565b6001600160601b031981166000818152601c840160205260408082206002810180547fffffffffffffff00ffffffffffffffffffffffffffffffffffffffffffffffff167804000000000000000000000000000000000000000000000000179055805491519093927f47b159947c3066cb253f60e8f046cfd747411788a545cb189679e3fa1467b28d91a3600283015481546040517f343bb9270000000000000000000000000000000000000000000000000000000081526001600160a01b039092169163343bb92791612ee39160040190815260200190565b600060405180830381600087803b158015612efd57600080fd5b505af1158015611113573d6000803e3d6000fd5b600060208284031215612f2357600080fd5b5035919050565b80356001600160601b031981168114612f4257600080fd5b919050565b600060608284031215612f5957600080fd5b50919050565b60008060808385031215612f7257600080fd5b612f7b83612f2a565b9150612f8a8460208501612f47565b90509250929050565b80356001600160401b0381168114612f4257600080fd5b600080600060608486031215612fbf57600080fd5b612fc884612f93565b9250612fd660208501612f93565b9150612fe460408501612f93565b90509250925092565b600060808284031215612f5957600080fd5b60008060008060c0858703121561301557600080fd5b84356001600160401b038082111561302c57600080fd5b61303888838901612fed565b9550602087013591508082111561304e57600080fd5b5061305b87828801612f47565b93505061306b8660408701612f47565b915061307960a08601612f2a565b905092959194509250565b60008083601f84011261309657600080fd5b5081356001600160401b038111156130ad57600080fd5b6020830191508360208260051b85010111156130c857600080fd5b9250929050565b60008083601f8401126130e157600080fd5b5081356001600160401b038111156130f857600080fd5b6020830191508360208285010111156130c857600080fd5b60008060008060006060868803121561312857600080fd5b61313186612f2a565b945060208601356001600160401b038082111561314d57600080fd5b61315989838a01613084565b9096509450604088013591508082111561317257600080fd5b5061317f888289016130cf565b969995985093965092949392505050565b6000806000606084860312156131a557600080fd5b505081359360208301359350604090920135919050565b6000806000806000606086880312156131d457600080fd5b85356001600160401b03808211156131eb57600080fd5b6131f789838a016130cf565b9097509550602088013591508082111561321057600080fd5b5061321d88828901613084565b96999598509660400135949350505050565b803563ffffffff81168114612f4257600080fd5b6000806000806060858703121561325957600080fd5b843593506132696020860161322f565b925060408501356001600160401b0381111561328457600080fd5b61329087828801613084565b95989497509550505050565b6000808284036101008112156132b157600080fd5b83356001600160401b038111156132c757600080fd5b6132d386828701612fed565b93505060e0601f19820112156132e857600080fd5b506020830190509250929050565b80356001600160a01b0381168114612f4257600080fd5b80358015158114612f4257600080fd5b6000806040838503121561333057600080fd5b613339836132f6565b9150612f8a6020840161330d565b60008060008060a0858703121561335d57600080fd5b84356001600160401b0381111561337357600080fd5b61337f878288016130cf565b909550935050602085013591506130798660408701612f47565b6000806000806000606086880312156133b157600080fd5b85356001600160401b03808211156133c857600080fd5b6133d489838a016130cf565b909750955060208801359150808211156133ed57600080fd5b506133fa888289016130cf565b909450925061340d90506040870161330d565b90509295509295909350565b600080600080600080600060e0888a03121561343457600080fd5b61343d8861322f565b965061344b60208901612f93565b955061345960408901612f93565b945061346760608901612f93565b93506134756080890161322f565b925061348360a08901612f93565b915061349160c0890161322f565b905092959891949750929550565b600080600060a084860312156134b457600080fd5b83356001600160401b03808211156134cb57600080fd5b6134d787838801612fed565b945060208601359150808211156134ed57600080fd5b506134fa86828701612f47565b925050612fe48560408601612f47565b60008060006040848603121561351f57600080fd5b61352884612f2a565b925060208401356001600160401b0381111561354357600080fd5b61354f86828701613084565b9497909650939450505050565b60006060828403121561356e57600080fd5b6135788383612f47565b9392505050565b80356001600160601b0381168114612f4257600080fd5b60008060008060008060008060006101208a8c0312156135b557600080fd5b6135be8a612f93565b98506135cc60208b01612f93565b97506135da60408b0161322f565b96506135e860608b0161357f565b955060808a013594506135fd60a08b01612f93565b935061360b60c08b0161322f565b925061361960e08b0161357f565b91506101008a013590509295985092959850929598565b600080600080600080600060e0888a03121561364b57600080fd5b61365488612f2a565b96506136638960208a01612f47565b955060808801356001600160401b038082111561367f57600080fd5b61368b8b838c01613084565b909750955060a08a0135945060c08a01359150808211156136ab57600080fd5b506136b88a828b01613084565b989b979a50959850939692959293505050565b60008060008060008060c087890312156136e457600080fd5b6136ed87612f93565b95506136fb60208801612f93565b945061370960408801612f93565b93506060870135925061371e6080880161357f565b915060a087013590509295509295509295565b6000806000806080858703121561374757600080fd5b843593506020850135925061375e6040860161357f565b9396929550929360600135925050565b60006020828403121561378057600080fd5b61357882612f2a565b60006020828403121561379b57600080fd5b613578826132f6565b600080600080600060c086880312156137bc57600080fd5b6137c586612f2a565b94506137d48760208801612f47565b935060808601356001600160401b038111156137ef57600080fd5b6137fb888289016130cf565b909450925061340d905060a08701612f93565b634e487b7160e01b600052602160045260246000fd5b600681106138345761383461380e565b9052565b60006101208201905082518252602083015160208301526001600160401b03604084015116604083015263ffffffff60608401511660608301526080830151613889608084018263ffffffff169052565b5060a08301516138a160a084018263ffffffff169052565b5060c08301516138b960c084018263ffffffff169052565b5060e08301516138cc60e0840182613824565b5061010092830151919092015290565b81516001600160601b03191681526020808301516001600160401b03169082015260408083015163ffffffff169082015260608201516080820190600481106139275761392761380e565b8060608401525092915050565b8035825263ffffffff6139496020830161322f565b1660208301526001600160401b0361396360408301612f93565b1660408301525050565b8381526001600160601b03198316602082015260a081016139916040830184613934565b949350505050565b80357fffffffff0000000000000000000000000000000000000000000000000000000081168114612f4257600080fd5b6000808335601e198436030181126139e057600080fd5b83016020810192503590506001600160401b038111156139ff57600080fd5b8036038313156130c857600080fd5b81835281816020850137506000828201602090810191909152601f909101601f19169091010190565b60007fffffffff0000000000000000000000000000000000000000000000000000000080613a6484613999565b168452613a7460208401846139c9565b60806020870152613a89608087018284613a0e565b915050613a9960408501856139c9565b8683036040880152613aac838284613a0e565b9250505081613abd60608601613999565b166060860152809250505092915050565b6000613ada82836139c9565b60608552613aec606086018284613a0e565b91505060208301356020850152613b0660408401846139c9565b8583036040870152613b19838284613a0e565b9695505050505050565b85815260e060208201526000613b3c60e0830187613a37565b8281036040840152613b4e8187613ace565b915050613b5e6060830185613934565b6001600160601b0319831660c08301529695505050505050565b8183526000602080850194508260005b85811015613bb15763ffffffff613b9e8361322f565b1687529582019590820190600101613b88565b509495945050505050565b8681526001600160601b031986166020820152608060408201526000613be6608083018688613b78565b8281036060840152613bf9818587613a0e565b9998505050505050505050565b868152608060208201526000613c20608083018789613a0e565b8281036040840152613c33818688613b78565b915050826060830152979650505050505050565b85815284602082015263ffffffff84166040820152608060608201526000613c73608083018486613b78565b979650505050505050565b6000610120858352806020840152613c9881840186613a37565b91505063ffffffff613ca98461322f565b1660408301526001600160a01b03613cc3602085016132f6565b16606083015260408301357fffffffffffffffff00000000000000000000000000000000000000000000000081168114613cfc57600080fd5b7fffffffffffffffff000000000000000000000000000000000000000000000000166080830152613d2f60608401612f2a565b6001600160601b03191660a0830152613d4a60808401612f2a565b6001600160601b03191660c0830152613d6560a08401613999565b7fffffffff000000000000000000000000000000000000000000000000000000001660e0830152613d9860c084016132f6565b6001600160a01b03811661010084015250949350505050565b85815260c060208201526000613dcb60c083018688613a0e565b90508360408301528235606083015260208301356080830152604083013560ff8116808214613df957600080fd5b8060a085015250509695505050505050565b868152608060208201526000613e25608083018789613a0e565b8281036040840152613e38818688613a0e565b9150508215156060830152979650505050505050565b84815260c060208201526000613e6760c0830186613a37565b8281036040840152613e798186613ace565b915050613e896060830184613934565b95945050505050565b8481526001600160601b031984166020820152606060408201526000613b19606083018486613b78565b828152608081016135786020830184613934565b60006101008a835260206001600160601b0319808c1682860152613ef7604086018c613934565b8260a0860152613f0a8386018a8c613b78565b60c0860189905285810360e0870152868152879350820160005b87811015613f495782613f3686612f2a565b1682529383019390830190600101613f24565b509d9c50505050505050505050505050565b8681526001600160601b031986166020820152613f7b6040820186613934565b60e060a08201526000613f9260e083018587613a0e565b90506001600160401b03831660c0830152979650505050505050565b600063ffffffff808316818516808303821115613fdb57634e487b7160e01b600052601160045260246000fd5b0194935050505056fea26469706673582212204718a3a567654683c663ebcc8a84a054270c47accaa71f4b0256d3a72978536364736f6c63430008090033",
|
|
2362
|
+
"deployedBytecode": "0x6080604052600436106102f25760003560e01c8063883d6a111161018f578063b29a604b116100e1578063d38bfff41161008a578063e53c0b5511610064578063e53c0b5514610de0578063e65e19d514610e19578063f18cf1b114610e4657600080fd5b8063d38bfff414610d74578063d6eccdf014610d94578063ded1d24a14610db457600080fd5b8063be05abe3116100bb578063be05abe314610c62578063c42b64d014610d09578063c8b5d2db14610d5457600080fd5b8063b29a604b14610c02578063b34b321614610c22578063b7d372a414610c4257600080fd5b8063a8fa0f4211610143578063b02c43d01161011d578063b02c43d014610a5f578063b2146cd614610ba2578063b216bd3514610be257600080fd5b8063a8fa0f42146109df578063a9de2f3a146109ff578063abaeed8f14610a3f57600080fd5b806392238f321161017457806392238f321461097f578063a145e2d51461099f578063a51e3d1a146109bf57600080fd5b8063883d6a111461093f57806391a9fdde1461095f57600080fd5b806350aea15a1161024857806361ccf97a116101fc5780636e70ce41116101d65780636e70ce411461084657806375b922d1146108d857806377145f211461091f57600080fd5b806361ccf97a1461078557806361d027b3146108155780636d02b43c1461083357600080fd5b80635aa6e6751161022d5780635aa6e6751461070d5780635c0b48121461074557806360d712fc1461076557600080fd5b806350aea15a146106cd578063575e4279146106ed57600080fd5b80632bb818c2116102aa57806333e957cb1161028457806333e957cb146105ae5780633dce98121461068d5780634fb1b4c6146106ad57600080fd5b80632bb818c2146105505780632f429b641461056e57806331a4889a1461058e57600080fd5b80630b6ba19d116102db5780630b6ba19d1461044157806317c96400146104fe57806324028c111461051e57600080fd5b806303d952f7146102f757806307f7d2231461041f575b600080fd5b34801561030357600080fd5b506103b4610312366004612f11565b6040805160a08101825260008082526020820181905291810182905260608101829052608081019190915250600090815260126020908152604091829020825160a08101845281546001600160a01b0381168252600160a01b90046001600160401b039081169382019390935260019091015480831693820193909352600160401b83049091166060820152600160801b90910463ffffffff16608082015290565b6040516104169190600060a0820190506001600160a01b03835116825260208301516001600160401b038082166020850152806040860151166040850152806060860151166060850152505063ffffffff608084015116608083015292915050565b60405180910390f35b34801561042b57600080fd5b5061043f61043a366004612f5f565b610e73565b005b34801561044d57600080fd5b506103b461045c366004612f11565b6040805160a08101825260008082526020820181905291810182905260608101829052608081019190915250600090815260136020908152604091829020825160a08101845281546001600160a01b0381168252600160a01b90046001600160401b039081169382019390935260019091015480831693820193909352600160401b83049091166060820152600160801b90910463ffffffff16608082015290565b34801561050a57600080fd5b5061043f610519366004612faa565b610efc565b34801561052a57600080fd5b50601b54600160a01b900463ffffffff1660405163ffffffff9091168152602001610416565b34801561055c57600080fd5b50600454604051908152602001610416565b34801561057a57600080fd5b5061043f610589366004612fff565b610f6d565b34801561059a57600080fd5b5061043f6105a9366004613110565b610ffa565b3480156105ba57600080fd5b506106496105c9366004612f11565b60408051608081018252600080825260208201819052918101829052606081019190915250600090815260186020908152604091829020825160808101845281546001600160a01b031681526001820154928101929092526002015463ffffffff81169282019290925264010000000090910460ff161515606082015290565b604051610416919081516001600160a01b031681526020808301519082015260408083015163ffffffff169082015260609182015115159181019190915260800190565b34801561069957600080fd5b5061043f6106a8366004613190565b61108c565b3480156106b957600080fd5b5061043f6106c83660046131bc565b61111c565b3480156106d957600080fd5b5061043f6106e8366004613243565b611177565b3480156106f957600080fd5b5061043f610708366004612f5f565b6111d0565b34801561071957600080fd5b5060005461072d906001600160a01b031681565b6040516001600160a01b039091168152602001610416565b34801561075157600080fd5b5061043f61076036600461329c565b611225565b34801561077157600080fd5b5061043f61078036600461331d565b61127a565b34801561079157600080fd5b50601a54601b54601c546040805163ffffffff80861682526001600160401b036401000000008704811660208401526c010000000000000000000000008704811693830193909352600160a01b860483166060830152600160e01b90950485166080820152600160c01b9093041660a08301529190911660c082015260e001610416565b34801561082157600080fd5b506005546001600160a01b031661072d565b61043f610841366004613347565b611333565b34801561085257600080fd5b50610891600e54600f546010546011546001600160401b0380851695600160401b8604821695600160801b900490911693926001600160601b03169190565b604080516001600160401b0397881681529587166020870152939095169284019290925260608301526001600160601b0316608082015260a081019190915260c001610416565b3480156108e457600080fd5b506014546015546016546017546040805194855260208501939093526001600160601b03909116918301919091526060820152608001610416565b34801561092b57600080fd5b5061043f61093a366004613399565b61138c565b34801561094b57600080fd5b5061043f61095a366004613419565b6113e7565b34801561096b57600080fd5b5061043f61097a36600461349f565b611452565b34801561098b57600080fd5b5061043f61099a36600461350a565b6114a9565b3480156109ab57600080fd5b5061043f6109ba36600461355c565b611500565b3480156109cb57600080fd5b5061043f6109da366004613596565b611586565b3480156109eb57600080fd5b5061043f6109fa366004613190565b6115f3565b348015610a0b57600080fd5b50600154600254600354604080516001600160a01b0394851681529284166020840152921691810191909152606001610416565b348015610a4b57600080fd5b5061043f610a5a366004613630565b611659565b348015610a6b57600080fd5b50610b2d610a7a366004612f11565b6040805160c081018252600080825260208201819052918101829052606081018290526080810182905260a081019190915250600090815260076020908152604091829020825160c08101845281546001600160a01b0380821683526001600160401b03600160a01b80840482169685019690965263ffffffff600160e01b938490048116978501979097526001949094015490811660608401529384049092166080820152910490911660a082015290565b6040516104169190600060c0820190506001600160a01b0380845116835260208401516001600160401b0380821660208601526040860151915063ffffffff80831660408701528360608801511660608701528160808801511660808701528060a08801511660a08701525050505092915050565b348015610bae57600080fd5b50610bd2610bbd366004612f11565b60009081526019602052604090205460ff1690565b6040519015158152602001610416565b348015610bee57600080fd5b5061043f610bfd3660046136cb565b6116f1565b348015610c0e57600080fd5b5061043f610c1d366004613731565b61175b565b348015610c2e57600080fd5b5061043f610c3d366004612fff565b6117c9565b348015610c4e57600080fd5b5061043f610c5d36600461349f565b611822565b348015610c6e57600080fd5b50600954600a54600b54600c54604080516001600160401b038087168252600160401b80880482166020840152600160801b880463ffffffff90811694840194909452600160a01b9097046001600160601b0390811660608401526080830196909652841660a08201529483041660c08501526c0100000000000000000000000090910490911660e083015261010082015261012001610416565b348015610d1557600080fd5b5060055460065460408051600160a01b9093046001600160401b0390811684528083166020850152600160401b90920490911690820152606001610416565b348015610d6057600080fd5b5061043f610d6f36600461376e565b611879565b348015610d8057600080fd5b5061043f610d8f366004613789565b611887565b348015610da057600080fd5b5061043f610daf3660046137a4565b611966565b348015610dc057600080fd5b50601b5460601b6040516001600160601b03199091168152602001610416565b348015610dec57600080fd5b50610bd2610dfb366004613789565b6001600160a01b031660009081526008602052604090205460ff1690565b348015610e2557600080fd5b50610e39610e3436600461376e565b6119c1565b6040516104169190613838565b348015610e5257600080fd5b50610e66610e61366004612f11565b611ae4565b60405161041691906138dc565b6040517f260b6cde00000000000000000000000000000000000000000000000000000000815273__$edce581bb06331cf4dae1387760565e5d1$__9063260b6cde90610ec8906001908690869060040161396d565b60006040518083038186803b158015610ee057600080fd5b505af4158015610ef4573d6000803e3d6000fd5b505050505050565b6000546001600160a01b03163314610f5b5760405162461bcd60e51b815260206004820152601c60248201527f43616c6c6572206973206e6f742074686520676f7665726e616e63650000000060448201526064015b60405180910390fd5b610f686001848484611b9c565b505050565b6040517e92bac900000000000000000000000000000000000000000000000000000000815273__$edce581bb06331cf4dae1387760565e5d1$__906292bac990610fc4906001908890889088908890600401613b23565b60006040518083038186803b158015610fdc57600080fd5b505af4158015610ff0573d6000803e3d6000fd5b5050505050505050565b6040517fa76558b300000000000000000000000000000000000000000000000000000000815273__$9935b6ea18e0c526c293569ddd26842c9b$__9063a76558b3906110559060019089908990899089908990600401613bbc565b60006040518083038186803b15801561106d57600080fd5b505af4158015611081573d6000803e3d6000fd5b505050505050505050565b6040517fc87de7f400000000000000000000000000000000000000000000000000000000815260016004820152602481018390526044810182905273__$0f118c52967a3847a37f0a2ef02ffcee04$__9063c87de7f4906064015b60006040518083038186803b1580156110ff57600080fd5b505af4158015611113573d6000803e3d6000fd5b50505050505050565b6040517f89b43a8600000000000000000000000000000000000000000000000000000000815273__$a542940934c03bae9a39609192cb25cc3c$__906389b43a86906110559060019089908990899089908990600401613c06565b6040517f899bef9d00000000000000000000000000000000000000000000000000000000815273__$edce581bb06331cf4dae1387760565e5d1$__9063899bef9d90610fc4906001908890889088908890600401613c47565b6040517f99b0b84700000000000000000000000000000000000000000000000000000000815273__$0f118c52967a3847a37f0a2ef02ffcee04$__906399b0b84790610ec8906001908690869060040161396d565b6040517faea7fd0b00000000000000000000000000000000000000000000000000000000815273__$894ce12e79ca3e5683c1b49e363f37fa22$__9063aea7fd0b90610ec89060019086908690600401613c7e565b6000546001600160a01b031633146112d45760405162461bcd60e51b815260206004820152601c60248201527f43616c6c6572206973206e6f742074686520676f7665726e616e6365000000006044820152606401610f52565b6001600160a01b038216600081815260086020908152604091829020805460ff191685151590811790915591519182527f9065599c12c4294d9e2201638226d0d0beb95c228f468c4e7c2bdb8322b6066f910160405180910390a25050565b6040517f3b5d9f2400000000000000000000000000000000000000000000000000000000815273__$a542940934c03bae9a39609192cb25cc3c$__90633b5d9f2490610fc4906001908890889088908890600401613db1565b6040517f624526fe00000000000000000000000000000000000000000000000000000000815273__$a542940934c03bae9a39609192cb25cc3c$__9063624526fe906110559060019089908990899089908990600401613e0b565b6000546001600160a01b031633146114415760405162461bcd60e51b815260206004820152601c60248201527f43616c6c6572206973206e6f742074686520676f7665726e616e6365000000006044820152606401610f52565b611113600188888888888888611dcf565b6040517f2fcc8fb100000000000000000000000000000000000000000000000000000000815273__$24f7e155a6d011c1bf9032506ba9b1954c$__90632fcc8fb1906110e790600190879087908790600401613e4e565b6040517f07f96c4200000000000000000000000000000000000000000000000000000000815273__$edce581bb06331cf4dae1387760565e5d1$__906307f96c42906110e790600190879087908790600401613e92565b6040517fd079fbb100000000000000000000000000000000000000000000000000000000815273__$0f118c52967a3847a37f0a2ef02ffcee04$__9063d079fbb190611553906001908590600401613ebc565b60006040518083038186803b15801561156b57600080fd5b505af415801561157f573d6000803e3d6000fd5b5050505050565b6000546001600160a01b031633146115e05760405162461bcd60e51b815260206004820152601c60248201527f43616c6c6572206973206e6f742074686520676f7665726e616e6365000000006044820152606401610f52565b61108160018a8a8a8a8a8a8a8a8a612192565b6040517f4afbe4c90000000000000000000000000000000000000000000000000000000081526001600482015260248101849052604481018390526064810182905273__$0f118c52967a3847a37f0a2ef02ffcee04$__90634afbe4c9906084016110e7565b6040517fc8f7794300000000000000000000000000000000000000000000000000000000815273__$edce581bb06331cf4dae1387760565e5d1$__9063c8f77943906116b8906001908b908b908b908b908b908b908b90600401613ed0565b60006040518083038186803b1580156116d057600080fd5b505af41580156116e4573d6000803e3d6000fd5b5050505050505050505050565b6000546001600160a01b0316331461174b5760405162461bcd60e51b815260206004820152601c60248201527f43616c6c6572206973206e6f742074686520676f7665726e616e6365000000006044820152606401610f52565b610ef46001878787878787612741565b6000546001600160a01b031633146117b55760405162461bcd60e51b815260206004820152601c60248201527f43616c6c6572206973206e6f742074686520676f7665726e616e6365000000006044820152606401610f52565b6117c3600185858585612ac6565b50505050565b6040517fa164de6e00000000000000000000000000000000000000000000000000000000815273__$9935b6ea18e0c526c293569ddd26842c9b$__9063a164de6e90610fc4906001908890889088908890600401613b23565b6040517fb79a972500000000000000000000000000000000000000000000000000000000815273__$edce581bb06331cf4dae1387760565e5d1$__9063b79a9725906110e790600190879087908790600401613e4e565b611884600182612c38565b50565b6000546001600160a01b031633146118e15760405162461bcd60e51b815260206004820152601c60248201527f43616c6c6572206973206e6f742074686520676f7665726e616e6365000000006044820152606401610f52565b6001600160a01b03811661195d5760405162461bcd60e51b815260206004820152602260248201527f4e657720676f7665726e616e636520697320746865207a65726f20616464726560448201527f73730000000000000000000000000000000000000000000000000000000000006064820152608401610f52565b61188481612d90565b6040517f7333b36900000000000000000000000000000000000000000000000000000000815273__$9935b6ea18e0c526c293569ddd26842c9b$__90637333b369906110559060019089908990899089908990600401613f5b565b6040805161012081018252600080825260208201819052918101829052606081018290526080810182905260a0810182905260c0810182905260e081018290526101008101919091526001600160601b031982166000908152601d60209081526040918290208251610120810184528154815260018201549281019290925260028101546001600160401b0381169383019390935263ffffffff600160401b8404811660608401526c01000000000000000000000000840481166080840152600160801b8404811660a0840152600160a01b84041660c0830152909160e083019060ff600160c01b909104166005811115611abe57611abe61380e565b6005811115611acf57611acf61380e565b81526020016003820154815250509050919050565b611b0c6040805160808101825260008082526020820181905291810182905290606082015290565b6000828152600d602090815260409182902082516080810184528154606081811b6001600160601b0319168352600160a01b82046001600160401b031694830194909452600160e01b900463ffffffff16938101939093526001810154909183019060ff166003811115611b8257611b8261380e565b6003811115611b9357611b9361380e565b90525092915050565b6000836001600160401b031611611c1b5760405162461bcd60e51b815260206004820152603060248201527f4465706f7369742064757374207468726573686f6c64206d757374206265206760448201527f726561746572207468616e207a65726f000000000000000000000000000000006064820152608401610f52565b6000826001600160401b031611611c9a5760405162461bcd60e51b815260206004820152603660248201527f4465706f736974207472656173757279206665652064697669736f72206d757360448201527f742062652067726561746572207468616e207a65726f000000000000000000006064820152608401610f52565b6000816001600160401b031611611d195760405162461bcd60e51b815260206004820152603560248201527f4465706f736974207472616e73616374696f6e206d617820666565206d75737460448201527f2062652067726561746572207468616e207a65726f00000000000000000000006064820152608401610f52565b6004840180547fffffffff0000000000000000ffffffffffffffffffffffffffffffffffffffff16600160a01b6001600160401b03868116918202929092179092556005860180548583166fffffffffffffffffffffffffffffffff199091168117600160401b938616938402179091556040805193845260208401919091528201527f1ced468902ca566e746a3c8c9516af81f8de9f1021c365083be9f2625ebfb7b59060600160405180910390a150505050565b856001600160401b0316856001600160401b031611611e7c5760405162461bcd60e51b815260206004820152605960248201527f57616c6c6574206372656174696f6e206d6178696d756d204254432062616c6160448201527f6e6365206d7573742062652067726561746572207468616e207468652063726560648201527f6174696f6e206d696e696d756d204254432062616c616e636500000000000000608482015260a401610f52565b6000846001600160401b031611611efb5760405162461bcd60e51b815260206004820152603c60248201527f57616c6c657420636c6f73757265206d696e696d756d204254432062616c616e60448201527f6365206d7573742062652067726561746572207468616e207a65726f000000006064820152608401610f52565b6000826001600160401b031611611f7a5760405162461bcd60e51b815260206004820152603560248201527f57616c6c6574206d6178696d756d20425443207472616e73666572206d75737460448201527f2062652067726561746572207468616e207a65726f00000000000000000000006064820152608401610f52565b60008163ffffffff1611611ff65760405162461bcd60e51b815260206004820152602f60248201527f57616c6c657420636c6f73696e6720706572696f64206d75737420626520677260448201527f6561746572207468616e207a65726f00000000000000000000000000000000006064820152608401610f52565b868860190160006101000a81548163ffffffff021916908363ffffffff160217905550858860190160046101000a8154816001600160401b0302191690836001600160401b031602179055508488601901600c6101000a8154816001600160401b0302191690836001600160401b03160217905550838860190160146101000a8154816001600160401b0302191690836001600160401b031602179055508288601901601c6101000a81548163ffffffff021916908363ffffffff1602179055508188601a0160186101000a8154816001600160401b0302191690836001600160401b031602179055508088601b0160006101000a81548163ffffffff021916908363ffffffff1602179055507fc7d3a9af08692aeae771c329fddd95c7237a9f76fec996325f3959eeff07d4ac87878787878787604051612180979695949392919063ffffffff97881681526001600160401b03968716602082015294861660408601529285166060850152908516608084015290921660a0820152911660c082015260e00190565b60405180910390a15050505050505050565b6000896001600160401b031611612213576040805162461bcd60e51b81526020600482015260248101919091527f4d6f76696e672066756e6473207472616e73616374696f6e206d617820746f7460448201527f616c20666565206d7573742062652067726561746572207468616e207a65726f6064820152608401610f52565b6000886001600160401b0316116122925760405162461bcd60e51b815260206004820152603560248201527f4d6f76696e672066756e64732064757374207468726573686f6c64206d75737460448201527f2062652067726561746572207468616e207a65726f00000000000000000000006064820152608401610f52565b60008763ffffffff161161230e5760405162461bcd60e51b815260206004820152602e60248201527f4d6f76696e672066756e64732074696d656f7574206d7573742062652067726560448201527f61746572207468616e207a65726f0000000000000000000000000000000000006064820152608401610f52565b60648511156123ab5760405162461bcd60e51b815260206004820152604d60248201527f4d6f76696e672066756e64732074696d656f7574206e6f74696669657220726560448201527f77617264206d756c7469706c696572206d75737420626520696e20746865207260648201527f616e6765205b302c203130305d00000000000000000000000000000000000000608482015260a401610f52565b6000846001600160401b0316116124505760405162461bcd60e51b815260206004820152604560248201527f4d6f7665642066756e6473207377656570207472616e73616374696f6e206d6160448201527f7820746f74616c20666565206d7573742062652067726561746572207468616e60648201527f207a65726f000000000000000000000000000000000000000000000000000000608482015260a401610f52565b60008363ffffffff16116124cc5760405162461bcd60e51b815260206004820152603360248201527f4d6f7665642066756e64732073776565702074696d656f7574206d757374206260448201527f652067726561746572207468616e207a65726f000000000000000000000000006064820152608401610f52565b60648111156125695760405162461bcd60e51b815260206004820152605260248201527f4d6f7665642066756e64732073776565702074696d656f7574206e6f7469666960448201527f657220726577617264206d756c7469706c696572206d75737420626520696e2060648201527f7468652072616e6765205b302c203130305d0000000000000000000000000000608482015260a401610f52565b888a60080160006101000a8154816001600160401b0302191690836001600160401b03160217905550878a60080160086101000a8154816001600160401b0302191690836001600160401b03160217905550868a60080160106101000a81548163ffffffff021916908363ffffffff160217905550858a60080160146101000a8154816001600160601b0302191690836001600160601b03160217905550848a60090181905550838a600a0160006101000a8154816001600160401b0302191690836001600160401b03160217905550828a600a0160086101000a81548163ffffffff021916908363ffffffff160217905550818a600a01600c6101000a8154816001600160601b0302191690836001600160601b03160217905550808a600b01819055507f5662a4f84a0d9b64b01c0f14b329ff73e09d4bc2e2684d90174e31615b40a4a289898989898989898960405161272d999897969594939291906001600160401b03998a168152978916602089015263ffffffff96871660408901526001600160601b03958616606089015260808801949094529190961660a08601529490921660c08401529290921660e08201526101008101919091526101200190565b60405180910390a150505050505050505050565b6000866001600160401b0316116127c05760405162461bcd60e51b815260206004820152603360248201527f526564656d7074696f6e2064757374207468726573686f6c64206d757374206260448201527f652067726561746572207468616e207a65726f000000000000000000000000006064820152608401610f52565b6000856001600160401b03161161283f5760405162461bcd60e51b815260206004820152603960248201527f526564656d7074696f6e207472656173757279206665652064697669736f722060448201527f6d7573742062652067726561746572207468616e207a65726f000000000000006064820152608401610f52565b6000846001600160401b0316116128be5760405162461bcd60e51b815260206004820152603860248201527f526564656d7074696f6e207472616e73616374696f6e206d617820666565206d60448201527f7573742062652067726561746572207468616e207a65726f00000000000000006064820152608401610f52565b600083116129345760405162461bcd60e51b815260206004820152602c60248201527f526564656d7074696f6e2074696d656f7574206d75737420626520677265617460448201527f6572207468616e207a65726f00000000000000000000000000000000000000006064820152608401610f52565b60648111156129d15760405162461bcd60e51b815260206004820152604b60248201527f526564656d7074696f6e2074696d656f7574206e6f746966696572207265776160448201527f7264206d756c7469706c696572206d75737420626520696e207468652072616e60648201527f6765205b302c203130305d000000000000000000000000000000000000000000608482015260a401610f52565b600d870180546001600160401b038881166fffffffffffffffffffffffffffffffff199092168217600160401b898316908102919091177fffffffffffffffff0000000000000000ffffffffffffffffffffffffffffffff16600160801b92891692830217909355600e8a01869055600f8a0180546001600160601b0319166001600160601b03871690811790915560108b018590556040805193845260208401949094529282015260608101859052608081019190915260a081018290527f944cd06e316cc3da4159300dd41ab23416c89a5136c41fa79d57fe8a34bcc10f9060c00160405180910390a150505050505050565b60008311612b3c5760405162461bcd60e51b815260206004820152603860248201527f4672617564206368616c6c656e6765206465666561742074696d656f7574206d60448201527f7573742062652067726561746572207468616e207a65726f00000000000000006064820152608401610f52565b6064811115612bb35760405162461bcd60e51b815260206004820152603e60248201527f4672617564206e6f74696669657220726577617264206d756c7469706c69657260448201527f206d75737420626520696e207468652072616e6765205b302c203130305d00006064820152608401610f52565b60138501849055601485018390556015850180546001600160601b0319166001600160601b03841690811790915560168601829055604080518681526020810186905290810191909152606081018290527fd0d6d92441fbb139a023c9c62586dbd767824f37869c45da6443fc3aef64194f9060800160405180910390a15050505050565b6001600160601b031981166000908152601c83016020526040902060036002820154600160c01b900460ff166005811115612c7557612c7561380e565b14612ce85760405162461bcd60e51b815260206004820152602560248201527f45434453412077616c6c6574206d75737420626520696e20436c6f73696e672060448201527f73746174650000000000000000000000000000000000000000000000000000006064820152608401610f52565b601b8301546002820154612d0c9163ffffffff90811691600160801b900416613fae565b63ffffffff164211612d865760405162461bcd60e51b815260206004820152602260248201527f436c6f73696e6720706572696f6420686173206e6f7420656c6170736564207960448201527f65740000000000000000000000000000000000000000000000000000000000006064820152608401610f52565b610f688383612e09565b600080546001600160a01b038381167fffffffffffffffffffffffff000000000000000000000000000000000000000083168117909355604080519190921680825260208201939093527f5f56bee8cffbe9a78652a74a60705edede02af10b0bbb888ca44b79a0d42ce80910160405180910390a15050565b6001600160601b031981166000818152601c840160205260408082206002810180547fffffffffffffff00ffffffffffffffffffffffffffffffffffffffffffffffff167804000000000000000000000000000000000000000000000000179055805491519093927f47b159947c3066cb253f60e8f046cfd747411788a545cb189679e3fa1467b28d91a3600283015481546040517f343bb9270000000000000000000000000000000000000000000000000000000081526001600160a01b039092169163343bb92791612ee39160040190815260200190565b600060405180830381600087803b158015612efd57600080fd5b505af1158015611113573d6000803e3d6000fd5b600060208284031215612f2357600080fd5b5035919050565b80356001600160601b031981168114612f4257600080fd5b919050565b600060608284031215612f5957600080fd5b50919050565b60008060808385031215612f7257600080fd5b612f7b83612f2a565b9150612f8a8460208501612f47565b90509250929050565b80356001600160401b0381168114612f4257600080fd5b600080600060608486031215612fbf57600080fd5b612fc884612f93565b9250612fd660208501612f93565b9150612fe460408501612f93565b90509250925092565b600060808284031215612f5957600080fd5b60008060008060c0858703121561301557600080fd5b84356001600160401b038082111561302c57600080fd5b61303888838901612fed565b9550602087013591508082111561304e57600080fd5b5061305b87828801612f47565b93505061306b8660408701612f47565b915061307960a08601612f2a565b905092959194509250565b60008083601f84011261309657600080fd5b5081356001600160401b038111156130ad57600080fd5b6020830191508360208260051b85010111156130c857600080fd5b9250929050565b60008083601f8401126130e157600080fd5b5081356001600160401b038111156130f857600080fd5b6020830191508360208285010111156130c857600080fd5b60008060008060006060868803121561312857600080fd5b61313186612f2a565b945060208601356001600160401b038082111561314d57600080fd5b61315989838a01613084565b9096509450604088013591508082111561317257600080fd5b5061317f888289016130cf565b969995985093965092949392505050565b6000806000606084860312156131a557600080fd5b505081359360208301359350604090920135919050565b6000806000806000606086880312156131d457600080fd5b85356001600160401b03808211156131eb57600080fd5b6131f789838a016130cf565b9097509550602088013591508082111561321057600080fd5b5061321d88828901613084565b96999598509660400135949350505050565b803563ffffffff81168114612f4257600080fd5b6000806000806060858703121561325957600080fd5b843593506132696020860161322f565b925060408501356001600160401b0381111561328457600080fd5b61329087828801613084565b95989497509550505050565b6000808284036101008112156132b157600080fd5b83356001600160401b038111156132c757600080fd5b6132d386828701612fed565b93505060e0601f19820112156132e857600080fd5b506020830190509250929050565b80356001600160a01b0381168114612f4257600080fd5b80358015158114612f4257600080fd5b6000806040838503121561333057600080fd5b613339836132f6565b9150612f8a6020840161330d565b60008060008060a0858703121561335d57600080fd5b84356001600160401b0381111561337357600080fd5b61337f878288016130cf565b909550935050602085013591506130798660408701612f47565b6000806000806000606086880312156133b157600080fd5b85356001600160401b03808211156133c857600080fd5b6133d489838a016130cf565b909750955060208801359150808211156133ed57600080fd5b506133fa888289016130cf565b909450925061340d90506040870161330d565b90509295509295909350565b600080600080600080600060e0888a03121561343457600080fd5b61343d8861322f565b965061344b60208901612f93565b955061345960408901612f93565b945061346760608901612f93565b93506134756080890161322f565b925061348360a08901612f93565b915061349160c0890161322f565b905092959891949750929550565b600080600060a084860312156134b457600080fd5b83356001600160401b03808211156134cb57600080fd5b6134d787838801612fed565b945060208601359150808211156134ed57600080fd5b506134fa86828701612f47565b925050612fe48560408601612f47565b60008060006040848603121561351f57600080fd5b61352884612f2a565b925060208401356001600160401b0381111561354357600080fd5b61354f86828701613084565b9497909650939450505050565b60006060828403121561356e57600080fd5b6135788383612f47565b9392505050565b80356001600160601b0381168114612f4257600080fd5b60008060008060008060008060006101208a8c0312156135b557600080fd5b6135be8a612f93565b98506135cc60208b01612f93565b97506135da60408b0161322f565b96506135e860608b0161357f565b955060808a013594506135fd60a08b01612f93565b935061360b60c08b0161322f565b925061361960e08b0161357f565b91506101008a013590509295985092959850929598565b600080600080600080600060e0888a03121561364b57600080fd5b61365488612f2a565b96506136638960208a01612f47565b955060808801356001600160401b038082111561367f57600080fd5b61368b8b838c01613084565b909750955060a08a0135945060c08a01359150808211156136ab57600080fd5b506136b88a828b01613084565b989b979a50959850939692959293505050565b60008060008060008060c087890312156136e457600080fd5b6136ed87612f93565b95506136fb60208801612f93565b945061370960408801612f93565b93506060870135925061371e6080880161357f565b915060a087013590509295509295509295565b6000806000806080858703121561374757600080fd5b843593506020850135925061375e6040860161357f565b9396929550929360600135925050565b60006020828403121561378057600080fd5b61357882612f2a565b60006020828403121561379b57600080fd5b613578826132f6565b600080600080600060c086880312156137bc57600080fd5b6137c586612f2a565b94506137d48760208801612f47565b935060808601356001600160401b038111156137ef57600080fd5b6137fb888289016130cf565b909450925061340d905060a08701612f93565b634e487b7160e01b600052602160045260246000fd5b600681106138345761383461380e565b9052565b60006101208201905082518252602083015160208301526001600160401b03604084015116604083015263ffffffff60608401511660608301526080830151613889608084018263ffffffff169052565b5060a08301516138a160a084018263ffffffff169052565b5060c08301516138b960c084018263ffffffff169052565b5060e08301516138cc60e0840182613824565b5061010092830151919092015290565b81516001600160601b03191681526020808301516001600160401b03169082015260408083015163ffffffff169082015260608201516080820190600481106139275761392761380e565b8060608401525092915050565b8035825263ffffffff6139496020830161322f565b1660208301526001600160401b0361396360408301612f93565b1660408301525050565b8381526001600160601b03198316602082015260a081016139916040830184613934565b949350505050565b80357fffffffff0000000000000000000000000000000000000000000000000000000081168114612f4257600080fd5b6000808335601e198436030181126139e057600080fd5b83016020810192503590506001600160401b038111156139ff57600080fd5b8036038313156130c857600080fd5b81835281816020850137506000828201602090810191909152601f909101601f19169091010190565b60007fffffffff0000000000000000000000000000000000000000000000000000000080613a6484613999565b168452613a7460208401846139c9565b60806020870152613a89608087018284613a0e565b915050613a9960408501856139c9565b8683036040880152613aac838284613a0e565b9250505081613abd60608601613999565b166060860152809250505092915050565b6000613ada82836139c9565b60608552613aec606086018284613a0e565b91505060208301356020850152613b0660408401846139c9565b8583036040870152613b19838284613a0e565b9695505050505050565b85815260e060208201526000613b3c60e0830187613a37565b8281036040840152613b4e8187613ace565b915050613b5e6060830185613934565b6001600160601b0319831660c08301529695505050505050565b8183526000602080850194508260005b85811015613bb15763ffffffff613b9e8361322f565b1687529582019590820190600101613b88565b509495945050505050565b8681526001600160601b031986166020820152608060408201526000613be6608083018688613b78565b8281036060840152613bf9818587613a0e565b9998505050505050505050565b868152608060208201526000613c20608083018789613a0e565b8281036040840152613c33818688613b78565b915050826060830152979650505050505050565b85815284602082015263ffffffff84166040820152608060608201526000613c73608083018486613b78565b979650505050505050565b6000610120858352806020840152613c9881840186613a37565b91505063ffffffff613ca98461322f565b1660408301526001600160a01b03613cc3602085016132f6565b16606083015260408301357fffffffffffffffff00000000000000000000000000000000000000000000000081168114613cfc57600080fd5b7fffffffffffffffff000000000000000000000000000000000000000000000000166080830152613d2f60608401612f2a565b6001600160601b03191660a0830152613d4a60808401612f2a565b6001600160601b03191660c0830152613d6560a08401613999565b7fffffffff000000000000000000000000000000000000000000000000000000001660e0830152613d9860c084016132f6565b6001600160a01b03811661010084015250949350505050565b85815260c060208201526000613dcb60c083018688613a0e565b90508360408301528235606083015260208301356080830152604083013560ff8116808214613df957600080fd5b8060a085015250509695505050505050565b868152608060208201526000613e25608083018789613a0e565b8281036040840152613e38818688613a0e565b9150508215156060830152979650505050505050565b84815260c060208201526000613e6760c0830186613a37565b8281036040840152613e798186613ace565b915050613e896060830184613934565b95945050505050565b8481526001600160601b031984166020820152606060408201526000613b19606083018486613b78565b828152608081016135786020830184613934565b60006101008a835260206001600160601b0319808c1682860152613ef7604086018c613934565b8260a0860152613f0a8386018a8c613b78565b60c0860189905285810360e0870152868152879350820160005b87811015613f495782613f3686612f2a565b1682529383019390830190600101613f24565b509d9c50505050505050505050505050565b8681526001600160601b031986166020820152613f7b6040820186613934565b60e060a08201526000613f9260e083018587613a0e565b90506001600160401b03831660c0830152979650505050505050565b600063ffffffff808316818516808303821115613fdb57634e487b7160e01b600052601160045260246000fd5b0194935050505056fea26469706673582212204718a3a567654683c663ebcc8a84a054270c47accaa71f4b0256d3a72978536364736f6c63430008090033",
|
|
2363
|
+
"linkReferences": {
|
|
2364
|
+
"contracts/bridge/Deposit.sol": {
|
|
2365
|
+
"Deposit": [
|
|
2366
|
+
{
|
|
2367
|
+
"length": 20,
|
|
2368
|
+
"start": 5797
|
|
2369
|
+
}
|
|
2370
|
+
]
|
|
2371
|
+
},
|
|
2372
|
+
"contracts/bridge/DepositSweep.sol": {
|
|
2373
|
+
"DepositSweep": [
|
|
2374
|
+
{
|
|
2375
|
+
"length": 20,
|
|
2376
|
+
"start": 6354
|
|
2377
|
+
}
|
|
2378
|
+
]
|
|
2379
|
+
},
|
|
2380
|
+
"contracts/bridge/Fraud.sol": {
|
|
2381
|
+
"Fraud": [
|
|
2382
|
+
{
|
|
2383
|
+
"length": 20,
|
|
2384
|
+
"start": 5532
|
|
2385
|
+
},
|
|
2386
|
+
{
|
|
2387
|
+
"length": 20,
|
|
2388
|
+
"start": 6067
|
|
2389
|
+
},
|
|
2390
|
+
{
|
|
2391
|
+
"length": 20,
|
|
2392
|
+
"start": 6156
|
|
2393
|
+
}
|
|
2394
|
+
]
|
|
2395
|
+
},
|
|
2396
|
+
"contracts/bridge/MovingFunds.sol": {
|
|
2397
|
+
"MovingFunds": [
|
|
2398
|
+
{
|
|
2399
|
+
"length": 20,
|
|
2400
|
+
"start": 4851
|
|
2401
|
+
},
|
|
2402
|
+
{
|
|
2403
|
+
"length": 20,
|
|
2404
|
+
"start": 5100
|
|
2405
|
+
},
|
|
2406
|
+
{
|
|
2407
|
+
"length": 20,
|
|
2408
|
+
"start": 5623
|
|
2409
|
+
},
|
|
2410
|
+
{
|
|
2411
|
+
"length": 20,
|
|
2412
|
+
"start": 6441
|
|
2413
|
+
},
|
|
2414
|
+
{
|
|
2415
|
+
"length": 20,
|
|
2416
|
+
"start": 6873
|
|
2417
|
+
},
|
|
2418
|
+
{
|
|
2419
|
+
"length": 20,
|
|
2420
|
+
"start": 7330
|
|
2421
|
+
}
|
|
2422
|
+
]
|
|
2423
|
+
},
|
|
2424
|
+
"contracts/bridge/Redemption.sol": {
|
|
2425
|
+
"Redemption": [
|
|
2426
|
+
{
|
|
2427
|
+
"length": 20,
|
|
2428
|
+
"start": 5242
|
|
2429
|
+
},
|
|
2430
|
+
{
|
|
2431
|
+
"length": 20,
|
|
2432
|
+
"start": 7241
|
|
2433
|
+
},
|
|
2434
|
+
{
|
|
2435
|
+
"length": 20,
|
|
2436
|
+
"start": 7654
|
|
2437
|
+
}
|
|
2438
|
+
]
|
|
2439
|
+
},
|
|
2440
|
+
"contracts/bridge/Wallets.sol": {
|
|
2441
|
+
"Wallets": [
|
|
2442
|
+
{
|
|
2443
|
+
"length": 20,
|
|
2444
|
+
"start": 5409
|
|
2445
|
+
},
|
|
2446
|
+
{
|
|
2447
|
+
"length": 20,
|
|
2448
|
+
"start": 5712
|
|
2449
|
+
},
|
|
2450
|
+
{
|
|
2451
|
+
"length": 20,
|
|
2452
|
+
"start": 6528
|
|
2453
|
+
},
|
|
2454
|
+
{
|
|
2455
|
+
"length": 20,
|
|
2456
|
+
"start": 6799
|
|
2457
|
+
}
|
|
2458
|
+
]
|
|
2459
|
+
}
|
|
2460
|
+
},
|
|
2461
|
+
"deployedLinkReferences": {
|
|
2462
|
+
"contracts/bridge/Deposit.sol": {
|
|
2463
|
+
"Deposit": [
|
|
2464
|
+
{
|
|
2465
|
+
"length": 20,
|
|
2466
|
+
"start": 4685
|
|
2467
|
+
}
|
|
2468
|
+
]
|
|
2469
|
+
},
|
|
2470
|
+
"contracts/bridge/DepositSweep.sol": {
|
|
2471
|
+
"DepositSweep": [
|
|
2472
|
+
{
|
|
2473
|
+
"length": 20,
|
|
2474
|
+
"start": 5242
|
|
2475
|
+
}
|
|
2476
|
+
]
|
|
2477
|
+
},
|
|
2478
|
+
"contracts/bridge/Fraud.sol": {
|
|
2479
|
+
"Fraud": [
|
|
2480
|
+
{
|
|
2481
|
+
"length": 20,
|
|
2482
|
+
"start": 4420
|
|
2483
|
+
},
|
|
2484
|
+
{
|
|
2485
|
+
"length": 20,
|
|
2486
|
+
"start": 4955
|
|
2487
|
+
},
|
|
2488
|
+
{
|
|
2489
|
+
"length": 20,
|
|
2490
|
+
"start": 5044
|
|
2491
|
+
}
|
|
2492
|
+
]
|
|
2493
|
+
},
|
|
2494
|
+
"contracts/bridge/MovingFunds.sol": {
|
|
2495
|
+
"MovingFunds": [
|
|
2496
|
+
{
|
|
2497
|
+
"length": 20,
|
|
2498
|
+
"start": 3739
|
|
2499
|
+
},
|
|
2500
|
+
{
|
|
2501
|
+
"length": 20,
|
|
2502
|
+
"start": 3988
|
|
2503
|
+
},
|
|
2504
|
+
{
|
|
2505
|
+
"length": 20,
|
|
2506
|
+
"start": 4511
|
|
2507
|
+
},
|
|
2508
|
+
{
|
|
2509
|
+
"length": 20,
|
|
2510
|
+
"start": 5329
|
|
2511
|
+
},
|
|
2512
|
+
{
|
|
2513
|
+
"length": 20,
|
|
2514
|
+
"start": 5761
|
|
2515
|
+
},
|
|
2516
|
+
{
|
|
2517
|
+
"length": 20,
|
|
2518
|
+
"start": 6218
|
|
2519
|
+
}
|
|
2520
|
+
]
|
|
2521
|
+
},
|
|
2522
|
+
"contracts/bridge/Redemption.sol": {
|
|
2523
|
+
"Redemption": [
|
|
2524
|
+
{
|
|
2525
|
+
"length": 20,
|
|
2526
|
+
"start": 4130
|
|
2527
|
+
},
|
|
2528
|
+
{
|
|
2529
|
+
"length": 20,
|
|
2530
|
+
"start": 6129
|
|
2531
|
+
},
|
|
2532
|
+
{
|
|
2533
|
+
"length": 20,
|
|
2534
|
+
"start": 6542
|
|
2535
|
+
}
|
|
2536
|
+
]
|
|
2537
|
+
},
|
|
2538
|
+
"contracts/bridge/Wallets.sol": {
|
|
2539
|
+
"Wallets": [
|
|
2540
|
+
{
|
|
2541
|
+
"length": 20,
|
|
2542
|
+
"start": 4297
|
|
2543
|
+
},
|
|
2544
|
+
{
|
|
2545
|
+
"length": 20,
|
|
2546
|
+
"start": 4600
|
|
2547
|
+
},
|
|
2548
|
+
{
|
|
2549
|
+
"length": 20,
|
|
2550
|
+
"start": 5416
|
|
2551
|
+
},
|
|
2552
|
+
{
|
|
2553
|
+
"length": 20,
|
|
2554
|
+
"start": 5687
|
|
2555
|
+
}
|
|
2556
|
+
]
|
|
2557
|
+
}
|
|
2558
|
+
}
|
|
221
2559
|
}
|