@keep-network/tbtc-v2 0.1.1-dev.43 → 0.1.1-dev.46
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/artifacts/Bank.json +742 -0
- package/artifacts/Bridge.json +2961 -0
- package/artifacts/Deposit.json +117 -0
- package/artifacts/EcdsaDkgValidator.json +532 -0
- package/artifacts/EcdsaInactivity.json +156 -0
- package/artifacts/Fraud.json +153 -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 +137 -0
- package/artifacts/NuCypherStakingEscrow.json +256 -0
- package/artifacts/NuCypherToken.json +711 -0
- package/artifacts/RandomBeaconStub.json +141 -0
- package/artifacts/Redemption.json +161 -0
- package/artifacts/ReimbursementPool.json +509 -0
- package/artifacts/Relay.json +123 -0
- package/artifacts/SortitionPool.json +944 -0
- package/artifacts/Sweep.json +76 -0
- package/artifacts/T.json +1148 -0
- package/artifacts/TBTC.json +21 -21
- package/artifacts/TBTCToken.json +21 -21
- package/artifacts/TokenStaking.json +2288 -0
- package/artifacts/TokenholderGovernor.json +1795 -0
- package/artifacts/TokenholderTimelock.json +1058 -0
- package/artifacts/VendingMachine.json +24 -24
- package/artifacts/VendingMachineKeep.json +400 -0
- package/artifacts/VendingMachineNuCypher.json +400 -0
- package/artifacts/WalletRegistry.json +2709 -0
- package/artifacts/WalletRegistryGovernance.json +2364 -0
- package/artifacts/Wallets.json +186 -0
- package/artifacts/solcInputs/{f2c15d3cf1bd9566483f595c5ed30ccc.json → 75d54bcf8c4f0b65acb7ec6a1fb9af9d.json} +19 -19
- package/build/contracts/GovernanceUtils.sol/GovernanceUtils.dbg.json +1 -1
- package/build/contracts/bank/Bank.sol/Bank.dbg.json +1 -1
- 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 +438 -31
- package/build/contracts/bridge/BridgeState.sol/BridgeState.dbg.json +1 -1
- package/build/contracts/bridge/BridgeState.sol/BridgeState.json +120 -2
- package/build/contracts/bridge/Deposit.sol/Deposit.dbg.json +1 -1
- package/build/contracts/bridge/Deposit.sol/Deposit.json +2 -2
- package/build/contracts/bridge/EcdsaLib.sol/EcdsaLib.dbg.json +1 -1
- package/build/contracts/bridge/Fraud.sol/Fraud.dbg.json +1 -1
- package/build/contracts/bridge/Fraud.sol/Fraud.json +5 -5
- package/build/contracts/bridge/IRelay.sol/IRelay.dbg.json +1 -1
- package/build/contracts/bridge/MovingFunds.sol/MovingFunds.dbg.json +1 -1
- package/build/contracts/bridge/MovingFunds.sol/MovingFunds.json +40 -2
- package/build/contracts/bridge/Redemption.sol/OutboundTx.dbg.json +1 -1
- package/build/contracts/bridge/Redemption.sol/OutboundTx.json +2 -2
- package/build/contracts/bridge/Redemption.sol/Redemption.dbg.json +1 -1
- package/build/contracts/bridge/Redemption.sol/Redemption.json +2 -2
- package/build/contracts/bridge/Sweep.sol/Sweep.dbg.json +1 -1
- package/build/contracts/bridge/Sweep.sol/Sweep.json +2 -2
- package/build/contracts/bridge/VendingMachine.sol/VendingMachine.dbg.json +1 -1
- package/build/contracts/bridge/Wallets.sol/Wallets.dbg.json +1 -1
- package/build/contracts/bridge/Wallets.sol/Wallets.json +21 -2
- package/build/contracts/token/TBTC.sol/TBTC.dbg.json +1 -1
- package/build/contracts/vault/IVault.sol/IVault.dbg.json +1 -1
- package/build/contracts/vault/TBTCVault.sol/TBTCVault.dbg.json +1 -1
- package/contracts/bridge/Bridge.sol +313 -18
- package/contracts/bridge/BridgeState.sol +288 -5
- package/contracts/bridge/Deposit.sol +2 -2
- package/contracts/bridge/Fraud.sol +47 -17
- package/contracts/bridge/MovingFunds.sol +181 -1
- package/contracts/bridge/Redemption.sol +7 -12
- package/contracts/bridge/Sweep.sol +0 -3
- package/contracts/bridge/Wallets.sol +74 -33
- package/deploy/00_resolve_relay.ts +28 -0
- package/deploy/04_deploy_bank.ts +25 -0
- package/deploy/05_deploy_bridge.ts +60 -0
- package/deploy/06_bank_update_bridge.ts +19 -0
- package/deploy/07_transfer_ownership.ts +17 -0
- package/export.json +14827 -460
- package/package.json +2 -2
|
@@ -34,6 +34,31 @@
|
|
|
34
34
|
"stateMutability": "nonpayable",
|
|
35
35
|
"type": "constructor"
|
|
36
36
|
},
|
|
37
|
+
{
|
|
38
|
+
"anonymous": false,
|
|
39
|
+
"inputs": [
|
|
40
|
+
{
|
|
41
|
+
"indexed": false,
|
|
42
|
+
"internalType": "uint64",
|
|
43
|
+
"name": "depositDustThreshold",
|
|
44
|
+
"type": "uint64"
|
|
45
|
+
},
|
|
46
|
+
{
|
|
47
|
+
"indexed": false,
|
|
48
|
+
"internalType": "uint64",
|
|
49
|
+
"name": "depositTreasuryFeeDivisor",
|
|
50
|
+
"type": "uint64"
|
|
51
|
+
},
|
|
52
|
+
{
|
|
53
|
+
"indexed": false,
|
|
54
|
+
"internalType": "uint64",
|
|
55
|
+
"name": "depositTxMaxFee",
|
|
56
|
+
"type": "uint64"
|
|
57
|
+
}
|
|
58
|
+
],
|
|
59
|
+
"name": "DepositParametersUpdated",
|
|
60
|
+
"type": "event"
|
|
61
|
+
},
|
|
37
62
|
{
|
|
38
63
|
"anonymous": false,
|
|
39
64
|
"inputs": [
|
|
@@ -120,7 +145,7 @@
|
|
|
120
145
|
{
|
|
121
146
|
"indexed": false,
|
|
122
147
|
"internalType": "bytes20",
|
|
123
|
-
"name": "
|
|
148
|
+
"name": "walletPubKeyHash",
|
|
124
149
|
"type": "bytes20"
|
|
125
150
|
},
|
|
126
151
|
{
|
|
@@ -139,7 +164,7 @@
|
|
|
139
164
|
{
|
|
140
165
|
"indexed": false,
|
|
141
166
|
"internalType": "bytes20",
|
|
142
|
-
"name": "
|
|
167
|
+
"name": "walletPubKeyHash",
|
|
143
168
|
"type": "bytes20"
|
|
144
169
|
},
|
|
145
170
|
{
|
|
@@ -158,7 +183,7 @@
|
|
|
158
183
|
{
|
|
159
184
|
"indexed": false,
|
|
160
185
|
"internalType": "bytes20",
|
|
161
|
-
"name": "
|
|
186
|
+
"name": "walletPubKeyHash",
|
|
162
187
|
"type": "bytes20"
|
|
163
188
|
},
|
|
164
189
|
{
|
|
@@ -189,6 +214,62 @@
|
|
|
189
214
|
"name": "FraudChallengeSubmitted",
|
|
190
215
|
"type": "event"
|
|
191
216
|
},
|
|
217
|
+
{
|
|
218
|
+
"anonymous": false,
|
|
219
|
+
"inputs": [
|
|
220
|
+
{
|
|
221
|
+
"indexed": false,
|
|
222
|
+
"internalType": "uint256",
|
|
223
|
+
"name": "fraudSlashingAmount",
|
|
224
|
+
"type": "uint256"
|
|
225
|
+
},
|
|
226
|
+
{
|
|
227
|
+
"indexed": false,
|
|
228
|
+
"internalType": "uint256",
|
|
229
|
+
"name": "fraudNotifierRewardMultiplier",
|
|
230
|
+
"type": "uint256"
|
|
231
|
+
},
|
|
232
|
+
{
|
|
233
|
+
"indexed": false,
|
|
234
|
+
"internalType": "uint256",
|
|
235
|
+
"name": "fraudChallengeDefeatTimeout",
|
|
236
|
+
"type": "uint256"
|
|
237
|
+
},
|
|
238
|
+
{
|
|
239
|
+
"indexed": false,
|
|
240
|
+
"internalType": "uint256",
|
|
241
|
+
"name": "fraudChallengeDepositAmount",
|
|
242
|
+
"type": "uint256"
|
|
243
|
+
}
|
|
244
|
+
],
|
|
245
|
+
"name": "FraudParametersUpdated",
|
|
246
|
+
"type": "event"
|
|
247
|
+
},
|
|
248
|
+
{
|
|
249
|
+
"anonymous": false,
|
|
250
|
+
"inputs": [
|
|
251
|
+
{
|
|
252
|
+
"indexed": false,
|
|
253
|
+
"internalType": "bytes20",
|
|
254
|
+
"name": "walletPubKeyHash",
|
|
255
|
+
"type": "bytes20"
|
|
256
|
+
},
|
|
257
|
+
{
|
|
258
|
+
"indexed": false,
|
|
259
|
+
"internalType": "bytes20[]",
|
|
260
|
+
"name": "targetWallets",
|
|
261
|
+
"type": "bytes20[]"
|
|
262
|
+
},
|
|
263
|
+
{
|
|
264
|
+
"indexed": false,
|
|
265
|
+
"internalType": "address",
|
|
266
|
+
"name": "submitter",
|
|
267
|
+
"type": "address"
|
|
268
|
+
}
|
|
269
|
+
],
|
|
270
|
+
"name": "MovingFundsCommitmentSubmitted",
|
|
271
|
+
"type": "event"
|
|
272
|
+
},
|
|
192
273
|
{
|
|
193
274
|
"anonymous": false,
|
|
194
275
|
"inputs": [
|
|
@@ -208,6 +289,38 @@
|
|
|
208
289
|
"name": "MovingFundsCompleted",
|
|
209
290
|
"type": "event"
|
|
210
291
|
},
|
|
292
|
+
{
|
|
293
|
+
"anonymous": false,
|
|
294
|
+
"inputs": [
|
|
295
|
+
{
|
|
296
|
+
"indexed": false,
|
|
297
|
+
"internalType": "uint64",
|
|
298
|
+
"name": "movingFundsTxMaxTotalFee",
|
|
299
|
+
"type": "uint64"
|
|
300
|
+
},
|
|
301
|
+
{
|
|
302
|
+
"indexed": false,
|
|
303
|
+
"internalType": "uint32",
|
|
304
|
+
"name": "movingFundsTimeout",
|
|
305
|
+
"type": "uint32"
|
|
306
|
+
}
|
|
307
|
+
],
|
|
308
|
+
"name": "MovingFundsParametersUpdated",
|
|
309
|
+
"type": "event"
|
|
310
|
+
},
|
|
311
|
+
{
|
|
312
|
+
"anonymous": false,
|
|
313
|
+
"inputs": [
|
|
314
|
+
{
|
|
315
|
+
"indexed": false,
|
|
316
|
+
"internalType": "bytes20",
|
|
317
|
+
"name": "walletPubKeyHash",
|
|
318
|
+
"type": "bytes20"
|
|
319
|
+
}
|
|
320
|
+
],
|
|
321
|
+
"name": "MovingFundsTimedOut",
|
|
322
|
+
"type": "event"
|
|
323
|
+
},
|
|
211
324
|
{
|
|
212
325
|
"anonymous": false,
|
|
213
326
|
"inputs": [
|
|
@@ -252,6 +365,37 @@
|
|
|
252
365
|
"name": "OwnershipTransferred",
|
|
253
366
|
"type": "event"
|
|
254
367
|
},
|
|
368
|
+
{
|
|
369
|
+
"anonymous": false,
|
|
370
|
+
"inputs": [
|
|
371
|
+
{
|
|
372
|
+
"indexed": false,
|
|
373
|
+
"internalType": "uint64",
|
|
374
|
+
"name": "redemptionDustThreshold",
|
|
375
|
+
"type": "uint64"
|
|
376
|
+
},
|
|
377
|
+
{
|
|
378
|
+
"indexed": false,
|
|
379
|
+
"internalType": "uint64",
|
|
380
|
+
"name": "redemptionTreasuryFeeDivisor",
|
|
381
|
+
"type": "uint64"
|
|
382
|
+
},
|
|
383
|
+
{
|
|
384
|
+
"indexed": false,
|
|
385
|
+
"internalType": "uint64",
|
|
386
|
+
"name": "redemptionTxMaxFee",
|
|
387
|
+
"type": "uint64"
|
|
388
|
+
},
|
|
389
|
+
{
|
|
390
|
+
"indexed": false,
|
|
391
|
+
"internalType": "uint256",
|
|
392
|
+
"name": "redemptionTimeout",
|
|
393
|
+
"type": "uint256"
|
|
394
|
+
}
|
|
395
|
+
],
|
|
396
|
+
"name": "RedemptionParametersUpdated",
|
|
397
|
+
"type": "event"
|
|
398
|
+
},
|
|
255
399
|
{
|
|
256
400
|
"anonymous": false,
|
|
257
401
|
"inputs": [
|
|
@@ -371,6 +515,25 @@
|
|
|
371
515
|
"name": "WalletClosed",
|
|
372
516
|
"type": "event"
|
|
373
517
|
},
|
|
518
|
+
{
|
|
519
|
+
"anonymous": false,
|
|
520
|
+
"inputs": [
|
|
521
|
+
{
|
|
522
|
+
"indexed": true,
|
|
523
|
+
"internalType": "bytes32",
|
|
524
|
+
"name": "ecdsaWalletID",
|
|
525
|
+
"type": "bytes32"
|
|
526
|
+
},
|
|
527
|
+
{
|
|
528
|
+
"indexed": true,
|
|
529
|
+
"internalType": "bytes20",
|
|
530
|
+
"name": "walletPubKeyHash",
|
|
531
|
+
"type": "bytes20"
|
|
532
|
+
}
|
|
533
|
+
],
|
|
534
|
+
"name": "WalletClosing",
|
|
535
|
+
"type": "event"
|
|
536
|
+
},
|
|
374
537
|
{
|
|
375
538
|
"anonymous": false,
|
|
376
539
|
"inputs": [
|
|
@@ -416,6 +579,18 @@
|
|
|
416
579
|
"internalType": "uint32",
|
|
417
580
|
"name": "walletMaxAge",
|
|
418
581
|
"type": "uint32"
|
|
582
|
+
},
|
|
583
|
+
{
|
|
584
|
+
"indexed": false,
|
|
585
|
+
"internalType": "uint64",
|
|
586
|
+
"name": "walletMaxBtcTransfer",
|
|
587
|
+
"type": "uint64"
|
|
588
|
+
},
|
|
589
|
+
{
|
|
590
|
+
"indexed": false,
|
|
591
|
+
"internalType": "uint32",
|
|
592
|
+
"name": "walletClosingPeriod",
|
|
593
|
+
"type": "uint32"
|
|
419
594
|
}
|
|
420
595
|
],
|
|
421
596
|
"name": "WalletParametersUpdated",
|
|
@@ -702,6 +877,19 @@
|
|
|
702
877
|
"stateMutability": "view",
|
|
703
878
|
"type": "function"
|
|
704
879
|
},
|
|
880
|
+
{
|
|
881
|
+
"inputs": [],
|
|
882
|
+
"name": "liveWalletsCount",
|
|
883
|
+
"outputs": [
|
|
884
|
+
{
|
|
885
|
+
"internalType": "uint32",
|
|
886
|
+
"name": "",
|
|
887
|
+
"type": "uint32"
|
|
888
|
+
}
|
|
889
|
+
],
|
|
890
|
+
"stateMutability": "view",
|
|
891
|
+
"type": "function"
|
|
892
|
+
},
|
|
705
893
|
{
|
|
706
894
|
"inputs": [],
|
|
707
895
|
"name": "movingFundsParameters",
|
|
@@ -710,6 +898,11 @@
|
|
|
710
898
|
"internalType": "uint64",
|
|
711
899
|
"name": "movingFundsTxMaxTotalFee",
|
|
712
900
|
"type": "uint64"
|
|
901
|
+
},
|
|
902
|
+
{
|
|
903
|
+
"internalType": "uint32",
|
|
904
|
+
"name": "movingFundsTimeout",
|
|
905
|
+
"type": "uint32"
|
|
713
906
|
}
|
|
714
907
|
],
|
|
715
908
|
"stateMutability": "view",
|
|
@@ -768,6 +961,19 @@
|
|
|
768
961
|
"stateMutability": "nonpayable",
|
|
769
962
|
"type": "function"
|
|
770
963
|
},
|
|
964
|
+
{
|
|
965
|
+
"inputs": [
|
|
966
|
+
{
|
|
967
|
+
"internalType": "bytes20",
|
|
968
|
+
"name": "walletPubKeyHash",
|
|
969
|
+
"type": "bytes20"
|
|
970
|
+
}
|
|
971
|
+
],
|
|
972
|
+
"name": "notifyMovingFundsTimeout",
|
|
973
|
+
"outputs": [],
|
|
974
|
+
"stateMutability": "nonpayable",
|
|
975
|
+
"type": "function"
|
|
976
|
+
},
|
|
771
977
|
{
|
|
772
978
|
"inputs": [
|
|
773
979
|
{
|
|
@@ -786,6 +992,19 @@
|
|
|
786
992
|
"stateMutability": "nonpayable",
|
|
787
993
|
"type": "function"
|
|
788
994
|
},
|
|
995
|
+
{
|
|
996
|
+
"inputs": [
|
|
997
|
+
{
|
|
998
|
+
"internalType": "bytes20",
|
|
999
|
+
"name": "walletPubKeyHash",
|
|
1000
|
+
"type": "bytes20"
|
|
1001
|
+
}
|
|
1002
|
+
],
|
|
1003
|
+
"name": "notifyWalletClosingPeriodElapsed",
|
|
1004
|
+
"outputs": [],
|
|
1005
|
+
"stateMutability": "nonpayable",
|
|
1006
|
+
"type": "function"
|
|
1007
|
+
},
|
|
789
1008
|
{
|
|
790
1009
|
"inputs": [],
|
|
791
1010
|
"name": "owner",
|
|
@@ -1109,6 +1328,56 @@
|
|
|
1109
1328
|
"stateMutability": "payable",
|
|
1110
1329
|
"type": "function"
|
|
1111
1330
|
},
|
|
1331
|
+
{
|
|
1332
|
+
"inputs": [
|
|
1333
|
+
{
|
|
1334
|
+
"internalType": "bytes20",
|
|
1335
|
+
"name": "walletPubKeyHash",
|
|
1336
|
+
"type": "bytes20"
|
|
1337
|
+
},
|
|
1338
|
+
{
|
|
1339
|
+
"components": [
|
|
1340
|
+
{
|
|
1341
|
+
"internalType": "bytes32",
|
|
1342
|
+
"name": "txHash",
|
|
1343
|
+
"type": "bytes32"
|
|
1344
|
+
},
|
|
1345
|
+
{
|
|
1346
|
+
"internalType": "uint32",
|
|
1347
|
+
"name": "txOutputIndex",
|
|
1348
|
+
"type": "uint32"
|
|
1349
|
+
},
|
|
1350
|
+
{
|
|
1351
|
+
"internalType": "uint64",
|
|
1352
|
+
"name": "txOutputValue",
|
|
1353
|
+
"type": "uint64"
|
|
1354
|
+
}
|
|
1355
|
+
],
|
|
1356
|
+
"internalType": "struct BitcoinTx.UTXO",
|
|
1357
|
+
"name": "walletMainUtxo",
|
|
1358
|
+
"type": "tuple"
|
|
1359
|
+
},
|
|
1360
|
+
{
|
|
1361
|
+
"internalType": "uint32[]",
|
|
1362
|
+
"name": "walletMembersIDs",
|
|
1363
|
+
"type": "uint32[]"
|
|
1364
|
+
},
|
|
1365
|
+
{
|
|
1366
|
+
"internalType": "uint256",
|
|
1367
|
+
"name": "walletMemberIndex",
|
|
1368
|
+
"type": "uint256"
|
|
1369
|
+
},
|
|
1370
|
+
{
|
|
1371
|
+
"internalType": "bytes20[]",
|
|
1372
|
+
"name": "targetWallets",
|
|
1373
|
+
"type": "bytes20[]"
|
|
1374
|
+
}
|
|
1375
|
+
],
|
|
1376
|
+
"name": "submitMovingFundsCommitment",
|
|
1377
|
+
"outputs": [],
|
|
1378
|
+
"stateMutability": "nonpayable",
|
|
1379
|
+
"type": "function"
|
|
1380
|
+
},
|
|
1112
1381
|
{
|
|
1113
1382
|
"inputs": [
|
|
1114
1383
|
{
|
|
@@ -1441,6 +1710,103 @@
|
|
|
1441
1710
|
"stateMutability": "view",
|
|
1442
1711
|
"type": "function"
|
|
1443
1712
|
},
|
|
1713
|
+
{
|
|
1714
|
+
"inputs": [
|
|
1715
|
+
{
|
|
1716
|
+
"internalType": "uint64",
|
|
1717
|
+
"name": "depositDustThreshold",
|
|
1718
|
+
"type": "uint64"
|
|
1719
|
+
},
|
|
1720
|
+
{
|
|
1721
|
+
"internalType": "uint64",
|
|
1722
|
+
"name": "depositTreasuryFeeDivisor",
|
|
1723
|
+
"type": "uint64"
|
|
1724
|
+
},
|
|
1725
|
+
{
|
|
1726
|
+
"internalType": "uint64",
|
|
1727
|
+
"name": "depositTxMaxFee",
|
|
1728
|
+
"type": "uint64"
|
|
1729
|
+
}
|
|
1730
|
+
],
|
|
1731
|
+
"name": "updateDepositParameters",
|
|
1732
|
+
"outputs": [],
|
|
1733
|
+
"stateMutability": "nonpayable",
|
|
1734
|
+
"type": "function"
|
|
1735
|
+
},
|
|
1736
|
+
{
|
|
1737
|
+
"inputs": [
|
|
1738
|
+
{
|
|
1739
|
+
"internalType": "uint256",
|
|
1740
|
+
"name": "fraudSlashingAmount",
|
|
1741
|
+
"type": "uint256"
|
|
1742
|
+
},
|
|
1743
|
+
{
|
|
1744
|
+
"internalType": "uint256",
|
|
1745
|
+
"name": "fraudNotifierRewardMultiplier",
|
|
1746
|
+
"type": "uint256"
|
|
1747
|
+
},
|
|
1748
|
+
{
|
|
1749
|
+
"internalType": "uint256",
|
|
1750
|
+
"name": "fraudChallengeDefeatTimeout",
|
|
1751
|
+
"type": "uint256"
|
|
1752
|
+
},
|
|
1753
|
+
{
|
|
1754
|
+
"internalType": "uint256",
|
|
1755
|
+
"name": "fraudChallengeDepositAmount",
|
|
1756
|
+
"type": "uint256"
|
|
1757
|
+
}
|
|
1758
|
+
],
|
|
1759
|
+
"name": "updateFraudParameters",
|
|
1760
|
+
"outputs": [],
|
|
1761
|
+
"stateMutability": "nonpayable",
|
|
1762
|
+
"type": "function"
|
|
1763
|
+
},
|
|
1764
|
+
{
|
|
1765
|
+
"inputs": [
|
|
1766
|
+
{
|
|
1767
|
+
"internalType": "uint64",
|
|
1768
|
+
"name": "movingFundsTxMaxTotalFee",
|
|
1769
|
+
"type": "uint64"
|
|
1770
|
+
},
|
|
1771
|
+
{
|
|
1772
|
+
"internalType": "uint32",
|
|
1773
|
+
"name": "movingFundsTimeout",
|
|
1774
|
+
"type": "uint32"
|
|
1775
|
+
}
|
|
1776
|
+
],
|
|
1777
|
+
"name": "updateMovingFundsParameters",
|
|
1778
|
+
"outputs": [],
|
|
1779
|
+
"stateMutability": "nonpayable",
|
|
1780
|
+
"type": "function"
|
|
1781
|
+
},
|
|
1782
|
+
{
|
|
1783
|
+
"inputs": [
|
|
1784
|
+
{
|
|
1785
|
+
"internalType": "uint64",
|
|
1786
|
+
"name": "redemptionDustThreshold",
|
|
1787
|
+
"type": "uint64"
|
|
1788
|
+
},
|
|
1789
|
+
{
|
|
1790
|
+
"internalType": "uint64",
|
|
1791
|
+
"name": "redemptionTreasuryFeeDivisor",
|
|
1792
|
+
"type": "uint64"
|
|
1793
|
+
},
|
|
1794
|
+
{
|
|
1795
|
+
"internalType": "uint64",
|
|
1796
|
+
"name": "redemptionTxMaxFee",
|
|
1797
|
+
"type": "uint64"
|
|
1798
|
+
},
|
|
1799
|
+
{
|
|
1800
|
+
"internalType": "uint256",
|
|
1801
|
+
"name": "redemptionTimeout",
|
|
1802
|
+
"type": "uint256"
|
|
1803
|
+
}
|
|
1804
|
+
],
|
|
1805
|
+
"name": "updateRedemptionParameters",
|
|
1806
|
+
"outputs": [],
|
|
1807
|
+
"stateMutability": "nonpayable",
|
|
1808
|
+
"type": "function"
|
|
1809
|
+
},
|
|
1444
1810
|
{
|
|
1445
1811
|
"inputs": [
|
|
1446
1812
|
{
|
|
@@ -1462,6 +1828,16 @@
|
|
|
1462
1828
|
"internalType": "uint32",
|
|
1463
1829
|
"name": "walletMaxAge",
|
|
1464
1830
|
"type": "uint32"
|
|
1831
|
+
},
|
|
1832
|
+
{
|
|
1833
|
+
"internalType": "uint64",
|
|
1834
|
+
"name": "walletMaxBtcTransfer",
|
|
1835
|
+
"type": "uint64"
|
|
1836
|
+
},
|
|
1837
|
+
{
|
|
1838
|
+
"internalType": "uint32",
|
|
1839
|
+
"name": "walletClosingPeriod",
|
|
1840
|
+
"type": "uint32"
|
|
1465
1841
|
}
|
|
1466
1842
|
],
|
|
1467
1843
|
"name": "updateWalletParameters",
|
|
@@ -1492,6 +1868,16 @@
|
|
|
1492
1868
|
"internalType": "uint32",
|
|
1493
1869
|
"name": "walletMaxAge",
|
|
1494
1870
|
"type": "uint32"
|
|
1871
|
+
},
|
|
1872
|
+
{
|
|
1873
|
+
"internalType": "uint64",
|
|
1874
|
+
"name": "walletMaxBtcTransfer",
|
|
1875
|
+
"type": "uint64"
|
|
1876
|
+
},
|
|
1877
|
+
{
|
|
1878
|
+
"internalType": "uint32",
|
|
1879
|
+
"name": "walletClosingPeriod",
|
|
1880
|
+
"type": "uint32"
|
|
1495
1881
|
}
|
|
1496
1882
|
],
|
|
1497
1883
|
"stateMutability": "view",
|
|
@@ -1534,6 +1920,11 @@
|
|
|
1534
1920
|
"name": "movingFundsRequestedAt",
|
|
1535
1921
|
"type": "uint32"
|
|
1536
1922
|
},
|
|
1923
|
+
{
|
|
1924
|
+
"internalType": "uint32",
|
|
1925
|
+
"name": "closingStartedAt",
|
|
1926
|
+
"type": "uint32"
|
|
1927
|
+
},
|
|
1537
1928
|
{
|
|
1538
1929
|
"internalType": "enum Wallets.WalletState",
|
|
1539
1930
|
"name": "state",
|
|
@@ -1554,14 +1945,14 @@
|
|
|
1554
1945
|
"type": "function"
|
|
1555
1946
|
}
|
|
1556
1947
|
],
|
|
1557
|
-
"bytecode": "0x60806040523480156200001157600080fd5b50604051620025ec380380620025ec833981016040819052620000349162000333565b6200003f33620002c6565b6001600160a01b0385166200009b5760405162461bcd60e51b815260206004820152601b60248201527f42616e6b20616464726573732063616e6e6f74206265207a65726f000000000060448201526064015b60405180910390fd5b600180546001600160a01b0319166001600160a01b038781169190911790915584166200010b5760405162461bcd60e51b815260206004820152601c60248201527f52656c617920616464726573732063616e6e6f74206265207a65726f00000000604482015260640162000092565b600280546001600160a01b0319166001600160a01b03868116919091179091558216620001905760405162461bcd60e51b815260206004820152602c60248201527f45434453412057616c6c6574205265676973747279206164647265737320636160448201526b6e6e6f74206265207a65726f60a01b606482015260840162000092565b600380546001600160a01b0319166001600160a01b03848116919091179091558316620002005760405162461bcd60e51b815260206004820152601f60248201527f547265617375727920616464726573732063616e6e6f74206265207a65726f00604482015260640162000092565b600580546004929092556001600160a01b03939093166001600160e01b031990911617613d0960a61b179091555050600680546001600160801b03191669271000000000000007d0179055506202a300600a5579271000000000000007d000000000000f4240000000000000271060095569021e19e0c9bab2400000600d556064600e5562093a80600f55671bc16d674ec80000601055601380546001600160c01b03191676eff100000000003b9aca000000000005f5e10000093a801790556200039a565b600080546001600160a01b038381166001600160a01b0319831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b80516001600160a01b03811681146200032e57600080fd5b919050565b600080600080600060a086880312156200034c57600080fd5b620003578662000316565b9450620003676020870162000316565b9350620003776040870162000316565b9250620003876060870162000316565b9150608086015190509295509295909350565b61224280620003aa6000396000f3fe6080604052600436106102195760003560e01c806377145f211161011d578063be05abe3116100b0578063ded1d24a1161007f578063e65e19d511610064578063e65e19d514610b0a578063e86a1be614610b37578063f2fde38b14610b5757600080fd5b8063ded1d24a14610aa0578063e53c0b5514610ad157600080fd5b8063be05abe3146109e6578063c42b64d014610a0f578063d6eccdf014610a60578063d95027b714610a8057600080fd5b8063a9de2f3a116100ec578063a9de2f3a146107f5578063b02c43d014610828578063b2146cd614610986578063b34b3216146109c657600080fd5b806377145f21146107775780638da5cb5b14610797578063a145e2d5146107b5578063a8fa0f42146107d557600080fd5b80635c0b4812116101b057806367f272471161017f5780636e70ce41116101645780636e70ce4114610698578063715018a61461072957806375b922d11461073e57600080fd5b806367f27247146106655780636d02b43c1461068557600080fd5b80635c0b48121461058f57806360d712fc146105af57806361ccf97a146105cf57806361d027b31461063357600080fd5b806333e957cb116101ec57806333e957cb146104505780633dce98121461052f578063575e42791461054f57806359a9d90a1461056f57600080fd5b806303d952f71461021e5780630b6ba19d1461034d5780632bb818c2146104105780632f429b641461042e575b600080fd5b34801561022a57600080fd5b506102e16102393660046116dc565b6040805160a081018252600080825260208201819052918101829052606081018290526080810191909152506000908152600b6020908152604091829020825160a08101845281546001600160a01b0381168252600160a01b900467ffffffffffffffff90811693820193909352600190910154808316938201939093526801000000000000000083049091166060820152600160801b90910463ffffffff16608082015290565b6040516103449190600060a0820190506001600160a01b038351168252602083015167ffffffffffffffff8082166020850152806040860151166040850152806060860151166060850152505063ffffffff608084015116608083015292915050565b60405180910390f35b34801561035957600080fd5b506102e16103683660046116dc565b6040805160a081018252600080825260208201819052918101829052606081018290526080810191909152506000908152600c6020908152604091829020825160a08101845281546001600160a01b0381168252600160a01b900467ffffffffffffffff90811693820193909352600190910154808316938201939093526801000000000000000083049091166060820152600160801b90910463ffffffff16608082015290565b34801561041c57600080fd5b50600454604051908152602001610344565b34801561043a57600080fd5b5061044e610449366004611741565b610b77565b005b34801561045c57600080fd5b506104eb61046b3660046116dc565b60408051608081018252600080825260208201819052918101829052606081019190915250600090815260116020908152604091829020825160808101845281546001600160a01b031681526001820154928101929092526002015463ffffffff81169282019290925264010000000090910460ff161515606082015290565b604051610344919081516001600160a01b031681526020808301519082015260408083015163ffffffff169082015260609182015115159181019190915260800190565b34801561053b57600080fd5b5061044e61054a3660046117c7565b610c04565b34801561055b57600080fd5b5061044e61056a3660046117f3565b610c94565b34801561057b57600080fd5b5061044e61058a366004611827565b610d1d565b34801561059b57600080fd5b5061044e6105aa36600461189c565b610d74565b3480156105bb57600080fd5b5061044e6105ca36600461191e565b610dc9565b3480156105db57600080fd5b506013546040805163ffffffff808416825267ffffffffffffffff6401000000008504811660208401526c0100000000000000000000000085041692820192909252600160a01b909204166060820152608001610344565b34801561063f57600080fd5b506005546001600160a01b03165b6040516001600160a01b039091168152602001610344565b34801561067157600080fd5b5061044e610680366004611991565b610e87565b61044e6106933660046119e4565b610ede565b3480156106a457600080fd5b506106f3600954600a5467ffffffffffffffff680100000000000000008304811693600160801b8404821693780100000000000000000000000000000000000000000000000090049091169190565b604051610344949392919067ffffffffffffffff9485168152928416602084015292166040820152606081019190915260800190565b34801561073557600080fd5b5061044e610f37565b34801561074a57600080fd5b50600d54600e54600f54601054604080519485526020850193909352918301526060820152608001610344565b34801561078357600080fd5b5061044e610792366004611a37565b610f9d565b3480156107a357600080fd5b506000546001600160a01b031661064d565b3480156107c157600080fd5b5061044e6107d0366004611ab8565b61102f565b3480156107e157600080fd5b5061044e6107f03660046117c7565b6110b5565b34801561080157600080fd5b50600154600254604080516001600160a01b03938416815292909116602083015201610344565b34801561083457600080fd5b506109106108433660046116dc565b6040805160c081018252600080825260208201819052918101829052606081018290526080810182905260a081019190915250600090815260076020908152604091829020825160c08101845281546001600160a01b03808216835267ffffffffffffffff600160a01b80840482169685019690965263ffffffff7c0100000000000000000000000000000000000000000000000000000000938490048116978501979097526001949094015490811660608401529384049092166080820152910490911660a082015290565b6040516103449190600060c0820190506001600160a01b03808451168352602084015167ffffffffffffffff80821660208601526040860151915063ffffffff80831660408701528360608801511660608701528160808801511660808701528060a08801511660a08701525050505092915050565b34801561099257600080fd5b506109b66109a13660046116dc565b60009081526012602052604090205460ff1690565b6040519015158152602001610344565b3480156109d257600080fd5b5061044e6109e1366004611741565b61111b565b3480156109f257600080fd5b5060095460405167ffffffffffffffff9091168152602001610344565b348015610a1b57600080fd5b5060055460065460408051600160a01b90930467ffffffffffffffff908116845280831660208501526801000000000000000090920490911690820152606001610344565b348015610a6c57600080fd5b5061044e610a7b366004611af3565b611174565b348015610a8c57600080fd5b5061044e610a9b366004611b5e565b6111cf565b348015610aac57600080fd5b5060145460601b6040516bffffffffffffffffffffffff199091168152602001610344565b348015610add57600080fd5b506109b6610aec366004611baa565b6001600160a01b031660009081526008602052604090205460ff1690565b348015610b1657600080fd5b50610b2a610b25366004611bc5565b611226565b6040516103449190611bf6565b348015610b4357600080fd5b5061044e610b52366004611c8e565b611327565b348015610b6357600080fd5b5061044e610b72366004611baa565b611395565b6040517e92bac900000000000000000000000000000000000000000000000000000000815273__$edce581bb06331cf4dae1387760565e5d1$__906292bac990610bce906001908890889088908890600401611e9c565b60006040518083038186803b158015610be657600080fd5b505af4158015610bfa573d6000803e3d6000fd5b5050505050505050565b6040517fc87de7f400000000000000000000000000000000000000000000000000000000815260016004820152602481018390526044810182905273__$0f118c52967a3847a37f0a2ef02ffcee04$__9063c87de7f4906064015b60006040518083038186803b158015610c7757600080fd5b505af4158015610c8b573d6000803e3d6000fd5b50505050505050565b6040517f99b0b84700000000000000000000000000000000000000000000000000000000815273__$0f118c52967a3847a37f0a2ef02ffcee04$__906399b0b84790610ce99060019086908690600401611ef6565b60006040518083038186803b158015610d0157600080fd5b505af4158015610d15573d6000803e3d6000fd5b505050505050565b6040517f510fc50a00000000000000000000000000000000000000000000000000000000815273__$61f169726e973bba1227e0c23d2755f88e$__9063510fc50a90610c5f90600190879087908790600401611f27565b6040517faea7fd0b00000000000000000000000000000000000000000000000000000000815273__$894ce12e79ca3e5683c1b49e363f37fa22$__9063aea7fd0b90610ce99060019086908690600401611f6b565b6000546001600160a01b03163314610e285760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657260448201526064015b60405180910390fd5b6001600160a01b038216600081815260086020908152604091829020805460ff191685151590811790915591519182527f9065599c12c4294d9e2201638226d0d0beb95c228f468c4e7c2bdb8322b6066f910160405180910390a25050565b6040517f13d0c66800000000000000000000000000000000000000000000000000000000815273__$9935b6ea18e0c526c293569ddd26842c9b$__906313d0c66890610c5f906001908790879087906004016120a8565b6040517f3b5d9f2400000000000000000000000000000000000000000000000000000000815273__$a542940934c03bae9a39609192cb25cc3c$__90633b5d9f2490610bce9060019088908890889088906004016120d7565b6000546001600160a01b03163314610f915760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610e1f565b610f9b6000611477565b565b6040517f624526fe00000000000000000000000000000000000000000000000000000000815273__$a542940934c03bae9a39609192cb25cc3c$__9063624526fe90610ff89060019089908990899089908990600401612131565b60006040518083038186803b15801561101057600080fd5b505af4158015611024573d6000803e3d6000fd5b505050505050505050565b6040517fd079fbb100000000000000000000000000000000000000000000000000000000815273__$0f118c52967a3847a37f0a2ef02ffcee04$__9063d079fbb190611082906001908590600401612174565b60006040518083038186803b15801561109a57600080fd5b505af41580156110ae573d6000803e3d6000fd5b5050505050565b6040517f4afbe4c90000000000000000000000000000000000000000000000000000000081526001600482015260248101849052604481018390526064810182905273__$0f118c52967a3847a37f0a2ef02ffcee04$__90634afbe4c990608401610c5f565b6040517fa164de6e00000000000000000000000000000000000000000000000000000000815273__$9935b6ea18e0c526c293569ddd26842c9b$__9063a164de6e90610bce906001908890889088908890600401611e9c565b6040517f7333b36900000000000000000000000000000000000000000000000000000000815273__$9935b6ea18e0c526c293569ddd26842c9b$__90637333b36990610ff89060019089908990899089908990600401612188565b6040517f72c9c91c00000000000000000000000000000000000000000000000000000000815273__$a542940934c03bae9a39609192cb25cc3c$__906372c9c91c90610c5f906001908790879087906004016121e1565b6040805160e081018252600080825260208201819052918101829052606081018290526080810182905260a0810182905260c08101919091526bffffffffffffffffffffffff198216600090815260156020908152604091829020825160e08101845281548152600182015492810192909252600281015467ffffffffffffffff81169383019390935263ffffffff680100000000000000008404811660608401526c010000000000000000000000008404166080830152909160a083019060ff600160801b90910416600481111561130157611301611be0565b600481111561131257611312611be0565b81526020016003820154815250509050919050565b6000546001600160a01b031633146113815760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610e1f565b61138f6001858585856114df565b50505050565b6000546001600160a01b031633146113ef5760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610e1f565b6001600160a01b03811661146b5760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201527f64647265737300000000000000000000000000000000000000000000000000006064820152608401610e1f565b61147481611477565b50565b600080546001600160a01b038381167fffffffffffffffffffffffff0000000000000000000000000000000000000000831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b60008367ffffffffffffffff161161155f5760405162461bcd60e51b815260206004820152603460248201527f57616c6c6574206d696e696d756d204254432062616c616e6365206d7573742060448201527f62652067726561746572207468616e207a65726f0000000000000000000000006064820152608401610e1f565b8267ffffffffffffffff168267ffffffffffffffff16116115e85760405162461bcd60e51b815260206004820152603b60248201527f57616c6c6574206d6178696d756d204254432062616c616e6365206d7573742060448201527f62652067726561746572207468616e20746865206d696e696d756d00000000006064820152608401610e1f565b60128501805463ffffffff8681166bffffffffffffffffffffffff19909216821764010000000067ffffffffffffffff888116918202929092177fffffffffffffffff000000000000000000000000ffffffffffffffffffffffff166c010000000000000000000000009288169283027fffffffffffffffff00000000ffffffffffffffffffffffffffffffffffffffff1617600160a01b938716938402179094556040805193845260208401949094529282019290925260608101919091527fc5e6f9192c5d47e7f338142843062686c7659943485864e5998551473c18505e9060800160405180910390a15050505050565b6000602082840312156116ee57600080fd5b5035919050565b60006080828403121561170757600080fd5b50919050565b60006060828403121561170757600080fd5b80356bffffffffffffffffffffffff198116811461173c57600080fd5b919050565b60008060008060c0858703121561175757600080fd5b843567ffffffffffffffff8082111561176f57600080fd5b61177b888389016116f5565b9550602087013591508082111561179157600080fd5b5061179e8782880161170d565b9350506117ae866040870161170d565b91506117bc60a0860161171f565b905092959194509250565b6000806000606084860312156117dc57600080fd5b505081359360208301359350604090920135919050565b6000806080838503121561180657600080fd5b61180f8361171f565b915061181e846020850161170d565b90509250929050565b600080600060a0848603121561183c57600080fd5b833567ffffffffffffffff8082111561185457600080fd5b611860878388016116f5565b9450602086013591508082111561187657600080fd5b506118838682870161170d565b925050611893856040860161170d565b90509250925092565b6000808284036101008112156118b157600080fd5b833567ffffffffffffffff8111156118c857600080fd5b6118d4868287016116f5565b93505060e0601f19820112156118e957600080fd5b506020830190509250929050565b80356001600160a01b038116811461173c57600080fd5b8035801515811461173c57600080fd5b6000806040838503121561193157600080fd5b61193a836118f7565b915061181e6020840161190e565b60008083601f84011261195a57600080fd5b50813567ffffffffffffffff81111561197257600080fd5b60208301915083602082850101111561198a57600080fd5b9250929050565b6000806000604084860312156119a657600080fd5b6119af8461171f565b9250602084013567ffffffffffffffff8111156119cb57600080fd5b6119d786828701611948565b9497909650939450505050565b60008060008060a085870312156119fa57600080fd5b843567ffffffffffffffff811115611a1157600080fd5b611a1d87828801611948565b909550935050602085013591506117bc866040870161170d565b600080600080600060608688031215611a4f57600080fd5b853567ffffffffffffffff80821115611a6757600080fd5b611a7389838a01611948565b90975095506020880135915080821115611a8c57600080fd5b50611a9988828901611948565b9094509250611aac90506040870161190e565b90509295509295909350565b600060608284031215611aca57600080fd5b611ad4838361170d565b9392505050565b803567ffffffffffffffff8116811461173c57600080fd5b600080600080600060c08688031215611b0b57600080fd5b611b148661171f565b9450611b23876020880161170d565b9350608086013567ffffffffffffffff811115611b3f57600080fd5b611b4b88828901611948565b9094509250611aac905060a08701611adb565b600080600060408486031215611b7357600080fd5b833567ffffffffffffffff811115611b8a57600080fd5b611b9686828701611948565b909790965060209590950135949350505050565b600060208284031215611bbc57600080fd5b611ad4826118f7565b600060208284031215611bd757600080fd5b611ad48261171f565b634e487b7160e01b600052602160045260246000fd5b600060e082019050825182526020830151602083015267ffffffffffffffff6040840151166040830152606083015163ffffffff8082166060850152806080860151166080850152505060a083015160058110611c6357634e487b7160e01b600052602160045260246000fd5b8060a08401525060c083015160c083015292915050565b803563ffffffff8116811461173c57600080fd5b60008060008060808587031215611ca457600080fd5b611cad85611c7a565b9350611cbb60208601611adb565b9250611cc960408601611adb565b91506117bc60608601611c7a565b80357fffffffff000000000000000000000000000000000000000000000000000000008116811461173c57600080fd5b6000808335601e19843603018112611d1e57600080fd5b830160208101925035905067ffffffffffffffff811115611d3e57600080fd5b80360383131561198a57600080fd5b81835281816020850137506000828201602090810191909152601f909101601f19169091010190565b60007fffffffff0000000000000000000000000000000000000000000000000000000080611da384611cd7565b168452611db36020840184611d07565b60806020870152611dc8608087018284611d4d565b915050611dd86040850185611d07565b8683036040880152611deb838284611d4d565b9250505081611dfc60608601611cd7565b166060860152809250505092915050565b6000611e198283611d07565b60608552611e2b606086018284611d4d565b91505060208301356020850152611e456040840184611d07565b8583036040870152611e58838284611d4d565b9695505050505050565b8035825263ffffffff611e7760208301611c7a565b16602083015267ffffffffffffffff611e9260408301611adb565b1660408301525050565b85815260e060208201526000611eb560e0830187611d76565b8281036040840152611ec78187611e0d565b915050611ed76060830185611e62565b6bffffffffffffffffffffffff19831660c08301529695505050505050565b8381526bffffffffffffffffffffffff198316602082015260a08101611f1f6040830184611e62565b949350505050565b84815260c060208201526000611f4060c0830186611d76565b8281036040840152611f528186611e0d565b915050611f626060830184611e62565b95945050505050565b6000610120858352806020840152611f8581840186611d76565b91505063ffffffff611f9684611c7a565b1660408301526001600160a01b03611fb0602085016118f7565b16606083015260408301357fffffffffffffffff00000000000000000000000000000000000000000000000081168114611fe957600080fd5b7fffffffffffffffff00000000000000000000000000000000000000000000000016608083015261201c6060840161171f565b6bffffffffffffffffffffffff191660a083015261203c6080840161171f565b6bffffffffffffffffffffffff191660c083015261205c60a08401611cd7565b7fffffffff000000000000000000000000000000000000000000000000000000001660e083015261208f60c084016118f7565b6001600160a01b03811661010084015250949350505050565b8481526bffffffffffffffffffffffff1984166020820152606060408201526000611e58606083018486611d4d565b85815260c0602082015260006120f160c083018688611d4d565b90508360408301528235606083015260208301356080830152604083013560ff811680821461211f57600080fd5b8060a085015250509695505050505050565b86815260806020820152600061214b608083018789611d4d565b828103604084015261215e818688611d4d565b9150508215156060830152979650505050505050565b82815260808101611ad46020830184611e62565b8681526bffffffffffffffffffffffff19861660208201526121ad6040820186611e62565b60e060a082015260006121c460e083018587611d4d565b905067ffffffffffffffff831660c0830152979650505050505050565b8481526060602082015260006121fb606083018587611d4d565b90508260408301529594505050505056fea26469706673582212200a1783731e70d0a326bf3f3fdf2c2183a6fa25790632bd9823c3c4be5b9d30df64736f6c63430008090033",
|
|
1558
|
-
"deployedBytecode": "0x6080604052600436106102195760003560e01c806377145f211161011d578063be05abe3116100b0578063ded1d24a1161007f578063e65e19d511610064578063e65e19d514610b0a578063e86a1be614610b37578063f2fde38b14610b5757600080fd5b8063ded1d24a14610aa0578063e53c0b5514610ad157600080fd5b8063be05abe3146109e6578063c42b64d014610a0f578063d6eccdf014610a60578063d95027b714610a8057600080fd5b8063a9de2f3a116100ec578063a9de2f3a146107f5578063b02c43d014610828578063b2146cd614610986578063b34b3216146109c657600080fd5b806377145f21146107775780638da5cb5b14610797578063a145e2d5146107b5578063a8fa0f42146107d557600080fd5b80635c0b4812116101b057806367f272471161017f5780636e70ce41116101645780636e70ce4114610698578063715018a61461072957806375b922d11461073e57600080fd5b806367f27247146106655780636d02b43c1461068557600080fd5b80635c0b48121461058f57806360d712fc146105af57806361ccf97a146105cf57806361d027b31461063357600080fd5b806333e957cb116101ec57806333e957cb146104505780633dce98121461052f578063575e42791461054f57806359a9d90a1461056f57600080fd5b806303d952f71461021e5780630b6ba19d1461034d5780632bb818c2146104105780632f429b641461042e575b600080fd5b34801561022a57600080fd5b506102e16102393660046116dc565b6040805160a081018252600080825260208201819052918101829052606081018290526080810191909152506000908152600b6020908152604091829020825160a08101845281546001600160a01b0381168252600160a01b900467ffffffffffffffff90811693820193909352600190910154808316938201939093526801000000000000000083049091166060820152600160801b90910463ffffffff16608082015290565b6040516103449190600060a0820190506001600160a01b038351168252602083015167ffffffffffffffff8082166020850152806040860151166040850152806060860151166060850152505063ffffffff608084015116608083015292915050565b60405180910390f35b34801561035957600080fd5b506102e16103683660046116dc565b6040805160a081018252600080825260208201819052918101829052606081018290526080810191909152506000908152600c6020908152604091829020825160a08101845281546001600160a01b0381168252600160a01b900467ffffffffffffffff90811693820193909352600190910154808316938201939093526801000000000000000083049091166060820152600160801b90910463ffffffff16608082015290565b34801561041c57600080fd5b50600454604051908152602001610344565b34801561043a57600080fd5b5061044e610449366004611741565b610b77565b005b34801561045c57600080fd5b506104eb61046b3660046116dc565b60408051608081018252600080825260208201819052918101829052606081019190915250600090815260116020908152604091829020825160808101845281546001600160a01b031681526001820154928101929092526002015463ffffffff81169282019290925264010000000090910460ff161515606082015290565b604051610344919081516001600160a01b031681526020808301519082015260408083015163ffffffff169082015260609182015115159181019190915260800190565b34801561053b57600080fd5b5061044e61054a3660046117c7565b610c04565b34801561055b57600080fd5b5061044e61056a3660046117f3565b610c94565b34801561057b57600080fd5b5061044e61058a366004611827565b610d1d565b34801561059b57600080fd5b5061044e6105aa36600461189c565b610d74565b3480156105bb57600080fd5b5061044e6105ca36600461191e565b610dc9565b3480156105db57600080fd5b506013546040805163ffffffff808416825267ffffffffffffffff6401000000008504811660208401526c0100000000000000000000000085041692820192909252600160a01b909204166060820152608001610344565b34801561063f57600080fd5b506005546001600160a01b03165b6040516001600160a01b039091168152602001610344565b34801561067157600080fd5b5061044e610680366004611991565b610e87565b61044e6106933660046119e4565b610ede565b3480156106a457600080fd5b506106f3600954600a5467ffffffffffffffff680100000000000000008304811693600160801b8404821693780100000000000000000000000000000000000000000000000090049091169190565b604051610344949392919067ffffffffffffffff9485168152928416602084015292166040820152606081019190915260800190565b34801561073557600080fd5b5061044e610f37565b34801561074a57600080fd5b50600d54600e54600f54601054604080519485526020850193909352918301526060820152608001610344565b34801561078357600080fd5b5061044e610792366004611a37565b610f9d565b3480156107a357600080fd5b506000546001600160a01b031661064d565b3480156107c157600080fd5b5061044e6107d0366004611ab8565b61102f565b3480156107e157600080fd5b5061044e6107f03660046117c7565b6110b5565b34801561080157600080fd5b50600154600254604080516001600160a01b03938416815292909116602083015201610344565b34801561083457600080fd5b506109106108433660046116dc565b6040805160c081018252600080825260208201819052918101829052606081018290526080810182905260a081019190915250600090815260076020908152604091829020825160c08101845281546001600160a01b03808216835267ffffffffffffffff600160a01b80840482169685019690965263ffffffff7c0100000000000000000000000000000000000000000000000000000000938490048116978501979097526001949094015490811660608401529384049092166080820152910490911660a082015290565b6040516103449190600060c0820190506001600160a01b03808451168352602084015167ffffffffffffffff80821660208601526040860151915063ffffffff80831660408701528360608801511660608701528160808801511660808701528060a08801511660a08701525050505092915050565b34801561099257600080fd5b506109b66109a13660046116dc565b60009081526012602052604090205460ff1690565b6040519015158152602001610344565b3480156109d257600080fd5b5061044e6109e1366004611741565b61111b565b3480156109f257600080fd5b5060095460405167ffffffffffffffff9091168152602001610344565b348015610a1b57600080fd5b5060055460065460408051600160a01b90930467ffffffffffffffff908116845280831660208501526801000000000000000090920490911690820152606001610344565b348015610a6c57600080fd5b5061044e610a7b366004611af3565b611174565b348015610a8c57600080fd5b5061044e610a9b366004611b5e565b6111cf565b348015610aac57600080fd5b5060145460601b6040516bffffffffffffffffffffffff199091168152602001610344565b348015610add57600080fd5b506109b6610aec366004611baa565b6001600160a01b031660009081526008602052604090205460ff1690565b348015610b1657600080fd5b50610b2a610b25366004611bc5565b611226565b6040516103449190611bf6565b348015610b4357600080fd5b5061044e610b52366004611c8e565b611327565b348015610b6357600080fd5b5061044e610b72366004611baa565b611395565b6040517e92bac900000000000000000000000000000000000000000000000000000000815273__$edce581bb06331cf4dae1387760565e5d1$__906292bac990610bce906001908890889088908890600401611e9c565b60006040518083038186803b158015610be657600080fd5b505af4158015610bfa573d6000803e3d6000fd5b5050505050505050565b6040517fc87de7f400000000000000000000000000000000000000000000000000000000815260016004820152602481018390526044810182905273__$0f118c52967a3847a37f0a2ef02ffcee04$__9063c87de7f4906064015b60006040518083038186803b158015610c7757600080fd5b505af4158015610c8b573d6000803e3d6000fd5b50505050505050565b6040517f99b0b84700000000000000000000000000000000000000000000000000000000815273__$0f118c52967a3847a37f0a2ef02ffcee04$__906399b0b84790610ce99060019086908690600401611ef6565b60006040518083038186803b158015610d0157600080fd5b505af4158015610d15573d6000803e3d6000fd5b505050505050565b6040517f510fc50a00000000000000000000000000000000000000000000000000000000815273__$61f169726e973bba1227e0c23d2755f88e$__9063510fc50a90610c5f90600190879087908790600401611f27565b6040517faea7fd0b00000000000000000000000000000000000000000000000000000000815273__$894ce12e79ca3e5683c1b49e363f37fa22$__9063aea7fd0b90610ce99060019086908690600401611f6b565b6000546001600160a01b03163314610e285760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657260448201526064015b60405180910390fd5b6001600160a01b038216600081815260086020908152604091829020805460ff191685151590811790915591519182527f9065599c12c4294d9e2201638226d0d0beb95c228f468c4e7c2bdb8322b6066f910160405180910390a25050565b6040517f13d0c66800000000000000000000000000000000000000000000000000000000815273__$9935b6ea18e0c526c293569ddd26842c9b$__906313d0c66890610c5f906001908790879087906004016120a8565b6040517f3b5d9f2400000000000000000000000000000000000000000000000000000000815273__$a542940934c03bae9a39609192cb25cc3c$__90633b5d9f2490610bce9060019088908890889088906004016120d7565b6000546001600160a01b03163314610f915760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610e1f565b610f9b6000611477565b565b6040517f624526fe00000000000000000000000000000000000000000000000000000000815273__$a542940934c03bae9a39609192cb25cc3c$__9063624526fe90610ff89060019089908990899089908990600401612131565b60006040518083038186803b15801561101057600080fd5b505af4158015611024573d6000803e3d6000fd5b505050505050505050565b6040517fd079fbb100000000000000000000000000000000000000000000000000000000815273__$0f118c52967a3847a37f0a2ef02ffcee04$__9063d079fbb190611082906001908590600401612174565b60006040518083038186803b15801561109a57600080fd5b505af41580156110ae573d6000803e3d6000fd5b5050505050565b6040517f4afbe4c90000000000000000000000000000000000000000000000000000000081526001600482015260248101849052604481018390526064810182905273__$0f118c52967a3847a37f0a2ef02ffcee04$__90634afbe4c990608401610c5f565b6040517fa164de6e00000000000000000000000000000000000000000000000000000000815273__$9935b6ea18e0c526c293569ddd26842c9b$__9063a164de6e90610bce906001908890889088908890600401611e9c565b6040517f7333b36900000000000000000000000000000000000000000000000000000000815273__$9935b6ea18e0c526c293569ddd26842c9b$__90637333b36990610ff89060019089908990899089908990600401612188565b6040517f72c9c91c00000000000000000000000000000000000000000000000000000000815273__$a542940934c03bae9a39609192cb25cc3c$__906372c9c91c90610c5f906001908790879087906004016121e1565b6040805160e081018252600080825260208201819052918101829052606081018290526080810182905260a0810182905260c08101919091526bffffffffffffffffffffffff198216600090815260156020908152604091829020825160e08101845281548152600182015492810192909252600281015467ffffffffffffffff81169383019390935263ffffffff680100000000000000008404811660608401526c010000000000000000000000008404166080830152909160a083019060ff600160801b90910416600481111561130157611301611be0565b600481111561131257611312611be0565b81526020016003820154815250509050919050565b6000546001600160a01b031633146113815760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610e1f565b61138f6001858585856114df565b50505050565b6000546001600160a01b031633146113ef5760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610e1f565b6001600160a01b03811661146b5760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201527f64647265737300000000000000000000000000000000000000000000000000006064820152608401610e1f565b61147481611477565b50565b600080546001600160a01b038381167fffffffffffffffffffffffff0000000000000000000000000000000000000000831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b60008367ffffffffffffffff161161155f5760405162461bcd60e51b815260206004820152603460248201527f57616c6c6574206d696e696d756d204254432062616c616e6365206d7573742060448201527f62652067726561746572207468616e207a65726f0000000000000000000000006064820152608401610e1f565b8267ffffffffffffffff168267ffffffffffffffff16116115e85760405162461bcd60e51b815260206004820152603b60248201527f57616c6c6574206d6178696d756d204254432062616c616e6365206d7573742060448201527f62652067726561746572207468616e20746865206d696e696d756d00000000006064820152608401610e1f565b60128501805463ffffffff8681166bffffffffffffffffffffffff19909216821764010000000067ffffffffffffffff888116918202929092177fffffffffffffffff000000000000000000000000ffffffffffffffffffffffff166c010000000000000000000000009288169283027fffffffffffffffff00000000ffffffffffffffffffffffffffffffffffffffff1617600160a01b938716938402179094556040805193845260208401949094529282019290925260608101919091527fc5e6f9192c5d47e7f338142843062686c7659943485864e5998551473c18505e9060800160405180910390a15050505050565b6000602082840312156116ee57600080fd5b5035919050565b60006080828403121561170757600080fd5b50919050565b60006060828403121561170757600080fd5b80356bffffffffffffffffffffffff198116811461173c57600080fd5b919050565b60008060008060c0858703121561175757600080fd5b843567ffffffffffffffff8082111561176f57600080fd5b61177b888389016116f5565b9550602087013591508082111561179157600080fd5b5061179e8782880161170d565b9350506117ae866040870161170d565b91506117bc60a0860161171f565b905092959194509250565b6000806000606084860312156117dc57600080fd5b505081359360208301359350604090920135919050565b6000806080838503121561180657600080fd5b61180f8361171f565b915061181e846020850161170d565b90509250929050565b600080600060a0848603121561183c57600080fd5b833567ffffffffffffffff8082111561185457600080fd5b611860878388016116f5565b9450602086013591508082111561187657600080fd5b506118838682870161170d565b925050611893856040860161170d565b90509250925092565b6000808284036101008112156118b157600080fd5b833567ffffffffffffffff8111156118c857600080fd5b6118d4868287016116f5565b93505060e0601f19820112156118e957600080fd5b506020830190509250929050565b80356001600160a01b038116811461173c57600080fd5b8035801515811461173c57600080fd5b6000806040838503121561193157600080fd5b61193a836118f7565b915061181e6020840161190e565b60008083601f84011261195a57600080fd5b50813567ffffffffffffffff81111561197257600080fd5b60208301915083602082850101111561198a57600080fd5b9250929050565b6000806000604084860312156119a657600080fd5b6119af8461171f565b9250602084013567ffffffffffffffff8111156119cb57600080fd5b6119d786828701611948565b9497909650939450505050565b60008060008060a085870312156119fa57600080fd5b843567ffffffffffffffff811115611a1157600080fd5b611a1d87828801611948565b909550935050602085013591506117bc866040870161170d565b600080600080600060608688031215611a4f57600080fd5b853567ffffffffffffffff80821115611a6757600080fd5b611a7389838a01611948565b90975095506020880135915080821115611a8c57600080fd5b50611a9988828901611948565b9094509250611aac90506040870161190e565b90509295509295909350565b600060608284031215611aca57600080fd5b611ad4838361170d565b9392505050565b803567ffffffffffffffff8116811461173c57600080fd5b600080600080600060c08688031215611b0b57600080fd5b611b148661171f565b9450611b23876020880161170d565b9350608086013567ffffffffffffffff811115611b3f57600080fd5b611b4b88828901611948565b9094509250611aac905060a08701611adb565b600080600060408486031215611b7357600080fd5b833567ffffffffffffffff811115611b8a57600080fd5b611b9686828701611948565b909790965060209590950135949350505050565b600060208284031215611bbc57600080fd5b611ad4826118f7565b600060208284031215611bd757600080fd5b611ad48261171f565b634e487b7160e01b600052602160045260246000fd5b600060e082019050825182526020830151602083015267ffffffffffffffff6040840151166040830152606083015163ffffffff8082166060850152806080860151166080850152505060a083015160058110611c6357634e487b7160e01b600052602160045260246000fd5b8060a08401525060c083015160c083015292915050565b803563ffffffff8116811461173c57600080fd5b60008060008060808587031215611ca457600080fd5b611cad85611c7a565b9350611cbb60208601611adb565b9250611cc960408601611adb565b91506117bc60608601611c7a565b80357fffffffff000000000000000000000000000000000000000000000000000000008116811461173c57600080fd5b6000808335601e19843603018112611d1e57600080fd5b830160208101925035905067ffffffffffffffff811115611d3e57600080fd5b80360383131561198a57600080fd5b81835281816020850137506000828201602090810191909152601f909101601f19169091010190565b60007fffffffff0000000000000000000000000000000000000000000000000000000080611da384611cd7565b168452611db36020840184611d07565b60806020870152611dc8608087018284611d4d565b915050611dd86040850185611d07565b8683036040880152611deb838284611d4d565b9250505081611dfc60608601611cd7565b166060860152809250505092915050565b6000611e198283611d07565b60608552611e2b606086018284611d4d565b91505060208301356020850152611e456040840184611d07565b8583036040870152611e58838284611d4d565b9695505050505050565b8035825263ffffffff611e7760208301611c7a565b16602083015267ffffffffffffffff611e9260408301611adb565b1660408301525050565b85815260e060208201526000611eb560e0830187611d76565b8281036040840152611ec78187611e0d565b915050611ed76060830185611e62565b6bffffffffffffffffffffffff19831660c08301529695505050505050565b8381526bffffffffffffffffffffffff198316602082015260a08101611f1f6040830184611e62565b949350505050565b84815260c060208201526000611f4060c0830186611d76565b8281036040840152611f528186611e0d565b915050611f626060830184611e62565b95945050505050565b6000610120858352806020840152611f8581840186611d76565b91505063ffffffff611f9684611c7a565b1660408301526001600160a01b03611fb0602085016118f7565b16606083015260408301357fffffffffffffffff00000000000000000000000000000000000000000000000081168114611fe957600080fd5b7fffffffffffffffff00000000000000000000000000000000000000000000000016608083015261201c6060840161171f565b6bffffffffffffffffffffffff191660a083015261203c6080840161171f565b6bffffffffffffffffffffffff191660c083015261205c60a08401611cd7565b7fffffffff000000000000000000000000000000000000000000000000000000001660e083015261208f60c084016118f7565b6001600160a01b03811661010084015250949350505050565b8481526bffffffffffffffffffffffff1984166020820152606060408201526000611e58606083018486611d4d565b85815260c0602082015260006120f160c083018688611d4d565b90508360408301528235606083015260208301356080830152604083013560ff811680821461211f57600080fd5b8060a085015250509695505050505050565b86815260806020820152600061214b608083018789611d4d565b828103604084015261215e818688611d4d565b9150508215156060830152979650505050505050565b82815260808101611ad46020830184611e62565b8681526bffffffffffffffffffffffff19861660208201526121ad6040820186611e62565b60e060a082015260006121c460e083018587611d4d565b905067ffffffffffffffff831660c0830152979650505050505050565b8481526060602082015260006121fb606083018587611d4d565b90508260408301529594505050505056fea26469706673582212200a1783731e70d0a326bf3f3fdf2c2183a6fa25790632bd9823c3c4be5b9d30df64736f6c63430008090033",
|
|
1948
|
+
"bytecode": "0x60806040523480156200001157600080fd5b506040516200393b3803806200393b833981016040819052620000349162000377565b6200003f336200030a565b6001600160a01b0385166200009b5760405162461bcd60e51b815260206004820152601b60248201527f42616e6b20616464726573732063616e6e6f74206265207a65726f000000000060448201526064015b60405180910390fd5b600180546001600160a01b0319166001600160a01b038781169190911790915584166200010b5760405162461bcd60e51b815260206004820152601c60248201527f52656c617920616464726573732063616e6e6f74206265207a65726f00000000604482015260640162000092565b600280546001600160a01b0319166001600160a01b03868116919091179091558216620001905760405162461bcd60e51b815260206004820152602c60248201527f45434453412057616c6c6574205265676973747279206164647265737320636160448201526b6e6e6f74206265207a65726f60a01b606482015260840162000092565b600380546001600160a01b0319166001600160a01b03848116919091179091558316620002005760405162461bcd60e51b815260206004820152601f60248201527f547265617375727920616464726573732063616e6e6f74206265207a65726f00604482015260640162000092565b600580546004929092556001600160a01b03939093166001600160e01b031991821617613d0960a61b1790925550600680546001600160801b03191669271000000000000007d017905560098054600a80546127106001600160401b03199091161790556202a300600b559091167507d000000000000f424000093a800000000000002710179055505069021e19e0c9bab2400000600e556064600f5562093a80601055671bc16d674ec80000601155601480546001600160c01b03191676eff100000000003b9aca000000000005f5e10000093a80179055601580546001600160c01b0316621dcd6560c91b179055601680546234bc0063ffffffff19909116179055620003de565b600080546001600160a01b038381166001600160a01b0319831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b80516001600160a01b03811681146200037257600080fd5b919050565b600080600080600060a086880312156200039057600080fd5b6200039b866200035a565b9450620003ab602087016200035a565b9350620003bb604087016200035a565b9250620003cb606087016200035a565b9150608086015190509295509295909350565b61354d80620003ee6000396000f3fe6080604052600436106102d15760003560e01c80638da5cb5b11610179578063be05abe3116100d6578063d6eccdf01161008a578063e53c0b5511610064578063e53c0b5514610cbd578063e65e19d514610cf6578063f2fde38b14610d2357600080fd5b8063d6eccdf014610c4c578063d95027b714610c6c578063ded1d24a14610c8c57600080fd5b8063c8b5d2db116100bb578063c8b5d2db14610bec578063cdeade1814610c0c578063d3ecfd0c14610c2c57600080fd5b8063be05abe314610b66578063c42b64d014610ba057600080fd5b8063abaeed8f1161012d578063b2146cd611610112578063b2146cd614610ae6578063b34b321614610b26578063bbeac4bf14610b4657600080fd5b8063abaeed8f14610968578063b02c43d01461098857600080fd5b8063a145e2d51161015e578063a145e2d5146108f5578063a8fa0f4214610915578063a9de2f3a1461093557600080fd5b80638da5cb5b146108b757806396db2537146108d557600080fd5b806359a9d90a1161023257806367f27247116101e6578063715018a6116101c0578063715018a61461084957806375b922d11461085e57806377145f211461089757600080fd5b806367f27247146107c15780636d02b43c146107e15780636e70ce41146107f457600080fd5b806360d712fc1161021757806360d712fc146106cf57806361ccf97a146106ef57806361d027b31461078f57600080fd5b806359a9d90a1461068f5780635c0b4812146106af57600080fd5b80632f429b641161028957806333e957cb1161026e57806333e957cb146105705780633dce98121461064f578063575e42791461066f57600080fd5b80632f429b6414610530578063319a33a91461055057600080fd5b806317c96400116102ba57806317c96400146104be57806324028c11146104e05780632bb818c21461051257600080fd5b806303d952f7146102d65780630b6ba19d14610400575b600080fd5b3480156102e257600080fd5b506103946102f13660046126f3565b6040805160a081018252600080825260208201819052918101829052606081018290526080810191909152506000908152600c6020908152604091829020825160a08101845281546001600160a01b0381168252600160a01b900467ffffffffffffffff9081169382019390935260019091015480831693820193909352600160401b83049091166060820152600160801b90910463ffffffff16608082015290565b6040516103f79190600060a0820190506001600160a01b038351168252602083015167ffffffffffffffff8082166020850152806040860151166040850152806060860151166060850152505063ffffffff608084015116608083015292915050565b60405180910390f35b34801561040c57600080fd5b5061039461041b3660046126f3565b6040805160a081018252600080825260208201819052918101829052606081018290526080810191909152506000908152600d6020908152604091829020825160a08101845281546001600160a01b0381168252600160a01b900467ffffffffffffffff9081169382019390935260019091015480831693820193909352600160401b83049091166060820152600160801b90910463ffffffff16608082015290565b3480156104ca57600080fd5b506104de6104d9366004612729565b610d43565b005b3480156104ec57600080fd5b50601554600160a01b900463ffffffff1660405163ffffffff90911681526020016103f7565b34801561051e57600080fd5b506004546040519081526020016103f7565b34801561053c57600080fd5b506104de61054b3660046127b3565b610db4565b34801561055c57600080fd5b506104de61056b366004612839565b610e41565b34801561057c57600080fd5b5061060b61058b3660046126f3565b60408051608081018252600080825260208201819052918101829052606081019190915250600090815260126020908152604091829020825160808101845281546001600160a01b031681526001820154928101929092526002015463ffffffff81169282019290925264010000000090910460ff161515606082015290565b6040516103f7919081516001600160a01b031681526020808301519082015260408083015163ffffffff169082015260609182015115159181019190915260800190565b34801561065b57600080fd5b506104de61066a36600461285b565b610ed6565b34801561067b57600080fd5b506104de61068a366004612887565b610f66565b34801561069b57600080fd5b506104de6106aa3660046128bb565b610fef565b3480156106bb57600080fd5b506104de6106ca366004612927565b611046565b3480156106db57600080fd5b506104de6106ea3660046129a9565b61109b565b3480156106fb57600080fd5b5061074a60145460155460165463ffffffff8084169467ffffffffffffffff6401000000008604811695600160601b8104821695600160a01b909104841694600160c01b909104909116921690565b6040805163ffffffff978816815267ffffffffffffffff96871660208201529486169085015291851660608401529092166080820152911660a082015260c0016103f7565b34801561079b57600080fd5b506005546001600160a01b03165b6040516001600160a01b0390911681526020016103f7565b3480156107cd57600080fd5b506104de6107dc366004612a1c565b611154565b6104de6107ef366004612a6f565b6111ab565b34801561080057600080fd5b50600954600a54600b546040805167ffffffffffffffff600160601b860481168252600160a01b90950485166020820152939092169183019190915260608201526080016103f7565b34801561085557600080fd5b506104de611204565b34801561086a57600080fd5b50600e54600f546010546011546040805194855260208501939093529183015260608201526080016103f7565b3480156108a357600080fd5b506104de6108b2366004612ac2565b61126a565b3480156108c357600080fd5b506000546001600160a01b03166107a9565b3480156108e157600080fd5b506104de6108f0366004612b43565b6112fc565b34801561090157600080fd5b506104de610910366004612b8e565b61136a565b34801561092157600080fd5b506104de61093036600461285b565b6113bd565b34801561094157600080fd5b50600154600254604080516001600160a01b039384168152929091166020830152016103f7565b34801561097457600080fd5b506104de610983366004612bef565b611423565b34801561099457600080fd5b50610a706109a33660046126f3565b6040805160c081018252600080825260208201819052918101829052606081018290526080810182905260a081019190915250600090815260076020908152604091829020825160c08101845281546001600160a01b03808216835267ffffffffffffffff600160a01b80840482169685019690965263ffffffff7c0100000000000000000000000000000000000000000000000000000000938490048116978501979097526001949094015490811660608401529384049092166080820152910490911660a082015290565b6040516103f79190600060c0820190506001600160a01b03808451168352602084015167ffffffffffffffff80821660208601526040860151915063ffffffff80831660408701528360608801511660608701528160808801511660808701528060a08801511660a08701525050505092915050565b348015610af257600080fd5b50610b16610b013660046126f3565b60009081526013602052604090205460ff1690565b60405190151581526020016103f7565b348015610b3257600080fd5b506104de610b413660046127b3565b6114bb565b348015610b5257600080fd5b506104de610b61366004612c8b565b611514565b348015610b7257600080fd5b506009546040805167ffffffffffffffff83168152600160401b90920463ffffffff166020830152016103f7565b348015610bac57600080fd5b5060055460065460408051600160a01b90930467ffffffffffffffff90811684528083166020850152600160401b909204909116908201526060016103f7565b348015610bf857600080fd5b506104de610c07366004612839565b61157c565b348015610c1857600080fd5b506104de610c27366004612cd1565b61158a565b348015610c3857600080fd5b506104de610c47366004612d45565b6115f4565b348015610c5857600080fd5b506104de610c67366004612d6f565b61165e565b348015610c7857600080fd5b506104de610c87366004612dda565b6116b9565b348015610c9857600080fd5b5060155460601b6040516bffffffffffffffffffffffff1990911681526020016103f7565b348015610cc957600080fd5b50610b16610cd8366004612e26565b6001600160a01b031660009081526008602052604090205460ff1690565b348015610d0257600080fd5b50610d16610d11366004612839565b611710565b6040516103f79190612e57565b348015610d2f57600080fd5b506104de610d3e366004612e26565b61181a565b6000546001600160a01b03163314610da25760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657260448201526064015b60405180910390fd5b610daf60018484846118f9565b505050565b6040517e92bac900000000000000000000000000000000000000000000000000000000815273__$edce581bb06331cf4dae1387760565e5d1$__906292bac990610e0b9060019088908890889088906004016130ad565b60006040518083038186803b158015610e2357600080fd5b505af4158015610e37573d6000803e3d6000fd5b5050505050505050565b6040517fb45b31d5000000000000000000000000000000000000000000000000000000008152600160048201526bffffffffffffffffffffffff198216602482015273__$edce581bb06331cf4dae1387760565e5d1$__9063b45b31d5906044015b60006040518083038186803b158015610ebb57600080fd5b505af4158015610ecf573d6000803e3d6000fd5b5050505050565b6040517fc87de7f400000000000000000000000000000000000000000000000000000000815260016004820152602481018390526044810182905273__$0f118c52967a3847a37f0a2ef02ffcee04$__9063c87de7f4906064015b60006040518083038186803b158015610f4957600080fd5b505af4158015610f5d573d6000803e3d6000fd5b50505050505050565b6040517f99b0b84700000000000000000000000000000000000000000000000000000000815273__$0f118c52967a3847a37f0a2ef02ffcee04$__906399b0b84790610fbb9060019086908690600401613107565b60006040518083038186803b158015610fd357600080fd5b505af4158015610fe7573d6000803e3d6000fd5b505050505050565b6040517f510fc50a00000000000000000000000000000000000000000000000000000000815273__$61f169726e973bba1227e0c23d2755f88e$__9063510fc50a90610f3190600190879087908790600401613138565b6040517faea7fd0b00000000000000000000000000000000000000000000000000000000815273__$894ce12e79ca3e5683c1b49e363f37fa22$__9063aea7fd0b90610fbb906001908690869060040161317c565b6000546001600160a01b031633146110f55760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610d99565b6001600160a01b038216600081815260086020908152604091829020805460ff191685151590811790915591519182527f9065599c12c4294d9e2201638226d0d0beb95c228f468c4e7c2bdb8322b6066f910160405180910390a25050565b6040517f13d0c66800000000000000000000000000000000000000000000000000000000815273__$9935b6ea18e0c526c293569ddd26842c9b$__906313d0c66890610f31906001908790879087906004016132b9565b6040517f3b5d9f2400000000000000000000000000000000000000000000000000000000815273__$a542940934c03bae9a39609192cb25cc3c$__90633b5d9f2490610e0b9060019088908890889088906004016132e8565b6000546001600160a01b0316331461125e5760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610d99565b6112686000611b3f565b565b6040517f624526fe00000000000000000000000000000000000000000000000000000000815273__$a542940934c03bae9a39609192cb25cc3c$__9063624526fe906112c59060019089908990899089908990600401613342565b60006040518083038186803b1580156112dd57600080fd5b505af41580156112f1573d6000803e3d6000fd5b505050505050505050565b6000546001600160a01b031633146113565760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610d99565b611364600185858585611ba7565b50505050565b6040517fd079fbb100000000000000000000000000000000000000000000000000000000815273__$0f118c52967a3847a37f0a2ef02ffcee04$__9063d079fbb190610ea3906001908590600401613385565b6040517f4afbe4c90000000000000000000000000000000000000000000000000000000081526001600482015260248101849052604481018390526064810182905273__$0f118c52967a3847a37f0a2ef02ffcee04$__90634afbe4c990608401610f31565b6040517fc8f7794300000000000000000000000000000000000000000000000000000000815273__$edce581bb06331cf4dae1387760565e5d1$__9063c8f7794390611482906001908b908b908b908b908b908b908b90600401613399565b60006040518083038186803b15801561149a57600080fd5b505af41580156114ae573d6000803e3d6000fd5b5050505050505050505050565b6040517fa164de6e00000000000000000000000000000000000000000000000000000000815273__$9935b6ea18e0c526c293569ddd26842c9b$__9063a164de6e90610e0b9060019088908890889088906004016130ad565b6000546001600160a01b0316331461156e5760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610d99565b611364600185858585611e80565b611587600182611fce565b50565b6000546001600160a01b031633146115e45760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610d99565b610fe7600187878787878761212b565b6000546001600160a01b0316331461164e5760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610d99565b61165a60018383612473565b5050565b6040517f7333b36900000000000000000000000000000000000000000000000000000000815273__$9935b6ea18e0c526c293569ddd26842c9b$__90637333b369906112c5906001908990899089908990899060040161345d565b6040517f72c9c91c00000000000000000000000000000000000000000000000000000000815273__$a542940934c03bae9a39609192cb25cc3c$__906372c9c91c90610f31906001908790879087906004016134b6565b6040805161010081018252600080825260208201819052918101829052606081018290526080810182905260a0810182905260c0810182905260e08101919091526bffffffffffffffffffffffff19821660009081526017602090815260409182902082516101008101845281548152600182015492810192909252600281015467ffffffffffffffff81169383019390935263ffffffff600160401b840481166060840152600160601b840481166080840152600160801b84041660a0830152909160c083019060ff600160a01b9091041660058111156117f4576117f4612e41565b600581111561180557611805612e41565b81526020016003820154815250509050919050565b6000546001600160a01b031633146118745760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610d99565b6001600160a01b0381166118f05760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201527f64647265737300000000000000000000000000000000000000000000000000006064820152608401610d99565b61158781611b3f565b60008367ffffffffffffffff16116119795760405162461bcd60e51b815260206004820152603060248201527f4465706f7369742064757374207468726573686f6c64206d757374206265206760448201527f726561746572207468616e207a65726f000000000000000000000000000000006064820152608401610d99565b60008267ffffffffffffffff16116119f95760405162461bcd60e51b815260206004820152603660248201527f4465706f736974207472656173757279206665652064697669736f72206d757360448201527f742062652067726561746572207468616e207a65726f000000000000000000006064820152608401610d99565b60008167ffffffffffffffff1611611a795760405162461bcd60e51b815260206004820152603560248201527f4465706f736974207472616e73616374696f6e206d617820666565206d75737460448201527f2062652067726561746572207468616e207a65726f00000000000000000000006064820152608401610d99565b6004840180547fffffffff0000000000000000ffffffffffffffffffffffffffffffffffffffff16600160a01b67ffffffffffffffff868116918202929092179092556005860180548583167fffffffffffffffffffffffffffffffff000000000000000000000000000000009091168117600160401b938616938402179091556040805193845260208401919091528201527f1ced468902ca566e746a3c8c9516af81f8de9f1021c365083be9f2625ebfb7b59060600160405180910390a150505050565b600080546001600160a01b038381167fffffffffffffffffffffffff0000000000000000000000000000000000000000831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b60008467ffffffffffffffff1611611c275760405162461bcd60e51b815260206004820152603360248201527f526564656d7074696f6e2064757374207468726573686f6c64206d757374206260448201527f652067726561746572207468616e207a65726f000000000000000000000000006064820152608401610d99565b60008367ffffffffffffffff1611611ca75760405162461bcd60e51b815260206004820152603960248201527f526564656d7074696f6e207472656173757279206665652064697669736f722060448201527f6d7573742062652067726561746572207468616e207a65726f000000000000006064820152608401610d99565b60008267ffffffffffffffff1611611d275760405162461bcd60e51b815260206004820152603860248201527f526564656d7074696f6e207472616e73616374696f6e206d617820666565206d60448201527f7573742062652067726561746572207468616e207a65726f00000000000000006064820152608401610d99565b60008111611d9d5760405162461bcd60e51b815260206004820152602c60248201527f526564656d7074696f6e2074696d656f7574206d75737420626520677265617460448201527f6572207468616e207a65726f00000000000000000000000000000000000000006064820152608401610d99565b6008850180547fffffffff00000000000000000000000000000000ffffffffffffffffffffffff16600160601b67ffffffffffffffff8781169182027fffffffff0000000000000000ffffffffffffffffffffffffffffffffffffffff1692909217600160a01b8784169081029190911790935560098801805467ffffffffffffffff19169286169283179055600a880184905560408051918252602082019390935291820152606081018290527f92c7dd8c8e389aa6dd2d4ed3d2f1848abbaef487207c28f4c5c4990c5116ff1f906080015b60405180910390a15050505050565b6064831115611ef75760405162461bcd60e51b815260206004820152603e60248201527f4672617564206e6f74696669657220726577617264206d756c7469706c69657260448201527f206d75737420626520696e207468652072616e6765205b302c203130305d00006064820152608401610d99565b60008211611f6d5760405162461bcd60e51b815260206004820152603860248201527f4672617564206368616c6c656e6765206465666561742074696d656f7574206d60448201527f7573742062652067726561746572207468616e207a65726f00000000000000006064820152608401610d99565b600d8501849055600e8501839055600f8501829055601085018190556040805185815260208101859052908101839052606081018290527f3d5b171ef2601a0b7e9eb653999f8e932fb569e8f84526e1eea05c053063a1d690608001611e71565b6bffffffffffffffffffffffff1981166000908152601683016020526040902060036002820154600160a01b900460ff16600581111561201057612010612e41565b146120835760405162461bcd60e51b815260206004820152602560248201527f45434453412077616c6c6574206d75737420626520696e20436c6f73696e672060448201527f73746174650000000000000000000000000000000000000000000000000000006064820152608401610d99565b601583015460028201546120a79163ffffffff90811691600160801b9004166134e1565b63ffffffff1642116121215760405162461bcd60e51b815260206004820152602260248201527f436c6f73696e6720706572696f6420686173206e6f7420656c6170736564207960448201527f65740000000000000000000000000000000000000000000000000000000000006064820152608401610d99565b610daf83836125ea565b60008567ffffffffffffffff16116121ab5760405162461bcd60e51b815260206004820152603460248201527f57616c6c6574206d696e696d756d204254432062616c616e6365206d7573742060448201527f62652067726561746572207468616e207a65726f0000000000000000000000006064820152608401610d99565b8467ffffffffffffffff168467ffffffffffffffff16116122345760405162461bcd60e51b815260206004820152603b60248201527f57616c6c6574206d6178696d756d204254432062616c616e6365206d7573742060448201527f62652067726561746572207468616e20746865206d696e696d756d00000000006064820152608401610d99565b60008267ffffffffffffffff16116122b45760405162461bcd60e51b815260206004820152603560248201527f57616c6c6574206d6178696d756d20425443207472616e73666572206d75737460448201527f2062652067726561746572207468616e207a65726f00000000000000000000006064820152608401610d99565b60008163ffffffff16116123305760405162461bcd60e51b815260206004820152602f60248201527f57616c6c657420636c6f73696e6720706572696f64206d75737420626520677260448201527f6561746572207468616e207a65726f00000000000000000000000000000000006064820152608401610d99565b60138701805463ffffffff8881166bffffffffffffffffffffffff19909216821764010000000067ffffffffffffffff8a8116918202929092177fffffffffffffffff000000000000000000000000ffffffffffffffffffffffff16600160601b8a84169081027fffffffffffffffff00000000ffffffffffffffffffffffffffffffffffffffff1691909117600160a01b8a86169081029190911790965560148d01805477ffffffffffffffffffffffffffffffffffffffffffffffff16600160c01b948a1694850217905560158d01805463ffffffff19169488169485179055604080519586526020860192909252908401526060830193909352608082019290925260a08101919091527f1057480b8647a24ff5b4e5b9cab9039e959d4207393663f3139050458c5f24ca9060c00160405180910390a150505050505050565b60008267ffffffffffffffff16116124f5576040805162461bcd60e51b81526020600482015260248101919091527f4d6f76696e672066756e6473207472616e73616374696f6e206d617820746f7460448201527f616c20666565206d7573742062652067726561746572207468616e207a65726f6064820152608401610d99565b60008163ffffffff16116125715760405162461bcd60e51b815260206004820152602e60248201527f4d6f76696e672066756e64732074696d656f7574206d7573742062652067726560448201527f61746572207468616e207a65726f0000000000000000000000000000000000006064820152608401610d99565b60088301805467ffffffffffffffff84166bffffffffffffffffffffffff199091168117600160401b63ffffffff8516908102919091179092556040805191825260208201929092527f6871b29495da7552b91b95611e45bc1898b37c7b06fd9e8be0915154b1bac186910160405180910390a1505050565b6bffffffffffffffffffffffff19811660008181526016840160205260408082206002810180547fffffffffffffffffffffff00ffffffffffffffffffffffffffffffffffffffff1674040000000000000000000000000000000000000000179055805491519093927f47b159947c3066cb253f60e8f046cfd747411788a545cb189679e3fa1467b28d91a3600283015481546040517f343bb9270000000000000000000000000000000000000000000000000000000081526001600160a01b039092169163343bb927916126c59160040190815260200190565b600060405180830381600087803b1580156126df57600080fd5b505af1158015610f5d573d6000803e3d6000fd5b60006020828403121561270557600080fd5b5035919050565b803567ffffffffffffffff8116811461272457600080fd5b919050565b60008060006060848603121561273e57600080fd5b6127478461270c565b92506127556020850161270c565b91506127636040850161270c565b90509250925092565b60006080828403121561277e57600080fd5b50919050565b60006060828403121561277e57600080fd5b80356bffffffffffffffffffffffff198116811461272457600080fd5b60008060008060c085870312156127c957600080fd5b843567ffffffffffffffff808211156127e157600080fd5b6127ed8883890161276c565b9550602087013591508082111561280357600080fd5b5061281087828801612784565b9350506128208660408701612784565b915061282e60a08601612796565b905092959194509250565b60006020828403121561284b57600080fd5b61285482612796565b9392505050565b60008060006060848603121561287057600080fd5b505081359360208301359350604090920135919050565b6000806080838503121561289a57600080fd5b6128a383612796565b91506128b28460208501612784565b90509250929050565b600080600060a084860312156128d057600080fd5b833567ffffffffffffffff808211156128e857600080fd5b6128f48783880161276c565b9450602086013591508082111561290a57600080fd5b5061291786828701612784565b9250506127638560408601612784565b60008082840361010081121561293c57600080fd5b833567ffffffffffffffff81111561295357600080fd5b61295f8682870161276c565b93505060e0601f198201121561297457600080fd5b506020830190509250929050565b80356001600160a01b038116811461272457600080fd5b8035801515811461272457600080fd5b600080604083850312156129bc57600080fd5b6129c583612982565b91506128b260208401612999565b60008083601f8401126129e557600080fd5b50813567ffffffffffffffff8111156129fd57600080fd5b602083019150836020828501011115612a1557600080fd5b9250929050565b600080600060408486031215612a3157600080fd5b612a3a84612796565b9250602084013567ffffffffffffffff811115612a5657600080fd5b612a62868287016129d3565b9497909650939450505050565b60008060008060a08587031215612a8557600080fd5b843567ffffffffffffffff811115612a9c57600080fd5b612aa8878288016129d3565b9095509350506020850135915061282e8660408701612784565b600080600080600060608688031215612ada57600080fd5b853567ffffffffffffffff80821115612af257600080fd5b612afe89838a016129d3565b90975095506020880135915080821115612b1757600080fd5b50612b24888289016129d3565b9094509250612b37905060408701612999565b90509295509295909350565b60008060008060808587031215612b5957600080fd5b612b628561270c565b9350612b706020860161270c565b9250612b7e6040860161270c565b9396929550929360600135925050565b600060608284031215612ba057600080fd5b6128548383612784565b60008083601f840112612bbc57600080fd5b50813567ffffffffffffffff811115612bd457600080fd5b6020830191508360208260051b8501011115612a1557600080fd5b600080600080600080600060e0888a031215612c0a57600080fd5b612c1388612796565b9650612c228960208a01612784565b9550608088013567ffffffffffffffff80821115612c3f57600080fd5b612c4b8b838c01612baa565b909750955060a08a0135945060c08a0135915080821115612c6b57600080fd5b50612c788a828b01612baa565b989b979a50959850939692959293505050565b60008060008060808587031215612ca157600080fd5b5050823594602084013594506040840135936060013592509050565b803563ffffffff8116811461272457600080fd5b60008060008060008060c08789031215612cea57600080fd5b612cf387612cbd565b9550612d016020880161270c565b9450612d0f6040880161270c565b9350612d1d60608801612cbd565b9250612d2b6080880161270c565b9150612d3960a08801612cbd565b90509295509295509295565b60008060408385031215612d5857600080fd5b612d618361270c565b91506128b260208401612cbd565b600080600080600060c08688031215612d8757600080fd5b612d9086612796565b9450612d9f8760208801612784565b9350608086013567ffffffffffffffff811115612dbb57600080fd5b612dc7888289016129d3565b9094509250612b37905060a0870161270c565b600080600060408486031215612def57600080fd5b833567ffffffffffffffff811115612e0657600080fd5b612e12868287016129d3565b909790965060209590950135949350505050565b600060208284031215612e3857600080fd5b61285482612982565b634e487b7160e01b600052602160045260246000fd5b600061010082019050825182526020830151602083015267ffffffffffffffff6040840151166040830152606083015163ffffffff80821660608501528060808601511660808501528060a08601511660a0850152505060c083015160068110612ed157634e487b7160e01b600052602160045260246000fd5b8060c08401525060e083015160e083015292915050565b80357fffffffff000000000000000000000000000000000000000000000000000000008116811461272457600080fd5b6000808335601e19843603018112612f2f57600080fd5b830160208101925035905067ffffffffffffffff811115612f4f57600080fd5b803603831315612a1557600080fd5b81835281816020850137506000828201602090810191909152601f909101601f19169091010190565b60007fffffffff0000000000000000000000000000000000000000000000000000000080612fb484612ee8565b168452612fc46020840184612f18565b60806020870152612fd9608087018284612f5e565b915050612fe96040850185612f18565b8683036040880152612ffc838284612f5e565b925050508161300d60608601612ee8565b166060860152809250505092915050565b600061302a8283612f18565b6060855261303c606086018284612f5e565b915050602083013560208501526130566040840184612f18565b8583036040870152613069838284612f5e565b9695505050505050565b8035825263ffffffff61308860208301612cbd565b16602083015267ffffffffffffffff6130a36040830161270c565b1660408301525050565b85815260e0602082015260006130c660e0830187612f87565b82810360408401526130d8818761301e565b9150506130e86060830185613073565b6bffffffffffffffffffffffff19831660c08301529695505050505050565b8381526bffffffffffffffffffffffff198316602082015260a081016131306040830184613073565b949350505050565b84815260c06020820152600061315160c0830186612f87565b8281036040840152613163818661301e565b9150506131736060830184613073565b95945050505050565b600061012085835280602084015261319681840186612f87565b91505063ffffffff6131a784612cbd565b1660408301526001600160a01b036131c160208501612982565b16606083015260408301357fffffffffffffffff000000000000000000000000000000000000000000000000811681146131fa57600080fd5b7fffffffffffffffff00000000000000000000000000000000000000000000000016608083015261322d60608401612796565b6bffffffffffffffffffffffff191660a083015261324d60808401612796565b6bffffffffffffffffffffffff191660c083015261326d60a08401612ee8565b7fffffffff000000000000000000000000000000000000000000000000000000001660e08301526132a060c08401612982565b6001600160a01b03811661010084015250949350505050565b8481526bffffffffffffffffffffffff1984166020820152606060408201526000613069606083018486612f5e565b85815260c06020820152600061330260c083018688612f5e565b90508360408301528235606083015260208301356080830152604083013560ff811680821461333057600080fd5b8060a085015250509695505050505050565b86815260806020820152600061335c608083018789612f5e565b828103604084015261336f818688612f5e565b9150508215156060830152979650505050505050565b828152608081016128546020830184613073565b60006101008083018b845260206bffffffffffffffffffffffff19808d16828701526133c8604087018d613073565b60a08601939093529088905261012084019189919060005b8a8110156134095763ffffffff6133f685612cbd565b16855293820193928201926001016133e0565b5060c0860189905285840360e087015286845287938201925060005b8781101561344a578161343786612796565b1684529382019392820192600101613425565b50919d9c50505050505050505050505050565b8681526bffffffffffffffffffffffff19861660208201526134826040820186613073565b60e060a0820152600061349960e083018587612f5e565b905067ffffffffffffffff831660c0830152979650505050505050565b8481526060602082015260006134d0606083018587612f5e565b905082604083015295945050505050565b600063ffffffff80831681851680830382111561350e57634e487b7160e01b600052601160045260246000fd5b0194935050505056fea2646970667358221220db827910db614ccfd9e00037a186e6d21e4ed0781a81165a4ecd63c3bd7f295e64736f6c63430008090033",
|
|
1949
|
+
"deployedBytecode": "0x6080604052600436106102d15760003560e01c80638da5cb5b11610179578063be05abe3116100d6578063d6eccdf01161008a578063e53c0b5511610064578063e53c0b5514610cbd578063e65e19d514610cf6578063f2fde38b14610d2357600080fd5b8063d6eccdf014610c4c578063d95027b714610c6c578063ded1d24a14610c8c57600080fd5b8063c8b5d2db116100bb578063c8b5d2db14610bec578063cdeade1814610c0c578063d3ecfd0c14610c2c57600080fd5b8063be05abe314610b66578063c42b64d014610ba057600080fd5b8063abaeed8f1161012d578063b2146cd611610112578063b2146cd614610ae6578063b34b321614610b26578063bbeac4bf14610b4657600080fd5b8063abaeed8f14610968578063b02c43d01461098857600080fd5b8063a145e2d51161015e578063a145e2d5146108f5578063a8fa0f4214610915578063a9de2f3a1461093557600080fd5b80638da5cb5b146108b757806396db2537146108d557600080fd5b806359a9d90a1161023257806367f27247116101e6578063715018a6116101c0578063715018a61461084957806375b922d11461085e57806377145f211461089757600080fd5b806367f27247146107c15780636d02b43c146107e15780636e70ce41146107f457600080fd5b806360d712fc1161021757806360d712fc146106cf57806361ccf97a146106ef57806361d027b31461078f57600080fd5b806359a9d90a1461068f5780635c0b4812146106af57600080fd5b80632f429b641161028957806333e957cb1161026e57806333e957cb146105705780633dce98121461064f578063575e42791461066f57600080fd5b80632f429b6414610530578063319a33a91461055057600080fd5b806317c96400116102ba57806317c96400146104be57806324028c11146104e05780632bb818c21461051257600080fd5b806303d952f7146102d65780630b6ba19d14610400575b600080fd5b3480156102e257600080fd5b506103946102f13660046126f3565b6040805160a081018252600080825260208201819052918101829052606081018290526080810191909152506000908152600c6020908152604091829020825160a08101845281546001600160a01b0381168252600160a01b900467ffffffffffffffff9081169382019390935260019091015480831693820193909352600160401b83049091166060820152600160801b90910463ffffffff16608082015290565b6040516103f79190600060a0820190506001600160a01b038351168252602083015167ffffffffffffffff8082166020850152806040860151166040850152806060860151166060850152505063ffffffff608084015116608083015292915050565b60405180910390f35b34801561040c57600080fd5b5061039461041b3660046126f3565b6040805160a081018252600080825260208201819052918101829052606081018290526080810191909152506000908152600d6020908152604091829020825160a08101845281546001600160a01b0381168252600160a01b900467ffffffffffffffff9081169382019390935260019091015480831693820193909352600160401b83049091166060820152600160801b90910463ffffffff16608082015290565b3480156104ca57600080fd5b506104de6104d9366004612729565b610d43565b005b3480156104ec57600080fd5b50601554600160a01b900463ffffffff1660405163ffffffff90911681526020016103f7565b34801561051e57600080fd5b506004546040519081526020016103f7565b34801561053c57600080fd5b506104de61054b3660046127b3565b610db4565b34801561055c57600080fd5b506104de61056b366004612839565b610e41565b34801561057c57600080fd5b5061060b61058b3660046126f3565b60408051608081018252600080825260208201819052918101829052606081019190915250600090815260126020908152604091829020825160808101845281546001600160a01b031681526001820154928101929092526002015463ffffffff81169282019290925264010000000090910460ff161515606082015290565b6040516103f7919081516001600160a01b031681526020808301519082015260408083015163ffffffff169082015260609182015115159181019190915260800190565b34801561065b57600080fd5b506104de61066a36600461285b565b610ed6565b34801561067b57600080fd5b506104de61068a366004612887565b610f66565b34801561069b57600080fd5b506104de6106aa3660046128bb565b610fef565b3480156106bb57600080fd5b506104de6106ca366004612927565b611046565b3480156106db57600080fd5b506104de6106ea3660046129a9565b61109b565b3480156106fb57600080fd5b5061074a60145460155460165463ffffffff8084169467ffffffffffffffff6401000000008604811695600160601b8104821695600160a01b909104841694600160c01b909104909116921690565b6040805163ffffffff978816815267ffffffffffffffff96871660208201529486169085015291851660608401529092166080820152911660a082015260c0016103f7565b34801561079b57600080fd5b506005546001600160a01b03165b6040516001600160a01b0390911681526020016103f7565b3480156107cd57600080fd5b506104de6107dc366004612a1c565b611154565b6104de6107ef366004612a6f565b6111ab565b34801561080057600080fd5b50600954600a54600b546040805167ffffffffffffffff600160601b860481168252600160a01b90950485166020820152939092169183019190915260608201526080016103f7565b34801561085557600080fd5b506104de611204565b34801561086a57600080fd5b50600e54600f546010546011546040805194855260208501939093529183015260608201526080016103f7565b3480156108a357600080fd5b506104de6108b2366004612ac2565b61126a565b3480156108c357600080fd5b506000546001600160a01b03166107a9565b3480156108e157600080fd5b506104de6108f0366004612b43565b6112fc565b34801561090157600080fd5b506104de610910366004612b8e565b61136a565b34801561092157600080fd5b506104de61093036600461285b565b6113bd565b34801561094157600080fd5b50600154600254604080516001600160a01b039384168152929091166020830152016103f7565b34801561097457600080fd5b506104de610983366004612bef565b611423565b34801561099457600080fd5b50610a706109a33660046126f3565b6040805160c081018252600080825260208201819052918101829052606081018290526080810182905260a081019190915250600090815260076020908152604091829020825160c08101845281546001600160a01b03808216835267ffffffffffffffff600160a01b80840482169685019690965263ffffffff7c0100000000000000000000000000000000000000000000000000000000938490048116978501979097526001949094015490811660608401529384049092166080820152910490911660a082015290565b6040516103f79190600060c0820190506001600160a01b03808451168352602084015167ffffffffffffffff80821660208601526040860151915063ffffffff80831660408701528360608801511660608701528160808801511660808701528060a08801511660a08701525050505092915050565b348015610af257600080fd5b50610b16610b013660046126f3565b60009081526013602052604090205460ff1690565b60405190151581526020016103f7565b348015610b3257600080fd5b506104de610b413660046127b3565b6114bb565b348015610b5257600080fd5b506104de610b61366004612c8b565b611514565b348015610b7257600080fd5b506009546040805167ffffffffffffffff83168152600160401b90920463ffffffff166020830152016103f7565b348015610bac57600080fd5b5060055460065460408051600160a01b90930467ffffffffffffffff90811684528083166020850152600160401b909204909116908201526060016103f7565b348015610bf857600080fd5b506104de610c07366004612839565b61157c565b348015610c1857600080fd5b506104de610c27366004612cd1565b61158a565b348015610c3857600080fd5b506104de610c47366004612d45565b6115f4565b348015610c5857600080fd5b506104de610c67366004612d6f565b61165e565b348015610c7857600080fd5b506104de610c87366004612dda565b6116b9565b348015610c9857600080fd5b5060155460601b6040516bffffffffffffffffffffffff1990911681526020016103f7565b348015610cc957600080fd5b50610b16610cd8366004612e26565b6001600160a01b031660009081526008602052604090205460ff1690565b348015610d0257600080fd5b50610d16610d11366004612839565b611710565b6040516103f79190612e57565b348015610d2f57600080fd5b506104de610d3e366004612e26565b61181a565b6000546001600160a01b03163314610da25760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657260448201526064015b60405180910390fd5b610daf60018484846118f9565b505050565b6040517e92bac900000000000000000000000000000000000000000000000000000000815273__$edce581bb06331cf4dae1387760565e5d1$__906292bac990610e0b9060019088908890889088906004016130ad565b60006040518083038186803b158015610e2357600080fd5b505af4158015610e37573d6000803e3d6000fd5b5050505050505050565b6040517fb45b31d5000000000000000000000000000000000000000000000000000000008152600160048201526bffffffffffffffffffffffff198216602482015273__$edce581bb06331cf4dae1387760565e5d1$__9063b45b31d5906044015b60006040518083038186803b158015610ebb57600080fd5b505af4158015610ecf573d6000803e3d6000fd5b5050505050565b6040517fc87de7f400000000000000000000000000000000000000000000000000000000815260016004820152602481018390526044810182905273__$0f118c52967a3847a37f0a2ef02ffcee04$__9063c87de7f4906064015b60006040518083038186803b158015610f4957600080fd5b505af4158015610f5d573d6000803e3d6000fd5b50505050505050565b6040517f99b0b84700000000000000000000000000000000000000000000000000000000815273__$0f118c52967a3847a37f0a2ef02ffcee04$__906399b0b84790610fbb9060019086908690600401613107565b60006040518083038186803b158015610fd357600080fd5b505af4158015610fe7573d6000803e3d6000fd5b505050505050565b6040517f510fc50a00000000000000000000000000000000000000000000000000000000815273__$61f169726e973bba1227e0c23d2755f88e$__9063510fc50a90610f3190600190879087908790600401613138565b6040517faea7fd0b00000000000000000000000000000000000000000000000000000000815273__$894ce12e79ca3e5683c1b49e363f37fa22$__9063aea7fd0b90610fbb906001908690869060040161317c565b6000546001600160a01b031633146110f55760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610d99565b6001600160a01b038216600081815260086020908152604091829020805460ff191685151590811790915591519182527f9065599c12c4294d9e2201638226d0d0beb95c228f468c4e7c2bdb8322b6066f910160405180910390a25050565b6040517f13d0c66800000000000000000000000000000000000000000000000000000000815273__$9935b6ea18e0c526c293569ddd26842c9b$__906313d0c66890610f31906001908790879087906004016132b9565b6040517f3b5d9f2400000000000000000000000000000000000000000000000000000000815273__$a542940934c03bae9a39609192cb25cc3c$__90633b5d9f2490610e0b9060019088908890889088906004016132e8565b6000546001600160a01b0316331461125e5760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610d99565b6112686000611b3f565b565b6040517f624526fe00000000000000000000000000000000000000000000000000000000815273__$a542940934c03bae9a39609192cb25cc3c$__9063624526fe906112c59060019089908990899089908990600401613342565b60006040518083038186803b1580156112dd57600080fd5b505af41580156112f1573d6000803e3d6000fd5b505050505050505050565b6000546001600160a01b031633146113565760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610d99565b611364600185858585611ba7565b50505050565b6040517fd079fbb100000000000000000000000000000000000000000000000000000000815273__$0f118c52967a3847a37f0a2ef02ffcee04$__9063d079fbb190610ea3906001908590600401613385565b6040517f4afbe4c90000000000000000000000000000000000000000000000000000000081526001600482015260248101849052604481018390526064810182905273__$0f118c52967a3847a37f0a2ef02ffcee04$__90634afbe4c990608401610f31565b6040517fc8f7794300000000000000000000000000000000000000000000000000000000815273__$edce581bb06331cf4dae1387760565e5d1$__9063c8f7794390611482906001908b908b908b908b908b908b908b90600401613399565b60006040518083038186803b15801561149a57600080fd5b505af41580156114ae573d6000803e3d6000fd5b5050505050505050505050565b6040517fa164de6e00000000000000000000000000000000000000000000000000000000815273__$9935b6ea18e0c526c293569ddd26842c9b$__9063a164de6e90610e0b9060019088908890889088906004016130ad565b6000546001600160a01b0316331461156e5760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610d99565b611364600185858585611e80565b611587600182611fce565b50565b6000546001600160a01b031633146115e45760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610d99565b610fe7600187878787878761212b565b6000546001600160a01b0316331461164e5760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610d99565b61165a60018383612473565b5050565b6040517f7333b36900000000000000000000000000000000000000000000000000000000815273__$9935b6ea18e0c526c293569ddd26842c9b$__90637333b369906112c5906001908990899089908990899060040161345d565b6040517f72c9c91c00000000000000000000000000000000000000000000000000000000815273__$a542940934c03bae9a39609192cb25cc3c$__906372c9c91c90610f31906001908790879087906004016134b6565b6040805161010081018252600080825260208201819052918101829052606081018290526080810182905260a0810182905260c0810182905260e08101919091526bffffffffffffffffffffffff19821660009081526017602090815260409182902082516101008101845281548152600182015492810192909252600281015467ffffffffffffffff81169383019390935263ffffffff600160401b840481166060840152600160601b840481166080840152600160801b84041660a0830152909160c083019060ff600160a01b9091041660058111156117f4576117f4612e41565b600581111561180557611805612e41565b81526020016003820154815250509050919050565b6000546001600160a01b031633146118745760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610d99565b6001600160a01b0381166118f05760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201527f64647265737300000000000000000000000000000000000000000000000000006064820152608401610d99565b61158781611b3f565b60008367ffffffffffffffff16116119795760405162461bcd60e51b815260206004820152603060248201527f4465706f7369742064757374207468726573686f6c64206d757374206265206760448201527f726561746572207468616e207a65726f000000000000000000000000000000006064820152608401610d99565b60008267ffffffffffffffff16116119f95760405162461bcd60e51b815260206004820152603660248201527f4465706f736974207472656173757279206665652064697669736f72206d757360448201527f742062652067726561746572207468616e207a65726f000000000000000000006064820152608401610d99565b60008167ffffffffffffffff1611611a795760405162461bcd60e51b815260206004820152603560248201527f4465706f736974207472616e73616374696f6e206d617820666565206d75737460448201527f2062652067726561746572207468616e207a65726f00000000000000000000006064820152608401610d99565b6004840180547fffffffff0000000000000000ffffffffffffffffffffffffffffffffffffffff16600160a01b67ffffffffffffffff868116918202929092179092556005860180548583167fffffffffffffffffffffffffffffffff000000000000000000000000000000009091168117600160401b938616938402179091556040805193845260208401919091528201527f1ced468902ca566e746a3c8c9516af81f8de9f1021c365083be9f2625ebfb7b59060600160405180910390a150505050565b600080546001600160a01b038381167fffffffffffffffffffffffff0000000000000000000000000000000000000000831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b60008467ffffffffffffffff1611611c275760405162461bcd60e51b815260206004820152603360248201527f526564656d7074696f6e2064757374207468726573686f6c64206d757374206260448201527f652067726561746572207468616e207a65726f000000000000000000000000006064820152608401610d99565b60008367ffffffffffffffff1611611ca75760405162461bcd60e51b815260206004820152603960248201527f526564656d7074696f6e207472656173757279206665652064697669736f722060448201527f6d7573742062652067726561746572207468616e207a65726f000000000000006064820152608401610d99565b60008267ffffffffffffffff1611611d275760405162461bcd60e51b815260206004820152603860248201527f526564656d7074696f6e207472616e73616374696f6e206d617820666565206d60448201527f7573742062652067726561746572207468616e207a65726f00000000000000006064820152608401610d99565b60008111611d9d5760405162461bcd60e51b815260206004820152602c60248201527f526564656d7074696f6e2074696d656f7574206d75737420626520677265617460448201527f6572207468616e207a65726f00000000000000000000000000000000000000006064820152608401610d99565b6008850180547fffffffff00000000000000000000000000000000ffffffffffffffffffffffff16600160601b67ffffffffffffffff8781169182027fffffffff0000000000000000ffffffffffffffffffffffffffffffffffffffff1692909217600160a01b8784169081029190911790935560098801805467ffffffffffffffff19169286169283179055600a880184905560408051918252602082019390935291820152606081018290527f92c7dd8c8e389aa6dd2d4ed3d2f1848abbaef487207c28f4c5c4990c5116ff1f906080015b60405180910390a15050505050565b6064831115611ef75760405162461bcd60e51b815260206004820152603e60248201527f4672617564206e6f74696669657220726577617264206d756c7469706c69657260448201527f206d75737420626520696e207468652072616e6765205b302c203130305d00006064820152608401610d99565b60008211611f6d5760405162461bcd60e51b815260206004820152603860248201527f4672617564206368616c6c656e6765206465666561742074696d656f7574206d60448201527f7573742062652067726561746572207468616e207a65726f00000000000000006064820152608401610d99565b600d8501849055600e8501839055600f8501829055601085018190556040805185815260208101859052908101839052606081018290527f3d5b171ef2601a0b7e9eb653999f8e932fb569e8f84526e1eea05c053063a1d690608001611e71565b6bffffffffffffffffffffffff1981166000908152601683016020526040902060036002820154600160a01b900460ff16600581111561201057612010612e41565b146120835760405162461bcd60e51b815260206004820152602560248201527f45434453412077616c6c6574206d75737420626520696e20436c6f73696e672060448201527f73746174650000000000000000000000000000000000000000000000000000006064820152608401610d99565b601583015460028201546120a79163ffffffff90811691600160801b9004166134e1565b63ffffffff1642116121215760405162461bcd60e51b815260206004820152602260248201527f436c6f73696e6720706572696f6420686173206e6f7420656c6170736564207960448201527f65740000000000000000000000000000000000000000000000000000000000006064820152608401610d99565b610daf83836125ea565b60008567ffffffffffffffff16116121ab5760405162461bcd60e51b815260206004820152603460248201527f57616c6c6574206d696e696d756d204254432062616c616e6365206d7573742060448201527f62652067726561746572207468616e207a65726f0000000000000000000000006064820152608401610d99565b8467ffffffffffffffff168467ffffffffffffffff16116122345760405162461bcd60e51b815260206004820152603b60248201527f57616c6c6574206d6178696d756d204254432062616c616e6365206d7573742060448201527f62652067726561746572207468616e20746865206d696e696d756d00000000006064820152608401610d99565b60008267ffffffffffffffff16116122b45760405162461bcd60e51b815260206004820152603560248201527f57616c6c6574206d6178696d756d20425443207472616e73666572206d75737460448201527f2062652067726561746572207468616e207a65726f00000000000000000000006064820152608401610d99565b60008163ffffffff16116123305760405162461bcd60e51b815260206004820152602f60248201527f57616c6c657420636c6f73696e6720706572696f64206d75737420626520677260448201527f6561746572207468616e207a65726f00000000000000000000000000000000006064820152608401610d99565b60138701805463ffffffff8881166bffffffffffffffffffffffff19909216821764010000000067ffffffffffffffff8a8116918202929092177fffffffffffffffff000000000000000000000000ffffffffffffffffffffffff16600160601b8a84169081027fffffffffffffffff00000000ffffffffffffffffffffffffffffffffffffffff1691909117600160a01b8a86169081029190911790965560148d01805477ffffffffffffffffffffffffffffffffffffffffffffffff16600160c01b948a1694850217905560158d01805463ffffffff19169488169485179055604080519586526020860192909252908401526060830193909352608082019290925260a08101919091527f1057480b8647a24ff5b4e5b9cab9039e959d4207393663f3139050458c5f24ca9060c00160405180910390a150505050505050565b60008267ffffffffffffffff16116124f5576040805162461bcd60e51b81526020600482015260248101919091527f4d6f76696e672066756e6473207472616e73616374696f6e206d617820746f7460448201527f616c20666565206d7573742062652067726561746572207468616e207a65726f6064820152608401610d99565b60008163ffffffff16116125715760405162461bcd60e51b815260206004820152602e60248201527f4d6f76696e672066756e64732074696d656f7574206d7573742062652067726560448201527f61746572207468616e207a65726f0000000000000000000000000000000000006064820152608401610d99565b60088301805467ffffffffffffffff84166bffffffffffffffffffffffff199091168117600160401b63ffffffff8516908102919091179092556040805191825260208201929092527f6871b29495da7552b91b95611e45bc1898b37c7b06fd9e8be0915154b1bac186910160405180910390a1505050565b6bffffffffffffffffffffffff19811660008181526016840160205260408082206002810180547fffffffffffffffffffffff00ffffffffffffffffffffffffffffffffffffffff1674040000000000000000000000000000000000000000179055805491519093927f47b159947c3066cb253f60e8f046cfd747411788a545cb189679e3fa1467b28d91a3600283015481546040517f343bb9270000000000000000000000000000000000000000000000000000000081526001600160a01b039092169163343bb927916126c59160040190815260200190565b600060405180830381600087803b1580156126df57600080fd5b505af1158015610f5d573d6000803e3d6000fd5b60006020828403121561270557600080fd5b5035919050565b803567ffffffffffffffff8116811461272457600080fd5b919050565b60008060006060848603121561273e57600080fd5b6127478461270c565b92506127556020850161270c565b91506127636040850161270c565b90509250925092565b60006080828403121561277e57600080fd5b50919050565b60006060828403121561277e57600080fd5b80356bffffffffffffffffffffffff198116811461272457600080fd5b60008060008060c085870312156127c957600080fd5b843567ffffffffffffffff808211156127e157600080fd5b6127ed8883890161276c565b9550602087013591508082111561280357600080fd5b5061281087828801612784565b9350506128208660408701612784565b915061282e60a08601612796565b905092959194509250565b60006020828403121561284b57600080fd5b61285482612796565b9392505050565b60008060006060848603121561287057600080fd5b505081359360208301359350604090920135919050565b6000806080838503121561289a57600080fd5b6128a383612796565b91506128b28460208501612784565b90509250929050565b600080600060a084860312156128d057600080fd5b833567ffffffffffffffff808211156128e857600080fd5b6128f48783880161276c565b9450602086013591508082111561290a57600080fd5b5061291786828701612784565b9250506127638560408601612784565b60008082840361010081121561293c57600080fd5b833567ffffffffffffffff81111561295357600080fd5b61295f8682870161276c565b93505060e0601f198201121561297457600080fd5b506020830190509250929050565b80356001600160a01b038116811461272457600080fd5b8035801515811461272457600080fd5b600080604083850312156129bc57600080fd5b6129c583612982565b91506128b260208401612999565b60008083601f8401126129e557600080fd5b50813567ffffffffffffffff8111156129fd57600080fd5b602083019150836020828501011115612a1557600080fd5b9250929050565b600080600060408486031215612a3157600080fd5b612a3a84612796565b9250602084013567ffffffffffffffff811115612a5657600080fd5b612a62868287016129d3565b9497909650939450505050565b60008060008060a08587031215612a8557600080fd5b843567ffffffffffffffff811115612a9c57600080fd5b612aa8878288016129d3565b9095509350506020850135915061282e8660408701612784565b600080600080600060608688031215612ada57600080fd5b853567ffffffffffffffff80821115612af257600080fd5b612afe89838a016129d3565b90975095506020880135915080821115612b1757600080fd5b50612b24888289016129d3565b9094509250612b37905060408701612999565b90509295509295909350565b60008060008060808587031215612b5957600080fd5b612b628561270c565b9350612b706020860161270c565b9250612b7e6040860161270c565b9396929550929360600135925050565b600060608284031215612ba057600080fd5b6128548383612784565b60008083601f840112612bbc57600080fd5b50813567ffffffffffffffff811115612bd457600080fd5b6020830191508360208260051b8501011115612a1557600080fd5b600080600080600080600060e0888a031215612c0a57600080fd5b612c1388612796565b9650612c228960208a01612784565b9550608088013567ffffffffffffffff80821115612c3f57600080fd5b612c4b8b838c01612baa565b909750955060a08a0135945060c08a0135915080821115612c6b57600080fd5b50612c788a828b01612baa565b989b979a50959850939692959293505050565b60008060008060808587031215612ca157600080fd5b5050823594602084013594506040840135936060013592509050565b803563ffffffff8116811461272457600080fd5b60008060008060008060c08789031215612cea57600080fd5b612cf387612cbd565b9550612d016020880161270c565b9450612d0f6040880161270c565b9350612d1d60608801612cbd565b9250612d2b6080880161270c565b9150612d3960a08801612cbd565b90509295509295509295565b60008060408385031215612d5857600080fd5b612d618361270c565b91506128b260208401612cbd565b600080600080600060c08688031215612d8757600080fd5b612d9086612796565b9450612d9f8760208801612784565b9350608086013567ffffffffffffffff811115612dbb57600080fd5b612dc7888289016129d3565b9094509250612b37905060a0870161270c565b600080600060408486031215612def57600080fd5b833567ffffffffffffffff811115612e0657600080fd5b612e12868287016129d3565b909790965060209590950135949350505050565b600060208284031215612e3857600080fd5b61285482612982565b634e487b7160e01b600052602160045260246000fd5b600061010082019050825182526020830151602083015267ffffffffffffffff6040840151166040830152606083015163ffffffff80821660608501528060808601511660808501528060a08601511660a0850152505060c083015160068110612ed157634e487b7160e01b600052602160045260246000fd5b8060c08401525060e083015160e083015292915050565b80357fffffffff000000000000000000000000000000000000000000000000000000008116811461272457600080fd5b6000808335601e19843603018112612f2f57600080fd5b830160208101925035905067ffffffffffffffff811115612f4f57600080fd5b803603831315612a1557600080fd5b81835281816020850137506000828201602090810191909152601f909101601f19169091010190565b60007fffffffff0000000000000000000000000000000000000000000000000000000080612fb484612ee8565b168452612fc46020840184612f18565b60806020870152612fd9608087018284612f5e565b915050612fe96040850185612f18565b8683036040880152612ffc838284612f5e565b925050508161300d60608601612ee8565b166060860152809250505092915050565b600061302a8283612f18565b6060855261303c606086018284612f5e565b915050602083013560208501526130566040840184612f18565b8583036040870152613069838284612f5e565b9695505050505050565b8035825263ffffffff61308860208301612cbd565b16602083015267ffffffffffffffff6130a36040830161270c565b1660408301525050565b85815260e0602082015260006130c660e0830187612f87565b82810360408401526130d8818761301e565b9150506130e86060830185613073565b6bffffffffffffffffffffffff19831660c08301529695505050505050565b8381526bffffffffffffffffffffffff198316602082015260a081016131306040830184613073565b949350505050565b84815260c06020820152600061315160c0830186612f87565b8281036040840152613163818661301e565b9150506131736060830184613073565b95945050505050565b600061012085835280602084015261319681840186612f87565b91505063ffffffff6131a784612cbd565b1660408301526001600160a01b036131c160208501612982565b16606083015260408301357fffffffffffffffff000000000000000000000000000000000000000000000000811681146131fa57600080fd5b7fffffffffffffffff00000000000000000000000000000000000000000000000016608083015261322d60608401612796565b6bffffffffffffffffffffffff191660a083015261324d60808401612796565b6bffffffffffffffffffffffff191660c083015261326d60a08401612ee8565b7fffffffff000000000000000000000000000000000000000000000000000000001660e08301526132a060c08401612982565b6001600160a01b03811661010084015250949350505050565b8481526bffffffffffffffffffffffff1984166020820152606060408201526000613069606083018486612f5e565b85815260c06020820152600061330260c083018688612f5e565b90508360408301528235606083015260208301356080830152604083013560ff811680821461333057600080fd5b8060a085015250509695505050505050565b86815260806020820152600061335c608083018789612f5e565b828103604084015261336f818688612f5e565b9150508215156060830152979650505050505050565b828152608081016128546020830184613073565b60006101008083018b845260206bffffffffffffffffffffffff19808d16828701526133c8604087018d613073565b60a08601939093529088905261012084019189919060005b8a8110156134095763ffffffff6133f685612cbd565b16855293820193928201926001016133e0565b5060c0860189905285840360e087015286845287938201925060005b8781101561344a578161343786612796565b1684529382019392820192600101613425565b50919d9c50505050505050505050505050565b8681526bffffffffffffffffffffffff19861660208201526134826040820186613073565b60e060a0820152600061349960e083018587612f5e565b905067ffffffffffffffff831660c0830152979650505050505050565b8481526060602082015260006134d0606083018587612f5e565b905082604083015295945050505050565b600063ffffffff80831681851680830382111561350e57634e487b7160e01b600052601160045260246000fd5b0194935050505056fea2646970667358221220db827910db614ccfd9e00037a186e6d21e4ed0781a81165a4ecd63c3bd7f295e64736f6c63430008090033",
|
|
1559
1950
|
"linkReferences": {
|
|
1560
1951
|
"contracts/bridge/Deposit.sol": {
|
|
1561
1952
|
"Deposit": [
|
|
1562
1953
|
{
|
|
1563
1954
|
"length": 20,
|
|
1564
|
-
"start":
|
|
1955
|
+
"start": 5212
|
|
1565
1956
|
}
|
|
1566
1957
|
]
|
|
1567
1958
|
},
|
|
@@ -1569,15 +1960,15 @@
|
|
|
1569
1960
|
"Fraud": [
|
|
1570
1961
|
{
|
|
1571
1962
|
"length": 20,
|
|
1572
|
-
"start":
|
|
1963
|
+
"start": 5569
|
|
1573
1964
|
},
|
|
1574
1965
|
{
|
|
1575
1966
|
"length": 20,
|
|
1576
|
-
"start":
|
|
1967
|
+
"start": 5760
|
|
1577
1968
|
},
|
|
1578
1969
|
{
|
|
1579
1970
|
"length": 20,
|
|
1580
|
-
"start":
|
|
1971
|
+
"start": 6863
|
|
1581
1972
|
}
|
|
1582
1973
|
]
|
|
1583
1974
|
},
|
|
@@ -1585,7 +1976,15 @@
|
|
|
1585
1976
|
"MovingFunds": [
|
|
1586
1977
|
{
|
|
1587
1978
|
"length": 20,
|
|
1588
|
-
"start":
|
|
1979
|
+
"start": 4553
|
|
1980
|
+
},
|
|
1981
|
+
{
|
|
1982
|
+
"length": 20,
|
|
1983
|
+
"start": 4723
|
|
1984
|
+
},
|
|
1985
|
+
{
|
|
1986
|
+
"length": 20,
|
|
1987
|
+
"start": 6201
|
|
1589
1988
|
}
|
|
1590
1989
|
]
|
|
1591
1990
|
},
|
|
@@ -1593,15 +1992,15 @@
|
|
|
1593
1992
|
"Redemption": [
|
|
1594
1993
|
{
|
|
1595
1994
|
"length": 20,
|
|
1596
|
-
"start":
|
|
1995
|
+
"start": 5482
|
|
1597
1996
|
},
|
|
1598
1997
|
{
|
|
1599
1998
|
"length": 20,
|
|
1600
|
-
"start":
|
|
1999
|
+
"start": 6353
|
|
1601
2000
|
},
|
|
1602
2001
|
{
|
|
1603
2002
|
"length": 20,
|
|
1604
|
-
"start":
|
|
2003
|
+
"start": 6772
|
|
1605
2004
|
}
|
|
1606
2005
|
]
|
|
1607
2006
|
},
|
|
@@ -1609,7 +2008,7 @@
|
|
|
1609
2008
|
"Sweep": [
|
|
1610
2009
|
{
|
|
1611
2010
|
"length": 20,
|
|
1612
|
-
"start":
|
|
2011
|
+
"start": 5125
|
|
1613
2012
|
}
|
|
1614
2013
|
]
|
|
1615
2014
|
},
|
|
@@ -1617,19 +2016,19 @@
|
|
|
1617
2016
|
"Wallets": [
|
|
1618
2017
|
{
|
|
1619
2018
|
"length": 20,
|
|
1620
|
-
"start":
|
|
2019
|
+
"start": 4865
|
|
1621
2020
|
},
|
|
1622
2021
|
{
|
|
1623
2022
|
"length": 20,
|
|
1624
|
-
"start":
|
|
2023
|
+
"start": 4988
|
|
1625
2024
|
},
|
|
1626
2025
|
{
|
|
1627
2026
|
"length": 20,
|
|
1628
|
-
"start":
|
|
2027
|
+
"start": 6016
|
|
1629
2028
|
},
|
|
1630
2029
|
{
|
|
1631
2030
|
"length": 20,
|
|
1632
|
-
"start":
|
|
2031
|
+
"start": 6127
|
|
1633
2032
|
}
|
|
1634
2033
|
]
|
|
1635
2034
|
}
|
|
@@ -1639,7 +2038,7 @@
|
|
|
1639
2038
|
"Deposit": [
|
|
1640
2039
|
{
|
|
1641
2040
|
"length": 20,
|
|
1642
|
-
"start":
|
|
2041
|
+
"start": 4206
|
|
1643
2042
|
}
|
|
1644
2043
|
]
|
|
1645
2044
|
},
|
|
@@ -1647,15 +2046,15 @@
|
|
|
1647
2046
|
"Fraud": [
|
|
1648
2047
|
{
|
|
1649
2048
|
"length": 20,
|
|
1650
|
-
"start":
|
|
2049
|
+
"start": 4563
|
|
1651
2050
|
},
|
|
1652
2051
|
{
|
|
1653
2052
|
"length": 20,
|
|
1654
|
-
"start":
|
|
2053
|
+
"start": 4754
|
|
1655
2054
|
},
|
|
1656
2055
|
{
|
|
1657
2056
|
"length": 20,
|
|
1658
|
-
"start":
|
|
2057
|
+
"start": 5857
|
|
1659
2058
|
}
|
|
1660
2059
|
]
|
|
1661
2060
|
},
|
|
@@ -1663,7 +2062,15 @@
|
|
|
1663
2062
|
"MovingFunds": [
|
|
1664
2063
|
{
|
|
1665
2064
|
"length": 20,
|
|
1666
|
-
"start":
|
|
2065
|
+
"start": 3547
|
|
2066
|
+
},
|
|
2067
|
+
{
|
|
2068
|
+
"length": 20,
|
|
2069
|
+
"start": 3717
|
|
2070
|
+
},
|
|
2071
|
+
{
|
|
2072
|
+
"length": 20,
|
|
2073
|
+
"start": 5195
|
|
1667
2074
|
}
|
|
1668
2075
|
]
|
|
1669
2076
|
},
|
|
@@ -1671,15 +2078,15 @@
|
|
|
1671
2078
|
"Redemption": [
|
|
1672
2079
|
{
|
|
1673
2080
|
"length": 20,
|
|
1674
|
-
"start":
|
|
2081
|
+
"start": 4476
|
|
1675
2082
|
},
|
|
1676
2083
|
{
|
|
1677
2084
|
"length": 20,
|
|
1678
|
-
"start":
|
|
2085
|
+
"start": 5347
|
|
1679
2086
|
},
|
|
1680
2087
|
{
|
|
1681
2088
|
"length": 20,
|
|
1682
|
-
"start":
|
|
2089
|
+
"start": 5766
|
|
1683
2090
|
}
|
|
1684
2091
|
]
|
|
1685
2092
|
},
|
|
@@ -1687,7 +2094,7 @@
|
|
|
1687
2094
|
"Sweep": [
|
|
1688
2095
|
{
|
|
1689
2096
|
"length": 20,
|
|
1690
|
-
"start":
|
|
2097
|
+
"start": 4119
|
|
1691
2098
|
}
|
|
1692
2099
|
]
|
|
1693
2100
|
},
|
|
@@ -1695,19 +2102,19 @@
|
|
|
1695
2102
|
"Wallets": [
|
|
1696
2103
|
{
|
|
1697
2104
|
"length": 20,
|
|
1698
|
-
"start":
|
|
2105
|
+
"start": 3859
|
|
1699
2106
|
},
|
|
1700
2107
|
{
|
|
1701
2108
|
"length": 20,
|
|
1702
|
-
"start":
|
|
2109
|
+
"start": 3982
|
|
1703
2110
|
},
|
|
1704
2111
|
{
|
|
1705
2112
|
"length": 20,
|
|
1706
|
-
"start":
|
|
2113
|
+
"start": 5010
|
|
1707
2114
|
},
|
|
1708
2115
|
{
|
|
1709
2116
|
"length": 20,
|
|
1710
|
-
"start":
|
|
2117
|
+
"start": 5121
|
|
1711
2118
|
}
|
|
1712
2119
|
]
|
|
1713
2120
|
}
|