@keep-network/tbtc-v2 0.1.1-dev.41 → 0.1.1-dev.44

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.
Files changed (81) hide show
  1. package/artifacts/Bank.json +742 -0
  2. package/artifacts/Bridge.json +2914 -0
  3. package/artifacts/Deposit.json +117 -0
  4. package/artifacts/EcdsaDkgValidator.json +532 -0
  5. package/artifacts/EcdsaInactivity.json +156 -0
  6. package/artifacts/Fraud.json +153 -0
  7. package/artifacts/KeepRegistry.json +99 -0
  8. package/artifacts/KeepStake.json +286 -0
  9. package/artifacts/KeepToken.json +711 -0
  10. package/artifacts/KeepTokenStaking.json +483 -0
  11. package/artifacts/MovingFunds.json +137 -0
  12. package/artifacts/NuCypherStakingEscrow.json +256 -0
  13. package/artifacts/NuCypherToken.json +711 -0
  14. package/artifacts/RandomBeaconStub.json +141 -0
  15. package/artifacts/Redemption.json +161 -0
  16. package/artifacts/ReimbursementPool.json +509 -0
  17. package/artifacts/Relay.json +123 -0
  18. package/artifacts/SortitionPool.json +944 -0
  19. package/artifacts/Sweep.json +76 -0
  20. package/artifacts/T.json +1148 -0
  21. package/artifacts/TBTC.json +21 -21
  22. package/artifacts/TBTCToken.json +21 -21
  23. package/artifacts/TokenStaking.json +2288 -0
  24. package/artifacts/TokenholderGovernor.json +1795 -0
  25. package/artifacts/TokenholderTimelock.json +1058 -0
  26. package/artifacts/VendingMachine.json +24 -24
  27. package/artifacts/VendingMachineKeep.json +400 -0
  28. package/artifacts/VendingMachineNuCypher.json +400 -0
  29. package/artifacts/WalletRegistry.json +2709 -0
  30. package/artifacts/WalletRegistryGovernance.json +2364 -0
  31. package/artifacts/Wallets.json +186 -0
  32. package/artifacts/solcInputs/{e9b173393b9fd7287a0bfaa6d4eb4b71.json → bbe44823ec28554a9429cce5cafee035.json} +34 -34
  33. package/build/contracts/GovernanceUtils.sol/GovernanceUtils.dbg.json +1 -1
  34. package/build/contracts/bank/Bank.sol/Bank.dbg.json +1 -1
  35. package/build/contracts/bridge/BitcoinTx.sol/BitcoinTx.dbg.json +1 -1
  36. package/build/contracts/bridge/BitcoinTx.sol/BitcoinTx.json +2 -2
  37. package/build/contracts/bridge/Bridge.sol/Bridge.dbg.json +1 -1
  38. package/build/contracts/bridge/Bridge.sol/Bridge.json +535 -273
  39. package/build/contracts/bridge/BridgeState.sol/BridgeState.dbg.json +1 -1
  40. package/build/contracts/bridge/BridgeState.sol/BridgeState.json +147 -3
  41. package/build/contracts/bridge/Deposit.sol/Deposit.dbg.json +1 -1
  42. package/build/contracts/bridge/Deposit.sol/Deposit.json +2 -2
  43. package/build/contracts/bridge/EcdsaLib.sol/EcdsaLib.dbg.json +1 -1
  44. package/build/contracts/bridge/EcdsaLib.sol/EcdsaLib.json +2 -2
  45. package/build/contracts/bridge/Fraud.sol/Fraud.dbg.json +1 -1
  46. package/build/contracts/bridge/Fraud.sol/Fraud.json +5 -57
  47. package/build/contracts/bridge/IRelay.sol/IRelay.dbg.json +1 -1
  48. package/build/contracts/bridge/MovingFunds.sol/MovingFunds.dbg.json +1 -1
  49. package/build/contracts/bridge/MovingFunds.sol/MovingFunds.json +41 -21
  50. package/build/contracts/bridge/Redemption.sol/OutboundTx.dbg.json +4 -0
  51. package/build/contracts/bridge/{Redeem.sol → Redemption.sol}/OutboundTx.json +3 -3
  52. package/build/contracts/bridge/Redemption.sol/Redemption.dbg.json +4 -0
  53. package/build/contracts/bridge/Redemption.sol/Redemption.json +92 -0
  54. package/build/contracts/bridge/Sweep.sol/Sweep.dbg.json +1 -1
  55. package/build/contracts/bridge/Sweep.sol/Sweep.json +2 -2
  56. package/build/contracts/bridge/VendingMachine.sol/VendingMachine.dbg.json +1 -1
  57. package/build/contracts/bridge/Wallets.sol/Wallets.dbg.json +1 -1
  58. package/build/contracts/bridge/Wallets.sol/Wallets.json +12 -38
  59. package/build/contracts/token/TBTC.sol/TBTC.dbg.json +1 -1
  60. package/build/contracts/vault/IVault.sol/IVault.dbg.json +1 -1
  61. package/build/contracts/vault/TBTCVault.sol/TBTCVault.dbg.json +1 -1
  62. package/contracts/bridge/BitcoinTx.sol +19 -26
  63. package/contracts/bridge/Bridge.sol +765 -524
  64. package/contracts/bridge/BridgeState.sol +312 -23
  65. package/contracts/bridge/Deposit.sol +25 -6
  66. package/contracts/bridge/EcdsaLib.sol +15 -0
  67. package/contracts/bridge/Fraud.sol +65 -33
  68. package/contracts/bridge/MovingFunds.sol +196 -10
  69. package/contracts/bridge/{Redeem.sol → Redemption.sol} +26 -29
  70. package/contracts/bridge/Sweep.sol +16 -12
  71. package/contracts/bridge/Wallets.sol +90 -153
  72. package/deploy/00_resolve_relay.ts +28 -0
  73. package/deploy/04_deploy_bank.ts +25 -0
  74. package/deploy/05_deploy_bridge.ts +60 -0
  75. package/deploy/06_bank_update_bridge.ts +19 -0
  76. package/deploy/07_transfer_ownership.ts +17 -0
  77. package/export.json +14797 -459
  78. package/package.json +2 -2
  79. package/build/contracts/bridge/Redeem.sol/OutboundTx.dbg.json +0 -4
  80. package/build/contracts/bridge/Redeem.sol/Redeem.dbg.json +0 -4
  81. package/build/contracts/bridge/Redeem.sol/Redeem.json +0 -110
@@ -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": "walletPublicKeyHash",
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": "walletPublicKeyHash",
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": "walletPublicKeyHash",
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": "newFraudNotifierRewardMultiplier",
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": "FraudNotifierRewardMultiplierUpdated",
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": "uint256",
237
- "name": "newFraudSlashingAmount",
238
- "type": "uint256"
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": "FraudSlashingAmountUpdated",
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": [
@@ -408,19 +500,19 @@
408
500
  "anonymous": false,
409
501
  "inputs": [
410
502
  {
411
- "indexed": false,
412
- "internalType": "uint64",
413
- "name": "newMinBtcBalance",
414
- "type": "uint64"
503
+ "indexed": true,
504
+ "internalType": "bytes32",
505
+ "name": "ecdsaWalletID",
506
+ "type": "bytes32"
415
507
  },
416
508
  {
417
- "indexed": false,
418
- "internalType": "uint64",
419
- "name": "newMaxBtcBalance",
420
- "type": "uint64"
509
+ "indexed": true,
510
+ "internalType": "bytes20",
511
+ "name": "walletPubKeyHash",
512
+ "type": "bytes20"
421
513
  }
422
514
  ],
423
- "name": "WalletBtcBalanceRangeUpdated",
515
+ "name": "WalletClosed",
424
516
  "type": "event"
425
517
  },
426
518
  {
@@ -439,20 +531,26 @@
439
531
  "type": "bytes20"
440
532
  }
441
533
  ],
442
- "name": "WalletClosed",
534
+ "name": "WalletClosing",
443
535
  "type": "event"
444
536
  },
445
537
  {
446
538
  "anonymous": false,
447
539
  "inputs": [
448
540
  {
449
- "indexed": false,
450
- "internalType": "uint32",
451
- "name": "newCreationPeriod",
452
- "type": "uint32"
541
+ "indexed": true,
542
+ "internalType": "bytes32",
543
+ "name": "ecdsaWalletID",
544
+ "type": "bytes32"
545
+ },
546
+ {
547
+ "indexed": true,
548
+ "internalType": "bytes20",
549
+ "name": "walletPubKeyHash",
550
+ "type": "bytes20"
453
551
  }
454
552
  ],
455
- "name": "WalletCreationPeriodUpdated",
553
+ "name": "WalletMovingFunds",
456
554
  "type": "event"
457
555
  },
458
556
  {
@@ -461,30 +559,35 @@
461
559
  {
462
560
  "indexed": false,
463
561
  "internalType": "uint32",
464
- "name": "newMaxAge",
562
+ "name": "walletCreationPeriod",
465
563
  "type": "uint32"
466
- }
467
- ],
468
- "name": "WalletMaxAgeUpdated",
469
- "type": "event"
470
- },
471
- {
472
- "anonymous": false,
473
- "inputs": [
564
+ },
474
565
  {
475
- "indexed": true,
476
- "internalType": "bytes32",
477
- "name": "ecdsaWalletID",
478
- "type": "bytes32"
566
+ "indexed": false,
567
+ "internalType": "uint64",
568
+ "name": "walletMinBtcBalance",
569
+ "type": "uint64"
479
570
  },
480
571
  {
481
- "indexed": true,
482
- "internalType": "bytes20",
483
- "name": "walletPubKeyHash",
484
- "type": "bytes20"
572
+ "indexed": false,
573
+ "internalType": "uint64",
574
+ "name": "walletMaxBtcBalance",
575
+ "type": "uint64"
576
+ },
577
+ {
578
+ "indexed": false,
579
+ "internalType": "uint32",
580
+ "name": "walletMaxAge",
581
+ "type": "uint32"
582
+ },
583
+ {
584
+ "indexed": false,
585
+ "internalType": "uint64",
586
+ "name": "walletMaxBtcTransfer",
587
+ "type": "uint64"
485
588
  }
486
589
  ],
487
- "name": "WalletMovingFunds",
590
+ "name": "WalletParametersUpdated",
488
591
  "type": "event"
489
592
  },
490
593
  {
@@ -552,6 +655,37 @@
552
655
  "stateMutability": "nonpayable",
553
656
  "type": "function"
554
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
+ },
555
689
  {
556
690
  "inputs": [
557
691
  {
@@ -719,13 +853,19 @@
719
853
  "type": "function"
720
854
  },
721
855
  {
722
- "inputs": [],
723
- "name": "getActiveWalletPubKeyHash",
856
+ "inputs": [
857
+ {
858
+ "internalType": "address",
859
+ "name": "vault",
860
+ "type": "address"
861
+ }
862
+ ],
863
+ "name": "isVaultTrusted",
724
864
  "outputs": [
725
865
  {
726
- "internalType": "bytes20",
866
+ "internalType": "bool",
727
867
  "name": "",
728
- "type": "bytes20"
868
+ "type": "bool"
729
869
  }
730
870
  ],
731
871
  "stateMutability": "view",
@@ -733,73 +873,12 @@
733
873
  },
734
874
  {
735
875
  "inputs": [],
736
- "name": "getContracts",
876
+ "name": "liveWalletsCount",
737
877
  "outputs": [
738
878
  {
739
- "internalType": "contract Bank",
740
- "name": "bank",
741
- "type": "address"
742
- },
743
- {
744
- "internalType": "contract IRelay",
745
- "name": "relay",
746
- "type": "address"
747
- }
748
- ],
749
- "stateMutability": "view",
750
- "type": "function"
751
- },
752
- {
753
- "inputs": [
754
- {
755
- "internalType": "bytes20",
756
- "name": "walletPubKeyHash",
757
- "type": "bytes20"
758
- }
759
- ],
760
- "name": "getWallet",
761
- "outputs": [
762
- {
763
- "components": [
764
- {
765
- "internalType": "bytes32",
766
- "name": "ecdsaWalletID",
767
- "type": "bytes32"
768
- },
769
- {
770
- "internalType": "bytes32",
771
- "name": "mainUtxoHash",
772
- "type": "bytes32"
773
- },
774
- {
775
- "internalType": "uint64",
776
- "name": "pendingRedemptionsValue",
777
- "type": "uint64"
778
- },
779
- {
780
- "internalType": "uint32",
781
- "name": "createdAt",
782
- "type": "uint32"
783
- },
784
- {
785
- "internalType": "uint32",
786
- "name": "movingFundsRequestedAt",
787
- "type": "uint32"
788
- },
789
- {
790
- "internalType": "enum Wallets.WalletState",
791
- "name": "state",
792
- "type": "uint8"
793
- },
794
- {
795
- "internalType": "bytes32",
796
- "name": "movingFundsTargetWalletsCommitmentHash",
797
- "type": "bytes32"
798
- }
799
- ],
800
- "internalType": "struct Wallets.Wallet",
801
- "name": "",
802
- "type": "tuple"
879
+ "internalType": "uint32",
880
+ "name": "",
881
+ "type": "uint32"
803
882
  }
804
883
  ],
805
884
  "stateMutability": "view",
@@ -807,64 +886,22 @@
807
886
  },
808
887
  {
809
888
  "inputs": [],
810
- "name": "getWalletsParameters",
889
+ "name": "movingFundsParameters",
811
890
  "outputs": [
812
- {
813
- "internalType": "uint32",
814
- "name": "creationPeriod",
815
- "type": "uint32"
816
- },
817
- {
818
- "internalType": "uint64",
819
- "name": "minBtcBalance",
820
- "type": "uint64"
821
- },
822
891
  {
823
892
  "internalType": "uint64",
824
- "name": "maxBtcBalance",
893
+ "name": "movingFundsTxMaxTotalFee",
825
894
  "type": "uint64"
826
895
  },
827
896
  {
828
897
  "internalType": "uint32",
829
- "name": "maxAge",
898
+ "name": "movingFundsTimeout",
830
899
  "type": "uint32"
831
900
  }
832
901
  ],
833
902
  "stateMutability": "view",
834
903
  "type": "function"
835
904
  },
836
- {
837
- "inputs": [
838
- {
839
- "internalType": "address",
840
- "name": "vault",
841
- "type": "address"
842
- }
843
- ],
844
- "name": "isVaultTrusted",
845
- "outputs": [
846
- {
847
- "internalType": "bool",
848
- "name": "",
849
- "type": "bool"
850
- }
851
- ],
852
- "stateMutability": "view",
853
- "type": "function"
854
- },
855
- {
856
- "inputs": [],
857
- "name": "movingFundsParameters",
858
- "outputs": [
859
- {
860
- "internalType": "uint64",
861
- "name": "movingFundsTxMaxTotalFee",
862
- "type": "uint64"
863
- }
864
- ],
865
- "stateMutability": "view",
866
- "type": "function"
867
- },
868
905
  {
869
906
  "inputs": [
870
907
  {
@@ -918,6 +955,19 @@
918
955
  "stateMutability": "nonpayable",
919
956
  "type": "function"
920
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
+ },
921
971
  {
922
972
  "inputs": [
923
973
  {
@@ -987,7 +1037,7 @@
987
1037
  "type": "uint32"
988
1038
  }
989
1039
  ],
990
- "internalType": "struct Redeem.RedemptionRequest",
1040
+ "internalType": "struct Redemption.RedemptionRequest",
991
1041
  "name": "",
992
1042
  "type": "tuple"
993
1043
  }
@@ -1018,16 +1068,6 @@
1018
1068
  "internalType": "uint256",
1019
1069
  "name": "redemptionTimeout",
1020
1070
  "type": "uint256"
1021
- },
1022
- {
1023
- "internalType": "address",
1024
- "name": "treasury",
1025
- "type": "address"
1026
- },
1027
- {
1028
- "internalType": "uint256",
1029
- "name": "txProofDifficultyFactor",
1030
- "type": "uint256"
1031
1071
  }
1032
1072
  ],
1033
1073
  "stateMutability": "view",
@@ -1269,6 +1309,56 @@
1269
1309
  "stateMutability": "payable",
1270
1310
  "type": "function"
1271
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
+ },
1272
1362
  {
1273
1363
  "inputs": [
1274
1364
  {
@@ -1554,7 +1644,7 @@
1554
1644
  "type": "uint32"
1555
1645
  }
1556
1646
  ],
1557
- "internalType": "struct Redeem.RedemptionRequest",
1647
+ "internalType": "struct Redemption.RedemptionRequest",
1558
1648
  "name": "",
1559
1649
  "type": "tuple"
1560
1650
  }
@@ -1581,7 +1671,7 @@
1581
1671
  "outputs": [
1582
1672
  {
1583
1673
  "internalType": "address",
1584
- "name": "treasury",
1674
+ "name": "",
1585
1675
  "type": "address"
1586
1676
  }
1587
1677
  ],
@@ -1594,7 +1684,7 @@
1594
1684
  "outputs": [
1595
1685
  {
1596
1686
  "internalType": "uint256",
1597
- "name": "txProofDifficultyFactor",
1687
+ "name": "",
1598
1688
  "type": "uint256"
1599
1689
  }
1600
1690
  ],
@@ -1603,41 +1693,237 @@
1603
1693
  },
1604
1694
  {
1605
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
+ },
1606
1752
  {
1607
1753
  "internalType": "uint32",
1608
- "name": "creationPeriod",
1754
+ "name": "movingFundsTimeout",
1609
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"
1610
1769
  },
1611
1770
  {
1612
1771
  "internalType": "uint64",
1613
- "name": "minBtcBalance",
1772
+ "name": "redemptionTreasuryFeeDivisor",
1614
1773
  "type": "uint64"
1615
1774
  },
1616
1775
  {
1617
1776
  "internalType": "uint64",
1618
- "name": "maxBtcBalance",
1777
+ "name": "redemptionTxMaxFee",
1619
1778
  "type": "uint64"
1620
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
+ },
1791
+ {
1792
+ "inputs": [
1621
1793
  {
1622
1794
  "internalType": "uint32",
1623
- "name": "maxAge",
1795
+ "name": "walletCreationPeriod",
1624
1796
  "type": "uint32"
1797
+ },
1798
+ {
1799
+ "internalType": "uint64",
1800
+ "name": "walletMinBtcBalance",
1801
+ "type": "uint64"
1802
+ },
1803
+ {
1804
+ "internalType": "uint64",
1805
+ "name": "walletMaxBtcBalance",
1806
+ "type": "uint64"
1807
+ },
1808
+ {
1809
+ "internalType": "uint32",
1810
+ "name": "walletMaxAge",
1811
+ "type": "uint32"
1812
+ },
1813
+ {
1814
+ "internalType": "uint64",
1815
+ "name": "walletMaxBtcTransfer",
1816
+ "type": "uint64"
1625
1817
  }
1626
1818
  ],
1627
- "name": "updateWalletsParameters",
1819
+ "name": "updateWalletParameters",
1628
1820
  "outputs": [],
1629
1821
  "stateMutability": "nonpayable",
1630
1822
  "type": "function"
1823
+ },
1824
+ {
1825
+ "inputs": [],
1826
+ "name": "walletParameters",
1827
+ "outputs": [
1828
+ {
1829
+ "internalType": "uint32",
1830
+ "name": "walletCreationPeriod",
1831
+ "type": "uint32"
1832
+ },
1833
+ {
1834
+ "internalType": "uint64",
1835
+ "name": "walletMinBtcBalance",
1836
+ "type": "uint64"
1837
+ },
1838
+ {
1839
+ "internalType": "uint64",
1840
+ "name": "walletMaxBtcBalance",
1841
+ "type": "uint64"
1842
+ },
1843
+ {
1844
+ "internalType": "uint32",
1845
+ "name": "walletMaxAge",
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"
1913
+ }
1914
+ ],
1915
+ "stateMutability": "view",
1916
+ "type": "function"
1631
1917
  }
1632
1918
  ],
1633
- "bytecode": "0x60806040523480156200001157600080fd5b50604051620026a8380380620026a8833981016040819052620000349162000457565b6200003f33620003ea565b6001600160a01b0385166200009b5760405162461bcd60e51b815260206004820152601b60248201527f42616e6b20616464726573732063616e6e6f74206265207a65726f000000000060448201526064015b60405180910390fd5b600280546001600160a01b0319166001600160a01b038781169190911790915584166200010b5760405162461bcd60e51b815260206004820152601c60248201527f52656c617920616464726573732063616e6e6f74206265207a65726f00000000604482015260640162000092565b600380546001600160a01b0319166001600160a01b038681169190911790915583166200017b5760405162461bcd60e51b815260206004820152601f60248201527f547265617375727920616464726573732063616e6e6f74206265207a65726f00604482015260640162000092565b600480546001839055613d0960a61b6001600160e01b03199091166001600160a01b038616171781556005805469271000000000000007d06001600160801b03199091161790556202a30060095579271000000000000007d000000000000f4240000000000000271060085569021e19e0c9bab2400000600c556064600d5562093a80600e55671bc16d674ec80000600f5560405163f832341d60e01b815273__$0f118c52967a3847a37f0a2ef02ffcee04$__9163f832341d9162000258916012918791019182526001600160a01b0316602082015260400190565b60006040518083038186803b1580156200027157600080fd5b505af415801562000286573d6000803e3d6000fd5b505060405163041aee9960e01b81526012600482015262093a80602482015273__$0f118c52967a3847a37f0a2ef02ffcee04$__925063041aee99915060440160006040518083038186803b158015620002df57600080fd5b505af4158015620002f4573d6000803e3d6000fd5b5050604051632662d59360e21b8152601260048201526305f5e1006024820152633b9aca00604482015273__$0f118c52967a3847a37f0a2ef02ffcee04$__925063998b564c915060640160006040518083038186803b1580156200035857600080fd5b505af41580156200036d573d6000803e3d6000fd5b505060405163117665a760e21b81526012600482015262eff100602482015273__$0f118c52967a3847a37f0a2ef02ffcee04$__92506345d9969c915060440160006040518083038186803b158015620003c657600080fd5b505af4158015620003db573d6000803e3d6000fd5b505050505050505050620004be565b600080546001600160a01b038381166001600160a01b0319831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b80516001600160a01b03811681146200045257600080fd5b919050565b600080600080600060a086880312156200047057600080fd5b6200047b866200043a565b94506200048b602087016200043a565b93506200049b604087016200043a565b9250620004ab606087016200043a565b9150608086015190509295509295909350565b6121da80620004ce6000396000f3fe6080604052600436106102195760003560e01c8063793bb4731161011d578063b34b3216116100b0578063d6eccdf01161007f578063e53c0b5511610064578063e53c0b5514610ae7578063f2fde38b14610b20578063fd56208014610b4057600080fd5b8063d6eccdf014610aa7578063d95027b714610ac757600080fd5b8063b34b3216146109da578063be05abe3146109fa578063c3a2a93a14610a23578063c42b64d014610a5657600080fd5b8063a145e2d5116100ec578063a145e2d5146107fc578063a8fa0f421461081c578063b02c43d01461083c578063b2146cd61461099a57600080fd5b8063793bb4731461070a5780638da5cb5b1461074b5780638dd0f79a146107695780638fa4ad28146107cf57600080fd5b80635c0b4812116101b05780636d02b43c1161017f578063715018a611610164578063715018a61461069c57806375b922d1146106b157806377145f21146106ea57600080fd5b80636d02b43c146106215780636e70ce411461063457600080fd5b80635c0b48121461058f57806360d712fc146105af57806361d027b3146105cf57806367f272471461060157600080fd5b806333e957cb116101ec57806333e957cb146104505780633dce98121461052f578063575e42791461054f57806359a9d90a1461056f57600080fd5b806303d952f71461021e5780630b6ba19d1461034d5780632bb818c2146104105780632f429b641461042e575b600080fd5b34801561022a57600080fd5b506102e1610239366004611644565b6040805160a081018252600080825260208201819052918101829052606081018290526080810191909152506000908152600a6020908152604091829020825160a08101845281546001600160a01b0381168252600160a01b900467ffffffffffffffff90811693820193909352600190910154808316938201939093526801000000000000000083049091166060820152600160801b90910463ffffffff16608082015290565b6040516103449190600060a0820190506001600160a01b038351168252602083015167ffffffffffffffff8082166020850152806040860151166040850152806060860151166060850152505063ffffffff608084015116608083015292915050565b60405180910390f35b34801561035957600080fd5b506102e1610368366004611644565b6040805160a081018252600080825260208201819052918101829052606081018290526080810191909152506000908152600b6020908152604091829020825160a08101845281546001600160a01b0381168252600160a01b900467ffffffffffffffff90811693820193909352600190910154808316938201939093526801000000000000000083049091166060820152600160801b90910463ffffffff16608082015290565b34801561041c57600080fd5b50600154604051908152602001610344565b34801561043a57600080fd5b5061044e6104493660046116a9565b610b60565b005b34801561045c57600080fd5b506104eb61046b366004611644565b60408051608081018252600080825260208201819052918101829052606081019190915250600090815260106020908152604091829020825160808101845281546001600160a01b031681526001820154928101929092526002015463ffffffff81169282019290925264010000000090910460ff161515606082015290565b604051610344919081516001600160a01b031681526020808301519082015260408083015163ffffffff169082015260609182015115159181019190915260800190565b34801561053b57600080fd5b5061044e61054a36600461172f565b610bf2565b34801561055b57600080fd5b5061044e61056a36600461175b565b610c82565b34801561057b57600080fd5b5061044e61058a36600461178f565b610d0b565b34801561059b57600080fd5b5061044e6105aa366004611804565b610d65565b3480156105bb57600080fd5b5061044e6105ca366004611886565b610dbd565b3480156105db57600080fd5b506004546001600160a01b03165b6040516001600160a01b039091168152602001610344565b34801561060d57600080fd5b5061044e61061c3660046118f9565b610e7b565b61044e61062f36600461194c565b610ed5565b34801561064057600080fd5b506008546009546040805167ffffffffffffffff68010000000000000000850481168252600160801b850481166020830152600160c01b90940490931690830152606082015260006080820181905260a082015260c001610344565b3480156106a857600080fd5b5061044e610f31565b3480156106bd57600080fd5b50600c54600d54600e54600f54604080519485526020850193909352918301526060820152608001610344565b3480156106f657600080fd5b5061044e61070536600461199f565b610f97565b34801561071657600080fd5b506013546c01000000000000000000000000900460601b6040516bffffffffffffffffffffffff199091168152602001610344565b34801561075757600080fd5b506000546001600160a01b03166105e9565b34801561077557600080fd5b506012546013546040805163ffffffff600160a01b85048116825267ffffffffffffffff600160c01b9095048516602083015293831691810191909152680100000000000000009091049091166060820152608001610344565b3480156107db57600080fd5b506107ef6107ea366004611a20565b611029565b6040516103449190611a58565b34801561080857600080fd5b5061044e610817366004611adc565b61112a565b34801561082857600080fd5b5061044e61083736600461172f565b6111b0565b34801561084857600080fd5b50610924610857366004611644565b6040805160c081018252600080825260208201819052918101829052606081018290526080810182905260a081019190915250600090815260066020908152604091829020825160c08101845281546001600160a01b03808216835267ffffffffffffffff600160a01b80840482169685019690965263ffffffff7c0100000000000000000000000000000000000000000000000000000000938490048116978501979097526001949094015490811660608401529384049092166080820152910490911660a082015290565b6040516103449190600060c0820190506001600160a01b03808451168352602084015167ffffffffffffffff80821660208601526040860151915063ffffffff80831660408701528360608801511660608701528160808801511660808701528060a08801511660a08701525050505092915050565b3480156109a657600080fd5b506109ca6109b5366004611644565b60009081526011602052604090205460ff1690565b6040519015158152602001610344565b3480156109e657600080fd5b5061044e6109f53660046116a9565b611216565b348015610a0657600080fd5b5060085460405167ffffffffffffffff9091168152602001610344565b348015610a2f57600080fd5b50600254600354604080516001600160a01b03938416815292909116602083015201610344565b348015610a6257600080fd5b5060045460055460408051600160a01b90930467ffffffffffffffff908116845280831660208501526801000000000000000090920490911690820152606001610344565b348015610ab357600080fd5b5061044e610ac2366004611b10565b611272565b348015610ad357600080fd5b5061044e610ae2366004611b7b565b6112d0565b348015610af357600080fd5b506109ca610b02366004611bc7565b6001600160a01b031660009081526007602052604090205460ff1690565b348015610b2c57600080fd5b5061044e610b3b366004611bc7565b611327565b348015610b4c57600080fd5b5061044e610b5b366004611bf6565b611409565b6040517f8f70139000000000000000000000000000000000000000000000000000000000815273__$edce581bb06331cf4dae1387760565e5d1$__90638f70139090610bbc906001906012908990899089908990600401611e04565b60006040518083038186803b158015610bd457600080fd5b505af4158015610be8573d6000803e3d6000fd5b5050505050505050565b6040517f1803c09e00000000000000000000000000000000000000000000000000000000815260126004820152602481018390526044810182905273__$0f118c52967a3847a37f0a2ef02ffcee04$__90631803c09e906064015b60006040518083038186803b158015610c6557600080fd5b505af4158015610c79573d6000803e3d6000fd5b50505050505050565b6040517f9655f02b00000000000000000000000000000000000000000000000000000000815273__$0f118c52967a3847a37f0a2ef02ffcee04$__90639655f02b90610cd79060129086908690600401611e68565b60006040518083038186803b158015610cef57600080fd5b505af4158015610d03573d6000803e3d6000fd5b505050505050565b6040517f7464f92700000000000000000000000000000000000000000000000000000000815273__$61f169726e973bba1227e0c23d2755f88e$__90637464f92790610c4d90600190601290889088908890600401611e99565b6040517f8928458d00000000000000000000000000000000000000000000000000000000815273__$894ce12e79ca3e5683c1b49e363f37fa22$__90638928458d90610cd79060019060129087908790600401611eda565b6000546001600160a01b03163314610e1c5760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657260448201526064015b60405180910390fd5b6001600160a01b038216600081815260076020908152604091829020805460ff191685151590811790915591519182527f9065599c12c4294d9e2201638226d0d0beb95c228f468c4e7c2bdb8322b6066f910160405180910390a25050565b6040517f6b90549000000000000000000000000000000000000000000000000000000000815273__$faca6b149b11b9e5dd3c54d44c40a95c4f$__90636b90549090610c4d9060019060129088908890889060040161201f565b6040517f7c3caa0100000000000000000000000000000000000000000000000000000000815273__$a542940934c03bae9a39609192cb25cc3c$__90637c3caa0190610bbc90600190601290899089908990899060040161205f565b6000546001600160a01b03163314610f8b5760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610e13565b610f9560006115dc565b565b6040517f624526fe00000000000000000000000000000000000000000000000000000000815273__$a542940934c03bae9a39609192cb25cc3c$__9063624526fe90610ff290600190899089908990899089906004016120c0565b60006040518083038186803b15801561100a57600080fd5b505af415801561101e573d6000803e3d6000fd5b505050505050505050565b6040805160e081018252600080825260208201819052918101829052606081018290526080810182905260a0810182905260c08101919091526bffffffffffffffffffffffff198216600090815260146020908152604091829020825160e08101845281548152600182015492810192909252600281015467ffffffffffffffff81169383019390935263ffffffff680100000000000000008404811660608401526c010000000000000000000000008404166080830152909160a083019060ff600160801b90910416600481111561110457611104611a42565b600481111561111557611115611a42565b81526020016003820154815250509050919050565b6040517fb4e671f400000000000000000000000000000000000000000000000000000000815273__$0f118c52967a3847a37f0a2ef02ffcee04$__9063b4e671f49061117d906012908590600401612103565b60006040518083038186803b15801561119557600080fd5b505af41580156111a9573d6000803e3d6000fd5b5050505050565b6040517f4fd7d4860000000000000000000000000000000000000000000000000000000081526012600482015260248101849052604481018390526064810182905273__$0f118c52967a3847a37f0a2ef02ffcee04$__90634fd7d48690608401610c4d565b6040517f7797c5dd00000000000000000000000000000000000000000000000000000000815273__$faca6b149b11b9e5dd3c54d44c40a95c4f$__90637797c5dd90610bbc906001906012908990899089908990600401611e04565b6040517f0b68d1d500000000000000000000000000000000000000000000000000000000815273__$faca6b149b11b9e5dd3c54d44c40a95c4f$__90630b68d1d590610ff2906001906012908a908a908a908a908a90600401612117565b6040517f72c9c91c00000000000000000000000000000000000000000000000000000000815273__$a542940934c03bae9a39609192cb25cc3c$__906372c9c91c90610c4d90600190879087908790600401612179565b6000546001600160a01b031633146113815760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610e13565b6001600160a01b0381166113fd5760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201527f64647265737300000000000000000000000000000000000000000000000000006064820152608401610e13565b611406816115dc565b50565b6000546001600160a01b031633146114635760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610e13565b6040517f041aee990000000000000000000000000000000000000000000000000000000081526012600482015263ffffffff8516602482015273__$0f118c52967a3847a37f0a2ef02ffcee04$__9063041aee999060440160006040518083038186803b1580156114d357600080fd5b505af41580156114e7573d6000803e3d6000fd5b50506040517f998b564c0000000000000000000000000000000000000000000000000000000081526012600482015267ffffffffffffffff80871660248301528516604482015273__$0f118c52967a3847a37f0a2ef02ffcee04$__925063998b564c915060640160006040518083038186803b15801561156757600080fd5b505af415801561157b573d6000803e3d6000fd5b50506040517f45d9969c0000000000000000000000000000000000000000000000000000000081526012600482015263ffffffff8416602482015273__$0f118c52967a3847a37f0a2ef02ffcee04$__92506345d9969c9150604401610bbc565b600080546001600160a01b038381167fffffffffffffffffffffffff0000000000000000000000000000000000000000831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b60006020828403121561165657600080fd5b5035919050565b60006080828403121561166f57600080fd5b50919050565b60006060828403121561166f57600080fd5b80356bffffffffffffffffffffffff19811681146116a457600080fd5b919050565b60008060008060c085870312156116bf57600080fd5b843567ffffffffffffffff808211156116d757600080fd5b6116e38883890161165d565b955060208701359150808211156116f957600080fd5b5061170687828801611675565b9350506117168660408701611675565b915061172460a08601611687565b905092959194509250565b60008060006060848603121561174457600080fd5b505081359360208301359350604090920135919050565b6000806080838503121561176e57600080fd5b61177783611687565b91506117868460208501611675565b90509250929050565b600080600060a084860312156117a457600080fd5b833567ffffffffffffffff808211156117bc57600080fd5b6117c88783880161165d565b945060208601359150808211156117de57600080fd5b506117eb86828701611675565b9250506117fb8560408601611675565b90509250925092565b60008082840361010081121561181957600080fd5b833567ffffffffffffffff81111561183057600080fd5b61183c8682870161165d565b93505060e0601f198201121561185157600080fd5b506020830190509250929050565b80356001600160a01b03811681146116a457600080fd5b803580151581146116a457600080fd5b6000806040838503121561189957600080fd5b6118a28361185f565b915061178660208401611876565b60008083601f8401126118c257600080fd5b50813567ffffffffffffffff8111156118da57600080fd5b6020830191508360208285010111156118f257600080fd5b9250929050565b60008060006040848603121561190e57600080fd5b61191784611687565b9250602084013567ffffffffffffffff81111561193357600080fd5b61193f868287016118b0565b9497909650939450505050565b60008060008060a0858703121561196257600080fd5b843567ffffffffffffffff81111561197957600080fd5b611985878288016118b0565b909550935050602085013591506117248660408701611675565b6000806000806000606086880312156119b757600080fd5b853567ffffffffffffffff808211156119cf57600080fd5b6119db89838a016118b0565b909750955060208801359150808211156119f457600080fd5b50611a01888289016118b0565b9094509250611a14905060408701611876565b90509295509295909350565b600060208284031215611a3257600080fd5b611a3b82611687565b9392505050565b634e487b7160e01b600052602160045260246000fd5b600060e082019050825182526020830151602083015267ffffffffffffffff6040840151166040830152606083015163ffffffff8082166060850152806080860151166080850152505060a083015160058110611ac557634e487b7160e01b600052602160045260246000fd5b8060a08401525060c083015160c083015292915050565b600060608284031215611aee57600080fd5b611a3b8383611675565b803567ffffffffffffffff811681146116a457600080fd5b600080600080600060c08688031215611b2857600080fd5b611b3186611687565b9450611b408760208801611675565b9350608086013567ffffffffffffffff811115611b5c57600080fd5b611b68888289016118b0565b9094509250611a14905060a08701611af8565b600080600060408486031215611b9057600080fd5b833567ffffffffffffffff811115611ba757600080fd5b611bb3868287016118b0565b909790965060209590950135949350505050565b600060208284031215611bd957600080fd5b611a3b8261185f565b803563ffffffff811681146116a457600080fd5b60008060008060808587031215611c0c57600080fd5b611c1585611be2565b9350611c2360208601611af8565b9250611c3160408601611af8565b915061172460608601611be2565b80357fffffffff00000000000000000000000000000000000000000000000000000000811681146116a457600080fd5b6000808335601e19843603018112611c8657600080fd5b830160208101925035905067ffffffffffffffff811115611ca657600080fd5b8036038313156118f257600080fd5b81835281816020850137506000828201602090810191909152601f909101601f19169091010190565b60007fffffffff0000000000000000000000000000000000000000000000000000000080611d0b84611c3f565b168452611d1b6020840184611c6f565b60806020870152611d30608087018284611cb5565b915050611d406040850185611c6f565b8683036040880152611d53838284611cb5565b9250505081611d6460608601611c3f565b166060860152809250505092915050565b6000611d818283611c6f565b60608552611d93606086018284611cb5565b91505060208301356020850152611dad6040840184611c6f565b8583036040870152611dc0838284611cb5565b9695505050505050565b8035825263ffffffff611ddf60208301611be2565b16602083015267ffffffffffffffff611dfa60408301611af8565b1660408301525050565b6000610100888352876020840152806040840152611e2481840188611cde565b90508281036060840152611e388187611d75565b915050611e486080830185611dca565b6bffffffffffffffffffffffff19831660e0830152979650505050505050565b8381526bffffffffffffffffffffffff198316602082015260a08101611e916040830184611dca565b949350505050565b85815284602082015260e060408201526000611eb860e0830186611cde565b8281036060840152611eca8186611d75565b915050611dc06080830184611dca565b6000610140868352856020840152806040840152611efa81840186611cde565b91505063ffffffff611f0b84611be2565b1660608301526001600160a01b03611f256020850161185f565b16608083015260408301357fffffffffffffffff00000000000000000000000000000000000000000000000081168114611f5e57600080fd5b7fffffffffffffffff0000000000000000000000000000000000000000000000001660a0830152611f9160608401611687565b6bffffffffffffffffffffffff191660c0830152611fb160808401611687565b6bffffffffffffffffffffffff191660e0830152611fd160a08401611c3f565b7fffffffff000000000000000000000000000000000000000000000000000000001661010083015261200560c0840161185f565b6001600160a01b0381166101208401525095945050505050565b8581528460208201526bffffffffffffffffffffffff1984166040820152608060608201526000612054608083018486611cb5565b979650505050505050565b86815285602082015260e06040820152600061207f60e083018688611cb5565b905083606083015282356080830152602083013560a0830152604083013560ff81168082146120ad57600080fd5b8060c08501525050979650505050505050565b8681526080602082015260006120da608083018789611cb5565b82810360408401526120ed818688611cb5565b9150508215156060830152979650505050505050565b82815260808101611a3b6020830184611dca565b60006101008983528860208401526bffffffffffffffffffffffff19881660408401526121476060840188611dca565b8060c084015261215a8184018688611cb5565b91505067ffffffffffffffff831660e083015298975050505050505050565b848152606060208201526000612193606083018587611cb5565b90508260408301529594505050505056fea26469706673582212208ef5f65d4775e078bdcccff7e94602d00c21aca55595c13f460926220c9c5a2e64736f6c63430008090033",
1634
- "deployedBytecode": "0x6080604052600436106102195760003560e01c8063793bb4731161011d578063b34b3216116100b0578063d6eccdf01161007f578063e53c0b5511610064578063e53c0b5514610ae7578063f2fde38b14610b20578063fd56208014610b4057600080fd5b8063d6eccdf014610aa7578063d95027b714610ac757600080fd5b8063b34b3216146109da578063be05abe3146109fa578063c3a2a93a14610a23578063c42b64d014610a5657600080fd5b8063a145e2d5116100ec578063a145e2d5146107fc578063a8fa0f421461081c578063b02c43d01461083c578063b2146cd61461099a57600080fd5b8063793bb4731461070a5780638da5cb5b1461074b5780638dd0f79a146107695780638fa4ad28146107cf57600080fd5b80635c0b4812116101b05780636d02b43c1161017f578063715018a611610164578063715018a61461069c57806375b922d1146106b157806377145f21146106ea57600080fd5b80636d02b43c146106215780636e70ce411461063457600080fd5b80635c0b48121461058f57806360d712fc146105af57806361d027b3146105cf57806367f272471461060157600080fd5b806333e957cb116101ec57806333e957cb146104505780633dce98121461052f578063575e42791461054f57806359a9d90a1461056f57600080fd5b806303d952f71461021e5780630b6ba19d1461034d5780632bb818c2146104105780632f429b641461042e575b600080fd5b34801561022a57600080fd5b506102e1610239366004611644565b6040805160a081018252600080825260208201819052918101829052606081018290526080810191909152506000908152600a6020908152604091829020825160a08101845281546001600160a01b0381168252600160a01b900467ffffffffffffffff90811693820193909352600190910154808316938201939093526801000000000000000083049091166060820152600160801b90910463ffffffff16608082015290565b6040516103449190600060a0820190506001600160a01b038351168252602083015167ffffffffffffffff8082166020850152806040860151166040850152806060860151166060850152505063ffffffff608084015116608083015292915050565b60405180910390f35b34801561035957600080fd5b506102e1610368366004611644565b6040805160a081018252600080825260208201819052918101829052606081018290526080810191909152506000908152600b6020908152604091829020825160a08101845281546001600160a01b0381168252600160a01b900467ffffffffffffffff90811693820193909352600190910154808316938201939093526801000000000000000083049091166060820152600160801b90910463ffffffff16608082015290565b34801561041c57600080fd5b50600154604051908152602001610344565b34801561043a57600080fd5b5061044e6104493660046116a9565b610b60565b005b34801561045c57600080fd5b506104eb61046b366004611644565b60408051608081018252600080825260208201819052918101829052606081019190915250600090815260106020908152604091829020825160808101845281546001600160a01b031681526001820154928101929092526002015463ffffffff81169282019290925264010000000090910460ff161515606082015290565b604051610344919081516001600160a01b031681526020808301519082015260408083015163ffffffff169082015260609182015115159181019190915260800190565b34801561053b57600080fd5b5061044e61054a36600461172f565b610bf2565b34801561055b57600080fd5b5061044e61056a36600461175b565b610c82565b34801561057b57600080fd5b5061044e61058a36600461178f565b610d0b565b34801561059b57600080fd5b5061044e6105aa366004611804565b610d65565b3480156105bb57600080fd5b5061044e6105ca366004611886565b610dbd565b3480156105db57600080fd5b506004546001600160a01b03165b6040516001600160a01b039091168152602001610344565b34801561060d57600080fd5b5061044e61061c3660046118f9565b610e7b565b61044e61062f36600461194c565b610ed5565b34801561064057600080fd5b506008546009546040805167ffffffffffffffff68010000000000000000850481168252600160801b850481166020830152600160c01b90940490931690830152606082015260006080820181905260a082015260c001610344565b3480156106a857600080fd5b5061044e610f31565b3480156106bd57600080fd5b50600c54600d54600e54600f54604080519485526020850193909352918301526060820152608001610344565b3480156106f657600080fd5b5061044e61070536600461199f565b610f97565b34801561071657600080fd5b506013546c01000000000000000000000000900460601b6040516bffffffffffffffffffffffff199091168152602001610344565b34801561075757600080fd5b506000546001600160a01b03166105e9565b34801561077557600080fd5b506012546013546040805163ffffffff600160a01b85048116825267ffffffffffffffff600160c01b9095048516602083015293831691810191909152680100000000000000009091049091166060820152608001610344565b3480156107db57600080fd5b506107ef6107ea366004611a20565b611029565b6040516103449190611a58565b34801561080857600080fd5b5061044e610817366004611adc565b61112a565b34801561082857600080fd5b5061044e61083736600461172f565b6111b0565b34801561084857600080fd5b50610924610857366004611644565b6040805160c081018252600080825260208201819052918101829052606081018290526080810182905260a081019190915250600090815260066020908152604091829020825160c08101845281546001600160a01b03808216835267ffffffffffffffff600160a01b80840482169685019690965263ffffffff7c0100000000000000000000000000000000000000000000000000000000938490048116978501979097526001949094015490811660608401529384049092166080820152910490911660a082015290565b6040516103449190600060c0820190506001600160a01b03808451168352602084015167ffffffffffffffff80821660208601526040860151915063ffffffff80831660408701528360608801511660608701528160808801511660808701528060a08801511660a08701525050505092915050565b3480156109a657600080fd5b506109ca6109b5366004611644565b60009081526011602052604090205460ff1690565b6040519015158152602001610344565b3480156109e657600080fd5b5061044e6109f53660046116a9565b611216565b348015610a0657600080fd5b5060085460405167ffffffffffffffff9091168152602001610344565b348015610a2f57600080fd5b50600254600354604080516001600160a01b03938416815292909116602083015201610344565b348015610a6257600080fd5b5060045460055460408051600160a01b90930467ffffffffffffffff908116845280831660208501526801000000000000000090920490911690820152606001610344565b348015610ab357600080fd5b5061044e610ac2366004611b10565b611272565b348015610ad357600080fd5b5061044e610ae2366004611b7b565b6112d0565b348015610af357600080fd5b506109ca610b02366004611bc7565b6001600160a01b031660009081526007602052604090205460ff1690565b348015610b2c57600080fd5b5061044e610b3b366004611bc7565b611327565b348015610b4c57600080fd5b5061044e610b5b366004611bf6565b611409565b6040517f8f70139000000000000000000000000000000000000000000000000000000000815273__$edce581bb06331cf4dae1387760565e5d1$__90638f70139090610bbc906001906012908990899089908990600401611e04565b60006040518083038186803b158015610bd457600080fd5b505af4158015610be8573d6000803e3d6000fd5b5050505050505050565b6040517f1803c09e00000000000000000000000000000000000000000000000000000000815260126004820152602481018390526044810182905273__$0f118c52967a3847a37f0a2ef02ffcee04$__90631803c09e906064015b60006040518083038186803b158015610c6557600080fd5b505af4158015610c79573d6000803e3d6000fd5b50505050505050565b6040517f9655f02b00000000000000000000000000000000000000000000000000000000815273__$0f118c52967a3847a37f0a2ef02ffcee04$__90639655f02b90610cd79060129086908690600401611e68565b60006040518083038186803b158015610cef57600080fd5b505af4158015610d03573d6000803e3d6000fd5b505050505050565b6040517f7464f92700000000000000000000000000000000000000000000000000000000815273__$61f169726e973bba1227e0c23d2755f88e$__90637464f92790610c4d90600190601290889088908890600401611e99565b6040517f8928458d00000000000000000000000000000000000000000000000000000000815273__$894ce12e79ca3e5683c1b49e363f37fa22$__90638928458d90610cd79060019060129087908790600401611eda565b6000546001600160a01b03163314610e1c5760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657260448201526064015b60405180910390fd5b6001600160a01b038216600081815260076020908152604091829020805460ff191685151590811790915591519182527f9065599c12c4294d9e2201638226d0d0beb95c228f468c4e7c2bdb8322b6066f910160405180910390a25050565b6040517f6b90549000000000000000000000000000000000000000000000000000000000815273__$faca6b149b11b9e5dd3c54d44c40a95c4f$__90636b90549090610c4d9060019060129088908890889060040161201f565b6040517f7c3caa0100000000000000000000000000000000000000000000000000000000815273__$a542940934c03bae9a39609192cb25cc3c$__90637c3caa0190610bbc90600190601290899089908990899060040161205f565b6000546001600160a01b03163314610f8b5760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610e13565b610f9560006115dc565b565b6040517f624526fe00000000000000000000000000000000000000000000000000000000815273__$a542940934c03bae9a39609192cb25cc3c$__9063624526fe90610ff290600190899089908990899089906004016120c0565b60006040518083038186803b15801561100a57600080fd5b505af415801561101e573d6000803e3d6000fd5b505050505050505050565b6040805160e081018252600080825260208201819052918101829052606081018290526080810182905260a0810182905260c08101919091526bffffffffffffffffffffffff198216600090815260146020908152604091829020825160e08101845281548152600182015492810192909252600281015467ffffffffffffffff81169383019390935263ffffffff680100000000000000008404811660608401526c010000000000000000000000008404166080830152909160a083019060ff600160801b90910416600481111561110457611104611a42565b600481111561111557611115611a42565b81526020016003820154815250509050919050565b6040517fb4e671f400000000000000000000000000000000000000000000000000000000815273__$0f118c52967a3847a37f0a2ef02ffcee04$__9063b4e671f49061117d906012908590600401612103565b60006040518083038186803b15801561119557600080fd5b505af41580156111a9573d6000803e3d6000fd5b5050505050565b6040517f4fd7d4860000000000000000000000000000000000000000000000000000000081526012600482015260248101849052604481018390526064810182905273__$0f118c52967a3847a37f0a2ef02ffcee04$__90634fd7d48690608401610c4d565b6040517f7797c5dd00000000000000000000000000000000000000000000000000000000815273__$faca6b149b11b9e5dd3c54d44c40a95c4f$__90637797c5dd90610bbc906001906012908990899089908990600401611e04565b6040517f0b68d1d500000000000000000000000000000000000000000000000000000000815273__$faca6b149b11b9e5dd3c54d44c40a95c4f$__90630b68d1d590610ff2906001906012908a908a908a908a908a90600401612117565b6040517f72c9c91c00000000000000000000000000000000000000000000000000000000815273__$a542940934c03bae9a39609192cb25cc3c$__906372c9c91c90610c4d90600190879087908790600401612179565b6000546001600160a01b031633146113815760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610e13565b6001600160a01b0381166113fd5760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201527f64647265737300000000000000000000000000000000000000000000000000006064820152608401610e13565b611406816115dc565b50565b6000546001600160a01b031633146114635760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610e13565b6040517f041aee990000000000000000000000000000000000000000000000000000000081526012600482015263ffffffff8516602482015273__$0f118c52967a3847a37f0a2ef02ffcee04$__9063041aee999060440160006040518083038186803b1580156114d357600080fd5b505af41580156114e7573d6000803e3d6000fd5b50506040517f998b564c0000000000000000000000000000000000000000000000000000000081526012600482015267ffffffffffffffff80871660248301528516604482015273__$0f118c52967a3847a37f0a2ef02ffcee04$__925063998b564c915060640160006040518083038186803b15801561156757600080fd5b505af415801561157b573d6000803e3d6000fd5b50506040517f45d9969c0000000000000000000000000000000000000000000000000000000081526012600482015263ffffffff8416602482015273__$0f118c52967a3847a37f0a2ef02ffcee04$__92506345d9969c9150604401610bbc565b600080546001600160a01b038381167fffffffffffffffffffffffff0000000000000000000000000000000000000000831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b60006020828403121561165657600080fd5b5035919050565b60006080828403121561166f57600080fd5b50919050565b60006060828403121561166f57600080fd5b80356bffffffffffffffffffffffff19811681146116a457600080fd5b919050565b60008060008060c085870312156116bf57600080fd5b843567ffffffffffffffff808211156116d757600080fd5b6116e38883890161165d565b955060208701359150808211156116f957600080fd5b5061170687828801611675565b9350506117168660408701611675565b915061172460a08601611687565b905092959194509250565b60008060006060848603121561174457600080fd5b505081359360208301359350604090920135919050565b6000806080838503121561176e57600080fd5b61177783611687565b91506117868460208501611675565b90509250929050565b600080600060a084860312156117a457600080fd5b833567ffffffffffffffff808211156117bc57600080fd5b6117c88783880161165d565b945060208601359150808211156117de57600080fd5b506117eb86828701611675565b9250506117fb8560408601611675565b90509250925092565b60008082840361010081121561181957600080fd5b833567ffffffffffffffff81111561183057600080fd5b61183c8682870161165d565b93505060e0601f198201121561185157600080fd5b506020830190509250929050565b80356001600160a01b03811681146116a457600080fd5b803580151581146116a457600080fd5b6000806040838503121561189957600080fd5b6118a28361185f565b915061178660208401611876565b60008083601f8401126118c257600080fd5b50813567ffffffffffffffff8111156118da57600080fd5b6020830191508360208285010111156118f257600080fd5b9250929050565b60008060006040848603121561190e57600080fd5b61191784611687565b9250602084013567ffffffffffffffff81111561193357600080fd5b61193f868287016118b0565b9497909650939450505050565b60008060008060a0858703121561196257600080fd5b843567ffffffffffffffff81111561197957600080fd5b611985878288016118b0565b909550935050602085013591506117248660408701611675565b6000806000806000606086880312156119b757600080fd5b853567ffffffffffffffff808211156119cf57600080fd5b6119db89838a016118b0565b909750955060208801359150808211156119f457600080fd5b50611a01888289016118b0565b9094509250611a14905060408701611876565b90509295509295909350565b600060208284031215611a3257600080fd5b611a3b82611687565b9392505050565b634e487b7160e01b600052602160045260246000fd5b600060e082019050825182526020830151602083015267ffffffffffffffff6040840151166040830152606083015163ffffffff8082166060850152806080860151166080850152505060a083015160058110611ac557634e487b7160e01b600052602160045260246000fd5b8060a08401525060c083015160c083015292915050565b600060608284031215611aee57600080fd5b611a3b8383611675565b803567ffffffffffffffff811681146116a457600080fd5b600080600080600060c08688031215611b2857600080fd5b611b3186611687565b9450611b408760208801611675565b9350608086013567ffffffffffffffff811115611b5c57600080fd5b611b68888289016118b0565b9094509250611a14905060a08701611af8565b600080600060408486031215611b9057600080fd5b833567ffffffffffffffff811115611ba757600080fd5b611bb3868287016118b0565b909790965060209590950135949350505050565b600060208284031215611bd957600080fd5b611a3b8261185f565b803563ffffffff811681146116a457600080fd5b60008060008060808587031215611c0c57600080fd5b611c1585611be2565b9350611c2360208601611af8565b9250611c3160408601611af8565b915061172460608601611be2565b80357fffffffff00000000000000000000000000000000000000000000000000000000811681146116a457600080fd5b6000808335601e19843603018112611c8657600080fd5b830160208101925035905067ffffffffffffffff811115611ca657600080fd5b8036038313156118f257600080fd5b81835281816020850137506000828201602090810191909152601f909101601f19169091010190565b60007fffffffff0000000000000000000000000000000000000000000000000000000080611d0b84611c3f565b168452611d1b6020840184611c6f565b60806020870152611d30608087018284611cb5565b915050611d406040850185611c6f565b8683036040880152611d53838284611cb5565b9250505081611d6460608601611c3f565b166060860152809250505092915050565b6000611d818283611c6f565b60608552611d93606086018284611cb5565b91505060208301356020850152611dad6040840184611c6f565b8583036040870152611dc0838284611cb5565b9695505050505050565b8035825263ffffffff611ddf60208301611be2565b16602083015267ffffffffffffffff611dfa60408301611af8565b1660408301525050565b6000610100888352876020840152806040840152611e2481840188611cde565b90508281036060840152611e388187611d75565b915050611e486080830185611dca565b6bffffffffffffffffffffffff19831660e0830152979650505050505050565b8381526bffffffffffffffffffffffff198316602082015260a08101611e916040830184611dca565b949350505050565b85815284602082015260e060408201526000611eb860e0830186611cde565b8281036060840152611eca8186611d75565b915050611dc06080830184611dca565b6000610140868352856020840152806040840152611efa81840186611cde565b91505063ffffffff611f0b84611be2565b1660608301526001600160a01b03611f256020850161185f565b16608083015260408301357fffffffffffffffff00000000000000000000000000000000000000000000000081168114611f5e57600080fd5b7fffffffffffffffff0000000000000000000000000000000000000000000000001660a0830152611f9160608401611687565b6bffffffffffffffffffffffff191660c0830152611fb160808401611687565b6bffffffffffffffffffffffff191660e0830152611fd160a08401611c3f565b7fffffffff000000000000000000000000000000000000000000000000000000001661010083015261200560c0840161185f565b6001600160a01b0381166101208401525095945050505050565b8581528460208201526bffffffffffffffffffffffff1984166040820152608060608201526000612054608083018486611cb5565b979650505050505050565b86815285602082015260e06040820152600061207f60e083018688611cb5565b905083606083015282356080830152602083013560a0830152604083013560ff81168082146120ad57600080fd5b8060c08501525050979650505050505050565b8681526080602082015260006120da608083018789611cb5565b82810360408401526120ed818688611cb5565b9150508215156060830152979650505050505050565b82815260808101611a3b6020830184611dca565b60006101008983528860208401526bffffffffffffffffffffffff19881660408401526121476060840188611dca565b8060c084015261215a8184018688611cb5565b91505067ffffffffffffffff831660e083015298975050505050505050565b848152606060208201526000612193606083018587611cb5565b90508260408301529594505050505056fea26469706673582212208ef5f65d4775e078bdcccff7e94602d00c21aca55595c13f460926220c9c5a2e64736f6c63430008090033",
1919
+ "bytecode": "0x60806040523480156200001157600080fd5b506040516200330938038062003309833981016040819052620000349162000363565b6200003f33620002f6565b6001600160a01b0385166200009b5760405162461bcd60e51b815260206004820152601b60248201527f42616e6b20616464726573732063616e6e6f74206265207a65726f000000000060448201526064015b60405180910390fd5b600180546001600160a01b0319166001600160a01b038781169190911790915584166200010b5760405162461bcd60e51b815260206004820152601c60248201527f52656c617920616464726573732063616e6e6f74206265207a65726f00000000604482015260640162000092565b600280546001600160a01b0319166001600160a01b03868116919091179091558216620001905760405162461bcd60e51b815260206004820152602c60248201527f45434453412057616c6c6574205265676973747279206164647265737320636160448201526b6e6e6f74206265207a65726f60a01b606482015260840162000092565b600380546001600160a01b0319166001600160a01b03848116919091179091558316620002005760405162461bcd60e51b815260206004820152601f60248201527f547265617375727920616464726573732063616e6e6f74206265207a65726f00604482015260640162000092565b600580546004929092556001600160a01b03939093166001600160e01b031991821617613d0960a61b1790925550600680546001600160801b03191669271000000000000007d017905560098054600a80546127106001600160401b03199091161790556202a300600b559091167507d000000000000f424000093a800000000000002710179055505069021e19e0c9bab2400000600e556064600f5562093a80601055671bc16d674ec80000601155601480546001600160c01b03191676eff100000000003b9aca000000000005f5e10000093a80179055601580546001600160c01b0316621dcd6560c91b179055620003ca565b600080546001600160a01b038381166001600160a01b0319831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b80516001600160a01b03811681146200035e57600080fd5b919050565b600080600080600060a086880312156200037c57600080fd5b620003878662000346565b9450620003976020870162000346565b9350620003a76040870162000346565b9250620003b76060870162000346565b9150608086015190509295509295909350565b612f2f80620003da6000396000f3fe6080604052600436106102c65760003560e01c806375b922d111610179578063b34b3216116100d6578063d6eccdf01161008a578063e53c0b5511610064578063e53c0b5514610c82578063e65e19d514610cbb578063f2fde38b14610ce857600080fd5b8063d6eccdf014610c11578063d95027b714610c31578063ded1d24a14610c5157600080fd5b8063be05abe3116100bb578063be05abe314610b6b578063c42b64d014610ba5578063d3ecfd0c14610bf157600080fd5b8063b34b321614610b2b578063bbeac4bf14610b4b57600080fd5b8063a8fa0f421161012d578063abaeed8f11610112578063abaeed8f1461096d578063b02c43d01461098d578063b2146cd614610aeb57600080fd5b8063a8fa0f421461091a578063a9de2f3a1461093a57600080fd5b80638da5cb5b1161015e5780638da5cb5b146108bc57806396db2537146108da578063a145e2d5146108fa57600080fd5b806375b922d11461086357806377145f211461089c57600080fd5b806359a9d90a1161022757806367f27247116101db5780636d02b43c116101c05780636d02b43c146107e65780636e70ce41146107f9578063715018a61461084e57600080fd5b806367f27247146107a657806368763f1e146107c657600080fd5b806360d712fc1161020c57806360d712fc146106c457806361ccf97a146106e457806361d027b31461077457600080fd5b806359a9d90a146106845780635c0b4812146106a457600080fd5b80632f429b641161027e57806333e957cb1161026357806333e957cb146105655780633dce981214610644578063575e42791461066457600080fd5b80632f429b6414610525578063319a33a91461054557600080fd5b806317c96400116102af57806317c96400146104b357806324028c11146104d55780632bb818c21461050757600080fd5b806303d952f7146102cb5780630b6ba19d146103f5575b600080fd5b3480156102d757600080fd5b506103896102e6366004612126565b6040805160a081018252600080825260208201819052918101829052606081018290526080810191909152506000908152600c6020908152604091829020825160a08101845281546001600160a01b0381168252600160a01b900467ffffffffffffffff9081169382019390935260019091015480831693820193909352600160401b83049091166060820152600160801b90910463ffffffff16608082015290565b6040516103ec9190600060a0820190506001600160a01b038351168252602083015167ffffffffffffffff8082166020850152806040860151166040850152806060860151166060850152505063ffffffff608084015116608083015292915050565b60405180910390f35b34801561040157600080fd5b50610389610410366004612126565b6040805160a081018252600080825260208201819052918101829052606081018290526080810191909152506000908152600d6020908152604091829020825160a08101845281546001600160a01b0381168252600160a01b900467ffffffffffffffff9081169382019390935260019091015480831693820193909352600160401b83049091166060820152600160801b90910463ffffffff16608082015290565b3480156104bf57600080fd5b506104d36104ce36600461215c565b610d08565b005b3480156104e157600080fd5b50601554600160a01b900463ffffffff1660405163ffffffff90911681526020016103ec565b34801561051357600080fd5b506004546040519081526020016103ec565b34801561053157600080fd5b506104d36105403660046121e6565b610d79565b34801561055157600080fd5b506104d361056036600461226c565b610e06565b34801561057157600080fd5b50610600610580366004612126565b60408051608081018252600080825260208201819052918101829052606081019190915250600090815260126020908152604091829020825160808101845281546001600160a01b031681526001820154928101929092526002015463ffffffff81169282019290925264010000000090910460ff161515606082015290565b6040516103ec919081516001600160a01b031681526020808301519082015260408083015163ffffffff169082015260609182015115159181019190915260800190565b34801561065057600080fd5b506104d361065f36600461228e565b610e9b565b34801561067057600080fd5b506104d361067f3660046122ba565b610f2b565b34801561069057600080fd5b506104d361069f3660046122ee565b610fb4565b3480156106b057600080fd5b506104d36106bf36600461235a565b61100b565b3480156106d057600080fd5b506104d36106df3660046123dc565b611060565b3480156106f057600080fd5b5061073860145460155463ffffffff8083169367ffffffffffffffff6401000000008504811694600160601b8104821694600160a01b90910490931692600160c01b90041690565b6040805163ffffffff968716815267ffffffffffffffff958616602082015293851690840152931660608201529116608082015260a0016103ec565b34801561078057600080fd5b506005546001600160a01b03165b6040516001600160a01b0390911681526020016103ec565b3480156107b257600080fd5b506104d36107c136600461244f565b611119565b3480156107d257600080fd5b506104d36107e13660046124b6565b611170565b6104d36107f436600461251b565b6111d9565b34801561080557600080fd5b50600954600a54600b546040805167ffffffffffffffff600160601b860481168252600160a01b90950485166020820152939092169183019190915260608201526080016103ec565b34801561085a57600080fd5b506104d3611232565b34801561086f57600080fd5b50600e54600f546010546011546040805194855260208501939093529183015260608201526080016103ec565b3480156108a857600080fd5b506104d36108b736600461256e565b611298565b3480156108c857600080fd5b506000546001600160a01b031661078e565b3480156108e657600080fd5b506104d36108f53660046125e3565b61132a565b34801561090657600080fd5b506104d361091536600461262e565b611398565b34801561092657600080fd5b506104d361093536600461228e565b6113eb565b34801561094657600080fd5b50600154600254604080516001600160a01b039384168152929091166020830152016103ec565b34801561097957600080fd5b506104d361098836600461268f565b611451565b34801561099957600080fd5b50610a756109a8366004612126565b6040805160c081018252600080825260208201819052918101829052606081018290526080810182905260a081019190915250600090815260076020908152604091829020825160c08101845281546001600160a01b03808216835267ffffffffffffffff600160a01b80840482169685019690965263ffffffff7c0100000000000000000000000000000000000000000000000000000000938490048116978501979097526001949094015490811660608401529384049092166080820152910490911660a082015290565b6040516103ec9190600060c0820190506001600160a01b03808451168352602084015167ffffffffffffffff80821660208601526040860151915063ffffffff80831660408701528360608801511660608701528160808801511660808701528060a08801511660a08701525050505092915050565b348015610af757600080fd5b50610b1b610b06366004612126565b60009081526013602052604090205460ff1690565b60405190151581526020016103ec565b348015610b3757600080fd5b506104d3610b463660046121e6565b6114e9565b348015610b5757600080fd5b506104d3610b6636600461272b565b611542565b348015610b7757600080fd5b506009546040805167ffffffffffffffff83168152600160401b90920463ffffffff166020830152016103ec565b348015610bb157600080fd5b5060055460065460408051600160a01b90930467ffffffffffffffff90811684528083166020850152600160401b909204909116908201526060016103ec565b348015610bfd57600080fd5b506104d3610c0c36600461275d565b6115aa565b348015610c1d57600080fd5b506104d3610c2c366004612787565b611614565b348015610c3d57600080fd5b506104d3610c4c3660046127f2565b61166f565b348015610c5d57600080fd5b5060155460601b6040516bffffffffffffffffffffffff1990911681526020016103ec565b348015610c8e57600080fd5b50610b1b610c9d36600461283e565b6001600160a01b031660009081526008602052604090205460ff1690565b348015610cc757600080fd5b50610cdb610cd636600461226c565b6116c6565b6040516103ec919061286f565b348015610cf457600080fd5b506104d3610d0336600461283e565b6117d0565b6000546001600160a01b03163314610d675760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657260448201526064015b60405180910390fd5b610d7460018484846118b2565b505050565b6040517e92bac900000000000000000000000000000000000000000000000000000000815273__$edce581bb06331cf4dae1387760565e5d1$__906292bac990610dd0906001908890889088908890600401612ac5565b60006040518083038186803b158015610de857600080fd5b505af4158015610dfc573d6000803e3d6000fd5b5050505050505050565b6040517fb45b31d5000000000000000000000000000000000000000000000000000000008152600160048201526bffffffffffffffffffffffff198216602482015273__$edce581bb06331cf4dae1387760565e5d1$__9063b45b31d5906044015b60006040518083038186803b158015610e8057600080fd5b505af4158015610e94573d6000803e3d6000fd5b5050505050565b6040517fc87de7f400000000000000000000000000000000000000000000000000000000815260016004820152602481018390526044810182905273__$0f118c52967a3847a37f0a2ef02ffcee04$__9063c87de7f4906064015b60006040518083038186803b158015610f0e57600080fd5b505af4158015610f22573d6000803e3d6000fd5b50505050505050565b6040517f99b0b84700000000000000000000000000000000000000000000000000000000815273__$0f118c52967a3847a37f0a2ef02ffcee04$__906399b0b84790610f809060019086908690600401612b1f565b60006040518083038186803b158015610f9857600080fd5b505af4158015610fac573d6000803e3d6000fd5b505050505050565b6040517f510fc50a00000000000000000000000000000000000000000000000000000000815273__$61f169726e973bba1227e0c23d2755f88e$__9063510fc50a90610ef690600190879087908790600401612b50565b6040517faea7fd0b00000000000000000000000000000000000000000000000000000000815273__$894ce12e79ca3e5683c1b49e363f37fa22$__9063aea7fd0b90610f809060019086908690600401612b94565b6000546001600160a01b031633146110ba5760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610d5e565b6001600160a01b038216600081815260086020908152604091829020805460ff191685151590811790915591519182527f9065599c12c4294d9e2201638226d0d0beb95c228f468c4e7c2bdb8322b6066f910160405180910390a25050565b6040517f13d0c66800000000000000000000000000000000000000000000000000000000815273__$9935b6ea18e0c526c293569ddd26842c9b$__906313d0c66890610ef690600190879087908790600401612cd1565b6000546001600160a01b031633146111ca5760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610d5e565b610e94600186868686866119f8565b6040517f3b5d9f2400000000000000000000000000000000000000000000000000000000815273__$a542940934c03bae9a39609192cb25cc3c$__90633b5d9f2490610dd0906001908890889088908890600401612d00565b6000546001600160a01b0316331461128c5760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610d5e565b6112966000611ca2565b565b6040517f624526fe00000000000000000000000000000000000000000000000000000000815273__$a542940934c03bae9a39609192cb25cc3c$__9063624526fe906112f39060019089908990899089908990600401612d5a565b60006040518083038186803b15801561130b57600080fd5b505af415801561131f573d6000803e3d6000fd5b505050505050505050565b6000546001600160a01b031633146113845760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610d5e565b611392600185858585611d0a565b50505050565b6040517fd079fbb100000000000000000000000000000000000000000000000000000000815273__$0f118c52967a3847a37f0a2ef02ffcee04$__9063d079fbb190610e68906001908590600401612d9d565b6040517f4afbe4c90000000000000000000000000000000000000000000000000000000081526001600482015260248101849052604481018390526064810182905273__$0f118c52967a3847a37f0a2ef02ffcee04$__90634afbe4c990608401610ef6565b6040517fc8f7794300000000000000000000000000000000000000000000000000000000815273__$edce581bb06331cf4dae1387760565e5d1$__9063c8f77943906114b0906001908b908b908b908b908b908b908b90600401612db1565b60006040518083038186803b1580156114c857600080fd5b505af41580156114dc573d6000803e3d6000fd5b5050505050505050505050565b6040517fa164de6e00000000000000000000000000000000000000000000000000000000815273__$9935b6ea18e0c526c293569ddd26842c9b$__9063a164de6e90610dd0906001908890889088908890600401612ac5565b6000546001600160a01b0316331461159c5760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610d5e565b611392600185858585611ee3565b6000546001600160a01b031633146116045760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610d5e565b61161060018383612031565b5050565b6040517f7333b36900000000000000000000000000000000000000000000000000000000815273__$9935b6ea18e0c526c293569ddd26842c9b$__90637333b369906112f39060019089908990899089908990600401612e75565b6040517f72c9c91c00000000000000000000000000000000000000000000000000000000815273__$a542940934c03bae9a39609192cb25cc3c$__906372c9c91c90610ef690600190879087908790600401612ece565b6040805161010081018252600080825260208201819052918101829052606081018290526080810182905260a0810182905260c0810182905260e08101919091526bffffffffffffffffffffffff19821660009081526016602090815260409182902082516101008101845281548152600182015492810192909252600281015467ffffffffffffffff81169383019390935263ffffffff600160401b840481166060840152600160601b840481166080840152600160801b84041660a0830152909160c083019060ff600160a01b9091041660058111156117aa576117aa612859565b60058111156117bb576117bb612859565b81526020016003820154815250509050919050565b6000546001600160a01b0316331461182a5760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610d5e565b6001600160a01b0381166118a65760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201527f64647265737300000000000000000000000000000000000000000000000000006064820152608401610d5e565b6118af81611ca2565b50565b60008267ffffffffffffffff16116119325760405162461bcd60e51b815260206004820152603660248201527f4465706f736974207472656173757279206665652064697669736f72206d757360448201527f742062652067726561746572207468616e207a65726f000000000000000000006064820152608401610d5e565b6004840180547fffffffff0000000000000000ffffffffffffffffffffffffffffffffffffffff16600160a01b67ffffffffffffffff868116918202929092179092556005860180548583167fffffffffffffffffffffffffffffffff000000000000000000000000000000009091168117600160401b938616938402179091556040805193845260208401919091528201527f1ced468902ca566e746a3c8c9516af81f8de9f1021c365083be9f2625ebfb7b59060600160405180910390a150505050565b60008467ffffffffffffffff1611611a785760405162461bcd60e51b815260206004820152603460248201527f57616c6c6574206d696e696d756d204254432062616c616e6365206d7573742060448201527f62652067726561746572207468616e207a65726f0000000000000000000000006064820152608401610d5e565b8367ffffffffffffffff168367ffffffffffffffff1611611b015760405162461bcd60e51b815260206004820152603b60248201527f57616c6c6574206d6178696d756d204254432062616c616e6365206d7573742060448201527f62652067726561746572207468616e20746865206d696e696d756d00000000006064820152608401610d5e565b60008167ffffffffffffffff1611611b815760405162461bcd60e51b815260206004820152603560248201527f57616c6c6574206d6178696d756d20425443207472616e73666572206d75737460448201527f2062652067726561746572207468616e207a65726f00000000000000000000006064820152608401610d5e565b60138601805463ffffffff8781166bffffffffffffffffffffffff19909216821764010000000067ffffffffffffffff898116918202929092177fffffffffffffffff000000000000000000000000ffffffffffffffffffffffff16600160601b8984169081027fffffffffffffffff00000000ffffffffffffffffffffffffffffffffffffffff1691909117600160a01b9489169485021790955560148b01805477ffffffffffffffffffffffffffffffffffffffffffffffff16600160c01b938816938402179055604080519485526020850191909152830193909352606082015260808101919091527fe03f8d14d8a0cb9620cd0ed710ac4177c8398da40846aaffcb078ca2cfd088069060a00160405180910390a1505050505050565b600080546001600160a01b038381167fffffffffffffffffffffffff0000000000000000000000000000000000000000831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b60008367ffffffffffffffff1611611d8a5760405162461bcd60e51b815260206004820152603960248201527f526564656d7074696f6e207472656173757279206665652064697669736f722060448201527f6d7573742062652067726561746572207468616e207a65726f000000000000006064820152608401610d5e565b60008111611e005760405162461bcd60e51b815260206004820152602c60248201527f526564656d7074696f6e2074696d656f7574206d75737420626520677265617460448201527f6572207468616e207a65726f00000000000000000000000000000000000000006064820152608401610d5e565b6008850180547fffffffff00000000000000000000000000000000ffffffffffffffffffffffff16600160601b67ffffffffffffffff8781169182027fffffffff0000000000000000ffffffffffffffffffffffffffffffffffffffff1692909217600160a01b8784169081029190911790935560098801805467ffffffffffffffff19169286169283179055600a880184905560408051918252602082019390935291820152606081018290527f92c7dd8c8e389aa6dd2d4ed3d2f1848abbaef487207c28f4c5c4990c5116ff1f906080015b60405180910390a15050505050565b6064831115611f5a5760405162461bcd60e51b815260206004820152603e60248201527f4672617564206e6f74696669657220726577617264206d756c7469706c69657260448201527f206d75737420626520696e207468652072616e6765205b302c203130305d00006064820152608401610d5e565b60008211611fd05760405162461bcd60e51b815260206004820152603860248201527f4672617564206368616c6c656e6765206465666561742074696d656f7574206d60448201527f7573742062652067726561746572207468616e207a65726f00000000000000006064820152608401610d5e565b600d8501849055600e8501839055600f8501829055601085018190556040805185815260208101859052908101839052606081018290527f3d5b171ef2601a0b7e9eb653999f8e932fb569e8f84526e1eea05c053063a1d690608001611ed4565b60008163ffffffff16116120ad5760405162461bcd60e51b815260206004820152602e60248201527f4d6f76696e672066756e64732074696d656f7574206d7573742062652067726560448201527f61746572207468616e207a65726f0000000000000000000000000000000000006064820152608401610d5e565b60088301805467ffffffffffffffff84166bffffffffffffffffffffffff199091168117600160401b63ffffffff8516908102919091179092556040805191825260208201929092527f6871b29495da7552b91b95611e45bc1898b37c7b06fd9e8be0915154b1bac186910160405180910390a1505050565b60006020828403121561213857600080fd5b5035919050565b803567ffffffffffffffff8116811461215757600080fd5b919050565b60008060006060848603121561217157600080fd5b61217a8461213f565b92506121886020850161213f565b91506121966040850161213f565b90509250925092565b6000608082840312156121b157600080fd5b50919050565b6000606082840312156121b157600080fd5b80356bffffffffffffffffffffffff198116811461215757600080fd5b60008060008060c085870312156121fc57600080fd5b843567ffffffffffffffff8082111561221457600080fd5b6122208883890161219f565b9550602087013591508082111561223657600080fd5b50612243878288016121b7565b93505061225386604087016121b7565b915061226160a086016121c9565b905092959194509250565b60006020828403121561227e57600080fd5b612287826121c9565b9392505050565b6000806000606084860312156122a357600080fd5b505081359360208301359350604090920135919050565b600080608083850312156122cd57600080fd5b6122d6836121c9565b91506122e584602085016121b7565b90509250929050565b600080600060a0848603121561230357600080fd5b833567ffffffffffffffff8082111561231b57600080fd5b6123278783880161219f565b9450602086013591508082111561233d57600080fd5b5061234a868287016121b7565b92505061219685604086016121b7565b60008082840361010081121561236f57600080fd5b833567ffffffffffffffff81111561238657600080fd5b6123928682870161219f565b93505060e0601f19820112156123a757600080fd5b506020830190509250929050565b80356001600160a01b038116811461215757600080fd5b8035801515811461215757600080fd5b600080604083850312156123ef57600080fd5b6123f8836123b5565b91506122e5602084016123cc565b60008083601f84011261241857600080fd5b50813567ffffffffffffffff81111561243057600080fd5b60208301915083602082850101111561244857600080fd5b9250929050565b60008060006040848603121561246457600080fd5b61246d846121c9565b9250602084013567ffffffffffffffff81111561248957600080fd5b61249586828701612406565b9497909650939450505050565b803563ffffffff8116811461215757600080fd5b600080600080600060a086880312156124ce57600080fd5b6124d7866124a2565b94506124e56020870161213f565b93506124f36040870161213f565b9250612501606087016124a2565b915061250f6080870161213f565b90509295509295909350565b60008060008060a0858703121561253157600080fd5b843567ffffffffffffffff81111561254857600080fd5b61255487828801612406565b9095509350506020850135915061226186604087016121b7565b60008060008060006060868803121561258657600080fd5b853567ffffffffffffffff8082111561259e57600080fd5b6125aa89838a01612406565b909750955060208801359150808211156125c357600080fd5b506125d088828901612406565b909450925061250f9050604087016123cc565b600080600080608085870312156125f957600080fd5b6126028561213f565b93506126106020860161213f565b925061261e6040860161213f565b9396929550929360600135925050565b60006060828403121561264057600080fd5b61228783836121b7565b60008083601f84011261265c57600080fd5b50813567ffffffffffffffff81111561267457600080fd5b6020830191508360208260051b850101111561244857600080fd5b600080600080600080600060e0888a0312156126aa57600080fd5b6126b3886121c9565b96506126c28960208a016121b7565b9550608088013567ffffffffffffffff808211156126df57600080fd5b6126eb8b838c0161264a565b909750955060a08a0135945060c08a013591508082111561270b57600080fd5b506127188a828b0161264a565b989b979a50959850939692959293505050565b6000806000806080858703121561274157600080fd5b5050823594602084013594506040840135936060013592509050565b6000806040838503121561277057600080fd5b6127798361213f565b91506122e5602084016124a2565b600080600080600060c0868803121561279f57600080fd5b6127a8866121c9565b94506127b787602088016121b7565b9350608086013567ffffffffffffffff8111156127d357600080fd5b6127df88828901612406565b909450925061250f905060a0870161213f565b60008060006040848603121561280757600080fd5b833567ffffffffffffffff81111561281e57600080fd5b61282a86828701612406565b909790965060209590950135949350505050565b60006020828403121561285057600080fd5b612287826123b5565b634e487b7160e01b600052602160045260246000fd5b600061010082019050825182526020830151602083015267ffffffffffffffff6040840151166040830152606083015163ffffffff80821660608501528060808601511660808501528060a08601511660a0850152505060c0830151600681106128e957634e487b7160e01b600052602160045260246000fd5b8060c08401525060e083015160e083015292915050565b80357fffffffff000000000000000000000000000000000000000000000000000000008116811461215757600080fd5b6000808335601e1984360301811261294757600080fd5b830160208101925035905067ffffffffffffffff81111561296757600080fd5b80360383131561244857600080fd5b81835281816020850137506000828201602090810191909152601f909101601f19169091010190565b60007fffffffff00000000000000000000000000000000000000000000000000000000806129cc84612900565b1684526129dc6020840184612930565b608060208701526129f1608087018284612976565b915050612a016040850185612930565b8683036040880152612a14838284612976565b9250505081612a2560608601612900565b166060860152809250505092915050565b6000612a428283612930565b60608552612a54606086018284612976565b91505060208301356020850152612a6e6040840184612930565b8583036040870152612a81838284612976565b9695505050505050565b8035825263ffffffff612aa0602083016124a2565b16602083015267ffffffffffffffff612abb6040830161213f565b1660408301525050565b85815260e060208201526000612ade60e083018761299f565b8281036040840152612af08187612a36565b915050612b006060830185612a8b565b6bffffffffffffffffffffffff19831660c08301529695505050505050565b8381526bffffffffffffffffffffffff198316602082015260a08101612b486040830184612a8b565b949350505050565b84815260c060208201526000612b6960c083018661299f565b8281036040840152612b7b8186612a36565b915050612b8b6060830184612a8b565b95945050505050565b6000610120858352806020840152612bae8184018661299f565b91505063ffffffff612bbf846124a2565b1660408301526001600160a01b03612bd9602085016123b5565b16606083015260408301357fffffffffffffffff00000000000000000000000000000000000000000000000081168114612c1257600080fd5b7fffffffffffffffff000000000000000000000000000000000000000000000000166080830152612c45606084016121c9565b6bffffffffffffffffffffffff191660a0830152612c65608084016121c9565b6bffffffffffffffffffffffff191660c0830152612c8560a08401612900565b7fffffffff000000000000000000000000000000000000000000000000000000001660e0830152612cb860c084016123b5565b6001600160a01b03811661010084015250949350505050565b8481526bffffffffffffffffffffffff1984166020820152606060408201526000612a81606083018486612976565b85815260c060208201526000612d1a60c083018688612976565b90508360408301528235606083015260208301356080830152604083013560ff8116808214612d4857600080fd5b8060a085015250509695505050505050565b868152608060208201526000612d74608083018789612976565b8281036040840152612d87818688612976565b9150508215156060830152979650505050505050565b828152608081016122876020830184612a8b565b60006101008083018b845260206bffffffffffffffffffffffff19808d1682870152612de0604087018d612a8b565b60a08601939093529088905261012084019189919060005b8a811015612e215763ffffffff612e0e856124a2565b1685529382019392820192600101612df8565b5060c0860189905285840360e087015286845287938201925060005b87811015612e625781612e4f866121c9565b1684529382019392820192600101612e3d565b50919d9c50505050505050505050505050565b8681526bffffffffffffffffffffffff1986166020820152612e9a6040820186612a8b565b60e060a08201526000612eb160e083018587612976565b905067ffffffffffffffff831660c0830152979650505050505050565b848152606060208201526000612ee8606083018587612976565b90508260408301529594505050505056fea2646970667358221220bba646da8d2ca769521c5a2660434d6cf41d6c4289597ac3d86a966e5435aedb64736f6c63430008090033",
1920
+ "deployedBytecode": "0x6080604052600436106102c65760003560e01c806375b922d111610179578063b34b3216116100d6578063d6eccdf01161008a578063e53c0b5511610064578063e53c0b5514610c82578063e65e19d514610cbb578063f2fde38b14610ce857600080fd5b8063d6eccdf014610c11578063d95027b714610c31578063ded1d24a14610c5157600080fd5b8063be05abe3116100bb578063be05abe314610b6b578063c42b64d014610ba5578063d3ecfd0c14610bf157600080fd5b8063b34b321614610b2b578063bbeac4bf14610b4b57600080fd5b8063a8fa0f421161012d578063abaeed8f11610112578063abaeed8f1461096d578063b02c43d01461098d578063b2146cd614610aeb57600080fd5b8063a8fa0f421461091a578063a9de2f3a1461093a57600080fd5b80638da5cb5b1161015e5780638da5cb5b146108bc57806396db2537146108da578063a145e2d5146108fa57600080fd5b806375b922d11461086357806377145f211461089c57600080fd5b806359a9d90a1161022757806367f27247116101db5780636d02b43c116101c05780636d02b43c146107e65780636e70ce41146107f9578063715018a61461084e57600080fd5b806367f27247146107a657806368763f1e146107c657600080fd5b806360d712fc1161020c57806360d712fc146106c457806361ccf97a146106e457806361d027b31461077457600080fd5b806359a9d90a146106845780635c0b4812146106a457600080fd5b80632f429b641161027e57806333e957cb1161026357806333e957cb146105655780633dce981214610644578063575e42791461066457600080fd5b80632f429b6414610525578063319a33a91461054557600080fd5b806317c96400116102af57806317c96400146104b357806324028c11146104d55780632bb818c21461050757600080fd5b806303d952f7146102cb5780630b6ba19d146103f5575b600080fd5b3480156102d757600080fd5b506103896102e6366004612126565b6040805160a081018252600080825260208201819052918101829052606081018290526080810191909152506000908152600c6020908152604091829020825160a08101845281546001600160a01b0381168252600160a01b900467ffffffffffffffff9081169382019390935260019091015480831693820193909352600160401b83049091166060820152600160801b90910463ffffffff16608082015290565b6040516103ec9190600060a0820190506001600160a01b038351168252602083015167ffffffffffffffff8082166020850152806040860151166040850152806060860151166060850152505063ffffffff608084015116608083015292915050565b60405180910390f35b34801561040157600080fd5b50610389610410366004612126565b6040805160a081018252600080825260208201819052918101829052606081018290526080810191909152506000908152600d6020908152604091829020825160a08101845281546001600160a01b0381168252600160a01b900467ffffffffffffffff9081169382019390935260019091015480831693820193909352600160401b83049091166060820152600160801b90910463ffffffff16608082015290565b3480156104bf57600080fd5b506104d36104ce36600461215c565b610d08565b005b3480156104e157600080fd5b50601554600160a01b900463ffffffff1660405163ffffffff90911681526020016103ec565b34801561051357600080fd5b506004546040519081526020016103ec565b34801561053157600080fd5b506104d36105403660046121e6565b610d79565b34801561055157600080fd5b506104d361056036600461226c565b610e06565b34801561057157600080fd5b50610600610580366004612126565b60408051608081018252600080825260208201819052918101829052606081019190915250600090815260126020908152604091829020825160808101845281546001600160a01b031681526001820154928101929092526002015463ffffffff81169282019290925264010000000090910460ff161515606082015290565b6040516103ec919081516001600160a01b031681526020808301519082015260408083015163ffffffff169082015260609182015115159181019190915260800190565b34801561065057600080fd5b506104d361065f36600461228e565b610e9b565b34801561067057600080fd5b506104d361067f3660046122ba565b610f2b565b34801561069057600080fd5b506104d361069f3660046122ee565b610fb4565b3480156106b057600080fd5b506104d36106bf36600461235a565b61100b565b3480156106d057600080fd5b506104d36106df3660046123dc565b611060565b3480156106f057600080fd5b5061073860145460155463ffffffff8083169367ffffffffffffffff6401000000008504811694600160601b8104821694600160a01b90910490931692600160c01b90041690565b6040805163ffffffff968716815267ffffffffffffffff958616602082015293851690840152931660608201529116608082015260a0016103ec565b34801561078057600080fd5b506005546001600160a01b03165b6040516001600160a01b0390911681526020016103ec565b3480156107b257600080fd5b506104d36107c136600461244f565b611119565b3480156107d257600080fd5b506104d36107e13660046124b6565b611170565b6104d36107f436600461251b565b6111d9565b34801561080557600080fd5b50600954600a54600b546040805167ffffffffffffffff600160601b860481168252600160a01b90950485166020820152939092169183019190915260608201526080016103ec565b34801561085a57600080fd5b506104d3611232565b34801561086f57600080fd5b50600e54600f546010546011546040805194855260208501939093529183015260608201526080016103ec565b3480156108a857600080fd5b506104d36108b736600461256e565b611298565b3480156108c857600080fd5b506000546001600160a01b031661078e565b3480156108e657600080fd5b506104d36108f53660046125e3565b61132a565b34801561090657600080fd5b506104d361091536600461262e565b611398565b34801561092657600080fd5b506104d361093536600461228e565b6113eb565b34801561094657600080fd5b50600154600254604080516001600160a01b039384168152929091166020830152016103ec565b34801561097957600080fd5b506104d361098836600461268f565b611451565b34801561099957600080fd5b50610a756109a8366004612126565b6040805160c081018252600080825260208201819052918101829052606081018290526080810182905260a081019190915250600090815260076020908152604091829020825160c08101845281546001600160a01b03808216835267ffffffffffffffff600160a01b80840482169685019690965263ffffffff7c0100000000000000000000000000000000000000000000000000000000938490048116978501979097526001949094015490811660608401529384049092166080820152910490911660a082015290565b6040516103ec9190600060c0820190506001600160a01b03808451168352602084015167ffffffffffffffff80821660208601526040860151915063ffffffff80831660408701528360608801511660608701528160808801511660808701528060a08801511660a08701525050505092915050565b348015610af757600080fd5b50610b1b610b06366004612126565b60009081526013602052604090205460ff1690565b60405190151581526020016103ec565b348015610b3757600080fd5b506104d3610b463660046121e6565b6114e9565b348015610b5757600080fd5b506104d3610b6636600461272b565b611542565b348015610b7757600080fd5b506009546040805167ffffffffffffffff83168152600160401b90920463ffffffff166020830152016103ec565b348015610bb157600080fd5b5060055460065460408051600160a01b90930467ffffffffffffffff90811684528083166020850152600160401b909204909116908201526060016103ec565b348015610bfd57600080fd5b506104d3610c0c36600461275d565b6115aa565b348015610c1d57600080fd5b506104d3610c2c366004612787565b611614565b348015610c3d57600080fd5b506104d3610c4c3660046127f2565b61166f565b348015610c5d57600080fd5b5060155460601b6040516bffffffffffffffffffffffff1990911681526020016103ec565b348015610c8e57600080fd5b50610b1b610c9d36600461283e565b6001600160a01b031660009081526008602052604090205460ff1690565b348015610cc757600080fd5b50610cdb610cd636600461226c565b6116c6565b6040516103ec919061286f565b348015610cf457600080fd5b506104d3610d0336600461283e565b6117d0565b6000546001600160a01b03163314610d675760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657260448201526064015b60405180910390fd5b610d7460018484846118b2565b505050565b6040517e92bac900000000000000000000000000000000000000000000000000000000815273__$edce581bb06331cf4dae1387760565e5d1$__906292bac990610dd0906001908890889088908890600401612ac5565b60006040518083038186803b158015610de857600080fd5b505af4158015610dfc573d6000803e3d6000fd5b5050505050505050565b6040517fb45b31d5000000000000000000000000000000000000000000000000000000008152600160048201526bffffffffffffffffffffffff198216602482015273__$edce581bb06331cf4dae1387760565e5d1$__9063b45b31d5906044015b60006040518083038186803b158015610e8057600080fd5b505af4158015610e94573d6000803e3d6000fd5b5050505050565b6040517fc87de7f400000000000000000000000000000000000000000000000000000000815260016004820152602481018390526044810182905273__$0f118c52967a3847a37f0a2ef02ffcee04$__9063c87de7f4906064015b60006040518083038186803b158015610f0e57600080fd5b505af4158015610f22573d6000803e3d6000fd5b50505050505050565b6040517f99b0b84700000000000000000000000000000000000000000000000000000000815273__$0f118c52967a3847a37f0a2ef02ffcee04$__906399b0b84790610f809060019086908690600401612b1f565b60006040518083038186803b158015610f9857600080fd5b505af4158015610fac573d6000803e3d6000fd5b505050505050565b6040517f510fc50a00000000000000000000000000000000000000000000000000000000815273__$61f169726e973bba1227e0c23d2755f88e$__9063510fc50a90610ef690600190879087908790600401612b50565b6040517faea7fd0b00000000000000000000000000000000000000000000000000000000815273__$894ce12e79ca3e5683c1b49e363f37fa22$__9063aea7fd0b90610f809060019086908690600401612b94565b6000546001600160a01b031633146110ba5760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610d5e565b6001600160a01b038216600081815260086020908152604091829020805460ff191685151590811790915591519182527f9065599c12c4294d9e2201638226d0d0beb95c228f468c4e7c2bdb8322b6066f910160405180910390a25050565b6040517f13d0c66800000000000000000000000000000000000000000000000000000000815273__$9935b6ea18e0c526c293569ddd26842c9b$__906313d0c66890610ef690600190879087908790600401612cd1565b6000546001600160a01b031633146111ca5760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610d5e565b610e94600186868686866119f8565b6040517f3b5d9f2400000000000000000000000000000000000000000000000000000000815273__$a542940934c03bae9a39609192cb25cc3c$__90633b5d9f2490610dd0906001908890889088908890600401612d00565b6000546001600160a01b0316331461128c5760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610d5e565b6112966000611ca2565b565b6040517f624526fe00000000000000000000000000000000000000000000000000000000815273__$a542940934c03bae9a39609192cb25cc3c$__9063624526fe906112f39060019089908990899089908990600401612d5a565b60006040518083038186803b15801561130b57600080fd5b505af415801561131f573d6000803e3d6000fd5b505050505050505050565b6000546001600160a01b031633146113845760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610d5e565b611392600185858585611d0a565b50505050565b6040517fd079fbb100000000000000000000000000000000000000000000000000000000815273__$0f118c52967a3847a37f0a2ef02ffcee04$__9063d079fbb190610e68906001908590600401612d9d565b6040517f4afbe4c90000000000000000000000000000000000000000000000000000000081526001600482015260248101849052604481018390526064810182905273__$0f118c52967a3847a37f0a2ef02ffcee04$__90634afbe4c990608401610ef6565b6040517fc8f7794300000000000000000000000000000000000000000000000000000000815273__$edce581bb06331cf4dae1387760565e5d1$__9063c8f77943906114b0906001908b908b908b908b908b908b908b90600401612db1565b60006040518083038186803b1580156114c857600080fd5b505af41580156114dc573d6000803e3d6000fd5b5050505050505050505050565b6040517fa164de6e00000000000000000000000000000000000000000000000000000000815273__$9935b6ea18e0c526c293569ddd26842c9b$__9063a164de6e90610dd0906001908890889088908890600401612ac5565b6000546001600160a01b0316331461159c5760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610d5e565b611392600185858585611ee3565b6000546001600160a01b031633146116045760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610d5e565b61161060018383612031565b5050565b6040517f7333b36900000000000000000000000000000000000000000000000000000000815273__$9935b6ea18e0c526c293569ddd26842c9b$__90637333b369906112f39060019089908990899089908990600401612e75565b6040517f72c9c91c00000000000000000000000000000000000000000000000000000000815273__$a542940934c03bae9a39609192cb25cc3c$__906372c9c91c90610ef690600190879087908790600401612ece565b6040805161010081018252600080825260208201819052918101829052606081018290526080810182905260a0810182905260c0810182905260e08101919091526bffffffffffffffffffffffff19821660009081526016602090815260409182902082516101008101845281548152600182015492810192909252600281015467ffffffffffffffff81169383019390935263ffffffff600160401b840481166060840152600160601b840481166080840152600160801b84041660a0830152909160c083019060ff600160a01b9091041660058111156117aa576117aa612859565b60058111156117bb576117bb612859565b81526020016003820154815250509050919050565b6000546001600160a01b0316331461182a5760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610d5e565b6001600160a01b0381166118a65760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201527f64647265737300000000000000000000000000000000000000000000000000006064820152608401610d5e565b6118af81611ca2565b50565b60008267ffffffffffffffff16116119325760405162461bcd60e51b815260206004820152603660248201527f4465706f736974207472656173757279206665652064697669736f72206d757360448201527f742062652067726561746572207468616e207a65726f000000000000000000006064820152608401610d5e565b6004840180547fffffffff0000000000000000ffffffffffffffffffffffffffffffffffffffff16600160a01b67ffffffffffffffff868116918202929092179092556005860180548583167fffffffffffffffffffffffffffffffff000000000000000000000000000000009091168117600160401b938616938402179091556040805193845260208401919091528201527f1ced468902ca566e746a3c8c9516af81f8de9f1021c365083be9f2625ebfb7b59060600160405180910390a150505050565b60008467ffffffffffffffff1611611a785760405162461bcd60e51b815260206004820152603460248201527f57616c6c6574206d696e696d756d204254432062616c616e6365206d7573742060448201527f62652067726561746572207468616e207a65726f0000000000000000000000006064820152608401610d5e565b8367ffffffffffffffff168367ffffffffffffffff1611611b015760405162461bcd60e51b815260206004820152603b60248201527f57616c6c6574206d6178696d756d204254432062616c616e6365206d7573742060448201527f62652067726561746572207468616e20746865206d696e696d756d00000000006064820152608401610d5e565b60008167ffffffffffffffff1611611b815760405162461bcd60e51b815260206004820152603560248201527f57616c6c6574206d6178696d756d20425443207472616e73666572206d75737460448201527f2062652067726561746572207468616e207a65726f00000000000000000000006064820152608401610d5e565b60138601805463ffffffff8781166bffffffffffffffffffffffff19909216821764010000000067ffffffffffffffff898116918202929092177fffffffffffffffff000000000000000000000000ffffffffffffffffffffffff16600160601b8984169081027fffffffffffffffff00000000ffffffffffffffffffffffffffffffffffffffff1691909117600160a01b9489169485021790955560148b01805477ffffffffffffffffffffffffffffffffffffffffffffffff16600160c01b938816938402179055604080519485526020850191909152830193909352606082015260808101919091527fe03f8d14d8a0cb9620cd0ed710ac4177c8398da40846aaffcb078ca2cfd088069060a00160405180910390a1505050505050565b600080546001600160a01b038381167fffffffffffffffffffffffff0000000000000000000000000000000000000000831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b60008367ffffffffffffffff1611611d8a5760405162461bcd60e51b815260206004820152603960248201527f526564656d7074696f6e207472656173757279206665652064697669736f722060448201527f6d7573742062652067726561746572207468616e207a65726f000000000000006064820152608401610d5e565b60008111611e005760405162461bcd60e51b815260206004820152602c60248201527f526564656d7074696f6e2074696d656f7574206d75737420626520677265617460448201527f6572207468616e207a65726f00000000000000000000000000000000000000006064820152608401610d5e565b6008850180547fffffffff00000000000000000000000000000000ffffffffffffffffffffffff16600160601b67ffffffffffffffff8781169182027fffffffff0000000000000000ffffffffffffffffffffffffffffffffffffffff1692909217600160a01b8784169081029190911790935560098801805467ffffffffffffffff19169286169283179055600a880184905560408051918252602082019390935291820152606081018290527f92c7dd8c8e389aa6dd2d4ed3d2f1848abbaef487207c28f4c5c4990c5116ff1f906080015b60405180910390a15050505050565b6064831115611f5a5760405162461bcd60e51b815260206004820152603e60248201527f4672617564206e6f74696669657220726577617264206d756c7469706c69657260448201527f206d75737420626520696e207468652072616e6765205b302c203130305d00006064820152608401610d5e565b60008211611fd05760405162461bcd60e51b815260206004820152603860248201527f4672617564206368616c6c656e6765206465666561742074696d656f7574206d60448201527f7573742062652067726561746572207468616e207a65726f00000000000000006064820152608401610d5e565b600d8501849055600e8501839055600f8501829055601085018190556040805185815260208101859052908101839052606081018290527f3d5b171ef2601a0b7e9eb653999f8e932fb569e8f84526e1eea05c053063a1d690608001611ed4565b60008163ffffffff16116120ad5760405162461bcd60e51b815260206004820152602e60248201527f4d6f76696e672066756e64732074696d656f7574206d7573742062652067726560448201527f61746572207468616e207a65726f0000000000000000000000000000000000006064820152608401610d5e565b60088301805467ffffffffffffffff84166bffffffffffffffffffffffff199091168117600160401b63ffffffff8516908102919091179092556040805191825260208201929092527f6871b29495da7552b91b95611e45bc1898b37c7b06fd9e8be0915154b1bac186910160405180910390a1505050565b60006020828403121561213857600080fd5b5035919050565b803567ffffffffffffffff8116811461215757600080fd5b919050565b60008060006060848603121561217157600080fd5b61217a8461213f565b92506121886020850161213f565b91506121966040850161213f565b90509250925092565b6000608082840312156121b157600080fd5b50919050565b6000606082840312156121b157600080fd5b80356bffffffffffffffffffffffff198116811461215757600080fd5b60008060008060c085870312156121fc57600080fd5b843567ffffffffffffffff8082111561221457600080fd5b6122208883890161219f565b9550602087013591508082111561223657600080fd5b50612243878288016121b7565b93505061225386604087016121b7565b915061226160a086016121c9565b905092959194509250565b60006020828403121561227e57600080fd5b612287826121c9565b9392505050565b6000806000606084860312156122a357600080fd5b505081359360208301359350604090920135919050565b600080608083850312156122cd57600080fd5b6122d6836121c9565b91506122e584602085016121b7565b90509250929050565b600080600060a0848603121561230357600080fd5b833567ffffffffffffffff8082111561231b57600080fd5b6123278783880161219f565b9450602086013591508082111561233d57600080fd5b5061234a868287016121b7565b92505061219685604086016121b7565b60008082840361010081121561236f57600080fd5b833567ffffffffffffffff81111561238657600080fd5b6123928682870161219f565b93505060e0601f19820112156123a757600080fd5b506020830190509250929050565b80356001600160a01b038116811461215757600080fd5b8035801515811461215757600080fd5b600080604083850312156123ef57600080fd5b6123f8836123b5565b91506122e5602084016123cc565b60008083601f84011261241857600080fd5b50813567ffffffffffffffff81111561243057600080fd5b60208301915083602082850101111561244857600080fd5b9250929050565b60008060006040848603121561246457600080fd5b61246d846121c9565b9250602084013567ffffffffffffffff81111561248957600080fd5b61249586828701612406565b9497909650939450505050565b803563ffffffff8116811461215757600080fd5b600080600080600060a086880312156124ce57600080fd5b6124d7866124a2565b94506124e56020870161213f565b93506124f36040870161213f565b9250612501606087016124a2565b915061250f6080870161213f565b90509295509295909350565b60008060008060a0858703121561253157600080fd5b843567ffffffffffffffff81111561254857600080fd5b61255487828801612406565b9095509350506020850135915061226186604087016121b7565b60008060008060006060868803121561258657600080fd5b853567ffffffffffffffff8082111561259e57600080fd5b6125aa89838a01612406565b909750955060208801359150808211156125c357600080fd5b506125d088828901612406565b909450925061250f9050604087016123cc565b600080600080608085870312156125f957600080fd5b6126028561213f565b93506126106020860161213f565b925061261e6040860161213f565b9396929550929360600135925050565b60006060828403121561264057600080fd5b61228783836121b7565b60008083601f84011261265c57600080fd5b50813567ffffffffffffffff81111561267457600080fd5b6020830191508360208260051b850101111561244857600080fd5b600080600080600080600060e0888a0312156126aa57600080fd5b6126b3886121c9565b96506126c28960208a016121b7565b9550608088013567ffffffffffffffff808211156126df57600080fd5b6126eb8b838c0161264a565b909750955060a08a0135945060c08a013591508082111561270b57600080fd5b506127188a828b0161264a565b989b979a50959850939692959293505050565b6000806000806080858703121561274157600080fd5b5050823594602084013594506040840135936060013592509050565b6000806040838503121561277057600080fd5b6127798361213f565b91506122e5602084016124a2565b600080600080600060c0868803121561279f57600080fd5b6127a8866121c9565b94506127b787602088016121b7565b9350608086013567ffffffffffffffff8111156127d357600080fd5b6127df88828901612406565b909450925061250f905060a0870161213f565b60008060006040848603121561280757600080fd5b833567ffffffffffffffff81111561281e57600080fd5b61282a86828701612406565b909790965060209590950135949350505050565b60006020828403121561285057600080fd5b612287826123b5565b634e487b7160e01b600052602160045260246000fd5b600061010082019050825182526020830151602083015267ffffffffffffffff6040840151166040830152606083015163ffffffff80821660608501528060808601511660808501528060a08601511660a0850152505060c0830151600681106128e957634e487b7160e01b600052602160045260246000fd5b8060c08401525060e083015160e083015292915050565b80357fffffffff000000000000000000000000000000000000000000000000000000008116811461215757600080fd5b6000808335601e1984360301811261294757600080fd5b830160208101925035905067ffffffffffffffff81111561296757600080fd5b80360383131561244857600080fd5b81835281816020850137506000828201602090810191909152601f909101601f19169091010190565b60007fffffffff00000000000000000000000000000000000000000000000000000000806129cc84612900565b1684526129dc6020840184612930565b608060208701526129f1608087018284612976565b915050612a016040850185612930565b8683036040880152612a14838284612976565b9250505081612a2560608601612900565b166060860152809250505092915050565b6000612a428283612930565b60608552612a54606086018284612976565b91505060208301356020850152612a6e6040840184612930565b8583036040870152612a81838284612976565b9695505050505050565b8035825263ffffffff612aa0602083016124a2565b16602083015267ffffffffffffffff612abb6040830161213f565b1660408301525050565b85815260e060208201526000612ade60e083018761299f565b8281036040840152612af08187612a36565b915050612b006060830185612a8b565b6bffffffffffffffffffffffff19831660c08301529695505050505050565b8381526bffffffffffffffffffffffff198316602082015260a08101612b486040830184612a8b565b949350505050565b84815260c060208201526000612b6960c083018661299f565b8281036040840152612b7b8186612a36565b915050612b8b6060830184612a8b565b95945050505050565b6000610120858352806020840152612bae8184018661299f565b91505063ffffffff612bbf846124a2565b1660408301526001600160a01b03612bd9602085016123b5565b16606083015260408301357fffffffffffffffff00000000000000000000000000000000000000000000000081168114612c1257600080fd5b7fffffffffffffffff000000000000000000000000000000000000000000000000166080830152612c45606084016121c9565b6bffffffffffffffffffffffff191660a0830152612c65608084016121c9565b6bffffffffffffffffffffffff191660c0830152612c8560a08401612900565b7fffffffff000000000000000000000000000000000000000000000000000000001660e0830152612cb860c084016123b5565b6001600160a01b03811661010084015250949350505050565b8481526bffffffffffffffffffffffff1984166020820152606060408201526000612a81606083018486612976565b85815260c060208201526000612d1a60c083018688612976565b90508360408301528235606083015260208301356080830152604083013560ff8116808214612d4857600080fd5b8060a085015250509695505050505050565b868152608060208201526000612d74608083018789612976565b8281036040840152612d87818688612976565b9150508215156060830152979650505050505050565b828152608081016122876020830184612a8b565b60006101008083018b845260206bffffffffffffffffffffffff19808d1682870152612de0604087018d612a8b565b60a08601939093529088905261012084019189919060005b8a811015612e215763ffffffff612e0e856124a2565b1685529382019392820192600101612df8565b5060c0860189905285840360e087015286845287938201925060005b87811015612e625781612e4f866121c9565b1684529382019392820192600101612e3d565b50919d9c50505050505050505050505050565b8681526bffffffffffffffffffffffff1986166020820152612e9a6040820186612a8b565b60e060a08201526000612eb160e083018587612976565b905067ffffffffffffffff831660c0830152979650505050505050565b848152606060208201526000612ee8606083018587612976565b90508260408301529594505050505056fea2646970667358221220bba646da8d2ca769521c5a2660434d6cf41d6c4289597ac3d86a966e5435aedb64736f6c63430008090033",
1635
1921
  "linkReferences": {
1636
1922
  "contracts/bridge/Deposit.sol": {
1637
1923
  "Deposit": [
1638
1924
  {
1639
1925
  "length": 20,
1640
- "start": 4699
1926
+ "start": 5133
1641
1927
  }
1642
1928
  ]
1643
1929
  },
@@ -1645,15 +1931,15 @@
1645
1931
  "Fraud": [
1646
1932
  {
1647
1933
  "length": 20,
1648
- "start": 5067
1934
+ "start": 5595
1649
1935
  },
1650
1936
  {
1651
1937
  "length": 20,
1652
- "start": 5261
1938
+ "start": 5786
1653
1939
  },
1654
1940
  {
1655
1941
  "length": 20,
1656
- "start": 6086
1942
+ "start": 6769
1657
1943
  }
1658
1944
  ]
1659
1945
  },
@@ -1661,23 +1947,31 @@
1661
1947
  "MovingFunds": [
1662
1948
  {
1663
1949
  "length": 20,
1664
- "start": 4182
1950
+ "start": 4474
1951
+ },
1952
+ {
1953
+ "length": 20,
1954
+ "start": 4644
1955
+ },
1956
+ {
1957
+ "length": 20,
1958
+ "start": 6227
1665
1959
  }
1666
1960
  ]
1667
1961
  },
1668
- "contracts/bridge/Redeem.sol": {
1669
- "Redeem": [
1962
+ "contracts/bridge/Redemption.sol": {
1963
+ "Redemption": [
1670
1964
  {
1671
1965
  "length": 20,
1672
- "start": 4977
1966
+ "start": 5403
1673
1967
  },
1674
1968
  {
1675
1969
  "length": 20,
1676
- "start": 5900
1970
+ "start": 6379
1677
1971
  },
1678
1972
  {
1679
1973
  "length": 20,
1680
- "start": 5992
1974
+ "start": 6678
1681
1975
  }
1682
1976
  ]
1683
1977
  },
@@ -1685,7 +1979,7 @@
1685
1979
  "Sweep": [
1686
1980
  {
1687
1981
  "length": 20,
1688
- "start": 4609
1982
+ "start": 5046
1689
1983
  }
1690
1984
  ]
1691
1985
  },
@@ -1693,47 +1987,19 @@
1693
1987
  "Wallets": [
1694
1988
  {
1695
1989
  "length": 20,
1696
- "start": 540
1697
- },
1698
- {
1699
- "length": 20,
1700
- "start": 679
1701
- },
1702
- {
1703
- "length": 20,
1704
- "start": 800
1705
- },
1706
- {
1707
- "length": 20,
1708
- "start": 910
1709
- },
1710
- {
1711
- "length": 20,
1712
- "start": 4349
1713
- },
1714
- {
1715
- "length": 20,
1716
- "start": 4472
1717
- },
1718
- {
1719
- "length": 20,
1720
- "start": 5664
1721
- },
1722
- {
1723
- "length": 20,
1724
- "start": 5826
1990
+ "start": 4786
1725
1991
  },
1726
1992
  {
1727
1993
  "length": 20,
1728
- "start": 6508
1994
+ "start": 4909
1729
1995
  },
1730
1996
  {
1731
1997
  "length": 20,
1732
- "start": 6654
1998
+ "start": 6042
1733
1999
  },
1734
2000
  {
1735
2001
  "length": 20,
1736
- "start": 6790
2002
+ "start": 6153
1737
2003
  }
1738
2004
  ]
1739
2005
  }
@@ -1743,7 +2009,7 @@
1743
2009
  "Deposit": [
1744
2010
  {
1745
2011
  "length": 20,
1746
- "start": 3469
2012
+ "start": 4147
1747
2013
  }
1748
2014
  ]
1749
2015
  },
@@ -1751,15 +2017,15 @@
1751
2017
  "Fraud": [
1752
2018
  {
1753
2019
  "length": 20,
1754
- "start": 3837
2020
+ "start": 4609
1755
2021
  },
1756
2022
  {
1757
2023
  "length": 20,
1758
- "start": 4031
2024
+ "start": 4800
1759
2025
  },
1760
2026
  {
1761
2027
  "length": 20,
1762
- "start": 4856
2028
+ "start": 5783
1763
2029
  }
1764
2030
  ]
1765
2031
  },
@@ -1767,23 +2033,31 @@
1767
2033
  "MovingFunds": [
1768
2034
  {
1769
2035
  "length": 20,
1770
- "start": 2952
2036
+ "start": 3488
2037
+ },
2038
+ {
2039
+ "length": 20,
2040
+ "start": 3658
2041
+ },
2042
+ {
2043
+ "length": 20,
2044
+ "start": 5241
1771
2045
  }
1772
2046
  ]
1773
2047
  },
1774
- "contracts/bridge/Redeem.sol": {
1775
- "Redeem": [
2048
+ "contracts/bridge/Redemption.sol": {
2049
+ "Redemption": [
1776
2050
  {
1777
2051
  "length": 20,
1778
- "start": 3747
2052
+ "start": 4417
1779
2053
  },
1780
2054
  {
1781
2055
  "length": 20,
1782
- "start": 4670
2056
+ "start": 5393
1783
2057
  },
1784
2058
  {
1785
2059
  "length": 20,
1786
- "start": 4762
2060
+ "start": 5692
1787
2061
  }
1788
2062
  ]
1789
2063
  },
@@ -1791,7 +2065,7 @@
1791
2065
  "Sweep": [
1792
2066
  {
1793
2067
  "length": 20,
1794
- "start": 3379
2068
+ "start": 4060
1795
2069
  }
1796
2070
  ]
1797
2071
  },
@@ -1799,31 +2073,19 @@
1799
2073
  "Wallets": [
1800
2074
  {
1801
2075
  "length": 20,
1802
- "start": 3119
1803
- },
1804
- {
1805
- "length": 20,
1806
- "start": 3242
1807
- },
1808
- {
1809
- "length": 20,
1810
- "start": 4434
1811
- },
1812
- {
1813
- "length": 20,
1814
- "start": 4596
2076
+ "start": 3800
1815
2077
  },
1816
2078
  {
1817
2079
  "length": 20,
1818
- "start": 5278
2080
+ "start": 3923
1819
2081
  },
1820
2082
  {
1821
2083
  "length": 20,
1822
- "start": 5424
2084
+ "start": 5056
1823
2085
  },
1824
2086
  {
1825
2087
  "length": 20,
1826
- "start": 5560
2088
+ "start": 5167
1827
2089
  }
1828
2090
  ]
1829
2091
  }