@keep-network/tbtc-v2 0.1.1-dev.42 → 0.1.1-dev.45
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 +2914 -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/{002940e9cc8128f6629e90620c66cba5.json → 58ca6018672440f1c9c800806e096f9c.json} +22 -22
- 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 +489 -173
- package/build/contracts/bridge/BridgeState.sol/BridgeState.dbg.json +1 -1
- package/build/contracts/bridge/BridgeState.sol/BridgeState.json +114 -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/EcdsaLib.sol/EcdsaLib.json +2 -2
- package/build/contracts/bridge/Fraud.sol/Fraud.dbg.json +1 -1
- package/build/contracts/bridge/Fraud.sol/Fraud.json +5 -57
- 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 +4 -0
- package/build/contracts/bridge/{Redeem.sol → Redemption.sol}/OutboundTx.json +3 -3
- package/build/contracts/bridge/Redemption.sol/Redemption.dbg.json +4 -0
- package/build/contracts/bridge/Redemption.sol/Redemption.json +92 -0
- package/build/contracts/bridge/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/BitcoinTx.sol +19 -26
- package/contracts/bridge/Bridge.sol +736 -489
- package/contracts/bridge/BridgeState.sol +271 -24
- package/contracts/bridge/Deposit.sol +24 -2
- package/contracts/bridge/EcdsaLib.sol +15 -0
- package/contracts/bridge/Fraud.sol +64 -31
- package/contracts/bridge/MovingFunds.sol +194 -6
- package/contracts/bridge/{Redeem.sol → Redemption.sol} +20 -18
- package/contracts/bridge/Sweep.sol +13 -8
- package/contracts/bridge/Wallets.sol +53 -35
- 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 +14797 -459
- package/package.json +2 -2
- package/build/contracts/bridge/Redeem.sol/OutboundTx.dbg.json +0 -4
- package/build/contracts/bridge/Redeem.sol/Redeem.dbg.json +0 -4
- package/build/contracts/bridge/Redeem.sol/Redeem.json +0 -92
|
@@ -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
|
{
|
|
@@ -133,26 +158,13 @@
|
|
|
133
158
|
"name": "FraudChallengeDefeatTimedOut",
|
|
134
159
|
"type": "event"
|
|
135
160
|
},
|
|
136
|
-
{
|
|
137
|
-
"anonymous": false,
|
|
138
|
-
"inputs": [
|
|
139
|
-
{
|
|
140
|
-
"indexed": false,
|
|
141
|
-
"internalType": "uint256",
|
|
142
|
-
"name": "newFraudChallengeDefeatTimeout",
|
|
143
|
-
"type": "uint256"
|
|
144
|
-
}
|
|
145
|
-
],
|
|
146
|
-
"name": "FraudChallengeDefeatTimeoutUpdated",
|
|
147
|
-
"type": "event"
|
|
148
|
-
},
|
|
149
161
|
{
|
|
150
162
|
"anonymous": false,
|
|
151
163
|
"inputs": [
|
|
152
164
|
{
|
|
153
165
|
"indexed": false,
|
|
154
166
|
"internalType": "bytes20",
|
|
155
|
-
"name": "
|
|
167
|
+
"name": "walletPubKeyHash",
|
|
156
168
|
"type": "bytes20"
|
|
157
169
|
},
|
|
158
170
|
{
|
|
@@ -165,26 +177,13 @@
|
|
|
165
177
|
"name": "FraudChallengeDefeated",
|
|
166
178
|
"type": "event"
|
|
167
179
|
},
|
|
168
|
-
{
|
|
169
|
-
"anonymous": false,
|
|
170
|
-
"inputs": [
|
|
171
|
-
{
|
|
172
|
-
"indexed": false,
|
|
173
|
-
"internalType": "uint256",
|
|
174
|
-
"name": "newFraudChallengeDepositAmount",
|
|
175
|
-
"type": "uint256"
|
|
176
|
-
}
|
|
177
|
-
],
|
|
178
|
-
"name": "FraudChallengeDepositAmountUpdated",
|
|
179
|
-
"type": "event"
|
|
180
|
-
},
|
|
181
180
|
{
|
|
182
181
|
"anonymous": false,
|
|
183
182
|
"inputs": [
|
|
184
183
|
{
|
|
185
184
|
"indexed": false,
|
|
186
185
|
"internalType": "bytes20",
|
|
187
|
-
"name": "
|
|
186
|
+
"name": "walletPubKeyHash",
|
|
188
187
|
"type": "bytes20"
|
|
189
188
|
},
|
|
190
189
|
{
|
|
@@ -221,11 +220,29 @@
|
|
|
221
220
|
{
|
|
222
221
|
"indexed": false,
|
|
223
222
|
"internalType": "uint256",
|
|
224
|
-
"name": "
|
|
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",
|
|
225
242
|
"type": "uint256"
|
|
226
243
|
}
|
|
227
244
|
],
|
|
228
|
-
"name": "
|
|
245
|
+
"name": "FraudParametersUpdated",
|
|
229
246
|
"type": "event"
|
|
230
247
|
},
|
|
231
248
|
{
|
|
@@ -233,12 +250,24 @@
|
|
|
233
250
|
"inputs": [
|
|
234
251
|
{
|
|
235
252
|
"indexed": false,
|
|
236
|
-
"internalType": "
|
|
237
|
-
"name": "
|
|
238
|
-
"type": "
|
|
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"
|
|
239
268
|
}
|
|
240
269
|
],
|
|
241
|
-
"name": "
|
|
270
|
+
"name": "MovingFundsCommitmentSubmitted",
|
|
242
271
|
"type": "event"
|
|
243
272
|
},
|
|
244
273
|
{
|
|
@@ -260,6 +289,38 @@
|
|
|
260
289
|
"name": "MovingFundsCompleted",
|
|
261
290
|
"type": "event"
|
|
262
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
|
+
},
|
|
263
324
|
{
|
|
264
325
|
"anonymous": false,
|
|
265
326
|
"inputs": [
|
|
@@ -304,6 +365,37 @@
|
|
|
304
365
|
"name": "OwnershipTransferred",
|
|
305
366
|
"type": "event"
|
|
306
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
|
+
},
|
|
307
399
|
{
|
|
308
400
|
"anonymous": false,
|
|
309
401
|
"inputs": [
|
|
@@ -423,6 +515,25 @@
|
|
|
423
515
|
"name": "WalletClosed",
|
|
424
516
|
"type": "event"
|
|
425
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
|
+
},
|
|
426
537
|
{
|
|
427
538
|
"anonymous": false,
|
|
428
539
|
"inputs": [
|
|
@@ -468,6 +579,12 @@
|
|
|
468
579
|
"internalType": "uint32",
|
|
469
580
|
"name": "walletMaxAge",
|
|
470
581
|
"type": "uint32"
|
|
582
|
+
},
|
|
583
|
+
{
|
|
584
|
+
"indexed": false,
|
|
585
|
+
"internalType": "uint64",
|
|
586
|
+
"name": "walletMaxBtcTransfer",
|
|
587
|
+
"type": "uint64"
|
|
471
588
|
}
|
|
472
589
|
],
|
|
473
590
|
"name": "WalletParametersUpdated",
|
|
@@ -538,6 +655,37 @@
|
|
|
538
655
|
"stateMutability": "nonpayable",
|
|
539
656
|
"type": "function"
|
|
540
657
|
},
|
|
658
|
+
{
|
|
659
|
+
"inputs": [],
|
|
660
|
+
"name": "activeWalletPubKeyHash",
|
|
661
|
+
"outputs": [
|
|
662
|
+
{
|
|
663
|
+
"internalType": "bytes20",
|
|
664
|
+
"name": "",
|
|
665
|
+
"type": "bytes20"
|
|
666
|
+
}
|
|
667
|
+
],
|
|
668
|
+
"stateMutability": "view",
|
|
669
|
+
"type": "function"
|
|
670
|
+
},
|
|
671
|
+
{
|
|
672
|
+
"inputs": [],
|
|
673
|
+
"name": "contractReferences",
|
|
674
|
+
"outputs": [
|
|
675
|
+
{
|
|
676
|
+
"internalType": "contract Bank",
|
|
677
|
+
"name": "bank",
|
|
678
|
+
"type": "address"
|
|
679
|
+
},
|
|
680
|
+
{
|
|
681
|
+
"internalType": "contract IRelay",
|
|
682
|
+
"name": "relay",
|
|
683
|
+
"type": "address"
|
|
684
|
+
}
|
|
685
|
+
],
|
|
686
|
+
"stateMutability": "view",
|
|
687
|
+
"type": "function"
|
|
688
|
+
},
|
|
541
689
|
{
|
|
542
690
|
"inputs": [
|
|
543
691
|
{
|
|
@@ -694,98 +842,11 @@
|
|
|
694
842
|
"internalType": "uint256",
|
|
695
843
|
"name": "fraudChallengeDefeatTimeout",
|
|
696
844
|
"type": "uint256"
|
|
697
|
-
},
|
|
698
|
-
{
|
|
699
|
-
"internalType": "uint256",
|
|
700
|
-
"name": "fraudChallengeDepositAmount",
|
|
701
|
-
"type": "uint256"
|
|
702
|
-
}
|
|
703
|
-
],
|
|
704
|
-
"stateMutability": "view",
|
|
705
|
-
"type": "function"
|
|
706
|
-
},
|
|
707
|
-
{
|
|
708
|
-
"inputs": [],
|
|
709
|
-
"name": "getActiveWalletPubKeyHash",
|
|
710
|
-
"outputs": [
|
|
711
|
-
{
|
|
712
|
-
"internalType": "bytes20",
|
|
713
|
-
"name": "",
|
|
714
|
-
"type": "bytes20"
|
|
715
|
-
}
|
|
716
|
-
],
|
|
717
|
-
"stateMutability": "view",
|
|
718
|
-
"type": "function"
|
|
719
|
-
},
|
|
720
|
-
{
|
|
721
|
-
"inputs": [],
|
|
722
|
-
"name": "getContracts",
|
|
723
|
-
"outputs": [
|
|
724
|
-
{
|
|
725
|
-
"internalType": "contract Bank",
|
|
726
|
-
"name": "bank",
|
|
727
|
-
"type": "address"
|
|
728
|
-
},
|
|
729
|
-
{
|
|
730
|
-
"internalType": "contract IRelay",
|
|
731
|
-
"name": "relay",
|
|
732
|
-
"type": "address"
|
|
733
|
-
}
|
|
734
|
-
],
|
|
735
|
-
"stateMutability": "view",
|
|
736
|
-
"type": "function"
|
|
737
|
-
},
|
|
738
|
-
{
|
|
739
|
-
"inputs": [
|
|
740
|
-
{
|
|
741
|
-
"internalType": "bytes20",
|
|
742
|
-
"name": "walletPubKeyHash",
|
|
743
|
-
"type": "bytes20"
|
|
744
|
-
}
|
|
745
|
-
],
|
|
746
|
-
"name": "getWallet",
|
|
747
|
-
"outputs": [
|
|
748
|
-
{
|
|
749
|
-
"components": [
|
|
750
|
-
{
|
|
751
|
-
"internalType": "bytes32",
|
|
752
|
-
"name": "ecdsaWalletID",
|
|
753
|
-
"type": "bytes32"
|
|
754
|
-
},
|
|
755
|
-
{
|
|
756
|
-
"internalType": "bytes32",
|
|
757
|
-
"name": "mainUtxoHash",
|
|
758
|
-
"type": "bytes32"
|
|
759
|
-
},
|
|
760
|
-
{
|
|
761
|
-
"internalType": "uint64",
|
|
762
|
-
"name": "pendingRedemptionsValue",
|
|
763
|
-
"type": "uint64"
|
|
764
|
-
},
|
|
765
|
-
{
|
|
766
|
-
"internalType": "uint32",
|
|
767
|
-
"name": "createdAt",
|
|
768
|
-
"type": "uint32"
|
|
769
|
-
},
|
|
770
|
-
{
|
|
771
|
-
"internalType": "uint32",
|
|
772
|
-
"name": "movingFundsRequestedAt",
|
|
773
|
-
"type": "uint32"
|
|
774
|
-
},
|
|
775
|
-
{
|
|
776
|
-
"internalType": "enum Wallets.WalletState",
|
|
777
|
-
"name": "state",
|
|
778
|
-
"type": "uint8"
|
|
779
|
-
},
|
|
780
|
-
{
|
|
781
|
-
"internalType": "bytes32",
|
|
782
|
-
"name": "movingFundsTargetWalletsCommitmentHash",
|
|
783
|
-
"type": "bytes32"
|
|
784
|
-
}
|
|
785
|
-
],
|
|
786
|
-
"internalType": "struct Wallets.Wallet",
|
|
787
|
-
"name": "",
|
|
788
|
-
"type": "tuple"
|
|
845
|
+
},
|
|
846
|
+
{
|
|
847
|
+
"internalType": "uint256",
|
|
848
|
+
"name": "fraudChallengeDepositAmount",
|
|
849
|
+
"type": "uint256"
|
|
789
850
|
}
|
|
790
851
|
],
|
|
791
852
|
"stateMutability": "view",
|
|
@@ -810,6 +871,19 @@
|
|
|
810
871
|
"stateMutability": "view",
|
|
811
872
|
"type": "function"
|
|
812
873
|
},
|
|
874
|
+
{
|
|
875
|
+
"inputs": [],
|
|
876
|
+
"name": "liveWalletsCount",
|
|
877
|
+
"outputs": [
|
|
878
|
+
{
|
|
879
|
+
"internalType": "uint32",
|
|
880
|
+
"name": "",
|
|
881
|
+
"type": "uint32"
|
|
882
|
+
}
|
|
883
|
+
],
|
|
884
|
+
"stateMutability": "view",
|
|
885
|
+
"type": "function"
|
|
886
|
+
},
|
|
813
887
|
{
|
|
814
888
|
"inputs": [],
|
|
815
889
|
"name": "movingFundsParameters",
|
|
@@ -818,6 +892,11 @@
|
|
|
818
892
|
"internalType": "uint64",
|
|
819
893
|
"name": "movingFundsTxMaxTotalFee",
|
|
820
894
|
"type": "uint64"
|
|
895
|
+
},
|
|
896
|
+
{
|
|
897
|
+
"internalType": "uint32",
|
|
898
|
+
"name": "movingFundsTimeout",
|
|
899
|
+
"type": "uint32"
|
|
821
900
|
}
|
|
822
901
|
],
|
|
823
902
|
"stateMutability": "view",
|
|
@@ -876,6 +955,19 @@
|
|
|
876
955
|
"stateMutability": "nonpayable",
|
|
877
956
|
"type": "function"
|
|
878
957
|
},
|
|
958
|
+
{
|
|
959
|
+
"inputs": [
|
|
960
|
+
{
|
|
961
|
+
"internalType": "bytes20",
|
|
962
|
+
"name": "walletPubKeyHash",
|
|
963
|
+
"type": "bytes20"
|
|
964
|
+
}
|
|
965
|
+
],
|
|
966
|
+
"name": "notifyMovingFundsTimeout",
|
|
967
|
+
"outputs": [],
|
|
968
|
+
"stateMutability": "nonpayable",
|
|
969
|
+
"type": "function"
|
|
970
|
+
},
|
|
879
971
|
{
|
|
880
972
|
"inputs": [
|
|
881
973
|
{
|
|
@@ -945,7 +1037,7 @@
|
|
|
945
1037
|
"type": "uint32"
|
|
946
1038
|
}
|
|
947
1039
|
],
|
|
948
|
-
"internalType": "struct
|
|
1040
|
+
"internalType": "struct Redemption.RedemptionRequest",
|
|
949
1041
|
"name": "",
|
|
950
1042
|
"type": "tuple"
|
|
951
1043
|
}
|
|
@@ -976,16 +1068,6 @@
|
|
|
976
1068
|
"internalType": "uint256",
|
|
977
1069
|
"name": "redemptionTimeout",
|
|
978
1070
|
"type": "uint256"
|
|
979
|
-
},
|
|
980
|
-
{
|
|
981
|
-
"internalType": "address",
|
|
982
|
-
"name": "treasury",
|
|
983
|
-
"type": "address"
|
|
984
|
-
},
|
|
985
|
-
{
|
|
986
|
-
"internalType": "uint256",
|
|
987
|
-
"name": "txProofDifficultyFactor",
|
|
988
|
-
"type": "uint256"
|
|
989
1071
|
}
|
|
990
1072
|
],
|
|
991
1073
|
"stateMutability": "view",
|
|
@@ -1227,6 +1309,56 @@
|
|
|
1227
1309
|
"stateMutability": "payable",
|
|
1228
1310
|
"type": "function"
|
|
1229
1311
|
},
|
|
1312
|
+
{
|
|
1313
|
+
"inputs": [
|
|
1314
|
+
{
|
|
1315
|
+
"internalType": "bytes20",
|
|
1316
|
+
"name": "walletPubKeyHash",
|
|
1317
|
+
"type": "bytes20"
|
|
1318
|
+
},
|
|
1319
|
+
{
|
|
1320
|
+
"components": [
|
|
1321
|
+
{
|
|
1322
|
+
"internalType": "bytes32",
|
|
1323
|
+
"name": "txHash",
|
|
1324
|
+
"type": "bytes32"
|
|
1325
|
+
},
|
|
1326
|
+
{
|
|
1327
|
+
"internalType": "uint32",
|
|
1328
|
+
"name": "txOutputIndex",
|
|
1329
|
+
"type": "uint32"
|
|
1330
|
+
},
|
|
1331
|
+
{
|
|
1332
|
+
"internalType": "uint64",
|
|
1333
|
+
"name": "txOutputValue",
|
|
1334
|
+
"type": "uint64"
|
|
1335
|
+
}
|
|
1336
|
+
],
|
|
1337
|
+
"internalType": "struct BitcoinTx.UTXO",
|
|
1338
|
+
"name": "walletMainUtxo",
|
|
1339
|
+
"type": "tuple"
|
|
1340
|
+
},
|
|
1341
|
+
{
|
|
1342
|
+
"internalType": "uint32[]",
|
|
1343
|
+
"name": "walletMembersIDs",
|
|
1344
|
+
"type": "uint32[]"
|
|
1345
|
+
},
|
|
1346
|
+
{
|
|
1347
|
+
"internalType": "uint256",
|
|
1348
|
+
"name": "walletMemberIndex",
|
|
1349
|
+
"type": "uint256"
|
|
1350
|
+
},
|
|
1351
|
+
{
|
|
1352
|
+
"internalType": "bytes20[]",
|
|
1353
|
+
"name": "targetWallets",
|
|
1354
|
+
"type": "bytes20[]"
|
|
1355
|
+
}
|
|
1356
|
+
],
|
|
1357
|
+
"name": "submitMovingFundsCommitment",
|
|
1358
|
+
"outputs": [],
|
|
1359
|
+
"stateMutability": "nonpayable",
|
|
1360
|
+
"type": "function"
|
|
1361
|
+
},
|
|
1230
1362
|
{
|
|
1231
1363
|
"inputs": [
|
|
1232
1364
|
{
|
|
@@ -1512,7 +1644,7 @@
|
|
|
1512
1644
|
"type": "uint32"
|
|
1513
1645
|
}
|
|
1514
1646
|
],
|
|
1515
|
-
"internalType": "struct
|
|
1647
|
+
"internalType": "struct Redemption.RedemptionRequest",
|
|
1516
1648
|
"name": "",
|
|
1517
1649
|
"type": "tuple"
|
|
1518
1650
|
}
|
|
@@ -1539,7 +1671,7 @@
|
|
|
1539
1671
|
"outputs": [
|
|
1540
1672
|
{
|
|
1541
1673
|
"internalType": "address",
|
|
1542
|
-
"name": "
|
|
1674
|
+
"name": "",
|
|
1543
1675
|
"type": "address"
|
|
1544
1676
|
}
|
|
1545
1677
|
],
|
|
@@ -1552,13 +1684,110 @@
|
|
|
1552
1684
|
"outputs": [
|
|
1553
1685
|
{
|
|
1554
1686
|
"internalType": "uint256",
|
|
1555
|
-
"name": "
|
|
1687
|
+
"name": "",
|
|
1556
1688
|
"type": "uint256"
|
|
1557
1689
|
}
|
|
1558
1690
|
],
|
|
1559
1691
|
"stateMutability": "view",
|
|
1560
1692
|
"type": "function"
|
|
1561
1693
|
},
|
|
1694
|
+
{
|
|
1695
|
+
"inputs": [
|
|
1696
|
+
{
|
|
1697
|
+
"internalType": "uint64",
|
|
1698
|
+
"name": "depositDustThreshold",
|
|
1699
|
+
"type": "uint64"
|
|
1700
|
+
},
|
|
1701
|
+
{
|
|
1702
|
+
"internalType": "uint64",
|
|
1703
|
+
"name": "depositTreasuryFeeDivisor",
|
|
1704
|
+
"type": "uint64"
|
|
1705
|
+
},
|
|
1706
|
+
{
|
|
1707
|
+
"internalType": "uint64",
|
|
1708
|
+
"name": "depositTxMaxFee",
|
|
1709
|
+
"type": "uint64"
|
|
1710
|
+
}
|
|
1711
|
+
],
|
|
1712
|
+
"name": "updateDepositParameters",
|
|
1713
|
+
"outputs": [],
|
|
1714
|
+
"stateMutability": "nonpayable",
|
|
1715
|
+
"type": "function"
|
|
1716
|
+
},
|
|
1717
|
+
{
|
|
1718
|
+
"inputs": [
|
|
1719
|
+
{
|
|
1720
|
+
"internalType": "uint256",
|
|
1721
|
+
"name": "fraudSlashingAmount",
|
|
1722
|
+
"type": "uint256"
|
|
1723
|
+
},
|
|
1724
|
+
{
|
|
1725
|
+
"internalType": "uint256",
|
|
1726
|
+
"name": "fraudNotifierRewardMultiplier",
|
|
1727
|
+
"type": "uint256"
|
|
1728
|
+
},
|
|
1729
|
+
{
|
|
1730
|
+
"internalType": "uint256",
|
|
1731
|
+
"name": "fraudChallengeDefeatTimeout",
|
|
1732
|
+
"type": "uint256"
|
|
1733
|
+
},
|
|
1734
|
+
{
|
|
1735
|
+
"internalType": "uint256",
|
|
1736
|
+
"name": "fraudChallengeDepositAmount",
|
|
1737
|
+
"type": "uint256"
|
|
1738
|
+
}
|
|
1739
|
+
],
|
|
1740
|
+
"name": "updateFraudParameters",
|
|
1741
|
+
"outputs": [],
|
|
1742
|
+
"stateMutability": "nonpayable",
|
|
1743
|
+
"type": "function"
|
|
1744
|
+
},
|
|
1745
|
+
{
|
|
1746
|
+
"inputs": [
|
|
1747
|
+
{
|
|
1748
|
+
"internalType": "uint64",
|
|
1749
|
+
"name": "movingFundsTxMaxTotalFee",
|
|
1750
|
+
"type": "uint64"
|
|
1751
|
+
},
|
|
1752
|
+
{
|
|
1753
|
+
"internalType": "uint32",
|
|
1754
|
+
"name": "movingFundsTimeout",
|
|
1755
|
+
"type": "uint32"
|
|
1756
|
+
}
|
|
1757
|
+
],
|
|
1758
|
+
"name": "updateMovingFundsParameters",
|
|
1759
|
+
"outputs": [],
|
|
1760
|
+
"stateMutability": "nonpayable",
|
|
1761
|
+
"type": "function"
|
|
1762
|
+
},
|
|
1763
|
+
{
|
|
1764
|
+
"inputs": [
|
|
1765
|
+
{
|
|
1766
|
+
"internalType": "uint64",
|
|
1767
|
+
"name": "redemptionDustThreshold",
|
|
1768
|
+
"type": "uint64"
|
|
1769
|
+
},
|
|
1770
|
+
{
|
|
1771
|
+
"internalType": "uint64",
|
|
1772
|
+
"name": "redemptionTreasuryFeeDivisor",
|
|
1773
|
+
"type": "uint64"
|
|
1774
|
+
},
|
|
1775
|
+
{
|
|
1776
|
+
"internalType": "uint64",
|
|
1777
|
+
"name": "redemptionTxMaxFee",
|
|
1778
|
+
"type": "uint64"
|
|
1779
|
+
},
|
|
1780
|
+
{
|
|
1781
|
+
"internalType": "uint256",
|
|
1782
|
+
"name": "redemptionTimeout",
|
|
1783
|
+
"type": "uint256"
|
|
1784
|
+
}
|
|
1785
|
+
],
|
|
1786
|
+
"name": "updateRedemptionParameters",
|
|
1787
|
+
"outputs": [],
|
|
1788
|
+
"stateMutability": "nonpayable",
|
|
1789
|
+
"type": "function"
|
|
1790
|
+
},
|
|
1562
1791
|
{
|
|
1563
1792
|
"inputs": [
|
|
1564
1793
|
{
|
|
@@ -1580,6 +1809,11 @@
|
|
|
1580
1809
|
"internalType": "uint32",
|
|
1581
1810
|
"name": "walletMaxAge",
|
|
1582
1811
|
"type": "uint32"
|
|
1812
|
+
},
|
|
1813
|
+
{
|
|
1814
|
+
"internalType": "uint64",
|
|
1815
|
+
"name": "walletMaxBtcTransfer",
|
|
1816
|
+
"type": "uint64"
|
|
1583
1817
|
}
|
|
1584
1818
|
],
|
|
1585
1819
|
"name": "updateWalletParameters",
|
|
@@ -1610,20 +1844,86 @@
|
|
|
1610
1844
|
"internalType": "uint32",
|
|
1611
1845
|
"name": "walletMaxAge",
|
|
1612
1846
|
"type": "uint32"
|
|
1847
|
+
},
|
|
1848
|
+
{
|
|
1849
|
+
"internalType": "uint64",
|
|
1850
|
+
"name": "walletMaxBtcTransfer",
|
|
1851
|
+
"type": "uint64"
|
|
1852
|
+
}
|
|
1853
|
+
],
|
|
1854
|
+
"stateMutability": "view",
|
|
1855
|
+
"type": "function"
|
|
1856
|
+
},
|
|
1857
|
+
{
|
|
1858
|
+
"inputs": [
|
|
1859
|
+
{
|
|
1860
|
+
"internalType": "bytes20",
|
|
1861
|
+
"name": "walletPubKeyHash",
|
|
1862
|
+
"type": "bytes20"
|
|
1863
|
+
}
|
|
1864
|
+
],
|
|
1865
|
+
"name": "wallets",
|
|
1866
|
+
"outputs": [
|
|
1867
|
+
{
|
|
1868
|
+
"components": [
|
|
1869
|
+
{
|
|
1870
|
+
"internalType": "bytes32",
|
|
1871
|
+
"name": "ecdsaWalletID",
|
|
1872
|
+
"type": "bytes32"
|
|
1873
|
+
},
|
|
1874
|
+
{
|
|
1875
|
+
"internalType": "bytes32",
|
|
1876
|
+
"name": "mainUtxoHash",
|
|
1877
|
+
"type": "bytes32"
|
|
1878
|
+
},
|
|
1879
|
+
{
|
|
1880
|
+
"internalType": "uint64",
|
|
1881
|
+
"name": "pendingRedemptionsValue",
|
|
1882
|
+
"type": "uint64"
|
|
1883
|
+
},
|
|
1884
|
+
{
|
|
1885
|
+
"internalType": "uint32",
|
|
1886
|
+
"name": "createdAt",
|
|
1887
|
+
"type": "uint32"
|
|
1888
|
+
},
|
|
1889
|
+
{
|
|
1890
|
+
"internalType": "uint32",
|
|
1891
|
+
"name": "movingFundsRequestedAt",
|
|
1892
|
+
"type": "uint32"
|
|
1893
|
+
},
|
|
1894
|
+
{
|
|
1895
|
+
"internalType": "uint32",
|
|
1896
|
+
"name": "closingStartedAt",
|
|
1897
|
+
"type": "uint32"
|
|
1898
|
+
},
|
|
1899
|
+
{
|
|
1900
|
+
"internalType": "enum Wallets.WalletState",
|
|
1901
|
+
"name": "state",
|
|
1902
|
+
"type": "uint8"
|
|
1903
|
+
},
|
|
1904
|
+
{
|
|
1905
|
+
"internalType": "bytes32",
|
|
1906
|
+
"name": "movingFundsTargetWalletsCommitmentHash",
|
|
1907
|
+
"type": "bytes32"
|
|
1908
|
+
}
|
|
1909
|
+
],
|
|
1910
|
+
"internalType": "struct Wallets.Wallet",
|
|
1911
|
+
"name": "",
|
|
1912
|
+
"type": "tuple"
|
|
1613
1913
|
}
|
|
1614
1914
|
],
|
|
1615
1915
|
"stateMutability": "view",
|
|
1616
1916
|
"type": "function"
|
|
1617
1917
|
}
|
|
1618
1918
|
],
|
|
1619
|
-
"bytecode": "0x60806040523480156200001157600080fd5b50604051620025d8380380620025d8833981016040819052620000349162000333565b6200003f33620002c6565b6001600160a01b0385166200009b5760405162461bcd60e51b815260206004820152601b60248201527f42616e6b20616464726573732063616e6e6f74206265207a65726f000000000060448201526064015b60405180910390fd5b600180546001600160a01b0319166001600160a01b038781169190911790915584166200010b5760405162461bcd60e51b815260206004820152601c60248201527f52656c617920616464726573732063616e6e6f74206265207a65726f00000000604482015260640162000092565b600280546001600160a01b0319166001600160a01b03868116919091179091558216620001905760405162461bcd60e51b815260206004820152602c60248201527f45434453412057616c6c6574205265676973747279206164647265737320636160448201526b6e6e6f74206265207a65726f60a01b606482015260840162000092565b600380546001600160a01b0319166001600160a01b03848116919091179091558316620002005760405162461bcd60e51b815260206004820152601f60248201527f547265617375727920616464726573732063616e6e6f74206265207a65726f00604482015260640162000092565b600580546004929092556001600160a01b03939093166001600160e01b031990911617613d0960a61b179091555050600680546001600160801b03191669271000000000000007d0179055506202a300600a5579271000000000000007d000000000000f4240000000000000271060095569021e19e0c9bab2400000600d556064600e5562093a80600f55671bc16d674ec80000601055601380546001600160c01b03191676eff100000000003b9aca000000000005f5e10000093a801790556200039a565b600080546001600160a01b038381166001600160a01b0319831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b80516001600160a01b03811681146200032e57600080fd5b919050565b600080600080600060a086880312156200034c57600080fd5b620003578662000316565b9450620003676020870162000316565b9350620003776040870162000316565b9250620003876060870162000316565b9150608086015190509295509295909350565b61222e80620003aa6000396000f3fe6080604052600436106102195760003560e01c806377145f211161011d578063b34b3216116100b0578063d6eccdf01161007f578063e53c0b5511610064578063e53c0b5514610aea578063e86a1be614610b23578063f2fde38b14610b4357600080fd5b8063d6eccdf014610aaa578063d95027b714610aca57600080fd5b8063b34b3216146109dd578063be05abe3146109fd578063c3a2a93a14610a26578063c42b64d014610a5957600080fd5b8063a145e2d5116100ec578063a145e2d5146107ff578063a8fa0f421461081f578063b02c43d01461083f578063b2146cd61461099d57600080fd5b806377145f2114610763578063793bb473146107835780638da5cb5b146107b45780638fa4ad28146107d257600080fd5b80635c0b4812116101b057806367f272471161017f5780636e70ce41116101645780636e70ce4114610698578063715018a61461071557806375b922d11461072a57600080fd5b806367f27247146106655780636d02b43c1461068557600080fd5b80635c0b48121461058f57806360d712fc146105af57806361ccf97a146105cf57806361d027b31461063357600080fd5b806333e957cb116101ec57806333e957cb146104505780633dce98121461052f578063575e42791461054f57806359a9d90a1461056f57600080fd5b806303d952f71461021e5780630b6ba19d1461034d5780632bb818c2146104105780632f429b641461042e575b600080fd5b34801561022a57600080fd5b506102e16102393660046116c8565b6040805160a081018252600080825260208201819052918101829052606081018290526080810191909152506000908152600b6020908152604091829020825160a08101845281546001600160a01b0381168252600160a01b900467ffffffffffffffff90811693820193909352600190910154808316938201939093526801000000000000000083049091166060820152600160801b90910463ffffffff16608082015290565b6040516103449190600060a0820190506001600160a01b038351168252602083015167ffffffffffffffff8082166020850152806040860151166040850152806060860151166060850152505063ffffffff608084015116608083015292915050565b60405180910390f35b34801561035957600080fd5b506102e16103683660046116c8565b6040805160a081018252600080825260208201819052918101829052606081018290526080810191909152506000908152600c6020908152604091829020825160a08101845281546001600160a01b0381168252600160a01b900467ffffffffffffffff90811693820193909352600190910154808316938201939093526801000000000000000083049091166060820152600160801b90910463ffffffff16608082015290565b34801561041c57600080fd5b50600454604051908152602001610344565b34801561043a57600080fd5b5061044e61044936600461172d565b610b63565b005b34801561045c57600080fd5b506104eb61046b3660046116c8565b60408051608081018252600080825260208201819052918101829052606081019190915250600090815260116020908152604091829020825160808101845281546001600160a01b031681526001820154928101929092526002015463ffffffff81169282019290925264010000000090910460ff161515606082015290565b604051610344919081516001600160a01b031681526020808301519082015260408083015163ffffffff169082015260609182015115159181019190915260800190565b34801561053b57600080fd5b5061044e61054a3660046117b3565b610bf0565b34801561055b57600080fd5b5061044e61056a3660046117df565b610c80565b34801561057b57600080fd5b5061044e61058a366004611813565b610d09565b34801561059b57600080fd5b5061044e6105aa366004611888565b610d60565b3480156105bb57600080fd5b5061044e6105ca36600461190a565b610db5565b3480156105db57600080fd5b506013546040805163ffffffff808416825267ffffffffffffffff6401000000008504811660208401526c0100000000000000000000000085041692820192909252600160a01b909204166060820152608001610344565b34801561063f57600080fd5b506005546001600160a01b03165b6040516001600160a01b039091168152602001610344565b34801561067157600080fd5b5061044e61068036600461197d565b610e73565b61044e6106933660046119d0565b610eca565b3480156106a457600080fd5b50600954600a546040805167ffffffffffffffff68010000000000000000850481168252600160801b850481166020830152780100000000000000000000000000000000000000000000000090940490931690830152606082015260006080820181905260a082015260c001610344565b34801561072157600080fd5b5061044e610f23565b34801561073657600080fd5b50600d54600e54600f54601054604080519485526020850193909352918301526060820152608001610344565b34801561076f57600080fd5b5061044e61077e366004611a23565b610f89565b34801561078f57600080fd5b5060145460601b6040516bffffffffffffffffffffffff199091168152602001610344565b3480156107c057600080fd5b506000546001600160a01b031661064d565b3480156107de57600080fd5b506107f26107ed366004611aa4565b61101b565b6040516103449190611adc565b34801561080b57600080fd5b5061044e61081a366004611b60565b61111c565b34801561082b57600080fd5b5061044e61083a3660046117b3565b6111a2565b34801561084b57600080fd5b5061092761085a3660046116c8565b6040805160c081018252600080825260208201819052918101829052606081018290526080810182905260a081019190915250600090815260076020908152604091829020825160c08101845281546001600160a01b03808216835267ffffffffffffffff600160a01b80840482169685019690965263ffffffff7c0100000000000000000000000000000000000000000000000000000000938490048116978501979097526001949094015490811660608401529384049092166080820152910490911660a082015290565b6040516103449190600060c0820190506001600160a01b03808451168352602084015167ffffffffffffffff80821660208601526040860151915063ffffffff80831660408701528360608801511660608701528160808801511660808701528060a08801511660a08701525050505092915050565b3480156109a957600080fd5b506109cd6109b83660046116c8565b60009081526012602052604090205460ff1690565b6040519015158152602001610344565b3480156109e957600080fd5b5061044e6109f836600461172d565b611208565b348015610a0957600080fd5b5060095460405167ffffffffffffffff9091168152602001610344565b348015610a3257600080fd5b50600154600254604080516001600160a01b03938416815292909116602083015201610344565b348015610a6557600080fd5b5060055460065460408051600160a01b90930467ffffffffffffffff908116845280831660208501526801000000000000000090920490911690820152606001610344565b348015610ab657600080fd5b5061044e610ac5366004611b94565b611261565b348015610ad657600080fd5b5061044e610ae5366004611bff565b6112bc565b348015610af657600080fd5b506109cd610b05366004611c4b565b6001600160a01b031660009081526008602052604090205460ff1690565b348015610b2f57600080fd5b5061044e610b3e366004611c7a565b611313565b348015610b4f57600080fd5b5061044e610b5e366004611c4b565b611381565b6040517e92bac900000000000000000000000000000000000000000000000000000000815273__$edce581bb06331cf4dae1387760565e5d1$__906292bac990610bba906001908890889088908890600401611e88565b60006040518083038186803b158015610bd257600080fd5b505af4158015610be6573d6000803e3d6000fd5b5050505050505050565b6040517fc87de7f400000000000000000000000000000000000000000000000000000000815260016004820152602481018390526044810182905273__$0f118c52967a3847a37f0a2ef02ffcee04$__9063c87de7f4906064015b60006040518083038186803b158015610c6357600080fd5b505af4158015610c77573d6000803e3d6000fd5b50505050505050565b6040517f99b0b84700000000000000000000000000000000000000000000000000000000815273__$0f118c52967a3847a37f0a2ef02ffcee04$__906399b0b84790610cd59060019086908690600401611ee2565b60006040518083038186803b158015610ced57600080fd5b505af4158015610d01573d6000803e3d6000fd5b505050505050565b6040517f510fc50a00000000000000000000000000000000000000000000000000000000815273__$61f169726e973bba1227e0c23d2755f88e$__9063510fc50a90610c4b90600190879087908790600401611f13565b6040517faea7fd0b00000000000000000000000000000000000000000000000000000000815273__$894ce12e79ca3e5683c1b49e363f37fa22$__9063aea7fd0b90610cd59060019086908690600401611f57565b6000546001600160a01b03163314610e145760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657260448201526064015b60405180910390fd5b6001600160a01b038216600081815260086020908152604091829020805460ff191685151590811790915591519182527f9065599c12c4294d9e2201638226d0d0beb95c228f468c4e7c2bdb8322b6066f910160405180910390a25050565b6040517f13d0c66800000000000000000000000000000000000000000000000000000000815273__$faca6b149b11b9e5dd3c54d44c40a95c4f$__906313d0c66890610c4b90600190879087908790600401612094565b6040517f3b5d9f2400000000000000000000000000000000000000000000000000000000815273__$a542940934c03bae9a39609192cb25cc3c$__90633b5d9f2490610bba9060019088908890889088906004016120c3565b6000546001600160a01b03163314610f7d5760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610e0b565b610f876000611463565b565b6040517f624526fe00000000000000000000000000000000000000000000000000000000815273__$a542940934c03bae9a39609192cb25cc3c$__9063624526fe90610fe4906001908990899089908990899060040161211d565b60006040518083038186803b158015610ffc57600080fd5b505af4158015611010573d6000803e3d6000fd5b505050505050505050565b6040805160e081018252600080825260208201819052918101829052606081018290526080810182905260a0810182905260c08101919091526bffffffffffffffffffffffff198216600090815260156020908152604091829020825160e08101845281548152600182015492810192909252600281015467ffffffffffffffff81169383019390935263ffffffff680100000000000000008404811660608401526c010000000000000000000000008404166080830152909160a083019060ff600160801b9091041660048111156110f6576110f6611ac6565b600481111561110757611107611ac6565b81526020016003820154815250509050919050565b6040517fd079fbb100000000000000000000000000000000000000000000000000000000815273__$0f118c52967a3847a37f0a2ef02ffcee04$__9063d079fbb19061116f906001908590600401612160565b60006040518083038186803b15801561118757600080fd5b505af415801561119b573d6000803e3d6000fd5b5050505050565b6040517f4afbe4c90000000000000000000000000000000000000000000000000000000081526001600482015260248101849052604481018390526064810182905273__$0f118c52967a3847a37f0a2ef02ffcee04$__90634afbe4c990608401610c4b565b6040517fa164de6e00000000000000000000000000000000000000000000000000000000815273__$faca6b149b11b9e5dd3c54d44c40a95c4f$__9063a164de6e90610bba906001908890889088908890600401611e88565b6040517f7333b36900000000000000000000000000000000000000000000000000000000815273__$faca6b149b11b9e5dd3c54d44c40a95c4f$__90637333b36990610fe49060019089908990899089908990600401612174565b6040517f72c9c91c00000000000000000000000000000000000000000000000000000000815273__$a542940934c03bae9a39609192cb25cc3c$__906372c9c91c90610c4b906001908790879087906004016121cd565b6000546001600160a01b0316331461136d5760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610e0b565b61137b6001858585856114cb565b50505050565b6000546001600160a01b031633146113db5760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610e0b565b6001600160a01b0381166114575760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201527f64647265737300000000000000000000000000000000000000000000000000006064820152608401610e0b565b61146081611463565b50565b600080546001600160a01b038381167fffffffffffffffffffffffff0000000000000000000000000000000000000000831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b60008367ffffffffffffffff161161154b5760405162461bcd60e51b815260206004820152603460248201527f57616c6c6574206d696e696d756d204254432062616c616e6365206d7573742060448201527f62652067726561746572207468616e207a65726f0000000000000000000000006064820152608401610e0b565b8267ffffffffffffffff168267ffffffffffffffff16116115d45760405162461bcd60e51b815260206004820152603b60248201527f57616c6c6574206d6178696d756d204254432062616c616e6365206d7573742060448201527f62652067726561746572207468616e20746865206d696e696d756d00000000006064820152608401610e0b565b60128501805463ffffffff8681166bffffffffffffffffffffffff19909216821764010000000067ffffffffffffffff888116918202929092177fffffffffffffffff000000000000000000000000ffffffffffffffffffffffff166c010000000000000000000000009288169283027fffffffffffffffff00000000ffffffffffffffffffffffffffffffffffffffff1617600160a01b938716938402179094556040805193845260208401949094529282019290925260608101919091527fc5e6f9192c5d47e7f338142843062686c7659943485864e5998551473c18505e9060800160405180910390a15050505050565b6000602082840312156116da57600080fd5b5035919050565b6000608082840312156116f357600080fd5b50919050565b6000606082840312156116f357600080fd5b80356bffffffffffffffffffffffff198116811461172857600080fd5b919050565b60008060008060c0858703121561174357600080fd5b843567ffffffffffffffff8082111561175b57600080fd5b611767888389016116e1565b9550602087013591508082111561177d57600080fd5b5061178a878288016116f9565b93505061179a86604087016116f9565b91506117a860a0860161170b565b905092959194509250565b6000806000606084860312156117c857600080fd5b505081359360208301359350604090920135919050565b600080608083850312156117f257600080fd5b6117fb8361170b565b915061180a84602085016116f9565b90509250929050565b600080600060a0848603121561182857600080fd5b833567ffffffffffffffff8082111561184057600080fd5b61184c878388016116e1565b9450602086013591508082111561186257600080fd5b5061186f868287016116f9565b92505061187f85604086016116f9565b90509250925092565b60008082840361010081121561189d57600080fd5b833567ffffffffffffffff8111156118b457600080fd5b6118c0868287016116e1565b93505060e0601f19820112156118d557600080fd5b506020830190509250929050565b80356001600160a01b038116811461172857600080fd5b8035801515811461172857600080fd5b6000806040838503121561191d57600080fd5b611926836118e3565b915061180a602084016118fa565b60008083601f84011261194657600080fd5b50813567ffffffffffffffff81111561195e57600080fd5b60208301915083602082850101111561197657600080fd5b9250929050565b60008060006040848603121561199257600080fd5b61199b8461170b565b9250602084013567ffffffffffffffff8111156119b757600080fd5b6119c386828701611934565b9497909650939450505050565b60008060008060a085870312156119e657600080fd5b843567ffffffffffffffff8111156119fd57600080fd5b611a0987828801611934565b909550935050602085013591506117a886604087016116f9565b600080600080600060608688031215611a3b57600080fd5b853567ffffffffffffffff80821115611a5357600080fd5b611a5f89838a01611934565b90975095506020880135915080821115611a7857600080fd5b50611a8588828901611934565b9094509250611a989050604087016118fa565b90509295509295909350565b600060208284031215611ab657600080fd5b611abf8261170b565b9392505050565b634e487b7160e01b600052602160045260246000fd5b600060e082019050825182526020830151602083015267ffffffffffffffff6040840151166040830152606083015163ffffffff8082166060850152806080860151166080850152505060a083015160058110611b4957634e487b7160e01b600052602160045260246000fd5b8060a08401525060c083015160c083015292915050565b600060608284031215611b7257600080fd5b611abf83836116f9565b803567ffffffffffffffff8116811461172857600080fd5b600080600080600060c08688031215611bac57600080fd5b611bb58661170b565b9450611bc487602088016116f9565b9350608086013567ffffffffffffffff811115611be057600080fd5b611bec88828901611934565b9094509250611a98905060a08701611b7c565b600080600060408486031215611c1457600080fd5b833567ffffffffffffffff811115611c2b57600080fd5b611c3786828701611934565b909790965060209590950135949350505050565b600060208284031215611c5d57600080fd5b611abf826118e3565b803563ffffffff8116811461172857600080fd5b60008060008060808587031215611c9057600080fd5b611c9985611c66565b9350611ca760208601611b7c565b9250611cb560408601611b7c565b91506117a860608601611c66565b80357fffffffff000000000000000000000000000000000000000000000000000000008116811461172857600080fd5b6000808335601e19843603018112611d0a57600080fd5b830160208101925035905067ffffffffffffffff811115611d2a57600080fd5b80360383131561197657600080fd5b81835281816020850137506000828201602090810191909152601f909101601f19169091010190565b60007fffffffff0000000000000000000000000000000000000000000000000000000080611d8f84611cc3565b168452611d9f6020840184611cf3565b60806020870152611db4608087018284611d39565b915050611dc46040850185611cf3565b8683036040880152611dd7838284611d39565b9250505081611de860608601611cc3565b166060860152809250505092915050565b6000611e058283611cf3565b60608552611e17606086018284611d39565b91505060208301356020850152611e316040840184611cf3565b8583036040870152611e44838284611d39565b9695505050505050565b8035825263ffffffff611e6360208301611c66565b16602083015267ffffffffffffffff611e7e60408301611b7c565b1660408301525050565b85815260e060208201526000611ea160e0830187611d62565b8281036040840152611eb38187611df9565b915050611ec36060830185611e4e565b6bffffffffffffffffffffffff19831660c08301529695505050505050565b8381526bffffffffffffffffffffffff198316602082015260a08101611f0b6040830184611e4e565b949350505050565b84815260c060208201526000611f2c60c0830186611d62565b8281036040840152611f3e8186611df9565b915050611f4e6060830184611e4e565b95945050505050565b6000610120858352806020840152611f7181840186611d62565b91505063ffffffff611f8284611c66565b1660408301526001600160a01b03611f9c602085016118e3565b16606083015260408301357fffffffffffffffff00000000000000000000000000000000000000000000000081168114611fd557600080fd5b7fffffffffffffffff0000000000000000000000000000000000000000000000001660808301526120086060840161170b565b6bffffffffffffffffffffffff191660a08301526120286080840161170b565b6bffffffffffffffffffffffff191660c083015261204860a08401611cc3565b7fffffffff000000000000000000000000000000000000000000000000000000001660e083015261207b60c084016118e3565b6001600160a01b03811661010084015250949350505050565b8481526bffffffffffffffffffffffff1984166020820152606060408201526000611e44606083018486611d39565b85815260c0602082015260006120dd60c083018688611d39565b90508360408301528235606083015260208301356080830152604083013560ff811680821461210b57600080fd5b8060a085015250509695505050505050565b868152608060208201526000612137608083018789611d39565b828103604084015261214a818688611d39565b9150508215156060830152979650505050505050565b82815260808101611abf6020830184611e4e565b8681526bffffffffffffffffffffffff19861660208201526121996040820186611e4e565b60e060a082015260006121b060e083018587611d39565b905067ffffffffffffffff831660c0830152979650505050505050565b8481526060602082015260006121e7606083018587611d39565b90508260408301529594505050505056fea26469706673582212206232e984e49ddb02ba60f50b915a9603fe36941a37462c827bdee6df1135bbb564736f6c63430008090033",
|
|
1620
|
-
"deployedBytecode": "0x6080604052600436106102195760003560e01c806377145f211161011d578063b34b3216116100b0578063d6eccdf01161007f578063e53c0b5511610064578063e53c0b5514610aea578063e86a1be614610b23578063f2fde38b14610b4357600080fd5b8063d6eccdf014610aaa578063d95027b714610aca57600080fd5b8063b34b3216146109dd578063be05abe3146109fd578063c3a2a93a14610a26578063c42b64d014610a5957600080fd5b8063a145e2d5116100ec578063a145e2d5146107ff578063a8fa0f421461081f578063b02c43d01461083f578063b2146cd61461099d57600080fd5b806377145f2114610763578063793bb473146107835780638da5cb5b146107b45780638fa4ad28146107d257600080fd5b80635c0b4812116101b057806367f272471161017f5780636e70ce41116101645780636e70ce4114610698578063715018a61461071557806375b922d11461072a57600080fd5b806367f27247146106655780636d02b43c1461068557600080fd5b80635c0b48121461058f57806360d712fc146105af57806361ccf97a146105cf57806361d027b31461063357600080fd5b806333e957cb116101ec57806333e957cb146104505780633dce98121461052f578063575e42791461054f57806359a9d90a1461056f57600080fd5b806303d952f71461021e5780630b6ba19d1461034d5780632bb818c2146104105780632f429b641461042e575b600080fd5b34801561022a57600080fd5b506102e16102393660046116c8565b6040805160a081018252600080825260208201819052918101829052606081018290526080810191909152506000908152600b6020908152604091829020825160a08101845281546001600160a01b0381168252600160a01b900467ffffffffffffffff90811693820193909352600190910154808316938201939093526801000000000000000083049091166060820152600160801b90910463ffffffff16608082015290565b6040516103449190600060a0820190506001600160a01b038351168252602083015167ffffffffffffffff8082166020850152806040860151166040850152806060860151166060850152505063ffffffff608084015116608083015292915050565b60405180910390f35b34801561035957600080fd5b506102e16103683660046116c8565b6040805160a081018252600080825260208201819052918101829052606081018290526080810191909152506000908152600c6020908152604091829020825160a08101845281546001600160a01b0381168252600160a01b900467ffffffffffffffff90811693820193909352600190910154808316938201939093526801000000000000000083049091166060820152600160801b90910463ffffffff16608082015290565b34801561041c57600080fd5b50600454604051908152602001610344565b34801561043a57600080fd5b5061044e61044936600461172d565b610b63565b005b34801561045c57600080fd5b506104eb61046b3660046116c8565b60408051608081018252600080825260208201819052918101829052606081019190915250600090815260116020908152604091829020825160808101845281546001600160a01b031681526001820154928101929092526002015463ffffffff81169282019290925264010000000090910460ff161515606082015290565b604051610344919081516001600160a01b031681526020808301519082015260408083015163ffffffff169082015260609182015115159181019190915260800190565b34801561053b57600080fd5b5061044e61054a3660046117b3565b610bf0565b34801561055b57600080fd5b5061044e61056a3660046117df565b610c80565b34801561057b57600080fd5b5061044e61058a366004611813565b610d09565b34801561059b57600080fd5b5061044e6105aa366004611888565b610d60565b3480156105bb57600080fd5b5061044e6105ca36600461190a565b610db5565b3480156105db57600080fd5b506013546040805163ffffffff808416825267ffffffffffffffff6401000000008504811660208401526c0100000000000000000000000085041692820192909252600160a01b909204166060820152608001610344565b34801561063f57600080fd5b506005546001600160a01b03165b6040516001600160a01b039091168152602001610344565b34801561067157600080fd5b5061044e61068036600461197d565b610e73565b61044e6106933660046119d0565b610eca565b3480156106a457600080fd5b50600954600a546040805167ffffffffffffffff68010000000000000000850481168252600160801b850481166020830152780100000000000000000000000000000000000000000000000090940490931690830152606082015260006080820181905260a082015260c001610344565b34801561072157600080fd5b5061044e610f23565b34801561073657600080fd5b50600d54600e54600f54601054604080519485526020850193909352918301526060820152608001610344565b34801561076f57600080fd5b5061044e61077e366004611a23565b610f89565b34801561078f57600080fd5b5060145460601b6040516bffffffffffffffffffffffff199091168152602001610344565b3480156107c057600080fd5b506000546001600160a01b031661064d565b3480156107de57600080fd5b506107f26107ed366004611aa4565b61101b565b6040516103449190611adc565b34801561080b57600080fd5b5061044e61081a366004611b60565b61111c565b34801561082b57600080fd5b5061044e61083a3660046117b3565b6111a2565b34801561084b57600080fd5b5061092761085a3660046116c8565b6040805160c081018252600080825260208201819052918101829052606081018290526080810182905260a081019190915250600090815260076020908152604091829020825160c08101845281546001600160a01b03808216835267ffffffffffffffff600160a01b80840482169685019690965263ffffffff7c0100000000000000000000000000000000000000000000000000000000938490048116978501979097526001949094015490811660608401529384049092166080820152910490911660a082015290565b6040516103449190600060c0820190506001600160a01b03808451168352602084015167ffffffffffffffff80821660208601526040860151915063ffffffff80831660408701528360608801511660608701528160808801511660808701528060a08801511660a08701525050505092915050565b3480156109a957600080fd5b506109cd6109b83660046116c8565b60009081526012602052604090205460ff1690565b6040519015158152602001610344565b3480156109e957600080fd5b5061044e6109f836600461172d565b611208565b348015610a0957600080fd5b5060095460405167ffffffffffffffff9091168152602001610344565b348015610a3257600080fd5b50600154600254604080516001600160a01b03938416815292909116602083015201610344565b348015610a6557600080fd5b5060055460065460408051600160a01b90930467ffffffffffffffff908116845280831660208501526801000000000000000090920490911690820152606001610344565b348015610ab657600080fd5b5061044e610ac5366004611b94565b611261565b348015610ad657600080fd5b5061044e610ae5366004611bff565b6112bc565b348015610af657600080fd5b506109cd610b05366004611c4b565b6001600160a01b031660009081526008602052604090205460ff1690565b348015610b2f57600080fd5b5061044e610b3e366004611c7a565b611313565b348015610b4f57600080fd5b5061044e610b5e366004611c4b565b611381565b6040517e92bac900000000000000000000000000000000000000000000000000000000815273__$edce581bb06331cf4dae1387760565e5d1$__906292bac990610bba906001908890889088908890600401611e88565b60006040518083038186803b158015610bd257600080fd5b505af4158015610be6573d6000803e3d6000fd5b5050505050505050565b6040517fc87de7f400000000000000000000000000000000000000000000000000000000815260016004820152602481018390526044810182905273__$0f118c52967a3847a37f0a2ef02ffcee04$__9063c87de7f4906064015b60006040518083038186803b158015610c6357600080fd5b505af4158015610c77573d6000803e3d6000fd5b50505050505050565b6040517f99b0b84700000000000000000000000000000000000000000000000000000000815273__$0f118c52967a3847a37f0a2ef02ffcee04$__906399b0b84790610cd59060019086908690600401611ee2565b60006040518083038186803b158015610ced57600080fd5b505af4158015610d01573d6000803e3d6000fd5b505050505050565b6040517f510fc50a00000000000000000000000000000000000000000000000000000000815273__$61f169726e973bba1227e0c23d2755f88e$__9063510fc50a90610c4b90600190879087908790600401611f13565b6040517faea7fd0b00000000000000000000000000000000000000000000000000000000815273__$894ce12e79ca3e5683c1b49e363f37fa22$__9063aea7fd0b90610cd59060019086908690600401611f57565b6000546001600160a01b03163314610e145760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657260448201526064015b60405180910390fd5b6001600160a01b038216600081815260086020908152604091829020805460ff191685151590811790915591519182527f9065599c12c4294d9e2201638226d0d0beb95c228f468c4e7c2bdb8322b6066f910160405180910390a25050565b6040517f13d0c66800000000000000000000000000000000000000000000000000000000815273__$faca6b149b11b9e5dd3c54d44c40a95c4f$__906313d0c66890610c4b90600190879087908790600401612094565b6040517f3b5d9f2400000000000000000000000000000000000000000000000000000000815273__$a542940934c03bae9a39609192cb25cc3c$__90633b5d9f2490610bba9060019088908890889088906004016120c3565b6000546001600160a01b03163314610f7d5760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610e0b565b610f876000611463565b565b6040517f624526fe00000000000000000000000000000000000000000000000000000000815273__$a542940934c03bae9a39609192cb25cc3c$__9063624526fe90610fe4906001908990899089908990899060040161211d565b60006040518083038186803b158015610ffc57600080fd5b505af4158015611010573d6000803e3d6000fd5b505050505050505050565b6040805160e081018252600080825260208201819052918101829052606081018290526080810182905260a0810182905260c08101919091526bffffffffffffffffffffffff198216600090815260156020908152604091829020825160e08101845281548152600182015492810192909252600281015467ffffffffffffffff81169383019390935263ffffffff680100000000000000008404811660608401526c010000000000000000000000008404166080830152909160a083019060ff600160801b9091041660048111156110f6576110f6611ac6565b600481111561110757611107611ac6565b81526020016003820154815250509050919050565b6040517fd079fbb100000000000000000000000000000000000000000000000000000000815273__$0f118c52967a3847a37f0a2ef02ffcee04$__9063d079fbb19061116f906001908590600401612160565b60006040518083038186803b15801561118757600080fd5b505af415801561119b573d6000803e3d6000fd5b5050505050565b6040517f4afbe4c90000000000000000000000000000000000000000000000000000000081526001600482015260248101849052604481018390526064810182905273__$0f118c52967a3847a37f0a2ef02ffcee04$__90634afbe4c990608401610c4b565b6040517fa164de6e00000000000000000000000000000000000000000000000000000000815273__$faca6b149b11b9e5dd3c54d44c40a95c4f$__9063a164de6e90610bba906001908890889088908890600401611e88565b6040517f7333b36900000000000000000000000000000000000000000000000000000000815273__$faca6b149b11b9e5dd3c54d44c40a95c4f$__90637333b36990610fe49060019089908990899089908990600401612174565b6040517f72c9c91c00000000000000000000000000000000000000000000000000000000815273__$a542940934c03bae9a39609192cb25cc3c$__906372c9c91c90610c4b906001908790879087906004016121cd565b6000546001600160a01b0316331461136d5760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610e0b565b61137b6001858585856114cb565b50505050565b6000546001600160a01b031633146113db5760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610e0b565b6001600160a01b0381166114575760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201527f64647265737300000000000000000000000000000000000000000000000000006064820152608401610e0b565b61146081611463565b50565b600080546001600160a01b038381167fffffffffffffffffffffffff0000000000000000000000000000000000000000831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b60008367ffffffffffffffff161161154b5760405162461bcd60e51b815260206004820152603460248201527f57616c6c6574206d696e696d756d204254432062616c616e6365206d7573742060448201527f62652067726561746572207468616e207a65726f0000000000000000000000006064820152608401610e0b565b8267ffffffffffffffff168267ffffffffffffffff16116115d45760405162461bcd60e51b815260206004820152603b60248201527f57616c6c6574206d6178696d756d204254432062616c616e6365206d7573742060448201527f62652067726561746572207468616e20746865206d696e696d756d00000000006064820152608401610e0b565b60128501805463ffffffff8681166bffffffffffffffffffffffff19909216821764010000000067ffffffffffffffff888116918202929092177fffffffffffffffff000000000000000000000000ffffffffffffffffffffffff166c010000000000000000000000009288169283027fffffffffffffffff00000000ffffffffffffffffffffffffffffffffffffffff1617600160a01b938716938402179094556040805193845260208401949094529282019290925260608101919091527fc5e6f9192c5d47e7f338142843062686c7659943485864e5998551473c18505e9060800160405180910390a15050505050565b6000602082840312156116da57600080fd5b5035919050565b6000608082840312156116f357600080fd5b50919050565b6000606082840312156116f357600080fd5b80356bffffffffffffffffffffffff198116811461172857600080fd5b919050565b60008060008060c0858703121561174357600080fd5b843567ffffffffffffffff8082111561175b57600080fd5b611767888389016116e1565b9550602087013591508082111561177d57600080fd5b5061178a878288016116f9565b93505061179a86604087016116f9565b91506117a860a0860161170b565b905092959194509250565b6000806000606084860312156117c857600080fd5b505081359360208301359350604090920135919050565b600080608083850312156117f257600080fd5b6117fb8361170b565b915061180a84602085016116f9565b90509250929050565b600080600060a0848603121561182857600080fd5b833567ffffffffffffffff8082111561184057600080fd5b61184c878388016116e1565b9450602086013591508082111561186257600080fd5b5061186f868287016116f9565b92505061187f85604086016116f9565b90509250925092565b60008082840361010081121561189d57600080fd5b833567ffffffffffffffff8111156118b457600080fd5b6118c0868287016116e1565b93505060e0601f19820112156118d557600080fd5b506020830190509250929050565b80356001600160a01b038116811461172857600080fd5b8035801515811461172857600080fd5b6000806040838503121561191d57600080fd5b611926836118e3565b915061180a602084016118fa565b60008083601f84011261194657600080fd5b50813567ffffffffffffffff81111561195e57600080fd5b60208301915083602082850101111561197657600080fd5b9250929050565b60008060006040848603121561199257600080fd5b61199b8461170b565b9250602084013567ffffffffffffffff8111156119b757600080fd5b6119c386828701611934565b9497909650939450505050565b60008060008060a085870312156119e657600080fd5b843567ffffffffffffffff8111156119fd57600080fd5b611a0987828801611934565b909550935050602085013591506117a886604087016116f9565b600080600080600060608688031215611a3b57600080fd5b853567ffffffffffffffff80821115611a5357600080fd5b611a5f89838a01611934565b90975095506020880135915080821115611a7857600080fd5b50611a8588828901611934565b9094509250611a989050604087016118fa565b90509295509295909350565b600060208284031215611ab657600080fd5b611abf8261170b565b9392505050565b634e487b7160e01b600052602160045260246000fd5b600060e082019050825182526020830151602083015267ffffffffffffffff6040840151166040830152606083015163ffffffff8082166060850152806080860151166080850152505060a083015160058110611b4957634e487b7160e01b600052602160045260246000fd5b8060a08401525060c083015160c083015292915050565b600060608284031215611b7257600080fd5b611abf83836116f9565b803567ffffffffffffffff8116811461172857600080fd5b600080600080600060c08688031215611bac57600080fd5b611bb58661170b565b9450611bc487602088016116f9565b9350608086013567ffffffffffffffff811115611be057600080fd5b611bec88828901611934565b9094509250611a98905060a08701611b7c565b600080600060408486031215611c1457600080fd5b833567ffffffffffffffff811115611c2b57600080fd5b611c3786828701611934565b909790965060209590950135949350505050565b600060208284031215611c5d57600080fd5b611abf826118e3565b803563ffffffff8116811461172857600080fd5b60008060008060808587031215611c9057600080fd5b611c9985611c66565b9350611ca760208601611b7c565b9250611cb560408601611b7c565b91506117a860608601611c66565b80357fffffffff000000000000000000000000000000000000000000000000000000008116811461172857600080fd5b6000808335601e19843603018112611d0a57600080fd5b830160208101925035905067ffffffffffffffff811115611d2a57600080fd5b80360383131561197657600080fd5b81835281816020850137506000828201602090810191909152601f909101601f19169091010190565b60007fffffffff0000000000000000000000000000000000000000000000000000000080611d8f84611cc3565b168452611d9f6020840184611cf3565b60806020870152611db4608087018284611d39565b915050611dc46040850185611cf3565b8683036040880152611dd7838284611d39565b9250505081611de860608601611cc3565b166060860152809250505092915050565b6000611e058283611cf3565b60608552611e17606086018284611d39565b91505060208301356020850152611e316040840184611cf3565b8583036040870152611e44838284611d39565b9695505050505050565b8035825263ffffffff611e6360208301611c66565b16602083015267ffffffffffffffff611e7e60408301611b7c565b1660408301525050565b85815260e060208201526000611ea160e0830187611d62565b8281036040840152611eb38187611df9565b915050611ec36060830185611e4e565b6bffffffffffffffffffffffff19831660c08301529695505050505050565b8381526bffffffffffffffffffffffff198316602082015260a08101611f0b6040830184611e4e565b949350505050565b84815260c060208201526000611f2c60c0830186611d62565b8281036040840152611f3e8186611df9565b915050611f4e6060830184611e4e565b95945050505050565b6000610120858352806020840152611f7181840186611d62565b91505063ffffffff611f8284611c66565b1660408301526001600160a01b03611f9c602085016118e3565b16606083015260408301357fffffffffffffffff00000000000000000000000000000000000000000000000081168114611fd557600080fd5b7fffffffffffffffff0000000000000000000000000000000000000000000000001660808301526120086060840161170b565b6bffffffffffffffffffffffff191660a08301526120286080840161170b565b6bffffffffffffffffffffffff191660c083015261204860a08401611cc3565b7fffffffff000000000000000000000000000000000000000000000000000000001660e083015261207b60c084016118e3565b6001600160a01b03811661010084015250949350505050565b8481526bffffffffffffffffffffffff1984166020820152606060408201526000611e44606083018486611d39565b85815260c0602082015260006120dd60c083018688611d39565b90508360408301528235606083015260208301356080830152604083013560ff811680821461210b57600080fd5b8060a085015250509695505050505050565b868152608060208201526000612137608083018789611d39565b828103604084015261214a818688611d39565b9150508215156060830152979650505050505050565b82815260808101611abf6020830184611e4e565b8681526bffffffffffffffffffffffff19861660208201526121996040820186611e4e565b60e060a082015260006121b060e083018587611d39565b905067ffffffffffffffff831660c0830152979650505050505050565b8481526060602082015260006121e7606083018587611d39565b90508260408301529594505050505056fea26469706673582212206232e984e49ddb02ba60f50b915a9603fe36941a37462c827bdee6df1135bbb564736f6c63430008090033",
|
|
1919
|
+
"bytecode": "0x60806040523480156200001157600080fd5b506040516200358b3803806200358b833981016040819052620000349162000363565b6200003f33620002f6565b6001600160a01b0385166200009b5760405162461bcd60e51b815260206004820152601b60248201527f42616e6b20616464726573732063616e6e6f74206265207a65726f000000000060448201526064015b60405180910390fd5b600180546001600160a01b0319166001600160a01b038781169190911790915584166200010b5760405162461bcd60e51b815260206004820152601c60248201527f52656c617920616464726573732063616e6e6f74206265207a65726f00000000604482015260640162000092565b600280546001600160a01b0319166001600160a01b03868116919091179091558216620001905760405162461bcd60e51b815260206004820152602c60248201527f45434453412057616c6c6574205265676973747279206164647265737320636160448201526b6e6e6f74206265207a65726f60a01b606482015260840162000092565b600380546001600160a01b0319166001600160a01b03848116919091179091558316620002005760405162461bcd60e51b815260206004820152601f60248201527f547265617375727920616464726573732063616e6e6f74206265207a65726f00604482015260640162000092565b600580546004929092556001600160a01b03939093166001600160e01b031991821617613d0960a61b1790925550600680546001600160801b03191669271000000000000007d017905560098054600a80546127106001600160401b03199091161790556202a300600b559091167507d000000000000f424000093a800000000000002710179055505069021e19e0c9bab2400000600e556064600f5562093a80601055671bc16d674ec80000601155601480546001600160c01b03191676eff100000000003b9aca000000000005f5e10000093a80179055601580546001600160c01b0316621dcd6560c91b179055620003ca565b600080546001600160a01b038381166001600160a01b0319831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b80516001600160a01b03811681146200035e57600080fd5b919050565b600080600080600060a086880312156200037c57600080fd5b620003878662000346565b9450620003976020870162000346565b9350620003a76040870162000346565b9250620003b76060870162000346565b9150608086015190509295509295909350565b6131b180620003da6000396000f3fe6080604052600436106102c65760003560e01c806375b922d111610179578063b34b3216116100d6578063d6eccdf01161008a578063e53c0b5511610064578063e53c0b5514610c82578063e65e19d514610cbb578063f2fde38b14610ce857600080fd5b8063d6eccdf014610c11578063d95027b714610c31578063ded1d24a14610c5157600080fd5b8063be05abe3116100bb578063be05abe314610b6b578063c42b64d014610ba5578063d3ecfd0c14610bf157600080fd5b8063b34b321614610b2b578063bbeac4bf14610b4b57600080fd5b8063a8fa0f421161012d578063abaeed8f11610112578063abaeed8f1461096d578063b02c43d01461098d578063b2146cd614610aeb57600080fd5b8063a8fa0f421461091a578063a9de2f3a1461093a57600080fd5b80638da5cb5b1161015e5780638da5cb5b146108bc57806396db2537146108da578063a145e2d5146108fa57600080fd5b806375b922d11461086357806377145f211461089c57600080fd5b806359a9d90a1161022757806367f27247116101db5780636d02b43c116101c05780636d02b43c146107e65780636e70ce41146107f9578063715018a61461084e57600080fd5b806367f27247146107a657806368763f1e146107c657600080fd5b806360d712fc1161020c57806360d712fc146106c457806361ccf97a146106e457806361d027b31461077457600080fd5b806359a9d90a146106845780635c0b4812146106a457600080fd5b80632f429b641161027e57806333e957cb1161026357806333e957cb146105655780633dce981214610644578063575e42791461066457600080fd5b80632f429b6414610525578063319a33a91461054557600080fd5b806317c96400116102af57806317c96400146104b357806324028c11146104d55780632bb818c21461050757600080fd5b806303d952f7146102cb5780630b6ba19d146103f5575b600080fd5b3480156102d757600080fd5b506103896102e63660046123a8565b6040805160a081018252600080825260208201819052918101829052606081018290526080810191909152506000908152600c6020908152604091829020825160a08101845281546001600160a01b0381168252600160a01b900467ffffffffffffffff9081169382019390935260019091015480831693820193909352600160401b83049091166060820152600160801b90910463ffffffff16608082015290565b6040516103ec9190600060a0820190506001600160a01b038351168252602083015167ffffffffffffffff8082166020850152806040860151166040850152806060860151166060850152505063ffffffff608084015116608083015292915050565b60405180910390f35b34801561040157600080fd5b506103896104103660046123a8565b6040805160a081018252600080825260208201819052918101829052606081018290526080810191909152506000908152600d6020908152604091829020825160a08101845281546001600160a01b0381168252600160a01b900467ffffffffffffffff9081169382019390935260019091015480831693820193909352600160401b83049091166060820152600160801b90910463ffffffff16608082015290565b3480156104bf57600080fd5b506104d36104ce3660046123de565b610d08565b005b3480156104e157600080fd5b50601554600160a01b900463ffffffff1660405163ffffffff90911681526020016103ec565b34801561051357600080fd5b506004546040519081526020016103ec565b34801561053157600080fd5b506104d3610540366004612468565b610d79565b34801561055157600080fd5b506104d36105603660046124ee565b610e06565b34801561057157600080fd5b506106006105803660046123a8565b60408051608081018252600080825260208201819052918101829052606081019190915250600090815260126020908152604091829020825160808101845281546001600160a01b031681526001820154928101929092526002015463ffffffff81169282019290925264010000000090910460ff161515606082015290565b6040516103ec919081516001600160a01b031681526020808301519082015260408083015163ffffffff169082015260609182015115159181019190915260800190565b34801561065057600080fd5b506104d361065f366004612510565b610e9b565b34801561067057600080fd5b506104d361067f36600461253c565b610f2b565b34801561069057600080fd5b506104d361069f366004612570565b610fb4565b3480156106b057600080fd5b506104d36106bf3660046125dc565b61100b565b3480156106d057600080fd5b506104d36106df36600461265e565b611060565b3480156106f057600080fd5b5061073860145460155463ffffffff8083169367ffffffffffffffff6401000000008504811694600160601b8104821694600160a01b90910490931692600160c01b90041690565b6040805163ffffffff968716815267ffffffffffffffff958616602082015293851690840152931660608201529116608082015260a0016103ec565b34801561078057600080fd5b506005546001600160a01b03165b6040516001600160a01b0390911681526020016103ec565b3480156107b257600080fd5b506104d36107c13660046126d1565b611119565b3480156107d257600080fd5b506104d36107e1366004612738565b611170565b6104d36107f436600461279d565b6111d9565b34801561080557600080fd5b50600954600a54600b546040805167ffffffffffffffff600160601b860481168252600160a01b90950485166020820152939092169183019190915260608201526080016103ec565b34801561085a57600080fd5b506104d3611232565b34801561086f57600080fd5b50600e54600f546010546011546040805194855260208501939093529183015260608201526080016103ec565b3480156108a857600080fd5b506104d36108b73660046127f0565b611298565b3480156108c857600080fd5b506000546001600160a01b031661078e565b3480156108e657600080fd5b506104d36108f5366004612865565b61132a565b34801561090657600080fd5b506104d36109153660046128b0565b611398565b34801561092657600080fd5b506104d3610935366004612510565b6113eb565b34801561094657600080fd5b50600154600254604080516001600160a01b039384168152929091166020830152016103ec565b34801561097957600080fd5b506104d3610988366004612911565b611451565b34801561099957600080fd5b50610a756109a83660046123a8565b6040805160c081018252600080825260208201819052918101829052606081018290526080810182905260a081019190915250600090815260076020908152604091829020825160c08101845281546001600160a01b03808216835267ffffffffffffffff600160a01b80840482169685019690965263ffffffff7c0100000000000000000000000000000000000000000000000000000000938490048116978501979097526001949094015490811660608401529384049092166080820152910490911660a082015290565b6040516103ec9190600060c0820190506001600160a01b03808451168352602084015167ffffffffffffffff80821660208601526040860151915063ffffffff80831660408701528360608801511660608701528160808801511660808701528060a08801511660a08701525050505092915050565b348015610af757600080fd5b50610b1b610b063660046123a8565b60009081526013602052604090205460ff1690565b60405190151581526020016103ec565b348015610b3757600080fd5b506104d3610b46366004612468565b6114e9565b348015610b5757600080fd5b506104d3610b663660046129ad565b611542565b348015610b7757600080fd5b506009546040805167ffffffffffffffff83168152600160401b90920463ffffffff166020830152016103ec565b348015610bb157600080fd5b5060055460065460408051600160a01b90930467ffffffffffffffff90811684528083166020850152600160401b909204909116908201526060016103ec565b348015610bfd57600080fd5b506104d3610c0c3660046129df565b6115aa565b348015610c1d57600080fd5b506104d3610c2c366004612a09565b611614565b348015610c3d57600080fd5b506104d3610c4c366004612a74565b61166f565b348015610c5d57600080fd5b5060155460601b6040516bffffffffffffffffffffffff1990911681526020016103ec565b348015610c8e57600080fd5b50610b1b610c9d366004612ac0565b6001600160a01b031660009081526008602052604090205460ff1690565b348015610cc757600080fd5b50610cdb610cd63660046124ee565b6116c6565b6040516103ec9190612af1565b348015610cf457600080fd5b506104d3610d03366004612ac0565b6117d0565b6000546001600160a01b03163314610d675760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657260448201526064015b60405180910390fd5b610d7460018484846118b2565b505050565b6040517e92bac900000000000000000000000000000000000000000000000000000000815273__$edce581bb06331cf4dae1387760565e5d1$__906292bac990610dd0906001908890889088908890600401612d47565b60006040518083038186803b158015610de857600080fd5b505af4158015610dfc573d6000803e3d6000fd5b5050505050505050565b6040517fb45b31d5000000000000000000000000000000000000000000000000000000008152600160048201526bffffffffffffffffffffffff198216602482015273__$edce581bb06331cf4dae1387760565e5d1$__9063b45b31d5906044015b60006040518083038186803b158015610e8057600080fd5b505af4158015610e94573d6000803e3d6000fd5b5050505050565b6040517fc87de7f400000000000000000000000000000000000000000000000000000000815260016004820152602481018390526044810182905273__$0f118c52967a3847a37f0a2ef02ffcee04$__9063c87de7f4906064015b60006040518083038186803b158015610f0e57600080fd5b505af4158015610f22573d6000803e3d6000fd5b50505050505050565b6040517f99b0b84700000000000000000000000000000000000000000000000000000000815273__$0f118c52967a3847a37f0a2ef02ffcee04$__906399b0b84790610f809060019086908690600401612da1565b60006040518083038186803b158015610f9857600080fd5b505af4158015610fac573d6000803e3d6000fd5b505050505050565b6040517f510fc50a00000000000000000000000000000000000000000000000000000000815273__$61f169726e973bba1227e0c23d2755f88e$__9063510fc50a90610ef690600190879087908790600401612dd2565b6040517faea7fd0b00000000000000000000000000000000000000000000000000000000815273__$894ce12e79ca3e5683c1b49e363f37fa22$__9063aea7fd0b90610f809060019086908690600401612e16565b6000546001600160a01b031633146110ba5760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610d5e565b6001600160a01b038216600081815260086020908152604091829020805460ff191685151590811790915591519182527f9065599c12c4294d9e2201638226d0d0beb95c228f468c4e7c2bdb8322b6066f910160405180910390a25050565b6040517f13d0c66800000000000000000000000000000000000000000000000000000000815273__$9935b6ea18e0c526c293569ddd26842c9b$__906313d0c66890610ef690600190879087908790600401612f53565b6000546001600160a01b031633146111ca5760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610d5e565b610e9460018686868686611af8565b6040517f3b5d9f2400000000000000000000000000000000000000000000000000000000815273__$a542940934c03bae9a39609192cb25cc3c$__90633b5d9f2490610dd0906001908890889088908890600401612f82565b6000546001600160a01b0316331461128c5760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610d5e565b6112966000611da2565b565b6040517f624526fe00000000000000000000000000000000000000000000000000000000815273__$a542940934c03bae9a39609192cb25cc3c$__9063624526fe906112f39060019089908990899089908990600401612fdc565b60006040518083038186803b15801561130b57600080fd5b505af415801561131f573d6000803e3d6000fd5b505050505050505050565b6000546001600160a01b031633146113845760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610d5e565b611392600185858585611e0a565b50505050565b6040517fd079fbb100000000000000000000000000000000000000000000000000000000815273__$0f118c52967a3847a37f0a2ef02ffcee04$__9063d079fbb190610e6890600190859060040161301f565b6040517f4afbe4c90000000000000000000000000000000000000000000000000000000081526001600482015260248101849052604481018390526064810182905273__$0f118c52967a3847a37f0a2ef02ffcee04$__90634afbe4c990608401610ef6565b6040517fc8f7794300000000000000000000000000000000000000000000000000000000815273__$edce581bb06331cf4dae1387760565e5d1$__9063c8f77943906114b0906001908b908b908b908b908b908b908b90600401613033565b60006040518083038186803b1580156114c857600080fd5b505af41580156114dc573d6000803e3d6000fd5b5050505050505050505050565b6040517fa164de6e00000000000000000000000000000000000000000000000000000000815273__$9935b6ea18e0c526c293569ddd26842c9b$__9063a164de6e90610dd0906001908890889088908890600401612d47565b6000546001600160a01b0316331461159c5760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610d5e565b6113926001858585856120e3565b6000546001600160a01b031633146116045760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610d5e565b61161060018383612231565b5050565b6040517f7333b36900000000000000000000000000000000000000000000000000000000815273__$9935b6ea18e0c526c293569ddd26842c9b$__90637333b369906112f390600190899089908990899089906004016130f7565b6040517f72c9c91c00000000000000000000000000000000000000000000000000000000815273__$a542940934c03bae9a39609192cb25cc3c$__906372c9c91c90610ef690600190879087908790600401613150565b6040805161010081018252600080825260208201819052918101829052606081018290526080810182905260a0810182905260c0810182905260e08101919091526bffffffffffffffffffffffff19821660009081526016602090815260409182902082516101008101845281548152600182015492810192909252600281015467ffffffffffffffff81169383019390935263ffffffff600160401b840481166060840152600160601b840481166080840152600160801b84041660a0830152909160c083019060ff600160a01b9091041660058111156117aa576117aa612adb565b60058111156117bb576117bb612adb565b81526020016003820154815250509050919050565b6000546001600160a01b0316331461182a5760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610d5e565b6001600160a01b0381166118a65760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201527f64647265737300000000000000000000000000000000000000000000000000006064820152608401610d5e565b6118af81611da2565b50565b60008367ffffffffffffffff16116119325760405162461bcd60e51b815260206004820152603060248201527f4465706f7369742064757374207468726573686f6c64206d757374206265206760448201527f726561746572207468616e207a65726f000000000000000000000000000000006064820152608401610d5e565b60008267ffffffffffffffff16116119b25760405162461bcd60e51b815260206004820152603660248201527f4465706f736974207472656173757279206665652064697669736f72206d757360448201527f742062652067726561746572207468616e207a65726f000000000000000000006064820152608401610d5e565b60008167ffffffffffffffff1611611a325760405162461bcd60e51b815260206004820152603560248201527f4465706f736974207472616e73616374696f6e206d617820666565206d75737460448201527f2062652067726561746572207468616e207a65726f00000000000000000000006064820152608401610d5e565b6004840180547fffffffff0000000000000000ffffffffffffffffffffffffffffffffffffffff16600160a01b67ffffffffffffffff868116918202929092179092556005860180548583167fffffffffffffffffffffffffffffffff000000000000000000000000000000009091168117600160401b938616938402179091556040805193845260208401919091528201527f1ced468902ca566e746a3c8c9516af81f8de9f1021c365083be9f2625ebfb7b59060600160405180910390a150505050565b60008467ffffffffffffffff1611611b785760405162461bcd60e51b815260206004820152603460248201527f57616c6c6574206d696e696d756d204254432062616c616e6365206d7573742060448201527f62652067726561746572207468616e207a65726f0000000000000000000000006064820152608401610d5e565b8367ffffffffffffffff168367ffffffffffffffff1611611c015760405162461bcd60e51b815260206004820152603b60248201527f57616c6c6574206d6178696d756d204254432062616c616e6365206d7573742060448201527f62652067726561746572207468616e20746865206d696e696d756d00000000006064820152608401610d5e565b60008167ffffffffffffffff1611611c815760405162461bcd60e51b815260206004820152603560248201527f57616c6c6574206d6178696d756d20425443207472616e73666572206d75737460448201527f2062652067726561746572207468616e207a65726f00000000000000000000006064820152608401610d5e565b60138601805463ffffffff8781166bffffffffffffffffffffffff19909216821764010000000067ffffffffffffffff898116918202929092177fffffffffffffffff000000000000000000000000ffffffffffffffffffffffff16600160601b8984169081027fffffffffffffffff00000000ffffffffffffffffffffffffffffffffffffffff1691909117600160a01b9489169485021790955560148b01805477ffffffffffffffffffffffffffffffffffffffffffffffff16600160c01b938816938402179055604080519485526020850191909152830193909352606082015260808101919091527fe03f8d14d8a0cb9620cd0ed710ac4177c8398da40846aaffcb078ca2cfd088069060a00160405180910390a1505050505050565b600080546001600160a01b038381167fffffffffffffffffffffffff0000000000000000000000000000000000000000831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b60008467ffffffffffffffff1611611e8a5760405162461bcd60e51b815260206004820152603360248201527f526564656d7074696f6e2064757374207468726573686f6c64206d757374206260448201527f652067726561746572207468616e207a65726f000000000000000000000000006064820152608401610d5e565b60008367ffffffffffffffff1611611f0a5760405162461bcd60e51b815260206004820152603960248201527f526564656d7074696f6e207472656173757279206665652064697669736f722060448201527f6d7573742062652067726561746572207468616e207a65726f000000000000006064820152608401610d5e565b60008267ffffffffffffffff1611611f8a5760405162461bcd60e51b815260206004820152603860248201527f526564656d7074696f6e207472616e73616374696f6e206d617820666565206d60448201527f7573742062652067726561746572207468616e207a65726f00000000000000006064820152608401610d5e565b600081116120005760405162461bcd60e51b815260206004820152602c60248201527f526564656d7074696f6e2074696d656f7574206d75737420626520677265617460448201527f6572207468616e207a65726f00000000000000000000000000000000000000006064820152608401610d5e565b6008850180547fffffffff00000000000000000000000000000000ffffffffffffffffffffffff16600160601b67ffffffffffffffff8781169182027fffffffff0000000000000000ffffffffffffffffffffffffffffffffffffffff1692909217600160a01b8784169081029190911790935560098801805467ffffffffffffffff19169286169283179055600a880184905560408051918252602082019390935291820152606081018290527f92c7dd8c8e389aa6dd2d4ed3d2f1848abbaef487207c28f4c5c4990c5116ff1f906080015b60405180910390a15050505050565b606483111561215a5760405162461bcd60e51b815260206004820152603e60248201527f4672617564206e6f74696669657220726577617264206d756c7469706c69657260448201527f206d75737420626520696e207468652072616e6765205b302c203130305d00006064820152608401610d5e565b600082116121d05760405162461bcd60e51b815260206004820152603860248201527f4672617564206368616c6c656e6765206465666561742074696d656f7574206d60448201527f7573742062652067726561746572207468616e207a65726f00000000000000006064820152608401610d5e565b600d8501849055600e8501839055600f8501829055601085018190556040805185815260208101859052908101839052606081018290527f3d5b171ef2601a0b7e9eb653999f8e932fb569e8f84526e1eea05c053063a1d6906080016120d4565b60008267ffffffffffffffff16116122b3576040805162461bcd60e51b81526020600482015260248101919091527f4d6f76696e672066756e6473207472616e73616374696f6e206d617820746f7460448201527f616c20666565206d7573742062652067726561746572207468616e207a65726f6064820152608401610d5e565b60008163ffffffff161161232f5760405162461bcd60e51b815260206004820152602e60248201527f4d6f76696e672066756e64732074696d656f7574206d7573742062652067726560448201527f61746572207468616e207a65726f0000000000000000000000000000000000006064820152608401610d5e565b60088301805467ffffffffffffffff84166bffffffffffffffffffffffff199091168117600160401b63ffffffff8516908102919091179092556040805191825260208201929092527f6871b29495da7552b91b95611e45bc1898b37c7b06fd9e8be0915154b1bac186910160405180910390a1505050565b6000602082840312156123ba57600080fd5b5035919050565b803567ffffffffffffffff811681146123d957600080fd5b919050565b6000806000606084860312156123f357600080fd5b6123fc846123c1565b925061240a602085016123c1565b9150612418604085016123c1565b90509250925092565b60006080828403121561243357600080fd5b50919050565b60006060828403121561243357600080fd5b80356bffffffffffffffffffffffff19811681146123d957600080fd5b60008060008060c0858703121561247e57600080fd5b843567ffffffffffffffff8082111561249657600080fd5b6124a288838901612421565b955060208701359150808211156124b857600080fd5b506124c587828801612439565b9350506124d58660408701612439565b91506124e360a0860161244b565b905092959194509250565b60006020828403121561250057600080fd5b6125098261244b565b9392505050565b60008060006060848603121561252557600080fd5b505081359360208301359350604090920135919050565b6000806080838503121561254f57600080fd5b6125588361244b565b91506125678460208501612439565b90509250929050565b600080600060a0848603121561258557600080fd5b833567ffffffffffffffff8082111561259d57600080fd5b6125a987838801612421565b945060208601359150808211156125bf57600080fd5b506125cc86828701612439565b9250506124188560408601612439565b6000808284036101008112156125f157600080fd5b833567ffffffffffffffff81111561260857600080fd5b61261486828701612421565b93505060e0601f198201121561262957600080fd5b506020830190509250929050565b80356001600160a01b03811681146123d957600080fd5b803580151581146123d957600080fd5b6000806040838503121561267157600080fd5b61267a83612637565b91506125676020840161264e565b60008083601f84011261269a57600080fd5b50813567ffffffffffffffff8111156126b257600080fd5b6020830191508360208285010111156126ca57600080fd5b9250929050565b6000806000604084860312156126e657600080fd5b6126ef8461244b565b9250602084013567ffffffffffffffff81111561270b57600080fd5b61271786828701612688565b9497909650939450505050565b803563ffffffff811681146123d957600080fd5b600080600080600060a0868803121561275057600080fd5b61275986612724565b9450612767602087016123c1565b9350612775604087016123c1565b925061278360608701612724565b9150612791608087016123c1565b90509295509295909350565b60008060008060a085870312156127b357600080fd5b843567ffffffffffffffff8111156127ca57600080fd5b6127d687828801612688565b909550935050602085013591506124e38660408701612439565b60008060008060006060868803121561280857600080fd5b853567ffffffffffffffff8082111561282057600080fd5b61282c89838a01612688565b9097509550602088013591508082111561284557600080fd5b5061285288828901612688565b909450925061279190506040870161264e565b6000806000806080858703121561287b57600080fd5b612884856123c1565b9350612892602086016123c1565b92506128a0604086016123c1565b9396929550929360600135925050565b6000606082840312156128c257600080fd5b6125098383612439565b60008083601f8401126128de57600080fd5b50813567ffffffffffffffff8111156128f657600080fd5b6020830191508360208260051b85010111156126ca57600080fd5b600080600080600080600060e0888a03121561292c57600080fd5b6129358861244b565b96506129448960208a01612439565b9550608088013567ffffffffffffffff8082111561296157600080fd5b61296d8b838c016128cc565b909750955060a08a0135945060c08a013591508082111561298d57600080fd5b5061299a8a828b016128cc565b989b979a50959850939692959293505050565b600080600080608085870312156129c357600080fd5b5050823594602084013594506040840135936060013592509050565b600080604083850312156129f257600080fd5b6129fb836123c1565b915061256760208401612724565b600080600080600060c08688031215612a2157600080fd5b612a2a8661244b565b9450612a398760208801612439565b9350608086013567ffffffffffffffff811115612a5557600080fd5b612a6188828901612688565b9094509250612791905060a087016123c1565b600080600060408486031215612a8957600080fd5b833567ffffffffffffffff811115612aa057600080fd5b612aac86828701612688565b909790965060209590950135949350505050565b600060208284031215612ad257600080fd5b61250982612637565b634e487b7160e01b600052602160045260246000fd5b600061010082019050825182526020830151602083015267ffffffffffffffff6040840151166040830152606083015163ffffffff80821660608501528060808601511660808501528060a08601511660a0850152505060c083015160068110612b6b57634e487b7160e01b600052602160045260246000fd5b8060c08401525060e083015160e083015292915050565b80357fffffffff00000000000000000000000000000000000000000000000000000000811681146123d957600080fd5b6000808335601e19843603018112612bc957600080fd5b830160208101925035905067ffffffffffffffff811115612be957600080fd5b8036038313156126ca57600080fd5b81835281816020850137506000828201602090810191909152601f909101601f19169091010190565b60007fffffffff0000000000000000000000000000000000000000000000000000000080612c4e84612b82565b168452612c5e6020840184612bb2565b60806020870152612c73608087018284612bf8565b915050612c836040850185612bb2565b8683036040880152612c96838284612bf8565b9250505081612ca760608601612b82565b166060860152809250505092915050565b6000612cc48283612bb2565b60608552612cd6606086018284612bf8565b91505060208301356020850152612cf06040840184612bb2565b8583036040870152612d03838284612bf8565b9695505050505050565b8035825263ffffffff612d2260208301612724565b16602083015267ffffffffffffffff612d3d604083016123c1565b1660408301525050565b85815260e060208201526000612d6060e0830187612c21565b8281036040840152612d728187612cb8565b915050612d826060830185612d0d565b6bffffffffffffffffffffffff19831660c08301529695505050505050565b8381526bffffffffffffffffffffffff198316602082015260a08101612dca6040830184612d0d565b949350505050565b84815260c060208201526000612deb60c0830186612c21565b8281036040840152612dfd8186612cb8565b915050612e0d6060830184612d0d565b95945050505050565b6000610120858352806020840152612e3081840186612c21565b91505063ffffffff612e4184612724565b1660408301526001600160a01b03612e5b60208501612637565b16606083015260408301357fffffffffffffffff00000000000000000000000000000000000000000000000081168114612e9457600080fd5b7fffffffffffffffff000000000000000000000000000000000000000000000000166080830152612ec76060840161244b565b6bffffffffffffffffffffffff191660a0830152612ee76080840161244b565b6bffffffffffffffffffffffff191660c0830152612f0760a08401612b82565b7fffffffff000000000000000000000000000000000000000000000000000000001660e0830152612f3a60c08401612637565b6001600160a01b03811661010084015250949350505050565b8481526bffffffffffffffffffffffff1984166020820152606060408201526000612d03606083018486612bf8565b85815260c060208201526000612f9c60c083018688612bf8565b90508360408301528235606083015260208301356080830152604083013560ff8116808214612fca57600080fd5b8060a085015250509695505050505050565b868152608060208201526000612ff6608083018789612bf8565b8281036040840152613009818688612bf8565b9150508215156060830152979650505050505050565b828152608081016125096020830184612d0d565b60006101008083018b845260206bffffffffffffffffffffffff19808d1682870152613062604087018d612d0d565b60a08601939093529088905261012084019189919060005b8a8110156130a35763ffffffff61309085612724565b168552938201939282019260010161307a565b5060c0860189905285840360e087015286845287938201925060005b878110156130e457816130d18661244b565b16845293820193928201926001016130bf565b50919d9c50505050505050505050505050565b8681526bffffffffffffffffffffffff198616602082015261311c6040820186612d0d565b60e060a0820152600061313360e083018587612bf8565b905067ffffffffffffffff831660c0830152979650505050505050565b84815260606020820152600061316a606083018587612bf8565b90508260408301529594505050505056fea2646970667358221220e377e65e52dc04519ee2488f14d73cbab919e3aab4ff78aa676e730f5206fb2464736f6c63430008090033",
|
|
1920
|
+
"deployedBytecode": "0x6080604052600436106102c65760003560e01c806375b922d111610179578063b34b3216116100d6578063d6eccdf01161008a578063e53c0b5511610064578063e53c0b5514610c82578063e65e19d514610cbb578063f2fde38b14610ce857600080fd5b8063d6eccdf014610c11578063d95027b714610c31578063ded1d24a14610c5157600080fd5b8063be05abe3116100bb578063be05abe314610b6b578063c42b64d014610ba5578063d3ecfd0c14610bf157600080fd5b8063b34b321614610b2b578063bbeac4bf14610b4b57600080fd5b8063a8fa0f421161012d578063abaeed8f11610112578063abaeed8f1461096d578063b02c43d01461098d578063b2146cd614610aeb57600080fd5b8063a8fa0f421461091a578063a9de2f3a1461093a57600080fd5b80638da5cb5b1161015e5780638da5cb5b146108bc57806396db2537146108da578063a145e2d5146108fa57600080fd5b806375b922d11461086357806377145f211461089c57600080fd5b806359a9d90a1161022757806367f27247116101db5780636d02b43c116101c05780636d02b43c146107e65780636e70ce41146107f9578063715018a61461084e57600080fd5b806367f27247146107a657806368763f1e146107c657600080fd5b806360d712fc1161020c57806360d712fc146106c457806361ccf97a146106e457806361d027b31461077457600080fd5b806359a9d90a146106845780635c0b4812146106a457600080fd5b80632f429b641161027e57806333e957cb1161026357806333e957cb146105655780633dce981214610644578063575e42791461066457600080fd5b80632f429b6414610525578063319a33a91461054557600080fd5b806317c96400116102af57806317c96400146104b357806324028c11146104d55780632bb818c21461050757600080fd5b806303d952f7146102cb5780630b6ba19d146103f5575b600080fd5b3480156102d757600080fd5b506103896102e63660046123a8565b6040805160a081018252600080825260208201819052918101829052606081018290526080810191909152506000908152600c6020908152604091829020825160a08101845281546001600160a01b0381168252600160a01b900467ffffffffffffffff9081169382019390935260019091015480831693820193909352600160401b83049091166060820152600160801b90910463ffffffff16608082015290565b6040516103ec9190600060a0820190506001600160a01b038351168252602083015167ffffffffffffffff8082166020850152806040860151166040850152806060860151166060850152505063ffffffff608084015116608083015292915050565b60405180910390f35b34801561040157600080fd5b506103896104103660046123a8565b6040805160a081018252600080825260208201819052918101829052606081018290526080810191909152506000908152600d6020908152604091829020825160a08101845281546001600160a01b0381168252600160a01b900467ffffffffffffffff9081169382019390935260019091015480831693820193909352600160401b83049091166060820152600160801b90910463ffffffff16608082015290565b3480156104bf57600080fd5b506104d36104ce3660046123de565b610d08565b005b3480156104e157600080fd5b50601554600160a01b900463ffffffff1660405163ffffffff90911681526020016103ec565b34801561051357600080fd5b506004546040519081526020016103ec565b34801561053157600080fd5b506104d3610540366004612468565b610d79565b34801561055157600080fd5b506104d36105603660046124ee565b610e06565b34801561057157600080fd5b506106006105803660046123a8565b60408051608081018252600080825260208201819052918101829052606081019190915250600090815260126020908152604091829020825160808101845281546001600160a01b031681526001820154928101929092526002015463ffffffff81169282019290925264010000000090910460ff161515606082015290565b6040516103ec919081516001600160a01b031681526020808301519082015260408083015163ffffffff169082015260609182015115159181019190915260800190565b34801561065057600080fd5b506104d361065f366004612510565b610e9b565b34801561067057600080fd5b506104d361067f36600461253c565b610f2b565b34801561069057600080fd5b506104d361069f366004612570565b610fb4565b3480156106b057600080fd5b506104d36106bf3660046125dc565b61100b565b3480156106d057600080fd5b506104d36106df36600461265e565b611060565b3480156106f057600080fd5b5061073860145460155463ffffffff8083169367ffffffffffffffff6401000000008504811694600160601b8104821694600160a01b90910490931692600160c01b90041690565b6040805163ffffffff968716815267ffffffffffffffff958616602082015293851690840152931660608201529116608082015260a0016103ec565b34801561078057600080fd5b506005546001600160a01b03165b6040516001600160a01b0390911681526020016103ec565b3480156107b257600080fd5b506104d36107c13660046126d1565b611119565b3480156107d257600080fd5b506104d36107e1366004612738565b611170565b6104d36107f436600461279d565b6111d9565b34801561080557600080fd5b50600954600a54600b546040805167ffffffffffffffff600160601b860481168252600160a01b90950485166020820152939092169183019190915260608201526080016103ec565b34801561085a57600080fd5b506104d3611232565b34801561086f57600080fd5b50600e54600f546010546011546040805194855260208501939093529183015260608201526080016103ec565b3480156108a857600080fd5b506104d36108b73660046127f0565b611298565b3480156108c857600080fd5b506000546001600160a01b031661078e565b3480156108e657600080fd5b506104d36108f5366004612865565b61132a565b34801561090657600080fd5b506104d36109153660046128b0565b611398565b34801561092657600080fd5b506104d3610935366004612510565b6113eb565b34801561094657600080fd5b50600154600254604080516001600160a01b039384168152929091166020830152016103ec565b34801561097957600080fd5b506104d3610988366004612911565b611451565b34801561099957600080fd5b50610a756109a83660046123a8565b6040805160c081018252600080825260208201819052918101829052606081018290526080810182905260a081019190915250600090815260076020908152604091829020825160c08101845281546001600160a01b03808216835267ffffffffffffffff600160a01b80840482169685019690965263ffffffff7c0100000000000000000000000000000000000000000000000000000000938490048116978501979097526001949094015490811660608401529384049092166080820152910490911660a082015290565b6040516103ec9190600060c0820190506001600160a01b03808451168352602084015167ffffffffffffffff80821660208601526040860151915063ffffffff80831660408701528360608801511660608701528160808801511660808701528060a08801511660a08701525050505092915050565b348015610af757600080fd5b50610b1b610b063660046123a8565b60009081526013602052604090205460ff1690565b60405190151581526020016103ec565b348015610b3757600080fd5b506104d3610b46366004612468565b6114e9565b348015610b5757600080fd5b506104d3610b663660046129ad565b611542565b348015610b7757600080fd5b506009546040805167ffffffffffffffff83168152600160401b90920463ffffffff166020830152016103ec565b348015610bb157600080fd5b5060055460065460408051600160a01b90930467ffffffffffffffff90811684528083166020850152600160401b909204909116908201526060016103ec565b348015610bfd57600080fd5b506104d3610c0c3660046129df565b6115aa565b348015610c1d57600080fd5b506104d3610c2c366004612a09565b611614565b348015610c3d57600080fd5b506104d3610c4c366004612a74565b61166f565b348015610c5d57600080fd5b5060155460601b6040516bffffffffffffffffffffffff1990911681526020016103ec565b348015610c8e57600080fd5b50610b1b610c9d366004612ac0565b6001600160a01b031660009081526008602052604090205460ff1690565b348015610cc757600080fd5b50610cdb610cd63660046124ee565b6116c6565b6040516103ec9190612af1565b348015610cf457600080fd5b506104d3610d03366004612ac0565b6117d0565b6000546001600160a01b03163314610d675760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657260448201526064015b60405180910390fd5b610d7460018484846118b2565b505050565b6040517e92bac900000000000000000000000000000000000000000000000000000000815273__$edce581bb06331cf4dae1387760565e5d1$__906292bac990610dd0906001908890889088908890600401612d47565b60006040518083038186803b158015610de857600080fd5b505af4158015610dfc573d6000803e3d6000fd5b5050505050505050565b6040517fb45b31d5000000000000000000000000000000000000000000000000000000008152600160048201526bffffffffffffffffffffffff198216602482015273__$edce581bb06331cf4dae1387760565e5d1$__9063b45b31d5906044015b60006040518083038186803b158015610e8057600080fd5b505af4158015610e94573d6000803e3d6000fd5b5050505050565b6040517fc87de7f400000000000000000000000000000000000000000000000000000000815260016004820152602481018390526044810182905273__$0f118c52967a3847a37f0a2ef02ffcee04$__9063c87de7f4906064015b60006040518083038186803b158015610f0e57600080fd5b505af4158015610f22573d6000803e3d6000fd5b50505050505050565b6040517f99b0b84700000000000000000000000000000000000000000000000000000000815273__$0f118c52967a3847a37f0a2ef02ffcee04$__906399b0b84790610f809060019086908690600401612da1565b60006040518083038186803b158015610f9857600080fd5b505af4158015610fac573d6000803e3d6000fd5b505050505050565b6040517f510fc50a00000000000000000000000000000000000000000000000000000000815273__$61f169726e973bba1227e0c23d2755f88e$__9063510fc50a90610ef690600190879087908790600401612dd2565b6040517faea7fd0b00000000000000000000000000000000000000000000000000000000815273__$894ce12e79ca3e5683c1b49e363f37fa22$__9063aea7fd0b90610f809060019086908690600401612e16565b6000546001600160a01b031633146110ba5760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610d5e565b6001600160a01b038216600081815260086020908152604091829020805460ff191685151590811790915591519182527f9065599c12c4294d9e2201638226d0d0beb95c228f468c4e7c2bdb8322b6066f910160405180910390a25050565b6040517f13d0c66800000000000000000000000000000000000000000000000000000000815273__$9935b6ea18e0c526c293569ddd26842c9b$__906313d0c66890610ef690600190879087908790600401612f53565b6000546001600160a01b031633146111ca5760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610d5e565b610e9460018686868686611af8565b6040517f3b5d9f2400000000000000000000000000000000000000000000000000000000815273__$a542940934c03bae9a39609192cb25cc3c$__90633b5d9f2490610dd0906001908890889088908890600401612f82565b6000546001600160a01b0316331461128c5760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610d5e565b6112966000611da2565b565b6040517f624526fe00000000000000000000000000000000000000000000000000000000815273__$a542940934c03bae9a39609192cb25cc3c$__9063624526fe906112f39060019089908990899089908990600401612fdc565b60006040518083038186803b15801561130b57600080fd5b505af415801561131f573d6000803e3d6000fd5b505050505050505050565b6000546001600160a01b031633146113845760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610d5e565b611392600185858585611e0a565b50505050565b6040517fd079fbb100000000000000000000000000000000000000000000000000000000815273__$0f118c52967a3847a37f0a2ef02ffcee04$__9063d079fbb190610e6890600190859060040161301f565b6040517f4afbe4c90000000000000000000000000000000000000000000000000000000081526001600482015260248101849052604481018390526064810182905273__$0f118c52967a3847a37f0a2ef02ffcee04$__90634afbe4c990608401610ef6565b6040517fc8f7794300000000000000000000000000000000000000000000000000000000815273__$edce581bb06331cf4dae1387760565e5d1$__9063c8f77943906114b0906001908b908b908b908b908b908b908b90600401613033565b60006040518083038186803b1580156114c857600080fd5b505af41580156114dc573d6000803e3d6000fd5b5050505050505050505050565b6040517fa164de6e00000000000000000000000000000000000000000000000000000000815273__$9935b6ea18e0c526c293569ddd26842c9b$__9063a164de6e90610dd0906001908890889088908890600401612d47565b6000546001600160a01b0316331461159c5760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610d5e565b6113926001858585856120e3565b6000546001600160a01b031633146116045760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610d5e565b61161060018383612231565b5050565b6040517f7333b36900000000000000000000000000000000000000000000000000000000815273__$9935b6ea18e0c526c293569ddd26842c9b$__90637333b369906112f390600190899089908990899089906004016130f7565b6040517f72c9c91c00000000000000000000000000000000000000000000000000000000815273__$a542940934c03bae9a39609192cb25cc3c$__906372c9c91c90610ef690600190879087908790600401613150565b6040805161010081018252600080825260208201819052918101829052606081018290526080810182905260a0810182905260c0810182905260e08101919091526bffffffffffffffffffffffff19821660009081526016602090815260409182902082516101008101845281548152600182015492810192909252600281015467ffffffffffffffff81169383019390935263ffffffff600160401b840481166060840152600160601b840481166080840152600160801b84041660a0830152909160c083019060ff600160a01b9091041660058111156117aa576117aa612adb565b60058111156117bb576117bb612adb565b81526020016003820154815250509050919050565b6000546001600160a01b0316331461182a5760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610d5e565b6001600160a01b0381166118a65760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201527f64647265737300000000000000000000000000000000000000000000000000006064820152608401610d5e565b6118af81611da2565b50565b60008367ffffffffffffffff16116119325760405162461bcd60e51b815260206004820152603060248201527f4465706f7369742064757374207468726573686f6c64206d757374206265206760448201527f726561746572207468616e207a65726f000000000000000000000000000000006064820152608401610d5e565b60008267ffffffffffffffff16116119b25760405162461bcd60e51b815260206004820152603660248201527f4465706f736974207472656173757279206665652064697669736f72206d757360448201527f742062652067726561746572207468616e207a65726f000000000000000000006064820152608401610d5e565b60008167ffffffffffffffff1611611a325760405162461bcd60e51b815260206004820152603560248201527f4465706f736974207472616e73616374696f6e206d617820666565206d75737460448201527f2062652067726561746572207468616e207a65726f00000000000000000000006064820152608401610d5e565b6004840180547fffffffff0000000000000000ffffffffffffffffffffffffffffffffffffffff16600160a01b67ffffffffffffffff868116918202929092179092556005860180548583167fffffffffffffffffffffffffffffffff000000000000000000000000000000009091168117600160401b938616938402179091556040805193845260208401919091528201527f1ced468902ca566e746a3c8c9516af81f8de9f1021c365083be9f2625ebfb7b59060600160405180910390a150505050565b60008467ffffffffffffffff1611611b785760405162461bcd60e51b815260206004820152603460248201527f57616c6c6574206d696e696d756d204254432062616c616e6365206d7573742060448201527f62652067726561746572207468616e207a65726f0000000000000000000000006064820152608401610d5e565b8367ffffffffffffffff168367ffffffffffffffff1611611c015760405162461bcd60e51b815260206004820152603b60248201527f57616c6c6574206d6178696d756d204254432062616c616e6365206d7573742060448201527f62652067726561746572207468616e20746865206d696e696d756d00000000006064820152608401610d5e565b60008167ffffffffffffffff1611611c815760405162461bcd60e51b815260206004820152603560248201527f57616c6c6574206d6178696d756d20425443207472616e73666572206d75737460448201527f2062652067726561746572207468616e207a65726f00000000000000000000006064820152608401610d5e565b60138601805463ffffffff8781166bffffffffffffffffffffffff19909216821764010000000067ffffffffffffffff898116918202929092177fffffffffffffffff000000000000000000000000ffffffffffffffffffffffff16600160601b8984169081027fffffffffffffffff00000000ffffffffffffffffffffffffffffffffffffffff1691909117600160a01b9489169485021790955560148b01805477ffffffffffffffffffffffffffffffffffffffffffffffff16600160c01b938816938402179055604080519485526020850191909152830193909352606082015260808101919091527fe03f8d14d8a0cb9620cd0ed710ac4177c8398da40846aaffcb078ca2cfd088069060a00160405180910390a1505050505050565b600080546001600160a01b038381167fffffffffffffffffffffffff0000000000000000000000000000000000000000831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b60008467ffffffffffffffff1611611e8a5760405162461bcd60e51b815260206004820152603360248201527f526564656d7074696f6e2064757374207468726573686f6c64206d757374206260448201527f652067726561746572207468616e207a65726f000000000000000000000000006064820152608401610d5e565b60008367ffffffffffffffff1611611f0a5760405162461bcd60e51b815260206004820152603960248201527f526564656d7074696f6e207472656173757279206665652064697669736f722060448201527f6d7573742062652067726561746572207468616e207a65726f000000000000006064820152608401610d5e565b60008267ffffffffffffffff1611611f8a5760405162461bcd60e51b815260206004820152603860248201527f526564656d7074696f6e207472616e73616374696f6e206d617820666565206d60448201527f7573742062652067726561746572207468616e207a65726f00000000000000006064820152608401610d5e565b600081116120005760405162461bcd60e51b815260206004820152602c60248201527f526564656d7074696f6e2074696d656f7574206d75737420626520677265617460448201527f6572207468616e207a65726f00000000000000000000000000000000000000006064820152608401610d5e565b6008850180547fffffffff00000000000000000000000000000000ffffffffffffffffffffffff16600160601b67ffffffffffffffff8781169182027fffffffff0000000000000000ffffffffffffffffffffffffffffffffffffffff1692909217600160a01b8784169081029190911790935560098801805467ffffffffffffffff19169286169283179055600a880184905560408051918252602082019390935291820152606081018290527f92c7dd8c8e389aa6dd2d4ed3d2f1848abbaef487207c28f4c5c4990c5116ff1f906080015b60405180910390a15050505050565b606483111561215a5760405162461bcd60e51b815260206004820152603e60248201527f4672617564206e6f74696669657220726577617264206d756c7469706c69657260448201527f206d75737420626520696e207468652072616e6765205b302c203130305d00006064820152608401610d5e565b600082116121d05760405162461bcd60e51b815260206004820152603860248201527f4672617564206368616c6c656e6765206465666561742074696d656f7574206d60448201527f7573742062652067726561746572207468616e207a65726f00000000000000006064820152608401610d5e565b600d8501849055600e8501839055600f8501829055601085018190556040805185815260208101859052908101839052606081018290527f3d5b171ef2601a0b7e9eb653999f8e932fb569e8f84526e1eea05c053063a1d6906080016120d4565b60008267ffffffffffffffff16116122b3576040805162461bcd60e51b81526020600482015260248101919091527f4d6f76696e672066756e6473207472616e73616374696f6e206d617820746f7460448201527f616c20666565206d7573742062652067726561746572207468616e207a65726f6064820152608401610d5e565b60008163ffffffff161161232f5760405162461bcd60e51b815260206004820152602e60248201527f4d6f76696e672066756e64732074696d656f7574206d7573742062652067726560448201527f61746572207468616e207a65726f0000000000000000000000000000000000006064820152608401610d5e565b60088301805467ffffffffffffffff84166bffffffffffffffffffffffff199091168117600160401b63ffffffff8516908102919091179092556040805191825260208201929092527f6871b29495da7552b91b95611e45bc1898b37c7b06fd9e8be0915154b1bac186910160405180910390a1505050565b6000602082840312156123ba57600080fd5b5035919050565b803567ffffffffffffffff811681146123d957600080fd5b919050565b6000806000606084860312156123f357600080fd5b6123fc846123c1565b925061240a602085016123c1565b9150612418604085016123c1565b90509250925092565b60006080828403121561243357600080fd5b50919050565b60006060828403121561243357600080fd5b80356bffffffffffffffffffffffff19811681146123d957600080fd5b60008060008060c0858703121561247e57600080fd5b843567ffffffffffffffff8082111561249657600080fd5b6124a288838901612421565b955060208701359150808211156124b857600080fd5b506124c587828801612439565b9350506124d58660408701612439565b91506124e360a0860161244b565b905092959194509250565b60006020828403121561250057600080fd5b6125098261244b565b9392505050565b60008060006060848603121561252557600080fd5b505081359360208301359350604090920135919050565b6000806080838503121561254f57600080fd5b6125588361244b565b91506125678460208501612439565b90509250929050565b600080600060a0848603121561258557600080fd5b833567ffffffffffffffff8082111561259d57600080fd5b6125a987838801612421565b945060208601359150808211156125bf57600080fd5b506125cc86828701612439565b9250506124188560408601612439565b6000808284036101008112156125f157600080fd5b833567ffffffffffffffff81111561260857600080fd5b61261486828701612421565b93505060e0601f198201121561262957600080fd5b506020830190509250929050565b80356001600160a01b03811681146123d957600080fd5b803580151581146123d957600080fd5b6000806040838503121561267157600080fd5b61267a83612637565b91506125676020840161264e565b60008083601f84011261269a57600080fd5b50813567ffffffffffffffff8111156126b257600080fd5b6020830191508360208285010111156126ca57600080fd5b9250929050565b6000806000604084860312156126e657600080fd5b6126ef8461244b565b9250602084013567ffffffffffffffff81111561270b57600080fd5b61271786828701612688565b9497909650939450505050565b803563ffffffff811681146123d957600080fd5b600080600080600060a0868803121561275057600080fd5b61275986612724565b9450612767602087016123c1565b9350612775604087016123c1565b925061278360608701612724565b9150612791608087016123c1565b90509295509295909350565b60008060008060a085870312156127b357600080fd5b843567ffffffffffffffff8111156127ca57600080fd5b6127d687828801612688565b909550935050602085013591506124e38660408701612439565b60008060008060006060868803121561280857600080fd5b853567ffffffffffffffff8082111561282057600080fd5b61282c89838a01612688565b9097509550602088013591508082111561284557600080fd5b5061285288828901612688565b909450925061279190506040870161264e565b6000806000806080858703121561287b57600080fd5b612884856123c1565b9350612892602086016123c1565b92506128a0604086016123c1565b9396929550929360600135925050565b6000606082840312156128c257600080fd5b6125098383612439565b60008083601f8401126128de57600080fd5b50813567ffffffffffffffff8111156128f657600080fd5b6020830191508360208260051b85010111156126ca57600080fd5b600080600080600080600060e0888a03121561292c57600080fd5b6129358861244b565b96506129448960208a01612439565b9550608088013567ffffffffffffffff8082111561296157600080fd5b61296d8b838c016128cc565b909750955060a08a0135945060c08a013591508082111561298d57600080fd5b5061299a8a828b016128cc565b989b979a50959850939692959293505050565b600080600080608085870312156129c357600080fd5b5050823594602084013594506040840135936060013592509050565b600080604083850312156129f257600080fd5b6129fb836123c1565b915061256760208401612724565b600080600080600060c08688031215612a2157600080fd5b612a2a8661244b565b9450612a398760208801612439565b9350608086013567ffffffffffffffff811115612a5557600080fd5b612a6188828901612688565b9094509250612791905060a087016123c1565b600080600060408486031215612a8957600080fd5b833567ffffffffffffffff811115612aa057600080fd5b612aac86828701612688565b909790965060209590950135949350505050565b600060208284031215612ad257600080fd5b61250982612637565b634e487b7160e01b600052602160045260246000fd5b600061010082019050825182526020830151602083015267ffffffffffffffff6040840151166040830152606083015163ffffffff80821660608501528060808601511660808501528060a08601511660a0850152505060c083015160068110612b6b57634e487b7160e01b600052602160045260246000fd5b8060c08401525060e083015160e083015292915050565b80357fffffffff00000000000000000000000000000000000000000000000000000000811681146123d957600080fd5b6000808335601e19843603018112612bc957600080fd5b830160208101925035905067ffffffffffffffff811115612be957600080fd5b8036038313156126ca57600080fd5b81835281816020850137506000828201602090810191909152601f909101601f19169091010190565b60007fffffffff0000000000000000000000000000000000000000000000000000000080612c4e84612b82565b168452612c5e6020840184612bb2565b60806020870152612c73608087018284612bf8565b915050612c836040850185612bb2565b8683036040880152612c96838284612bf8565b9250505081612ca760608601612b82565b166060860152809250505092915050565b6000612cc48283612bb2565b60608552612cd6606086018284612bf8565b91505060208301356020850152612cf06040840184612bb2565b8583036040870152612d03838284612bf8565b9695505050505050565b8035825263ffffffff612d2260208301612724565b16602083015267ffffffffffffffff612d3d604083016123c1565b1660408301525050565b85815260e060208201526000612d6060e0830187612c21565b8281036040840152612d728187612cb8565b915050612d826060830185612d0d565b6bffffffffffffffffffffffff19831660c08301529695505050505050565b8381526bffffffffffffffffffffffff198316602082015260a08101612dca6040830184612d0d565b949350505050565b84815260c060208201526000612deb60c0830186612c21565b8281036040840152612dfd8186612cb8565b915050612e0d6060830184612d0d565b95945050505050565b6000610120858352806020840152612e3081840186612c21565b91505063ffffffff612e4184612724565b1660408301526001600160a01b03612e5b60208501612637565b16606083015260408301357fffffffffffffffff00000000000000000000000000000000000000000000000081168114612e9457600080fd5b7fffffffffffffffff000000000000000000000000000000000000000000000000166080830152612ec76060840161244b565b6bffffffffffffffffffffffff191660a0830152612ee76080840161244b565b6bffffffffffffffffffffffff191660c0830152612f0760a08401612b82565b7fffffffff000000000000000000000000000000000000000000000000000000001660e0830152612f3a60c08401612637565b6001600160a01b03811661010084015250949350505050565b8481526bffffffffffffffffffffffff1984166020820152606060408201526000612d03606083018486612bf8565b85815260c060208201526000612f9c60c083018688612bf8565b90508360408301528235606083015260208301356080830152604083013560ff8116808214612fca57600080fd5b8060a085015250509695505050505050565b868152608060208201526000612ff6608083018789612bf8565b8281036040840152613009818688612bf8565b9150508215156060830152979650505050505050565b828152608081016125096020830184612d0d565b60006101008083018b845260206bffffffffffffffffffffffff19808d1682870152613062604087018d612d0d565b60a08601939093529088905261012084019189919060005b8a8110156130a35763ffffffff61309085612724565b168552938201939282019260010161307a565b5060c0860189905285840360e087015286845287938201925060005b878110156130e457816130d18661244b565b16845293820193928201926001016130bf565b50919d9c50505050505050505050505050565b8681526bffffffffffffffffffffffff198616602082015261311c6040820186612d0d565b60e060a0820152600061313360e083018587612bf8565b905067ffffffffffffffff831660c0830152979650505050505050565b84815260606020820152600061316a606083018587612bf8565b90508260408301529594505050505056fea2646970667358221220e377e65e52dc04519ee2488f14d73cbab919e3aab4ff78aa676e730f5206fb2464736f6c63430008090033",
|
|
1621
1921
|
"linkReferences": {
|
|
1622
1922
|
"contracts/bridge/Deposit.sol": {
|
|
1623
1923
|
"Deposit": [
|
|
1624
1924
|
{
|
|
1625
1925
|
"length": 20,
|
|
1626
|
-
"start":
|
|
1926
|
+
"start": 5133
|
|
1627
1927
|
}
|
|
1628
1928
|
]
|
|
1629
1929
|
},
|
|
@@ -1631,15 +1931,15 @@
|
|
|
1631
1931
|
"Fraud": [
|
|
1632
1932
|
{
|
|
1633
1933
|
"length": 20,
|
|
1634
|
-
"start":
|
|
1934
|
+
"start": 5595
|
|
1635
1935
|
},
|
|
1636
1936
|
{
|
|
1637
1937
|
"length": 20,
|
|
1638
|
-
"start":
|
|
1938
|
+
"start": 5786
|
|
1639
1939
|
},
|
|
1640
1940
|
{
|
|
1641
1941
|
"length": 20,
|
|
1642
|
-
"start":
|
|
1942
|
+
"start": 6769
|
|
1643
1943
|
}
|
|
1644
1944
|
]
|
|
1645
1945
|
},
|
|
@@ -1647,23 +1947,31 @@
|
|
|
1647
1947
|
"MovingFunds": [
|
|
1648
1948
|
{
|
|
1649
1949
|
"length": 20,
|
|
1650
|
-
"start":
|
|
1950
|
+
"start": 4474
|
|
1951
|
+
},
|
|
1952
|
+
{
|
|
1953
|
+
"length": 20,
|
|
1954
|
+
"start": 4644
|
|
1955
|
+
},
|
|
1956
|
+
{
|
|
1957
|
+
"length": 20,
|
|
1958
|
+
"start": 6227
|
|
1651
1959
|
}
|
|
1652
1960
|
]
|
|
1653
1961
|
},
|
|
1654
|
-
"contracts/bridge/
|
|
1655
|
-
"
|
|
1962
|
+
"contracts/bridge/Redemption.sol": {
|
|
1963
|
+
"Redemption": [
|
|
1656
1964
|
{
|
|
1657
1965
|
"length": 20,
|
|
1658
|
-
"start":
|
|
1966
|
+
"start": 5403
|
|
1659
1967
|
},
|
|
1660
1968
|
{
|
|
1661
1969
|
"length": 20,
|
|
1662
|
-
"start":
|
|
1970
|
+
"start": 6379
|
|
1663
1971
|
},
|
|
1664
1972
|
{
|
|
1665
1973
|
"length": 20,
|
|
1666
|
-
"start":
|
|
1974
|
+
"start": 6678
|
|
1667
1975
|
}
|
|
1668
1976
|
]
|
|
1669
1977
|
},
|
|
@@ -1671,7 +1979,7 @@
|
|
|
1671
1979
|
"Sweep": [
|
|
1672
1980
|
{
|
|
1673
1981
|
"length": 20,
|
|
1674
|
-
"start":
|
|
1982
|
+
"start": 5046
|
|
1675
1983
|
}
|
|
1676
1984
|
]
|
|
1677
1985
|
},
|
|
@@ -1679,19 +1987,19 @@
|
|
|
1679
1987
|
"Wallets": [
|
|
1680
1988
|
{
|
|
1681
1989
|
"length": 20,
|
|
1682
|
-
"start":
|
|
1990
|
+
"start": 4786
|
|
1683
1991
|
},
|
|
1684
1992
|
{
|
|
1685
1993
|
"length": 20,
|
|
1686
|
-
"start":
|
|
1994
|
+
"start": 4909
|
|
1687
1995
|
},
|
|
1688
1996
|
{
|
|
1689
1997
|
"length": 20,
|
|
1690
|
-
"start":
|
|
1998
|
+
"start": 6042
|
|
1691
1999
|
},
|
|
1692
2000
|
{
|
|
1693
2001
|
"length": 20,
|
|
1694
|
-
"start":
|
|
2002
|
+
"start": 6153
|
|
1695
2003
|
}
|
|
1696
2004
|
]
|
|
1697
2005
|
}
|
|
@@ -1701,7 +2009,7 @@
|
|
|
1701
2009
|
"Deposit": [
|
|
1702
2010
|
{
|
|
1703
2011
|
"length": 20,
|
|
1704
|
-
"start":
|
|
2012
|
+
"start": 4147
|
|
1705
2013
|
}
|
|
1706
2014
|
]
|
|
1707
2015
|
},
|
|
@@ -1709,15 +2017,15 @@
|
|
|
1709
2017
|
"Fraud": [
|
|
1710
2018
|
{
|
|
1711
2019
|
"length": 20,
|
|
1712
|
-
"start":
|
|
2020
|
+
"start": 4609
|
|
1713
2021
|
},
|
|
1714
2022
|
{
|
|
1715
2023
|
"length": 20,
|
|
1716
|
-
"start":
|
|
2024
|
+
"start": 4800
|
|
1717
2025
|
},
|
|
1718
2026
|
{
|
|
1719
2027
|
"length": 20,
|
|
1720
|
-
"start":
|
|
2028
|
+
"start": 5783
|
|
1721
2029
|
}
|
|
1722
2030
|
]
|
|
1723
2031
|
},
|
|
@@ -1725,23 +2033,31 @@
|
|
|
1725
2033
|
"MovingFunds": [
|
|
1726
2034
|
{
|
|
1727
2035
|
"length": 20,
|
|
1728
|
-
"start":
|
|
2036
|
+
"start": 3488
|
|
2037
|
+
},
|
|
2038
|
+
{
|
|
2039
|
+
"length": 20,
|
|
2040
|
+
"start": 3658
|
|
2041
|
+
},
|
|
2042
|
+
{
|
|
2043
|
+
"length": 20,
|
|
2044
|
+
"start": 5241
|
|
1729
2045
|
}
|
|
1730
2046
|
]
|
|
1731
2047
|
},
|
|
1732
|
-
"contracts/bridge/
|
|
1733
|
-
"
|
|
2048
|
+
"contracts/bridge/Redemption.sol": {
|
|
2049
|
+
"Redemption": [
|
|
1734
2050
|
{
|
|
1735
2051
|
"length": 20,
|
|
1736
|
-
"start":
|
|
2052
|
+
"start": 4417
|
|
1737
2053
|
},
|
|
1738
2054
|
{
|
|
1739
2055
|
"length": 20,
|
|
1740
|
-
"start":
|
|
2056
|
+
"start": 5393
|
|
1741
2057
|
},
|
|
1742
2058
|
{
|
|
1743
2059
|
"length": 20,
|
|
1744
|
-
"start":
|
|
2060
|
+
"start": 5692
|
|
1745
2061
|
}
|
|
1746
2062
|
]
|
|
1747
2063
|
},
|
|
@@ -1749,7 +2065,7 @@
|
|
|
1749
2065
|
"Sweep": [
|
|
1750
2066
|
{
|
|
1751
2067
|
"length": 20,
|
|
1752
|
-
"start":
|
|
2068
|
+
"start": 4060
|
|
1753
2069
|
}
|
|
1754
2070
|
]
|
|
1755
2071
|
},
|
|
@@ -1757,19 +2073,19 @@
|
|
|
1757
2073
|
"Wallets": [
|
|
1758
2074
|
{
|
|
1759
2075
|
"length": 20,
|
|
1760
|
-
"start":
|
|
2076
|
+
"start": 3800
|
|
1761
2077
|
},
|
|
1762
2078
|
{
|
|
1763
2079
|
"length": 20,
|
|
1764
|
-
"start":
|
|
2080
|
+
"start": 3923
|
|
1765
2081
|
},
|
|
1766
2082
|
{
|
|
1767
2083
|
"length": 20,
|
|
1768
|
-
"start":
|
|
2084
|
+
"start": 5056
|
|
1769
2085
|
},
|
|
1770
2086
|
{
|
|
1771
2087
|
"length": 20,
|
|
1772
|
-
"start":
|
|
2088
|
+
"start": 5167
|
|
1773
2089
|
}
|
|
1774
2090
|
]
|
|
1775
2091
|
}
|