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