-
Notifications
You must be signed in to change notification settings - Fork 474
Expand file tree
/
Copy pathbinding.go
More file actions
4374 lines (3730 loc) · 260 KB
/
binding.go
File metadata and controls
4374 lines (3730 loc) · 260 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
// Code generated - DO NOT EDIT.
// This file is a generated binding and any manual changes will be lost.
package AllocationManager
import (
"errors"
"math/big"
"strings"
ethereum "github.com/ethereum/go-ethereum"
"github.com/ethereum/go-ethereum/accounts/abi"
"github.com/ethereum/go-ethereum/accounts/abi/bind"
"github.com/ethereum/go-ethereum/common"
"github.com/ethereum/go-ethereum/core/types"
"github.com/ethereum/go-ethereum/event"
)
// Reference imports to suppress errors if they are not otherwise used.
var (
_ = errors.New
_ = big.NewInt
_ = strings.NewReader
_ = ethereum.NotFound
_ = bind.Bind
_ = common.Big1
_ = types.BloomLookup
_ = event.NewSubscription
_ = abi.ConvertType
)
// IAllocationManagerTypesAllocateParams is an auto generated low-level Go binding around an user-defined struct.
type IAllocationManagerTypesAllocateParams struct {
OperatorSet OperatorSet
Strategies []common.Address
NewMagnitudes []uint64
}
// IAllocationManagerTypesAllocation is an auto generated low-level Go binding around an user-defined struct.
type IAllocationManagerTypesAllocation struct {
CurrentMagnitude uint64
PendingDiff *big.Int
EffectBlock uint32
}
// IAllocationManagerTypesCreateSetParams is an auto generated low-level Go binding around an user-defined struct.
type IAllocationManagerTypesCreateSetParams struct {
OperatorSetId uint32
Strategies []common.Address
}
// IAllocationManagerTypesCreateSetParamsV2 is an auto generated low-level Go binding around an user-defined struct.
type IAllocationManagerTypesCreateSetParamsV2 struct {
OperatorSetId uint32
Strategies []common.Address
Slasher common.Address
}
// IAllocationManagerTypesDeregisterParams is an auto generated low-level Go binding around an user-defined struct.
type IAllocationManagerTypesDeregisterParams struct {
Operator common.Address
Avs common.Address
OperatorSetIds []uint32
}
// IAllocationManagerTypesRegisterParams is an auto generated low-level Go binding around an user-defined struct.
type IAllocationManagerTypesRegisterParams struct {
Avs common.Address
OperatorSetIds []uint32
Data []byte
}
// IAllocationManagerTypesSlashingParams is an auto generated low-level Go binding around an user-defined struct.
type IAllocationManagerTypesSlashingParams struct {
Operator common.Address
OperatorSetId uint32
Strategies []common.Address
WadsToSlash []*big.Int
Description string
}
// OperatorSet is an auto generated low-level Go binding around an user-defined struct.
type OperatorSet struct {
Avs common.Address
Id uint32
}
// AllocationManagerMetaData contains all meta data concerning the AllocationManager contract.
var AllocationManagerMetaData = &bind.MetaData{
ABI: "[{\"type\":\"constructor\",\"inputs\":[{\"name\":\"_allocationManagerView\",\"type\":\"address\",\"internalType\":\"contractIAllocationManagerView\"},{\"name\":\"_delegation\",\"type\":\"address\",\"internalType\":\"contractIDelegationManager\"},{\"name\":\"_eigenStrategy\",\"type\":\"address\",\"internalType\":\"contractIStrategy\"},{\"name\":\"_pauserRegistry\",\"type\":\"address\",\"internalType\":\"contractIPauserRegistry\"},{\"name\":\"_permissionController\",\"type\":\"address\",\"internalType\":\"contractIPermissionController\"},{\"name\":\"_DEALLOCATION_DELAY\",\"type\":\"uint32\",\"internalType\":\"uint32\"},{\"name\":\"_ALLOCATION_CONFIGURATION_DELAY\",\"type\":\"uint32\",\"internalType\":\"uint32\"}],\"stateMutability\":\"nonpayable\"},{\"type\":\"function\",\"name\":\"ALLOCATION_CONFIGURATION_DELAY\",\"inputs\":[],\"outputs\":[{\"name\":\"\",\"type\":\"uint32\",\"internalType\":\"uint32\"}],\"stateMutability\":\"view\"},{\"type\":\"function\",\"name\":\"DEALLOCATION_DELAY\",\"inputs\":[],\"outputs\":[{\"name\":\"\",\"type\":\"uint32\",\"internalType\":\"uint32\"}],\"stateMutability\":\"view\"},{\"type\":\"function\",\"name\":\"addStrategiesToOperatorSet\",\"inputs\":[{\"name\":\"avs\",\"type\":\"address\",\"internalType\":\"address\"},{\"name\":\"operatorSetId\",\"type\":\"uint32\",\"internalType\":\"uint32\"},{\"name\":\"strategies\",\"type\":\"address[]\",\"internalType\":\"contractIStrategy[]\"}],\"outputs\":[],\"stateMutability\":\"nonpayable\"},{\"type\":\"function\",\"name\":\"clearDeallocationQueue\",\"inputs\":[{\"name\":\"operator\",\"type\":\"address\",\"internalType\":\"address\"},{\"name\":\"strategies\",\"type\":\"address[]\",\"internalType\":\"contractIStrategy[]\"},{\"name\":\"numToClear\",\"type\":\"uint16[]\",\"internalType\":\"uint16[]\"}],\"outputs\":[],\"stateMutability\":\"nonpayable\"},{\"type\":\"function\",\"name\":\"createOperatorSets\",\"inputs\":[{\"name\":\"avs\",\"type\":\"address\",\"internalType\":\"address\"},{\"name\":\"params\",\"type\":\"tuple[]\",\"internalType\":\"structIAllocationManagerTypes.CreateSetParams[]\",\"components\":[{\"name\":\"operatorSetId\",\"type\":\"uint32\",\"internalType\":\"uint32\"},{\"name\":\"strategies\",\"type\":\"address[]\",\"internalType\":\"contractIStrategy[]\"}]}],\"outputs\":[],\"stateMutability\":\"nonpayable\"},{\"type\":\"function\",\"name\":\"createOperatorSets\",\"inputs\":[{\"name\":\"avs\",\"type\":\"address\",\"internalType\":\"address\"},{\"name\":\"params\",\"type\":\"tuple[]\",\"internalType\":\"structIAllocationManagerTypes.CreateSetParamsV2[]\",\"components\":[{\"name\":\"operatorSetId\",\"type\":\"uint32\",\"internalType\":\"uint32\"},{\"name\":\"strategies\",\"type\":\"address[]\",\"internalType\":\"contractIStrategy[]\"},{\"name\":\"slasher\",\"type\":\"address\",\"internalType\":\"address\"}]}],\"outputs\":[],\"stateMutability\":\"nonpayable\"},{\"type\":\"function\",\"name\":\"createRedistributingOperatorSets\",\"inputs\":[{\"name\":\"avs\",\"type\":\"address\",\"internalType\":\"address\"},{\"name\":\"params\",\"type\":\"tuple[]\",\"internalType\":\"structIAllocationManagerTypes.CreateSetParams[]\",\"components\":[{\"name\":\"operatorSetId\",\"type\":\"uint32\",\"internalType\":\"uint32\"},{\"name\":\"strategies\",\"type\":\"address[]\",\"internalType\":\"contractIStrategy[]\"}]},{\"name\":\"redistributionRecipients\",\"type\":\"address[]\",\"internalType\":\"address[]\"}],\"outputs\":[],\"stateMutability\":\"nonpayable\"},{\"type\":\"function\",\"name\":\"createRedistributingOperatorSets\",\"inputs\":[{\"name\":\"avs\",\"type\":\"address\",\"internalType\":\"address\"},{\"name\":\"params\",\"type\":\"tuple[]\",\"internalType\":\"structIAllocationManagerTypes.CreateSetParamsV2[]\",\"components\":[{\"name\":\"operatorSetId\",\"type\":\"uint32\",\"internalType\":\"uint32\"},{\"name\":\"strategies\",\"type\":\"address[]\",\"internalType\":\"contractIStrategy[]\"},{\"name\":\"slasher\",\"type\":\"address\",\"internalType\":\"address\"}]},{\"name\":\"redistributionRecipients\",\"type\":\"address[]\",\"internalType\":\"address[]\"}],\"outputs\":[],\"stateMutability\":\"nonpayable\"},{\"type\":\"function\",\"name\":\"delegation\",\"inputs\":[],\"outputs\":[{\"name\":\"\",\"type\":\"address\",\"internalType\":\"contractIDelegationManager\"}],\"stateMutability\":\"view\"},{\"type\":\"function\",\"name\":\"deregisterFromOperatorSets\",\"inputs\":[{\"name\":\"params\",\"type\":\"tuple\",\"internalType\":\"structIAllocationManagerTypes.DeregisterParams\",\"components\":[{\"name\":\"operator\",\"type\":\"address\",\"internalType\":\"address\"},{\"name\":\"avs\",\"type\":\"address\",\"internalType\":\"address\"},{\"name\":\"operatorSetIds\",\"type\":\"uint32[]\",\"internalType\":\"uint32[]\"}]}],\"outputs\":[],\"stateMutability\":\"nonpayable\"},{\"type\":\"function\",\"name\":\"eigenStrategy\",\"inputs\":[],\"outputs\":[{\"name\":\"\",\"type\":\"address\",\"internalType\":\"contractIStrategy\"}],\"stateMutability\":\"view\"},{\"type\":\"function\",\"name\":\"getAVSRegistrar\",\"inputs\":[{\"name\":\"avs\",\"type\":\"address\",\"internalType\":\"address\"}],\"outputs\":[{\"name\":\"\",\"type\":\"address\",\"internalType\":\"contractIAVSRegistrar\"}],\"stateMutability\":\"view\"},{\"type\":\"function\",\"name\":\"getAllocatableMagnitude\",\"inputs\":[{\"name\":\"\",\"type\":\"address\",\"internalType\":\"address\"},{\"name\":\"\",\"type\":\"address\",\"internalType\":\"contractIStrategy\"}],\"outputs\":[{\"name\":\"allocatableMagnitude\",\"type\":\"uint64\",\"internalType\":\"uint64\"}],\"stateMutability\":\"view\"},{\"type\":\"function\",\"name\":\"getAllocatedSets\",\"inputs\":[{\"name\":\"\",\"type\":\"address\",\"internalType\":\"address\"}],\"outputs\":[{\"name\":\"operatorSets\",\"type\":\"tuple[]\",\"internalType\":\"structOperatorSet[]\",\"components\":[{\"name\":\"avs\",\"type\":\"address\",\"internalType\":\"address\"},{\"name\":\"id\",\"type\":\"uint32\",\"internalType\":\"uint32\"}]}],\"stateMutability\":\"view\"},{\"type\":\"function\",\"name\":\"getAllocatedStake\",\"inputs\":[{\"name\":\"\",\"type\":\"tuple\",\"internalType\":\"structOperatorSet\",\"components\":[{\"name\":\"avs\",\"type\":\"address\",\"internalType\":\"address\"},{\"name\":\"id\",\"type\":\"uint32\",\"internalType\":\"uint32\"}]},{\"name\":\"\",\"type\":\"address[]\",\"internalType\":\"address[]\"},{\"name\":\"\",\"type\":\"address[]\",\"internalType\":\"contractIStrategy[]\"}],\"outputs\":[{\"name\":\"slashableStake\",\"type\":\"uint256[][]\",\"internalType\":\"uint256[][]\"}],\"stateMutability\":\"view\"},{\"type\":\"function\",\"name\":\"getAllocatedStrategies\",\"inputs\":[{\"name\":\"\",\"type\":\"address\",\"internalType\":\"address\"},{\"name\":\"\",\"type\":\"tuple\",\"internalType\":\"structOperatorSet\",\"components\":[{\"name\":\"avs\",\"type\":\"address\",\"internalType\":\"address\"},{\"name\":\"id\",\"type\":\"uint32\",\"internalType\":\"uint32\"}]}],\"outputs\":[{\"name\":\"strategies\",\"type\":\"address[]\",\"internalType\":\"contractIStrategy[]\"}],\"stateMutability\":\"view\"},{\"type\":\"function\",\"name\":\"getAllocation\",\"inputs\":[{\"name\":\"\",\"type\":\"address\",\"internalType\":\"address\"},{\"name\":\"\",\"type\":\"tuple\",\"internalType\":\"structOperatorSet\",\"components\":[{\"name\":\"avs\",\"type\":\"address\",\"internalType\":\"address\"},{\"name\":\"id\",\"type\":\"uint32\",\"internalType\":\"uint32\"}]},{\"name\":\"\",\"type\":\"address\",\"internalType\":\"contractIStrategy\"}],\"outputs\":[{\"name\":\"allocation\",\"type\":\"tuple\",\"internalType\":\"structIAllocationManagerTypes.Allocation\",\"components\":[{\"name\":\"currentMagnitude\",\"type\":\"uint64\",\"internalType\":\"uint64\"},{\"name\":\"pendingDiff\",\"type\":\"int128\",\"internalType\":\"int128\"},{\"name\":\"effectBlock\",\"type\":\"uint32\",\"internalType\":\"uint32\"}]}],\"stateMutability\":\"view\"},{\"type\":\"function\",\"name\":\"getAllocationDelay\",\"inputs\":[{\"name\":\"operator\",\"type\":\"address\",\"internalType\":\"address\"}],\"outputs\":[{\"name\":\"\",\"type\":\"bool\",\"internalType\":\"bool\"},{\"name\":\"\",\"type\":\"uint32\",\"internalType\":\"uint32\"}],\"stateMutability\":\"view\"},{\"type\":\"function\",\"name\":\"getAllocations\",\"inputs\":[{\"name\":\"\",\"type\":\"address[]\",\"internalType\":\"address[]\"},{\"name\":\"\",\"type\":\"tuple\",\"internalType\":\"structOperatorSet\",\"components\":[{\"name\":\"avs\",\"type\":\"address\",\"internalType\":\"address\"},{\"name\":\"id\",\"type\":\"uint32\",\"internalType\":\"uint32\"}]},{\"name\":\"\",\"type\":\"address\",\"internalType\":\"contractIStrategy\"}],\"outputs\":[{\"name\":\"allocations\",\"type\":\"tuple[]\",\"internalType\":\"structIAllocationManagerTypes.Allocation[]\",\"components\":[{\"name\":\"currentMagnitude\",\"type\":\"uint64\",\"internalType\":\"uint64\"},{\"name\":\"pendingDiff\",\"type\":\"int128\",\"internalType\":\"int128\"},{\"name\":\"effectBlock\",\"type\":\"uint32\",\"internalType\":\"uint32\"}]}],\"stateMutability\":\"view\"},{\"type\":\"function\",\"name\":\"getEncumberedMagnitude\",\"inputs\":[{\"name\":\"\",\"type\":\"address\",\"internalType\":\"address\"},{\"name\":\"\",\"type\":\"address\",\"internalType\":\"contractIStrategy\"}],\"outputs\":[{\"name\":\"encumberedMagnitude\",\"type\":\"uint64\",\"internalType\":\"uint64\"}],\"stateMutability\":\"view\"},{\"type\":\"function\",\"name\":\"getMaxMagnitude\",\"inputs\":[{\"name\":\"\",\"type\":\"address\",\"internalType\":\"address\"},{\"name\":\"\",\"type\":\"address\",\"internalType\":\"contractIStrategy\"}],\"outputs\":[{\"name\":\"maxMagnitude\",\"type\":\"uint64\",\"internalType\":\"uint64\"}],\"stateMutability\":\"view\"},{\"type\":\"function\",\"name\":\"getMaxMagnitudes\",\"inputs\":[{\"name\":\"\",\"type\":\"address[]\",\"internalType\":\"address[]\"},{\"name\":\"\",\"type\":\"address\",\"internalType\":\"contractIStrategy\"}],\"outputs\":[{\"name\":\"maxMagnitudes\",\"type\":\"uint64[]\",\"internalType\":\"uint64[]\"}],\"stateMutability\":\"view\"},{\"type\":\"function\",\"name\":\"getMaxMagnitudes\",\"inputs\":[{\"name\":\"\",\"type\":\"address\",\"internalType\":\"address\"},{\"name\":\"\",\"type\":\"address[]\",\"internalType\":\"contractIStrategy[]\"}],\"outputs\":[{\"name\":\"maxMagnitudes\",\"type\":\"uint64[]\",\"internalType\":\"uint64[]\"}],\"stateMutability\":\"view\"},{\"type\":\"function\",\"name\":\"getMaxMagnitudesAtBlock\",\"inputs\":[{\"name\":\"\",\"type\":\"address\",\"internalType\":\"address\"},{\"name\":\"\",\"type\":\"address[]\",\"internalType\":\"contractIStrategy[]\"},{\"name\":\"\",\"type\":\"uint32\",\"internalType\":\"uint32\"}],\"outputs\":[{\"name\":\"maxMagnitudes\",\"type\":\"uint64[]\",\"internalType\":\"uint64[]\"}],\"stateMutability\":\"view\"},{\"type\":\"function\",\"name\":\"getMemberCount\",\"inputs\":[{\"name\":\"\",\"type\":\"tuple\",\"internalType\":\"structOperatorSet\",\"components\":[{\"name\":\"avs\",\"type\":\"address\",\"internalType\":\"address\"},{\"name\":\"id\",\"type\":\"uint32\",\"internalType\":\"uint32\"}]}],\"outputs\":[{\"name\":\"memberCount\",\"type\":\"uint256\",\"internalType\":\"uint256\"}],\"stateMutability\":\"view\"},{\"type\":\"function\",\"name\":\"getMembers\",\"inputs\":[{\"name\":\"\",\"type\":\"tuple\",\"internalType\":\"structOperatorSet\",\"components\":[{\"name\":\"avs\",\"type\":\"address\",\"internalType\":\"address\"},{\"name\":\"id\",\"type\":\"uint32\",\"internalType\":\"uint32\"}]}],\"outputs\":[{\"name\":\"operators\",\"type\":\"address[]\",\"internalType\":\"address[]\"}],\"stateMutability\":\"view\"},{\"type\":\"function\",\"name\":\"getMinimumSlashableStake\",\"inputs\":[{\"name\":\"\",\"type\":\"tuple\",\"internalType\":\"structOperatorSet\",\"components\":[{\"name\":\"avs\",\"type\":\"address\",\"internalType\":\"address\"},{\"name\":\"id\",\"type\":\"uint32\",\"internalType\":\"uint32\"}]},{\"name\":\"\",\"type\":\"address[]\",\"internalType\":\"address[]\"},{\"name\":\"\",\"type\":\"address[]\",\"internalType\":\"contractIStrategy[]\"},{\"name\":\"\",\"type\":\"uint32\",\"internalType\":\"uint32\"}],\"outputs\":[{\"name\":\"slashableStake\",\"type\":\"uint256[][]\",\"internalType\":\"uint256[][]\"}],\"stateMutability\":\"view\"},{\"type\":\"function\",\"name\":\"getOperatorSetCount\",\"inputs\":[{\"name\":\"\",\"type\":\"address\",\"internalType\":\"address\"}],\"outputs\":[{\"name\":\"count\",\"type\":\"uint256\",\"internalType\":\"uint256\"}],\"stateMutability\":\"view\"},{\"type\":\"function\",\"name\":\"getPendingSlasher\",\"inputs\":[{\"name\":\"\",\"type\":\"tuple\",\"internalType\":\"structOperatorSet\",\"components\":[{\"name\":\"avs\",\"type\":\"address\",\"internalType\":\"address\"},{\"name\":\"id\",\"type\":\"uint32\",\"internalType\":\"uint32\"}]}],\"outputs\":[{\"name\":\"pendingSlasher\",\"type\":\"address\",\"internalType\":\"address\"},{\"name\":\"effectBlock\",\"type\":\"uint32\",\"internalType\":\"uint32\"}],\"stateMutability\":\"view\"},{\"type\":\"function\",\"name\":\"getRedistributionRecipient\",\"inputs\":[{\"name\":\"operatorSet\",\"type\":\"tuple\",\"internalType\":\"structOperatorSet\",\"components\":[{\"name\":\"avs\",\"type\":\"address\",\"internalType\":\"address\"},{\"name\":\"id\",\"type\":\"uint32\",\"internalType\":\"uint32\"}]}],\"outputs\":[{\"name\":\"\",\"type\":\"address\",\"internalType\":\"address\"}],\"stateMutability\":\"view\"},{\"type\":\"function\",\"name\":\"getRegisteredSets\",\"inputs\":[{\"name\":\"\",\"type\":\"address\",\"internalType\":\"address\"}],\"outputs\":[{\"name\":\"operatorSets\",\"type\":\"tuple[]\",\"internalType\":\"structOperatorSet[]\",\"components\":[{\"name\":\"avs\",\"type\":\"address\",\"internalType\":\"address\"},{\"name\":\"id\",\"type\":\"uint32\",\"internalType\":\"uint32\"}]}],\"stateMutability\":\"view\"},{\"type\":\"function\",\"name\":\"getSlashCount\",\"inputs\":[{\"name\":\"\",\"type\":\"tuple\",\"internalType\":\"structOperatorSet\",\"components\":[{\"name\":\"avs\",\"type\":\"address\",\"internalType\":\"address\"},{\"name\":\"id\",\"type\":\"uint32\",\"internalType\":\"uint32\"}]}],\"outputs\":[{\"name\":\"slashCount\",\"type\":\"uint256\",\"internalType\":\"uint256\"}],\"stateMutability\":\"view\"},{\"type\":\"function\",\"name\":\"getSlasher\",\"inputs\":[{\"name\":\"operatorSet\",\"type\":\"tuple\",\"internalType\":\"structOperatorSet\",\"components\":[{\"name\":\"avs\",\"type\":\"address\",\"internalType\":\"address\"},{\"name\":\"id\",\"type\":\"uint32\",\"internalType\":\"uint32\"}]}],\"outputs\":[{\"name\":\"\",\"type\":\"address\",\"internalType\":\"address\"}],\"stateMutability\":\"view\"},{\"type\":\"function\",\"name\":\"getStrategiesInOperatorSet\",\"inputs\":[{\"name\":\"\",\"type\":\"tuple\",\"internalType\":\"structOperatorSet\",\"components\":[{\"name\":\"avs\",\"type\":\"address\",\"internalType\":\"address\"},{\"name\":\"id\",\"type\":\"uint32\",\"internalType\":\"uint32\"}]}],\"outputs\":[{\"name\":\"strategies\",\"type\":\"address[]\",\"internalType\":\"contractIStrategy[]\"}],\"stateMutability\":\"view\"},{\"type\":\"function\",\"name\":\"getStrategyAllocations\",\"inputs\":[{\"name\":\"\",\"type\":\"address\",\"internalType\":\"address\"},{\"name\":\"\",\"type\":\"address\",\"internalType\":\"contractIStrategy\"}],\"outputs\":[{\"name\":\"operatorSets\",\"type\":\"tuple[]\",\"internalType\":\"structOperatorSet[]\",\"components\":[{\"name\":\"avs\",\"type\":\"address\",\"internalType\":\"address\"},{\"name\":\"id\",\"type\":\"uint32\",\"internalType\":\"uint32\"}]},{\"name\":\"allocations\",\"type\":\"tuple[]\",\"internalType\":\"structIAllocationManagerTypes.Allocation[]\",\"components\":[{\"name\":\"currentMagnitude\",\"type\":\"uint64\",\"internalType\":\"uint64\"},{\"name\":\"pendingDiff\",\"type\":\"int128\",\"internalType\":\"int128\"},{\"name\":\"effectBlock\",\"type\":\"uint32\",\"internalType\":\"uint32\"}]}],\"stateMutability\":\"view\"},{\"type\":\"function\",\"name\":\"initialize\",\"inputs\":[{\"name\":\"initialPausedStatus\",\"type\":\"uint256\",\"internalType\":\"uint256\"}],\"outputs\":[],\"stateMutability\":\"nonpayable\"},{\"type\":\"function\",\"name\":\"isMemberOfOperatorSet\",\"inputs\":[{\"name\":\"\",\"type\":\"address\",\"internalType\":\"address\"},{\"name\":\"\",\"type\":\"tuple\",\"internalType\":\"structOperatorSet\",\"components\":[{\"name\":\"avs\",\"type\":\"address\",\"internalType\":\"address\"},{\"name\":\"id\",\"type\":\"uint32\",\"internalType\":\"uint32\"}]}],\"outputs\":[{\"name\":\"result\",\"type\":\"bool\",\"internalType\":\"bool\"}],\"stateMutability\":\"view\"},{\"type\":\"function\",\"name\":\"isOperatorRedistributable\",\"inputs\":[{\"name\":\"\",\"type\":\"address\",\"internalType\":\"address\"}],\"outputs\":[{\"name\":\"result\",\"type\":\"bool\",\"internalType\":\"bool\"}],\"stateMutability\":\"view\"},{\"type\":\"function\",\"name\":\"isOperatorSet\",\"inputs\":[{\"name\":\"\",\"type\":\"tuple\",\"internalType\":\"structOperatorSet\",\"components\":[{\"name\":\"avs\",\"type\":\"address\",\"internalType\":\"address\"},{\"name\":\"id\",\"type\":\"uint32\",\"internalType\":\"uint32\"}]}],\"outputs\":[{\"name\":\"result\",\"type\":\"bool\",\"internalType\":\"bool\"}],\"stateMutability\":\"view\"},{\"type\":\"function\",\"name\":\"isOperatorSlashable\",\"inputs\":[{\"name\":\"operator\",\"type\":\"address\",\"internalType\":\"address\"},{\"name\":\"operatorSet\",\"type\":\"tuple\",\"internalType\":\"structOperatorSet\",\"components\":[{\"name\":\"avs\",\"type\":\"address\",\"internalType\":\"address\"},{\"name\":\"id\",\"type\":\"uint32\",\"internalType\":\"uint32\"}]}],\"outputs\":[{\"name\":\"\",\"type\":\"bool\",\"internalType\":\"bool\"}],\"stateMutability\":\"view\"},{\"type\":\"function\",\"name\":\"isRedistributingOperatorSet\",\"inputs\":[{\"name\":\"operatorSet\",\"type\":\"tuple\",\"internalType\":\"structOperatorSet\",\"components\":[{\"name\":\"avs\",\"type\":\"address\",\"internalType\":\"address\"},{\"name\":\"id\",\"type\":\"uint32\",\"internalType\":\"uint32\"}]}],\"outputs\":[{\"name\":\"\",\"type\":\"bool\",\"internalType\":\"bool\"}],\"stateMutability\":\"view\"},{\"type\":\"function\",\"name\":\"migrateSlashers\",\"inputs\":[{\"name\":\"operatorSets\",\"type\":\"tuple[]\",\"internalType\":\"structOperatorSet[]\",\"components\":[{\"name\":\"avs\",\"type\":\"address\",\"internalType\":\"address\"},{\"name\":\"id\",\"type\":\"uint32\",\"internalType\":\"uint32\"}]}],\"outputs\":[],\"stateMutability\":\"nonpayable\"},{\"type\":\"function\",\"name\":\"modifyAllocations\",\"inputs\":[{\"name\":\"operator\",\"type\":\"address\",\"internalType\":\"address\"},{\"name\":\"params\",\"type\":\"tuple[]\",\"internalType\":\"structIAllocationManagerTypes.AllocateParams[]\",\"components\":[{\"name\":\"operatorSet\",\"type\":\"tuple\",\"internalType\":\"structOperatorSet\",\"components\":[{\"name\":\"avs\",\"type\":\"address\",\"internalType\":\"address\"},{\"name\":\"id\",\"type\":\"uint32\",\"internalType\":\"uint32\"}]},{\"name\":\"strategies\",\"type\":\"address[]\",\"internalType\":\"contractIStrategy[]\"},{\"name\":\"newMagnitudes\",\"type\":\"uint64[]\",\"internalType\":\"uint64[]\"}]}],\"outputs\":[],\"stateMutability\":\"nonpayable\"},{\"type\":\"function\",\"name\":\"pause\",\"inputs\":[{\"name\":\"newPausedStatus\",\"type\":\"uint256\",\"internalType\":\"uint256\"}],\"outputs\":[],\"stateMutability\":\"nonpayable\"},{\"type\":\"function\",\"name\":\"pauseAll\",\"inputs\":[],\"outputs\":[],\"stateMutability\":\"nonpayable\"},{\"type\":\"function\",\"name\":\"paused\",\"inputs\":[{\"name\":\"index\",\"type\":\"uint8\",\"internalType\":\"uint8\"}],\"outputs\":[{\"name\":\"\",\"type\":\"bool\",\"internalType\":\"bool\"}],\"stateMutability\":\"view\"},{\"type\":\"function\",\"name\":\"paused\",\"inputs\":[],\"outputs\":[{\"name\":\"\",\"type\":\"uint256\",\"internalType\":\"uint256\"}],\"stateMutability\":\"view\"},{\"type\":\"function\",\"name\":\"pauserRegistry\",\"inputs\":[],\"outputs\":[{\"name\":\"\",\"type\":\"address\",\"internalType\":\"contractIPauserRegistry\"}],\"stateMutability\":\"view\"},{\"type\":\"function\",\"name\":\"permissionController\",\"inputs\":[],\"outputs\":[{\"name\":\"\",\"type\":\"address\",\"internalType\":\"contractIPermissionController\"}],\"stateMutability\":\"view\"},{\"type\":\"function\",\"name\":\"registerForOperatorSets\",\"inputs\":[{\"name\":\"operator\",\"type\":\"address\",\"internalType\":\"address\"},{\"name\":\"params\",\"type\":\"tuple\",\"internalType\":\"structIAllocationManagerTypes.RegisterParams\",\"components\":[{\"name\":\"avs\",\"type\":\"address\",\"internalType\":\"address\"},{\"name\":\"operatorSetIds\",\"type\":\"uint32[]\",\"internalType\":\"uint32[]\"},{\"name\":\"data\",\"type\":\"bytes\",\"internalType\":\"bytes\"}]}],\"outputs\":[],\"stateMutability\":\"nonpayable\"},{\"type\":\"function\",\"name\":\"removeStrategiesFromOperatorSet\",\"inputs\":[{\"name\":\"avs\",\"type\":\"address\",\"internalType\":\"address\"},{\"name\":\"operatorSetId\",\"type\":\"uint32\",\"internalType\":\"uint32\"},{\"name\":\"strategies\",\"type\":\"address[]\",\"internalType\":\"contractIStrategy[]\"}],\"outputs\":[],\"stateMutability\":\"nonpayable\"},{\"type\":\"function\",\"name\":\"setAVSRegistrar\",\"inputs\":[{\"name\":\"avs\",\"type\":\"address\",\"internalType\":\"address\"},{\"name\":\"registrar\",\"type\":\"address\",\"internalType\":\"contractIAVSRegistrar\"}],\"outputs\":[],\"stateMutability\":\"nonpayable\"},{\"type\":\"function\",\"name\":\"setAllocationDelay\",\"inputs\":[{\"name\":\"operator\",\"type\":\"address\",\"internalType\":\"address\"},{\"name\":\"delay\",\"type\":\"uint32\",\"internalType\":\"uint32\"}],\"outputs\":[],\"stateMutability\":\"nonpayable\"},{\"type\":\"function\",\"name\":\"slashOperator\",\"inputs\":[{\"name\":\"avs\",\"type\":\"address\",\"internalType\":\"address\"},{\"name\":\"params\",\"type\":\"tuple\",\"internalType\":\"structIAllocationManagerTypes.SlashingParams\",\"components\":[{\"name\":\"operator\",\"type\":\"address\",\"internalType\":\"address\"},{\"name\":\"operatorSetId\",\"type\":\"uint32\",\"internalType\":\"uint32\"},{\"name\":\"strategies\",\"type\":\"address[]\",\"internalType\":\"contractIStrategy[]\"},{\"name\":\"wadsToSlash\",\"type\":\"uint256[]\",\"internalType\":\"uint256[]\"},{\"name\":\"description\",\"type\":\"string\",\"internalType\":\"string\"}]}],\"outputs\":[{\"name\":\"\",\"type\":\"uint256\",\"internalType\":\"uint256\"},{\"name\":\"\",\"type\":\"uint256[]\",\"internalType\":\"uint256[]\"}],\"stateMutability\":\"nonpayable\"},{\"type\":\"function\",\"name\":\"unpause\",\"inputs\":[{\"name\":\"newPausedStatus\",\"type\":\"uint256\",\"internalType\":\"uint256\"}],\"outputs\":[],\"stateMutability\":\"nonpayable\"},{\"type\":\"function\",\"name\":\"updateAVSMetadataURI\",\"inputs\":[{\"name\":\"avs\",\"type\":\"address\",\"internalType\":\"address\"},{\"name\":\"metadataURI\",\"type\":\"string\",\"internalType\":\"string\"}],\"outputs\":[],\"stateMutability\":\"nonpayable\"},{\"type\":\"function\",\"name\":\"updateSlasher\",\"inputs\":[{\"name\":\"operatorSet\",\"type\":\"tuple\",\"internalType\":\"structOperatorSet\",\"components\":[{\"name\":\"avs\",\"type\":\"address\",\"internalType\":\"address\"},{\"name\":\"id\",\"type\":\"uint32\",\"internalType\":\"uint32\"}]},{\"name\":\"slasher\",\"type\":\"address\",\"internalType\":\"address\"}],\"outputs\":[],\"stateMutability\":\"nonpayable\"},{\"type\":\"function\",\"name\":\"viewImplementation\",\"inputs\":[],\"outputs\":[{\"name\":\"\",\"type\":\"address\",\"internalType\":\"address\"}],\"stateMutability\":\"view\"},{\"type\":\"event\",\"name\":\"AVSMetadataURIUpdated\",\"inputs\":[{\"name\":\"avs\",\"type\":\"address\",\"indexed\":true,\"internalType\":\"address\"},{\"name\":\"metadataURI\",\"type\":\"string\",\"indexed\":false,\"internalType\":\"string\"}],\"anonymous\":false},{\"type\":\"event\",\"name\":\"AVSRegistrarSet\",\"inputs\":[{\"name\":\"avs\",\"type\":\"address\",\"indexed\":false,\"internalType\":\"address\"},{\"name\":\"registrar\",\"type\":\"address\",\"indexed\":false,\"internalType\":\"contractIAVSRegistrar\"}],\"anonymous\":false},{\"type\":\"event\",\"name\":\"AllocationDelaySet\",\"inputs\":[{\"name\":\"operator\",\"type\":\"address\",\"indexed\":false,\"internalType\":\"address\"},{\"name\":\"delay\",\"type\":\"uint32\",\"indexed\":false,\"internalType\":\"uint32\"},{\"name\":\"effectBlock\",\"type\":\"uint32\",\"indexed\":false,\"internalType\":\"uint32\"}],\"anonymous\":false},{\"type\":\"event\",\"name\":\"AllocationUpdated\",\"inputs\":[{\"name\":\"operator\",\"type\":\"address\",\"indexed\":false,\"internalType\":\"address\"},{\"name\":\"operatorSet\",\"type\":\"tuple\",\"indexed\":false,\"internalType\":\"structOperatorSet\",\"components\":[{\"name\":\"avs\",\"type\":\"address\",\"internalType\":\"address\"},{\"name\":\"id\",\"type\":\"uint32\",\"internalType\":\"uint32\"}]},{\"name\":\"strategy\",\"type\":\"address\",\"indexed\":false,\"internalType\":\"contractIStrategy\"},{\"name\":\"magnitude\",\"type\":\"uint64\",\"indexed\":false,\"internalType\":\"uint64\"},{\"name\":\"effectBlock\",\"type\":\"uint32\",\"indexed\":false,\"internalType\":\"uint32\"}],\"anonymous\":false},{\"type\":\"event\",\"name\":\"EncumberedMagnitudeUpdated\",\"inputs\":[{\"name\":\"operator\",\"type\":\"address\",\"indexed\":false,\"internalType\":\"address\"},{\"name\":\"strategy\",\"type\":\"address\",\"indexed\":false,\"internalType\":\"contractIStrategy\"},{\"name\":\"encumberedMagnitude\",\"type\":\"uint64\",\"indexed\":false,\"internalType\":\"uint64\"}],\"anonymous\":false},{\"type\":\"event\",\"name\":\"Initialized\",\"inputs\":[{\"name\":\"version\",\"type\":\"uint8\",\"indexed\":false,\"internalType\":\"uint8\"}],\"anonymous\":false},{\"type\":\"event\",\"name\":\"MaxMagnitudeUpdated\",\"inputs\":[{\"name\":\"operator\",\"type\":\"address\",\"indexed\":false,\"internalType\":\"address\"},{\"name\":\"strategy\",\"type\":\"address\",\"indexed\":false,\"internalType\":\"contractIStrategy\"},{\"name\":\"maxMagnitude\",\"type\":\"uint64\",\"indexed\":false,\"internalType\":\"uint64\"}],\"anonymous\":false},{\"type\":\"event\",\"name\":\"OperatorAddedToOperatorSet\",\"inputs\":[{\"name\":\"operator\",\"type\":\"address\",\"indexed\":true,\"internalType\":\"address\"},{\"name\":\"operatorSet\",\"type\":\"tuple\",\"indexed\":false,\"internalType\":\"structOperatorSet\",\"components\":[{\"name\":\"avs\",\"type\":\"address\",\"internalType\":\"address\"},{\"name\":\"id\",\"type\":\"uint32\",\"internalType\":\"uint32\"}]}],\"anonymous\":false},{\"type\":\"event\",\"name\":\"OperatorRemovedFromOperatorSet\",\"inputs\":[{\"name\":\"operator\",\"type\":\"address\",\"indexed\":true,\"internalType\":\"address\"},{\"name\":\"operatorSet\",\"type\":\"tuple\",\"indexed\":false,\"internalType\":\"structOperatorSet\",\"components\":[{\"name\":\"avs\",\"type\":\"address\",\"internalType\":\"address\"},{\"name\":\"id\",\"type\":\"uint32\",\"internalType\":\"uint32\"}]}],\"anonymous\":false},{\"type\":\"event\",\"name\":\"OperatorSetCreated\",\"inputs\":[{\"name\":\"operatorSet\",\"type\":\"tuple\",\"indexed\":false,\"internalType\":\"structOperatorSet\",\"components\":[{\"name\":\"avs\",\"type\":\"address\",\"internalType\":\"address\"},{\"name\":\"id\",\"type\":\"uint32\",\"internalType\":\"uint32\"}]}],\"anonymous\":false},{\"type\":\"event\",\"name\":\"OperatorSlashed\",\"inputs\":[{\"name\":\"operator\",\"type\":\"address\",\"indexed\":false,\"internalType\":\"address\"},{\"name\":\"operatorSet\",\"type\":\"tuple\",\"indexed\":false,\"internalType\":\"structOperatorSet\",\"components\":[{\"name\":\"avs\",\"type\":\"address\",\"internalType\":\"address\"},{\"name\":\"id\",\"type\":\"uint32\",\"internalType\":\"uint32\"}]},{\"name\":\"strategies\",\"type\":\"address[]\",\"indexed\":false,\"internalType\":\"contractIStrategy[]\"},{\"name\":\"wadSlashed\",\"type\":\"uint256[]\",\"indexed\":false,\"internalType\":\"uint256[]\"},{\"name\":\"description\",\"type\":\"string\",\"indexed\":false,\"internalType\":\"string\"}],\"anonymous\":false},{\"type\":\"event\",\"name\":\"Paused\",\"inputs\":[{\"name\":\"account\",\"type\":\"address\",\"indexed\":true,\"internalType\":\"address\"},{\"name\":\"newPausedStatus\",\"type\":\"uint256\",\"indexed\":false,\"internalType\":\"uint256\"}],\"anonymous\":false},{\"type\":\"event\",\"name\":\"RedistributionAddressSet\",\"inputs\":[{\"name\":\"operatorSet\",\"type\":\"tuple\",\"indexed\":false,\"internalType\":\"structOperatorSet\",\"components\":[{\"name\":\"avs\",\"type\":\"address\",\"internalType\":\"address\"},{\"name\":\"id\",\"type\":\"uint32\",\"internalType\":\"uint32\"}]},{\"name\":\"redistributionRecipient\",\"type\":\"address\",\"indexed\":false,\"internalType\":\"address\"}],\"anonymous\":false},{\"type\":\"event\",\"name\":\"SlasherMigrated\",\"inputs\":[{\"name\":\"operatorSet\",\"type\":\"tuple\",\"indexed\":false,\"internalType\":\"structOperatorSet\",\"components\":[{\"name\":\"avs\",\"type\":\"address\",\"internalType\":\"address\"},{\"name\":\"id\",\"type\":\"uint32\",\"internalType\":\"uint32\"}]},{\"name\":\"slasher\",\"type\":\"address\",\"indexed\":false,\"internalType\":\"address\"}],\"anonymous\":false},{\"type\":\"event\",\"name\":\"SlasherUpdated\",\"inputs\":[{\"name\":\"operatorSet\",\"type\":\"tuple\",\"indexed\":false,\"internalType\":\"structOperatorSet\",\"components\":[{\"name\":\"avs\",\"type\":\"address\",\"internalType\":\"address\"},{\"name\":\"id\",\"type\":\"uint32\",\"internalType\":\"uint32\"}]},{\"name\":\"slasher\",\"type\":\"address\",\"indexed\":false,\"internalType\":\"address\"},{\"name\":\"effectBlock\",\"type\":\"uint32\",\"indexed\":false,\"internalType\":\"uint32\"}],\"anonymous\":false},{\"type\":\"event\",\"name\":\"StrategyAddedToOperatorSet\",\"inputs\":[{\"name\":\"operatorSet\",\"type\":\"tuple\",\"indexed\":false,\"internalType\":\"structOperatorSet\",\"components\":[{\"name\":\"avs\",\"type\":\"address\",\"internalType\":\"address\"},{\"name\":\"id\",\"type\":\"uint32\",\"internalType\":\"uint32\"}]},{\"name\":\"strategy\",\"type\":\"address\",\"indexed\":false,\"internalType\":\"contractIStrategy\"}],\"anonymous\":false},{\"type\":\"event\",\"name\":\"StrategyRemovedFromOperatorSet\",\"inputs\":[{\"name\":\"operatorSet\",\"type\":\"tuple\",\"indexed\":false,\"internalType\":\"structOperatorSet\",\"components\":[{\"name\":\"avs\",\"type\":\"address\",\"internalType\":\"address\"},{\"name\":\"id\",\"type\":\"uint32\",\"internalType\":\"uint32\"}]},{\"name\":\"strategy\",\"type\":\"address\",\"indexed\":false,\"internalType\":\"contractIStrategy\"}],\"anonymous\":false},{\"type\":\"event\",\"name\":\"Unpaused\",\"inputs\":[{\"name\":\"account\",\"type\":\"address\",\"indexed\":true,\"internalType\":\"address\"},{\"name\":\"newPausedStatus\",\"type\":\"uint256\",\"indexed\":false,\"internalType\":\"uint256\"}],\"anonymous\":false},{\"type\":\"error\",\"name\":\"AlreadyMemberOfSet\",\"inputs\":[]},{\"type\":\"error\",\"name\":\"CurrentlyPaused\",\"inputs\":[]},{\"type\":\"error\",\"name\":\"Empty\",\"inputs\":[]},{\"type\":\"error\",\"name\":\"InputAddressZero\",\"inputs\":[]},{\"type\":\"error\",\"name\":\"InputArrayLengthMismatch\",\"inputs\":[]},{\"type\":\"error\",\"name\":\"InsufficientMagnitude\",\"inputs\":[]},{\"type\":\"error\",\"name\":\"InvalidAVSRegistrar\",\"inputs\":[]},{\"type\":\"error\",\"name\":\"InvalidCaller\",\"inputs\":[]},{\"type\":\"error\",\"name\":\"InvalidNewPausedStatus\",\"inputs\":[]},{\"type\":\"error\",\"name\":\"InvalidOperator\",\"inputs\":[]},{\"type\":\"error\",\"name\":\"InvalidOperatorSet\",\"inputs\":[]},{\"type\":\"error\",\"name\":\"InvalidPermissions\",\"inputs\":[]},{\"type\":\"error\",\"name\":\"InvalidRedistributionRecipient\",\"inputs\":[]},{\"type\":\"error\",\"name\":\"InvalidSnapshotOrdering\",\"inputs\":[]},{\"type\":\"error\",\"name\":\"InvalidStrategy\",\"inputs\":[]},{\"type\":\"error\",\"name\":\"InvalidWadToSlash\",\"inputs\":[]},{\"type\":\"error\",\"name\":\"ModificationAlreadyPending\",\"inputs\":[]},{\"type\":\"error\",\"name\":\"NonexistentAVSMetadata\",\"inputs\":[]},{\"type\":\"error\",\"name\":\"NotMemberOfSet\",\"inputs\":[]},{\"type\":\"error\",\"name\":\"OnlyPauser\",\"inputs\":[]},{\"type\":\"error\",\"name\":\"OnlyUnpauser\",\"inputs\":[]},{\"type\":\"error\",\"name\":\"OperatorNotSlashable\",\"inputs\":[]},{\"type\":\"error\",\"name\":\"OperatorSetAlreadyMigrated\",\"inputs\":[]},{\"type\":\"error\",\"name\":\"SameMagnitude\",\"inputs\":[]},{\"type\":\"error\",\"name\":\"SlasherNotSet\",\"inputs\":[]},{\"type\":\"error\",\"name\":\"StrategiesMustBeInAscendingOrder\",\"inputs\":[]},{\"type\":\"error\",\"name\":\"StrategyAlreadyInOperatorSet\",\"inputs\":[]},{\"type\":\"error\",\"name\":\"StrategyNotInOperatorSet\",\"inputs\":[]},{\"type\":\"error\",\"name\":\"UninitializedAllocationDelay\",\"inputs\":[]}]",
Bin: "0x610160604052348015610010575f5ffd5b5060405161599e38038061599e83398101604081905261002f91610192565b868387878585896001600160a01b03811661005d576040516339b190bb60e11b815260040160405180910390fd5b6001600160a01b0390811660805293841660a05291831660c05263ffffffff90811660e052166101005290811661012052166101405261009b6100a7565b50505050505050610221565b5f54610100900460ff16156101125760405162461bcd60e51b815260206004820152602760248201527f496e697469616c697a61626c653a20636f6e747261637420697320696e697469604482015266616c697a696e6760c81b606482015260840160405180910390fd5b5f5460ff90811614610161575f805460ff191660ff9081179091556040519081527f7f26b83ff96e1f2b6a682f133852f6798a09c465da95921460cefb38474024989060200160405180910390a15b565b6001600160a01b0381168114610177575f5ffd5b50565b805163ffffffff8116811461018d575f5ffd5b919050565b5f5f5f5f5f5f5f60e0888a0312156101a8575f5ffd5b87516101b381610163565b60208901519097506101c481610163565b60408901519096506101d581610163565b60608901519095506101e681610163565b60808901519094506101f781610163565b925061020560a0890161017a565b915061021360c0890161017a565b905092959891949750929550565b60805160a05160c05160e05161010051610120516101405161569261030c5f395f81816103860152818161093f01528181610a1f01528181610a4e01528181610a9801528181610ac301528181610d1f01528181610fc3015281816120f301526123ce01525f81816105800152818161198a015261374501525f81816106b701528181613439015261362701525f818161047b015281816112f3015261171401525f818161084d01526132cb01525f818161088201528181610ec501528181610f1301528181611c1d0152612ebb01525f81816106de0152818161261d0152613c0201526156925ff3fe608060405234801561000f575f5ffd5b506004361061037d575f3560e01c80636cfb4481116101d4578063b66bd98911610109578063d7794857116100a9578063f231bd0811610079578063f231bd08146108a4578063f605ce0814610679578063fabc1cbc146108b7578063fe4b84df146108ca575f5ffd5b8063d779485714610811578063db4df76114610848578063dc2af6921461086f578063df5cf7231461087d575f5ffd5b8063c221d8ae116100e4578063c221d8ae146107c5578063d1a83f54146107d8578063d3d96ff4146107eb578063d4a3fcce146107fe575f5ffd5b8063b66bd98914610775578063b9fbaed114610788578063ba1a84e5146107b7575f5ffd5b806394d7d00c11610174578063a9333ec81161014f578063a9333ec814610679578063a98218211461074f578063adc2e3d914610762578063b2447af7146105d0575f5ffd5b806394d7d00c1461071b578063952899ee14610729578063957dc50b1461073c575f5ffd5b806379ae50cd116101af57806379ae50cd146104305780637bc1ef61146106b2578063886f1195146106d95780638ce6485414610700575f5ffd5b80636cfb4481146106795780636e3492b51461069f5780636e875dba14610560575f5ffd5b80633dff8e7d116102b557806350feea20116102555780635ac86ab7116102255780635ac86ab7146106285780635c975abb1461064b578063670d3ba2146106535780636c9d7c5814610666575f5ffd5b806350feea20146105ec578063547afb87146105ff57806356c483e61461060d578063595c6a6714610620575f5ffd5b80634657e26a116102905780634657e26a1461057b5780634a10ffe5146105a25780634b5046ef146105bd5780634cfd2939146105d0575f5ffd5b80633dff8e7d1461052c57806340120dab1461053f5780634177a87c14610560575f5ffd5b8063261f84e0116103205780632bab2c4a116102fb5780632bab2c4a146104d2578063304c10cd146104e557806332a879e4146104f8578063363520571461050b575f5ffd5b8063261f84e0146104635780632981eb77146104765780632b453a9a146104b2575f5ffd5b80631352c3e61161035b5780631352c3e6146103f8578063136439dd1461041b57806315fe502814610430578063260dc75814610450575f5ffd5b80630b156bb6146103815780630f3df50e146103c557806310e1b9b8146103d8575b5f5ffd5b6103a87f000000000000000000000000000000000000000000000000000000000000000081565b6040516001600160a01b0390911681526020015b60405180910390f35b6103a86103d33660046143aa565b6108dd565b6103eb6103e63660046143c4565b61091e565b6040516103bc919061440b565b61040b61040636600461443e565b610963565b60405190151581526020016103bc565b61042e610429366004614472565b6109de565b005b61044361043e366004614489565b610a18565b6040516103bc9190614507565b61040b61045e3660046143aa565b610a48565b61042e610471366004614559565b610a72565b61049d7f000000000000000000000000000000000000000000000000000000000000000081565b60405163ffffffff90911681526020016103bc565b6104c56104c036600461463e565b610a91565b6040516103bc91906146e1565b6104c56104e0366004614744565b610abc565b6103a86104f3366004614489565b610aef565b61042e6105063660046147c8565b610b1e565b61051e610519366004614848565b610b46565b6040516103bc92919061489a565b61042e61053a366004614990565b610c9b565b61055261054d3660046149dc565b610d17565b6040516103bc929190614a69565b61056e61043e3660046143aa565b6040516103bc9190614a8d565b6103a87f000000000000000000000000000000000000000000000000000000000000000081565b6105b06104c0366004614ad8565b6040516103bc9190614b1f565b61042e6105cb3660046147c8565b610d4a565b6105de61045e3660046143aa565b6040519081526020016103bc565b61042e6105fa366004614b5f565b610de6565b6105b06104c0366004614559565b61042e61061b366004614bbd565b610eba565b61042e610fa9565b61040b610636366004614be7565b606654600160ff9092169190911b9081161490565b6066546105de565b61040b61066136600461443e565b610fbd565b61042e610674366004614c07565b610fe7565b6106876106613660046149dc565b6040516001600160401b0390911681526020016103bc565b61042e6106ad366004614c48565b61107d565b61049d7f000000000000000000000000000000000000000000000000000000000000000081565b6103a87f000000000000000000000000000000000000000000000000000000000000000081565b61070e6104c0366004614c79565b6040516103bc9190614cbc565b6105b06104e0366004614cce565b61042e610737366004614d25565b611438565b61042e61074a366004614ece565b6118c9565b61042e61075d366004614f5e565b611b54565b61042e610770366004614fdc565b611be9565b61042e610783366004614b5f565b611f15565b61079b610796366004614489565b612052565b60408051921515835263ffffffff9091166020830152016103bc565b6105de61045e366004614489565b61056e6107d336600461443e565b6120ec565b61042e6107e636600461501e565b612117565b61042e6107f93660046149dc565b612230565b6103a861080c3660046143aa565b612340565b61082461081f3660046143aa565b6123c7565b604080516001600160a01b03909316835263ffffffff9091166020830152016103bc565b6103a87f000000000000000000000000000000000000000000000000000000000000000081565b61040b61045e366004614489565b6103a87f000000000000000000000000000000000000000000000000000000000000000081565b61040b6108b23660046143aa565b6123f7565b61042e6108c5366004614472565b612416565b61042e6108d8366004614472565b612483565b5f5f60a65f6108eb85612594565b815260208101919091526040015f20546001600160a01b0316905080156109125780610917565b620e16e45b9392505050565b604080516060810182525f80825260208201819052918101919091526109177f00000000000000000000000000000000000000000000000000000000000000006125f7565b6001600160a01b0382165f908152609e6020526040812081908161098685612594565b815260208082019290925260409081015f2081518083019092525460ff8116151580835261010090910463ffffffff16928201929092529150806109d45750806020015163ffffffff164311155b9150505b92915050565b6109e6612608565b6066548181168114610a0b5760405163c61dca5d60e01b815260040160405180910390fd5b610a14826126ab565b5050565b6060610a437f00000000000000000000000000000000000000000000000000000000000000006125f7565b919050565b5f610a437f00000000000000000000000000000000000000000000000000000000000000006125f7565b82610a7c816126e8565b610a8b8461053a858588612711565b50505050565b60606109177f00000000000000000000000000000000000000000000000000000000000000006125f7565b6060610ae77f00000000000000000000000000000000000000000000000000000000000000006125f7565b949350505050565b6001600160a01b038082165f908152609760205260408120549091168015610b175780610917565b5090919050565b84610b28816126e8565b610b3e86610b3787878a612711565b8585612117565b505050505050565b5f60606001610b5481612888565b5f6040518060400160405280876001600160a01b03168152602001866020016020810190610b82919061507d565b63ffffffff1690529050610b996060860186615096565b9050610ba86040870187615096565b905014610bc8576040516343714afd60e01b815260040160405180910390fd5b60208082015182516001600160a01b03165f90815260989092526040909120610bfa9163ffffffff908116906128b316565b610c1757604051631fb1705560e21b815260040160405180910390fd5b610c2d610c276020870187614489565b82610963565b610c4a5760405163ebbff49760e01b815260040160405180910390fd5b610c5381612340565b6001600160a01b0316336001600160a01b031614610c84576040516348f5c3ed60e01b815260040160405180910390fd5b610c8e85826128ca565b9350935050509250929050565b81610ca5816126e8565b6001600160a01b0383165f90815260a4602052604090205460ff16610cdd576040516348f7dbb960e01b815260040160405180910390fd5b5f5b8251811015610a8b57610d0f84848381518110610cfe57610cfe6150db565b6020026020010151620e16e4613025565b600101610cdf565b606080610d437f00000000000000000000000000000000000000000000000000000000000000006125f7565b9250929050565b5f610d5481612888565b838214610d74576040516343714afd60e01b815260040160405180910390fd5b5f5b84811015610ddd57610dd587878784818110610d9457610d946150db565b9050602002016020810190610da99190614489565b868685818110610dbb57610dbb6150db565b9050602002016020810190610dd091906150ef565b613197565b600101610d76565b50505050505050565b83610df0816126e8565b6040805180820182526001600160a01b03871680825263ffffffff80881660208085018290525f93845260989052939091209192610e2f92916128b316565b610e4c57604051631fb1705560e21b815260040160405180910390fd5b5f5b83811015610ddd57610eb282868684818110610e6c57610e6c6150db565b9050602002016020810190610e819190614489565b610ead60405180604001604052808c6001600160a01b031681526020018b63ffffffff168152506123f7565b61329b565b600101610e4e565b336001600160a01b037f0000000000000000000000000000000000000000000000000000000000000000161480610f9957610ef4836126e8565b6040516336b87bd760e11b81526001600160a01b0384811660048301527f00000000000000000000000000000000000000000000000000000000000000001690636d70f7ae90602401602060405180830381865afa158015610f58573d5f5f3e3d5ffd5b505050506040513d601f19601f82011682018060405250810190610f7c9190615110565b610f995760405163ccea9e6f60e01b815260040160405180910390fd5b610fa483838361337b565b505050565b610fb1612608565b610fbb5f196126ab565b565b5f6109d87f00000000000000000000000000000000000000000000000000000000000000006125f7565b8151610ff2816126e8565b60208084015184516001600160a01b03165f908152609890925260409091206110249163ffffffff908116906128b316565b61104157604051631fb1705560e21b815260040160405180910390fd5b5f61104b84612340565b6001600160a01b0316036110725760405163255b0f4160e01b815260040160405180910390fd5b610fa483835f61354b565b600261108881612888565b61109d6110986020840184614489565b613707565b806110b657506110b66110986040840160208501614489565b6110d3576040516348f5c3ed60e01b815260040160405180910390fd5b5f5b6110e26040840184615096565b90508110156113a4575f604051806040016040528085602001602081019061110a9190614489565b6001600160a01b031681526020016111256040870187615096565b85818110611135576111356150db565b905060200201602081019061114a919061507d565b63ffffffff168152509050611197816020015163ffffffff1660985f8760200160208101906111799190614489565b6001600160a01b0316815260208101919091526040015f20906128b3565b6111b457604051631fb1705560e21b815260040160405180910390fd5b609e5f6111c46020870187614489565b6001600160a01b03166001600160a01b031681526020019081526020015f205f6111ed83612594565b815260208101919091526040015f205460ff1661121d576040516325131d4f60e01b815260040160405180910390fd5b61125761122982612594565b609c5f6112396020890189614489565b6001600160a01b0316815260208101919091526040015f20906137b0565b5061128f6112686020860186614489565b609a5f61127485612594565b81526020019081526020015f206137bb90919063ffffffff16565b5061129d6020850185614489565b6001600160a01b03167fad34c3070be1dffbcaa499d000ba2b8d9848aefcac3059df245dd95c4ece14fe826040516112d5919061512f565b60405180910390a2604080518082019091525f8152602081016113187f000000000000000000000000000000000000000000000000000000000000000043615151565b63ffffffff169052609e5f6113306020880188614489565b6001600160a01b03166001600160a01b031681526020019081526020015f205f61135984612594565b81526020808201929092526040015f2082518154939092015163ffffffff166101000264ffffffff00199215159290921664ffffffffff1990931692909217179055506001016110d5565b506113b86104f36040840160208501614489565b6001600160a01b031663303ca9566113d36020850185614489565b6113e36040860160208701614489565b6113f06040870187615096565b6040518563ffffffff1660e01b815260040161140f94939291906151a6565b5f604051808303815f87803b158015611426575f5ffd5b505af1158015610b3e573d5f5f3e3d5ffd5b5f61144281612888565b61144b836126e8565b5f5f5f61145786612052565b91509150816114795760405163fa55fc8160e01b815260040160405180910390fd5b91505f90505b83518110156118c25783818151811061149a5761149a6150db565b602002602001015160400151518482815181106114b9576114b96150db565b60200260200101516020015151146114e4576040516343714afd60e01b815260040160405180910390fd5b5f8482815181106114f7576114f76150db565b602090810291909101810151518082015181516001600160a01b03165f908152609890935260409092209092506115379163ffffffff908116906128b316565b61155457604051631fb1705560e21b815260040160405180910390fd5b5f61155f8783610963565b90505f5b868481518110611575576115756150db565b602002602001015160200151518110156118b7575f87858151811061159c5761159c6150db565b60200260200101516020015182815181106115b9576115b96150db565b602002602001015190506115d0898261ffff613197565b5f5f6115e58b6115df88612594565b856137cf565b91509150806040015163ffffffff165f1461161357604051630d8fcbe360e41b815260040160405180910390fd5b5f6116208785848961393b565b9050611665825f01518c8a8151811061163b5761163b6150db565b6020026020010151604001518781518110611658576116586150db565b6020026020010151613973565b600f0b602083018190525f0361168e57604051634606179360e11b815260040160405180910390fd5b5f8260200151600f0b12156117d25780156117545761170f6116af88612594565b6001600160a01b03808f165f90815260a360209081526040808320938a16835292905220908154600160801b90819004600f0b5f818152600180860160205260409091209390935583546001600160801b03908116939091011602179055565b6117397f000000000000000000000000000000000000000000000000000000000000000043615151565b611744906001615151565b63ffffffff16604083015261183f565b6117668360200151836020015161398a565b6001600160401b031660208401528a518b9089908110611788576117886150db565b60200260200101516040015185815181106117a5576117a56150db565b6020908102919091018101516001600160401b031683525f9083015263ffffffff4316604083015261183f565b5f8260200151600f0b131561183f576117f38360200151836020015161398a565b6001600160401b03908116602085018190528451909116101561182957604051636c9be0bf60e01b815260040160405180910390fd5b6118338943615151565b63ffffffff1660408301525b6118548c61184c89612594565b8686866139a9565b7f1487af5418c47ee5ea45ef4a93398668120890774a9e13487e61e9dc3baf76dd8c8886611889865f0151876020015161398a565b866040015160405161189f9594939291906151d2565b60405180910390a15050600190920191506115639050565b50505060010161147f565b5050505050565b5f5b8151811015610a14576119488282815181106118e9576118e96150db565b60200260200101516020015163ffffffff1660985f858581518110611910576119106150db565b60200260200101515f01516001600160a01b03166001600160a01b031681526020019081526020015f206128b390919063ffffffff16565b15611b4c575f6001600160a01b031661197983838151811061196c5761196c6150db565b6020026020010151612340565b6001600160a01b031603611b4c575f7f00000000000000000000000000000000000000000000000000000000000000006001600160a01b031663fddbdefd8484815181106119c9576119c96150db565b6020908102919091010151516040516001600160e01b031960e084901b1681526001600160a01b039091166004820152306024820152633635205760e01b60448201526064015f60405180830381865afa158015611a29573d5f5f3e3d5ffd5b505050506040513d5f823e601f3d908101601f19168201604052611a509190810190615223565b90505f81515f1480611a8c57505f6001600160a01b0316825f81518110611a7957611a796150db565b60200260200101516001600160a01b0316145b15611ab557838381518110611aa357611aa36150db565b60200260200101515f01519050611ad2565b815f81518110611ac757611ac76150db565b602002602001015190505b611af7848481518110611ae757611ae76150db565b602002602001015182600161354b565b7ff0c8fc7d71f647bd3a88ac369112517f6a4b8038e71913f2d20f71f877dfc725848481518110611b2a57611b2a6150db565b602002602001015182604051611b419291906152b2565b60405180910390a150505b6001016118cb565b82611b5e816126e8565b6001600160a01b0384165f90815260a4602052604090205460ff16611ba0576001600160a01b0384165f90815260a460205260409020805460ff191660011790555b836001600160a01b03167fa89c1dc243d8908a96dd84944bcc97d6bc6ac00dd78e20621576be6a3c9437138484604051611bdb929190615300565b60405180910390a250505050565b6002611bf481612888565b82611bfe816126e8565b6040516336b87bd760e11b81526001600160a01b0385811660048301527f00000000000000000000000000000000000000000000000000000000000000001690636d70f7ae90602401602060405180830381865afa158015611c62573d5f5f3e3d5ffd5b505050506040513d601f19601f82011682018060405250810190611c869190615110565b611ca35760405163ccea9e6f60e01b815260040160405180910390fd5b5f5b611cb26020850185615096565b9050811015611e7a57604080518082019091525f9080611cd56020880188614489565b6001600160a01b03168152602001868060200190611cf39190615096565b85818110611d0357611d036150db565b9050602002016020810190611d18919061507d565b63ffffffff90811690915260208083015183516001600160a01b03165f90815260989092526040909120929350611d549291908116906128b316565b611d7157604051631fb1705560e21b815260040160405180910390fd5b611d7b8682610963565b15611d9957604051636c6c6e2760e11b815260040160405180910390fd5b611dc2611da582612594565b6001600160a01b0388165f908152609c6020526040902090613be1565b50611dee86609a5f611dd385612594565b81526020019081526020015f20613bec90919063ffffffff16565b50856001600160a01b03167f43232edf9071753d2321e5fa7e018363ee248e5f2142e6c08edd3265bfb4895e82604051611e28919061512f565b60405180910390a26001600160a01b0386165f908152609e60205260408120600191611e5384612594565b815260208101919091526040015f20805460ff191691151591909117905550600101611ca5565b50611e8b6104f36020850185614489565b6001600160a01b031663c63fd50285611ea76020870187614489565b611eb46020880188615096565b611ec160408a018a615313565b6040518763ffffffff1660e01b8152600401611ee296959493929190615355565b5f604051808303815f87803b158015611ef9575f5ffd5b505af1158015611f0b573d5f5f3e3d5ffd5b5050505050505050565b83611f1f816126e8565b6040805180820182526001600160a01b03871680825263ffffffff80881660208085018290525f93845260989052939091209192611f5e92916128b316565b611f7b57604051631fb1705560e21b815260040160405180910390fd5b5f611f8582612594565b90505f5b84811015611f0b57611fce868683818110611fa657611fa66150db565b9050602002016020810190611fbb9190614489565b5f848152609960205260409020906137bb565b611feb576040516331bc342760e11b815260040160405180910390fd5b7f7b4b073d80dcac55a11177d8459ad9f664ceeb91f71f27167bb14f8152a7eeee8387878481811061201f5761201f6150db565b90506020020160208101906120349190614489565b6040516120429291906152b2565b60405180910390a1600101611f89565b6001600160a01b0381165f908152609b602090815260408083208151608081018352905463ffffffff80821680845260ff600160201b8404161515958401869052650100000000008304821694840194909452600160481b9091041660608201819052849391929190158015906120d35750826060015163ffffffff164310155b156120e2575050604081015160015b9590945092505050565b60606109d87f00000000000000000000000000000000000000000000000000000000000000006125f7565b83612121816126e8565b83518214612142576040516343714afd60e01b815260040160405180910390fd5b6001600160a01b0385165f90815260a4602052604090205460ff1661217a576040516348f7dbb960e01b815260040160405180910390fd5b5f5b8451811015610b3e575f848483818110612198576121986150db565b90506020020160208101906121ad9190614489565b90506001600160a01b0381166121d6576040516339b190bb60e11b815260040160405180910390fd5b620e16e3196001600160a01b03821601612203576040516364be1a3f60e11b815260040160405180910390fd5b61222787878481518110612219576122196150db565b602002602001015183613025565b5060010161217c565b8161223a816126e8565b60405163b526578760e01b81526001600160a01b03848116600483015283169063b526578790602401602060405180830381865afa15801561227e573d5f5f3e3d5ffd5b505050506040513d601f19601f820116820180604052508101906122a29190615110565b6122bf57604051631d0b13c160e31b815260040160405180910390fd5b6001600160a01b038381165f90815260976020526040902080546001600160a01b0319169184169190911790557f2ae945c40c44dc0ec263f95609c3fdc6952e0aefa22d6374e44f2c997acedf858361231781610aef565b604080516001600160a01b039384168152929091166020830152015b60405180910390a1505050565b5f5f60a75f61234e85612594565b815260208082019290925260409081015f20815160608101835281546001600160a01b0390811680835260019093015490811694820194909452600160a01b90930463ffffffff16918301829052919250158015906123b75750816040015163ffffffff164310155b1561091757506020015192915050565b5f5f6123f27f00000000000000000000000000000000000000000000000000000000000000006125f7565b915091565b5f620e16e4612405836108dd565b6001600160a01b0316141592915050565b61241e613c00565b606654801982198116146124455760405163c61dca5d60e01b815260040160405180910390fd5b606682905560405182815233907f3582d1828e26bf56bd801502bc021ac0bc8afb57c826e4986b45593c8fad389c9060200160405180910390a25050565b5f54610100900460ff16158080156124a157505f54600160ff909116105b806124ba5750303b1580156124ba57505f5460ff166001145b6125225760405162461bcd60e51b815260206004820152602e60248201527f496e697469616c697a61626c653a20636f6e747261637420697320616c72656160448201526d191e481a5b9a5d1a585b1a5e995960921b60648201526084015b60405180910390fd5b5f805460ff191660011790558015612543575f805461ff0019166101001790555b61254c826126ab565b8015610a14575f805461ff0019169055604051600181527f7f26b83ff96e1f2b6a682f133852f6798a09c465da95921460cefb38474024989060200160405180910390a15050565b5f815f0151826020015163ffffffff166040516020016125df92919060609290921b6bffffffffffffffffffffffff1916825260a01b6001600160a01b031916601482015260200190565b6040516020818303038152906040526109d8906153a1565b613cb180610fa48363ffffffff8316565b60405163237dfb4760e11b81523360048201527f00000000000000000000000000000000000000000000000000000000000000006001600160a01b0316906346fbf68e90602401602060405180830381865afa15801561266a573d5f5f3e3d5ffd5b505050506040513d601f19601f8201168201806040525081019061268e9190615110565b610fbb57604051631d77d47760e21b815260040160405180910390fd5b606681905560405181815233907fab40a374bc51de372200a8bc981af8c9ecdc08dfdaef0bb6e09f88f3c616ef3d9060200160405180910390a250565b6126f181613707565b61270e5760405163932d94f760e01b815260040160405180910390fd5b50565b60605f836001600160401b0381111561272c5761272c6142ba565b60405190808252806020026020018201604052801561278e57816020015b61277b60405180606001604052805f63ffffffff168152602001606081526020015f6001600160a01b031681525090565b81526020019060019003908161274a5790505b5090505f5b8481101561287f5760405180606001604052808787848181106127b8576127b86150db565b90506020028101906127ca91906153c4565b6127d890602081019061507d565b63ffffffff1681526020018787848181106127f5576127f56150db565b905060200281019061280791906153c4565b612815906020810190615096565b808060200260200160405190810160405280939291908181526020018383602002808284375f920191909152505050908252506001600160a01b038616602090910152825183908390811061286c5761286c6150db565b6020908102919091010152600101612793565b50949350505050565b606654600160ff83161b9081160361270e5760405163840a48d560e01b815260040160405180910390fd5b5f8181526001830160205260408120541515610917565b5f6060816128db6040860186615096565b90506001600160401b038111156128f4576128f46142ba565b60405190808252806020026020018201604052801561291d578160200160208202803683370190505b50905061292d6040860186615096565b90506001600160401b03811115612946576129466142ba565b60405190808252806020026020018201604052801561296f578160200160208202803683370190505b50915060a55f61297e86612594565b81526020019081526020015f205f8154612997906153e2565b918290555092505f5b6129ad6040870187615096565b9050811015612fb757801580612a4057506129cb6040870187615096565b6129d66001846153fa565b8181106129e5576129e56150db565b90506020020160208101906129fa9190614489565b6001600160a01b0316612a106040880188615096565b83818110612a2057612a206150db565b9050602002016020810190612a359190614489565b6001600160a01b0316115b612a5d57604051639f1c805360e01b815260040160405180910390fd5b612a6a6060870187615096565b82818110612a7a57612a7a6150db565b905060200201355f108015612aba5750670de0b6b3a7640000612aa06060880188615096565b83818110612ab057612ab06150db565b9050602002013511155b612ad757604051631353603160e01b815260040160405180910390fd5b612b33612ae76040880188615096565b83818110612af757612af76150db565b9050602002016020810190612b0c9190614489565b60995f612b1889612594565b81526020019081526020015f20613ccf90919063ffffffff16565b612b50576040516331bc342760e11b815260040160405180910390fd5b5f80612ba2612b6260208a018a614489565b612b6b89612594565b612b7860408c018c615096565b87818110612b8857612b886150db565b9050602002016020810190612b9d9190614489565b6137cf565b805191935091506001600160401b03165f03612bbf575050612faf565b5f612bfa612bd060608b018b615096565b86818110612be057612be06150db565b85516001600160401b031692602090910201359050613cf0565b8351909150612c156001600160401b03808416908316613d06565b868681518110612c2757612c276150db565b60200260200101818152505081835f01818151612c44919061540d565b6001600160401b0316905250835182908590612c6190839061540d565b6001600160401b0316905250602084018051839190612c8190839061540d565b6001600160401b031690525060208301515f600f9190910b1215612d99575f612ce4612cb060608d018d615096565b88818110612cc057612cc06150db565b905060200201358560200151612cd59061542c565b6001600160801b031690613cf0565b9050806001600160401b031684602001818151612d019190615450565b600f0b9052507f1487af5418c47ee5ea45ef4a93398668120890774a9e13487e61e9dc3baf76dd612d3560208d018d614489565b8b612d4360408f018f615096565b8a818110612d5357612d536150db565b9050602002016020810190612d689190614489565b612d79885f0151896020015161398a565b8860400151604051612d8f9594939291906151d2565b60405180910390a1505b612deb612da960208c018c614489565b612db28b612594565b612dbf60408e018e615096565b89818110612dcf57612dcf6150db565b9050602002016020810190612de49190614489565b87876139a9565b7f1487af5418c47ee5ea45ef4a93398668120890774a9e13487e61e9dc3baf76dd612e1960208c018c614489565b8a612e2760408e018e615096565b89818110612e3757612e376150db565b9050602002016020810190612e4c9190614489565b8651604051612e60949392919043906151d2565b60405180910390a1612eb1612e7860208c018c614489565b612e8560408d018d615096565b88818110612e9557612e956150db565b9050602002016020810190612eaa9190614489565b8651613d1a565b6001600160a01b037f000000000000000000000000000000000000000000000000000000000000000016635ae679a7612eed60208d018d614489565b8b8b8e8060400190612eff9190615096565b8b818110612f0f57612f0f6150db565b9050602002016020810190612f249190614489565b89516040516001600160e01b031960e088901b168152612f4c9594939291899160040161547d565b6020604051808303815f875af1158015612f68573d5f5f3e3d5ffd5b505050506040513d601f19601f82011682018060405250810190612f8c91906154d0565b878681518110612f9e57612f9e6150db565b602002602001018181525050505050505b6001016129a0565b507f80969ad29428d6797ee7aad084f9e4a42a82fc506dcd2ca3b6fb431f85ccebe5612fe66020870187614489565b85612ff46040890189615096565b8561300260808c018c615313565b60405161301597969594939291906154e7565b60405180910390a1509250929050565b6040805180820182526001600160a01b038516808252845163ffffffff90811660208085018290525f938452609890529390912091926130669291613be116565b61308357604051631fb1705560e21b815260040160405180910390fd5b7f31629285ead2335ae0933f86ed2ae63321f7af77b4e6eaabc42c057880977e6c816040516130b2919061512f565b60405180910390a16001600160a01b038216620e16e414801590613147578260a65f6130dd85612594565b81526020019081526020015f205f6101000a8154816001600160a01b0302191690836001600160a01b031602179055507f90a6fa2a9b79b910872ebca540cf3bd8be827f586e6420c30d8836e30012907e828460405161313e9291906152b2565b60405180910390a15b5f5b8460200151518110156131865761317e8386602001518381518110613170576131706150db565b60200260200101518461329b565b600101613149565b506118c2828560400151600161354b565b6001600160a01b038381165f90815260a360209081526040808320938616835292905290812054600f81810b600160801b909204900b035b5f811180156131e157508261ffff1682105b156118c2576001600160a01b038086165f90815260a360209081526040808320938816835292905290812061321590613d9c565b90505f5f6132248884896137cf565b91509150806040015163ffffffff16431015613242575050506118c2565b61324f88848985856139a9565b6001600160a01b038089165f90815260a360209081526040808320938b1683529290522061327c90613dee565b50613286856153e2565b94506132918461557d565b93505050506131cf565b801561331d576001600160a01b03821673beac0eeeeeeeeeeeeeeeeeeeeeeeeeeeeeebeac01480159061330057507f00000000000000000000000000000000000000000000000000000000000000006001600160a01b0316826001600160a01b031614155b61331d57604051632711b74d60e11b815260040160405180910390fd5b61332d8260995f611dd387612594565b61334a5760405163585cfb2f60e01b815260040160405180910390fd5b7f7ab260fe0af193db5f4986770d831bda4ea46099dc817e8b6716dcae8af8e88b83836040516123339291906152b2565b6001600160a01b0383165f908152609b60209081526040918290208251608081018452905463ffffffff808216835260ff600160201b830416151593830193909352650100000000008104831693820193909352600160481b9092041660608201819052158015906133f75750806060015163ffffffff164310155b1561341157604081015163ffffffff168152600160208201525b63ffffffff8316604082015281156134345763ffffffff43166060820152613475565b61345e7f000000000000000000000000000000000000000000000000000000000000000043615151565b613469906001615151565b63ffffffff1660608201525b6001600160a01b0384165f818152609b60209081526040918290208451815486840151878601516060808a015163ffffffff95861664ffffffffff1990951694909417600160201b93151593909302929092176cffffffffffffffff0000000000191665010000000000918516919091026cffffffff000000000000000000191617600160481b92841692830217909355845195865290881692850192909252918301527f4e85751d6331506c6c62335f207eb31f12a61e570f34f5c17640308785c6d4db91015b60405180910390a150505050565b6001600160a01b038216613572576040516339b190bb60e11b815260040160405180910390fd5b5f60a75f61357f86612594565b815260208082019290925260409081015f20815160608101835281546001600160a01b03908116825260019092015491821693810193909352600160a01b900463ffffffff16908201819052909150158015906135e65750806040015163ffffffff164310155b156135fc5760208101516001600160a01b031681525b6001600160a01b038316602082015281156136225763ffffffff43166040820152613663565b61364c7f000000000000000000000000000000000000000000000000000000000000000043615151565b613657906001615151565b63ffffffff1660408201525b8060a75f61367087612594565b815260208082019290925260409081015f20835181546001600160a01b039182166001600160a01b031990911617825592840151600190910180549483015163ffffffff16600160a01b026001600160c01b031990951691909316179290921790558181015190517f3873f29d7a65a4d75f5ba28909172f486216a1420e77c3c2720815951a6b4f579161353d9187918791615592565b604051631beb2b9760e31b81526001600160a01b0382811660048301523360248301523060448301525f80356001600160e01b0319166064840152917f00000000000000000000000000000000000000000000000000000000000000009091169063df595cb890608401602060405180830381865afa15801561378c573d5f5f3e3d5ffd5b505050506040513d601f19601f820116820180604052508101906109d89190615110565b5f6109178383613e6b565b5f610917836001600160a01b038416613e6b565b6040805180820182525f80825260208083018290528351606081018552828152808201839052808501839052845180860186526001600160a01b03898116855260a184528685209088168552909252938220929392819061382f90613f4e565b6001600160401b0390811682526001600160a01b038981165f81815260a260209081526040808320948c168084529482528083205486169682019690965291815260a082528481208b8252825284812092815291815290839020835160608101855290549283168152600160401b8304600f0b91810191909152600160c01b90910463ffffffff169181018290529192504310156138d1579092509050613933565b6138e2815f0151826020015161398a565b6001600160401b0316815260208101515f600f9190910b1215613920576139118260200151826020015161398a565b6001600160401b031660208301525b5f60408201819052602082015290925090505b935093915050565b5f61394c8460995f612b1889612594565b80156139555750815b801561396a575082516001600160401b031615155b95945050505050565b5f6109176001600160401b038085169084166155c5565b5f6109176139a1836001600160401b038616615450565b600f0b613f61565b6020808301516001600160a01b038088165f90815260a284526040808220928816825291909352909120546001600160401b03908116911614613a6f57602082810180516001600160a01b038881165f81815260a286526040808220938a1680835293875290819020805467ffffffffffffffff19166001600160401b0395861617905593518451918252948101919091529216908201527facf9095feb3a370c9cf692421c69ef320d4db5c66e6a7d29c7694eb02364fc559060600160405180910390a15b6001600160a01b038086165f90815260a060209081526040808320888452825280832093871683529281529082902083518154928501519385015163ffffffff16600160c01b0263ffffffff60c01b196001600160801b038616600160401b026001600160c01b03199095166001600160401b03909316929092179390931716919091179055600f0b15613b51576001600160a01b0385165f908152609f602090815260408083208784529091529020613b299084613bec565b506001600160a01b0385165f908152609d60205260409020613b4b9085613be1565b506118c2565b80516001600160401b03165f036118c2576001600160a01b0385165f908152609f602090815260408083208784529091529020613b8e90846137bb565b506001600160a01b0385165f908152609f602090815260408083208784529091529020613bba90613fcc565b5f036118c2576001600160a01b0385165f908152609d60205260409020610b3e90856137b0565b5f6109178383613fd5565b5f610917836001600160a01b038416613fd5565b7f00000000000000000000000000000000000000000000000000000000000000006001600160a01b031663eab66d7a6040518163ffffffff1660e01b8152600401602060405180830381865afa158015613c5c573d5f5f3e3d5ffd5b505050506040513d601f19601f82011682018060405250810190613c8091906155f2565b6001600160a01b0316336001600160a01b031614610fbb5760405163794821ff60e01b815260040160405180910390fd5b365f5f375f5f365f845af43d5f5f3e808015613ccb573d5ff35b3d5ffd5b6001600160a01b0381165f9081526001830160205260408120541515610917565b5f6109178383670de0b6b3a76400006001614021565b5f61091783670de0b6b3a76400008461407a565b6001600160a01b038084165f90815260a160209081526040808320938616835292905220613d4990438361415f565b604080516001600160a01b038086168252841660208201526001600160401b038316918101919091527f1c6458079a41077d003c11faf9bf097e693bd67979e4e6500bac7b29db779b5c90606001612333565b5f613db68254600f81810b600160801b909204900b131590565b15613dd457604051631ed9509560e11b815260040160405180910390fd5b508054600f0b5f9081526001909101602052604090205490565b5f613e088254600f81810b600160801b909204900b131590565b15613e2657604051631ed9509560e11b815260040160405180910390fd5b508054600f0b5f818152600180840160205260408220805492905583546fffffffffffffffffffffffffffffffff191692016001600160801b03169190911790915590565b5f8181526001830160205260408120548015613f45575f613e8d6001836153fa565b85549091505f90613ea0906001906153fa565b9050818114613eff575f865f018281548110613ebe57613ebe6150db565b905f5260205f200154905080875f018481548110613ede57613ede6150db565b5f918252602080832090910192909255918252600188019052604090208390555b8554869080613f1057613f1061560d565b600190038181905f5260205f20015f90559055856001015f8681526020019081526020015f205f9055600193505050506109d8565b5f9150506109d8565b5f6109d882670de0b6b3a7640000614173565b5f6001600160401b03821115613fc85760405162461bcd60e51b815260206004820152602660248201527f53616665436173743a2076616c756520646f65736e27742066697420696e203660448201526534206269747360d01b6064820152608401612519565b5090565b5f6109d8825490565b5f81815260018301602052604081205461401a57508154600181810184555f8481526020808220909301849055845484825282860190935260409020919091556109d8565b505f6109d8565b5f5f61402e86868661407a565b9050600183600281111561404457614044615621565b14801561406057505f848061405b5761405b615635565b868809115b1561396a57614070600182615649565b9695505050505050565b5f80805f19858709858702925082811083820303915050805f036140b1578382816140a7576140a7615635565b0492505050610917565b8084116140f85760405162461bcd60e51b81526020600482015260156024820152744d6174683a206d756c446976206f766572666c6f7760581b6044820152606401612519565b5f8486880960026001871981018816978890046003810283188082028403028082028403028082028403028082028403028082028403029081029092039091025f889003889004909101858311909403939093029303949094049190911702949350505050565b610fa483836001600160401b0384166141b7565b81545f9080156141af576141998461418c6001846153fa565b5f91825260209091200190565b54600160201b90046001600160e01b03166109d4565b509092915050565b8254801561426d575f6141cf8561418c6001856153fa565b60408051808201909152905463ffffffff808216808452600160201b9092046001600160e01b0316602084015291925090851610156142215760405163151b8e3f60e11b815260040160405180910390fd5b805163ffffffff80861691160361426b57826142428661418c6001866153fa565b80546001600160e01b0392909216600160201b0263ffffffff9092169190911790555050505050565b505b506040805180820190915263ffffffff92831681526001600160e01b03918216602080830191825285546001810187555f968752952091519051909216600160201b029190921617910155565b634e487b7160e01b5f52604160045260245ffd5b604051606081016001600160401b03811182821017156142f0576142f06142ba565b60405290565b604051601f8201601f191681016001600160401b038111828210171561431e5761431e6142ba565b604052919050565b6001600160a01b038116811461270e575f5ffd5b803563ffffffff81168114610a43575f5ffd5b5f6040828403121561435d575f5ffd5b604080519081016001600160401b038111828210171561437f5761437f6142ba565b604052905080823561439081614326565b815261439e6020840161433a565b60208201525092915050565b5f604082840312156143ba575f5ffd5b610917838361434d565b5f5f5f608084860312156143d6575f5ffd5b83356143e181614326565b92506143f0856020860161434d565b9150606084013561440081614326565b809150509250925092565b81516001600160401b03168152602080830151600f0b9082015260408083015163ffffffff1690820152606081016109d8565b5f5f6060838503121561444f575f5ffd5b823561445a81614326565b9150614469846020850161434d565b90509250929050565b5f60208284031215614482575f5ffd5b5035919050565b5f60208284031215614499575f5ffd5b813561091781614326565b80516001600160a01b0316825260209081015163ffffffff16910152565b5f8151808452602084019350602083015f5b828110156144fd576144e78683516144a4565b60409590950194602091909101906001016144d4565b5093949350505050565b602081525f61091760208301846144c2565b5f5f83601f840112614529575f5ffd5b5081356001600160401b0381111561453f575f5ffd5b6020830191508360208260051b8501011115610d43575f5ffd5b5f5f5f6040848603121561456b575f5ffd5b833561457681614326565b925060208401356001600160401b03811115614590575f5ffd5b61459c86828701614519565b9497909650939450505050565b5f6001600160401b038211156145c1576145c16142ba565b5060051b60200190565b5f82601f8301126145da575f5ffd5b81356145ed6145e8826145a9565b6142f6565b8082825260208201915060208360051b86010192508583111561460e575f5ffd5b602085015b8381101561463457803561462681614326565b835260209283019201614613565b5095945050505050565b5f5f5f60808486031215614650575f5ffd5b61465a858561434d565b925060408401356001600160401b03811115614674575f5ffd5b614680868287016145cb565b92505060608401356001600160401b0381111561469b575f5ffd5b6146a7868287016145cb565b9150509250925092565b5f8151808452602084019350602083015f5b828110156144fd5781518652602095860195909101906001016146c3565b5f602082016020835280845180835260408501915060408160051b8601019250602086015f5b8281101561473857603f198786030184526147238583516146b1565b94506020938401939190910190600101614707565b50929695505050505050565b5f5f5f5f60a08587031215614757575f5ffd5b614761868661434d565b935060408501356001600160401b0381111561477b575f5ffd5b614787878288016145cb565b93505060608501356001600160401b038111156147a2575f5ffd5b6147ae878288016145cb565b9250506147bd6080860161433a565b905092959194509250565b5f5f5f5f5f606086880312156147dc575f5ffd5b85356147e781614326565b945060208601356001600160401b03811115614801575f5ffd5b61480d88828901614519565b90955093505060408601356001600160401b0381111561482b575f5ffd5b61483788828901614519565b969995985093965092949392505050565b5f5f60408385031215614859575f5ffd5b823561486481614326565b915060208301356001600160401b0381111561487e575f5ffd5b830160a0818603121561488f575f5ffd5b809150509250929050565b828152604060208201525f610ae760408301846146b1565b5f82601f8301126148c1575f5ffd5b81356148cf6145e8826145a9565b8082825260208201915060208360051b8601019250858311156148f0575f5ffd5b602085015b838110156146345780356001600160401b03811115614912575f5ffd5b86016060818903601f19011215614927575f5ffd5b61492f6142ce565b61493b6020830161433a565b815260408201356001600160401b03811115614955575f5ffd5b6149648a6020838601016145cb565b6020830152506060820135915061497a82614326565b60408101919091528352602092830192016148f5565b5f5f604083850312156149a1575f5ffd5b82356149ac81614326565b915060208301356001600160401b038111156149c6575f5ffd5b6149d2858286016148b2565b9150509250929050565b5f5f604083850312156149ed575f5ffd5b82356149f881614326565b9150602083013561488f81614326565b5f8151808452602084019350602083015f5b828110156144fd57614a5386835180516001600160401b03168252602080820151600f0b9083015260409081015163ffffffff16910152565b6060959095019460209190910190600101614a1a565b604081525f614a7b60408301856144c2565b828103602084015261396a8185614a08565b602080825282518282018190525f918401906040840190835b81811015614acd5783516001600160a01b0316835260209384019390920191600101614aa6565b509095945050505050565b5f5f5f60408486031215614aea575f5ffd5b83356001600160401b03811115614aff575f5ffd5b614b0b86828701614519565b909450925050602084013561440081614326565b602080825282518282018190525f918401906040840190835b81811015614acd5783516001600160401b0316835260209384019390920191600101614b38565b5f5f5f5f60608587031215614b72575f5ffd5b8435614b7d81614326565b9350614b8b6020860161433a565b925060408501356001600160401b03811115614ba5575f5ffd5b614bb187828801614519565b95989497509550505050565b5f5f60408385031215614bce575f5ffd5b8235614bd981614326565b91506144696020840161433a565b5f60208284031215614bf7575f5ffd5b813560ff81168114610917575f5ffd5b5f5f60608385031215614c18575f5ffd5b614c22848461434d565b9150604083013561488f81614326565b5f60608284031215614c42575f5ffd5b50919050565b5f60208284031215614c58575f5ffd5b81356001600160401b03811115614c6d575f5ffd5b6109d484828501614c32565b5f5f5f60808486031215614c8b575f5ffd5b83356001600160401b03811115614ca0575f5ffd5b614cac868287016145cb565b9350506143f0856020860161434d565b602081525f6109176020830184614a08565b5f5f5f5f60608587031215614ce1575f5ffd5b8435614cec81614326565b935060208501356001600160401b03811115614d06575f5ffd5b614d1287828801614519565b90945092506147bd90506040860161433a565b5f5f60408385031215614d36575f5ffd5b8235614d4181614326565b915060208301356001600160401b03811115614d5b575f5ffd5b8301601f81018513614d6b575f5ffd5b8035614d796145e8826145a9565b8082825260208201915060208360051b850101925087831115614d9a575f5ffd5b602084015b83811015614ebf5780356001600160401b03811115614dbc575f5ffd5b85016080818b03601f19011215614dd1575f5ffd5b614dd96142ce565b614de68b6020840161434d565b815260608201356001600160401b03811115614e00575f5ffd5b614e0f8c6020838601016145cb565b60208301525060808201356001600160401b03811115614e2d575f5ffd5b6020818401019250508a601f830112614e44575f5ffd5b8135614e526145e8826145a9565b8082825260208201915060208360051b86010192508d831115614e73575f5ffd5b6020850194505b82851015614ea95784356001600160401b0381168114614e98575f5ffd5b825260209485019490910190614e7a565b6040840152505084525060209283019201614d9f565b50809450505050509250929050565b5f60208284031215614ede575f5ffd5b81356001600160401b03811115614ef3575f5ffd5b8201601f81018413614f03575f5ffd5b8035614f116145e8826145a9565b8082825260208201915060208360061b850101925086831115614f32575f5ffd5b6020840193505b8284101561407057614f4b878561434d565b8252602082019150604084019350614f39565b5f5f5f60408486031215614f70575f5ffd5b8335614f7b81614326565b925060208401356001600160401b03811115614f95575f5ffd5b8401601f81018613614fa5575f5ffd5b80356001600160401b03811115614fba575f5ffd5b866020828401011115614fcb575f5ffd5b939660209190910195509293505050565b5f5f60408385031215614fed575f5ffd5b8235614ff881614326565b915060208301356001600160401b03811115615012575f5ffd5b6149d285828601614c32565b5f5f5f5f60608587031215615031575f5ffd5b843561503c81614326565b935060208501356001600160401b03811115615056575f5ffd5b615062878288016148b2565b93505060408501356001600160401b03811115614ba5575f5ffd5b5f6020828403121561508d575f5ffd5b6109178261433a565b5f5f8335601e198436030181126150ab575f5ffd5b8301803591506001600160401b038211156150c4575f5ffd5b6020019150600581901b3603821315610d43575f5ffd5b634e487b7160e01b5f52603260045260245ffd5b5f602082840312156150ff575f5ffd5b813561ffff81168114610917575f5ffd5b5f60208284031215615120575f5ffd5b81518015158114610917575f5ffd5b604081016109d882846144a4565b634e487b7160e01b5f52601160045260245ffd5b63ffffffff81811683821601908111156109d8576109d861513d565b8183526020830192505f815f5b848110156144fd5763ffffffff6151908361433a565b168652602095860195919091019060010161517a565b6001600160a01b038581168252841660208201526060604082018190525f90614070908301848661516d565b6001600160a01b038616815260c081016151ef60208301876144a4565b6001600160a01b039490941660608201526001600160401b0392909216608083015263ffffffff1660a09091015292915050565b5f60208284031215615233575f5ffd5b81516001600160401b03811115615248575f5ffd5b8201601f81018413615258575f5ffd5b80516152666145e8826145a9565b8082825260208201915060208360051b850101925086831115615287575f5ffd5b6020840193505b828410156140705783516152a181614326565b82526020938401939091019061528e565b606081016152c082856144a4565b6001600160a01b039290921660409190910152919050565b81835281816020850137505f828201602090810191909152601f909101601f19169091010190565b602081525f610ae76020830184866152d8565b5f5f8335601e19843603018112615328575f5ffd5b8301803591506001600160401b03821115615341575f5ffd5b602001915036819003821315610d43575f5ffd5b6001600160a01b038781168252861660208201526080604082018190525f90615381908301868861516d565b82810360608401526153948185876152d8565b9998505050505050505050565b80516020808301519190811015614c42575f1960209190910360031b1b16919050565b5f8235603e198336030181126153d8575f5ffd5b9190910192915050565b5f600182016153f3576153f361513d565b5060010190565b818103818111156109d8576109d861513d565b6001600160401b0382811682821603908111156109d8576109d861513d565b5f81600f0b60016001607f1b031981036154485761544861513d565b5f0392915050565b600f81810b9083900b0160016001607f1b03811360016001607f1b0319821217156109d8576109d861513d565b6001600160a01b038716815260e0810161549a60208301886144a4565b60608201959095526001600160a01b039390931660808401526001600160401b0391821660a08401521660c09091015292915050565b5f602082840312156154e0575f5ffd5b5051919050565b6001600160a01b03881681525f60c08201615505602084018a6144a4565b60c060608401528690528660e083015f5b8881101561554657823561552981614326565b6001600160a01b0316825260209283019290910190600101615516565b50838103608085015261555981886146b1565b91505082810360a084015261556f8185876152d8565b9a9950505050505050505050565b5f8161558b5761558b61513d565b505f190190565b608081016155a082866144a4565b6001600160a01b0393909316604082015263ffffffff91909116606090910152919050565b600f82810b9082900b0360016001607f1b0319811260016001607f1b03821317156109d8576109d861513d565b5f60208284031215615602575f5ffd5b815161091781614326565b634e487b7160e01b5f52603160045260245ffd5b634e487b7160e01b5f52602160045260245ffd5b634e487b7160e01b5f52601260045260245ffd5b808201808211156109d8576109d861513d56fea26469706673582212202c2598e022fdaf3772fe4299c1709e48973b7139c66cdf3b543f322507b288ba64736f6c634300081e0033",
}
// AllocationManagerABI is the input ABI used to generate the binding from.
// Deprecated: Use AllocationManagerMetaData.ABI instead.
var AllocationManagerABI = AllocationManagerMetaData.ABI
// AllocationManagerBin is the compiled bytecode used for deploying new contracts.
// Deprecated: Use AllocationManagerMetaData.Bin instead.
var AllocationManagerBin = AllocationManagerMetaData.Bin
// DeployAllocationManager deploys a new Ethereum contract, binding an instance of AllocationManager to it.
func DeployAllocationManager(auth *bind.TransactOpts, backend bind.ContractBackend, _allocationManagerView common.Address, _delegation common.Address, _eigenStrategy common.Address, _pauserRegistry common.Address, _permissionController common.Address, _DEALLOCATION_DELAY uint32, _ALLOCATION_CONFIGURATION_DELAY uint32) (common.Address, *types.Transaction, *AllocationManager, error) {
parsed, err := AllocationManagerMetaData.GetAbi()
if err != nil {
return common.Address{}, nil, nil, err
}
if parsed == nil {
return common.Address{}, nil, nil, errors.New("GetABI returned nil")
}
address, tx, contract, err := bind.DeployContract(auth, *parsed, common.FromHex(AllocationManagerBin), backend, _allocationManagerView, _delegation, _eigenStrategy, _pauserRegistry, _permissionController, _DEALLOCATION_DELAY, _ALLOCATION_CONFIGURATION_DELAY)
if err != nil {
return common.Address{}, nil, nil, err
}
return address, tx, &AllocationManager{AllocationManagerCaller: AllocationManagerCaller{contract: contract}, AllocationManagerTransactor: AllocationManagerTransactor{contract: contract}, AllocationManagerFilterer: AllocationManagerFilterer{contract: contract}}, nil
}
// AllocationManager is an auto generated Go binding around an Ethereum contract.
type AllocationManager struct {
AllocationManagerCaller // Read-only binding to the contract
AllocationManagerTransactor // Write-only binding to the contract
AllocationManagerFilterer // Log filterer for contract events
}
// AllocationManagerCaller is an auto generated read-only Go binding around an Ethereum contract.
type AllocationManagerCaller struct {
contract *bind.BoundContract // Generic contract wrapper for the low level calls
}
// AllocationManagerTransactor is an auto generated write-only Go binding around an Ethereum contract.
type AllocationManagerTransactor struct {
contract *bind.BoundContract // Generic contract wrapper for the low level calls
}
// AllocationManagerFilterer is an auto generated log filtering Go binding around an Ethereum contract events.
type AllocationManagerFilterer struct {
contract *bind.BoundContract // Generic contract wrapper for the low level calls
}
// AllocationManagerSession is an auto generated Go binding around an Ethereum contract,
// with pre-set call and transact options.
type AllocationManagerSession struct {
Contract *AllocationManager // Generic contract binding to set the session for
CallOpts bind.CallOpts // Call options to use throughout this session
TransactOpts bind.TransactOpts // Transaction auth options to use throughout this session
}
// AllocationManagerCallerSession is an auto generated read-only Go binding around an Ethereum contract,
// with pre-set call options.
type AllocationManagerCallerSession struct {
Contract *AllocationManagerCaller // Generic contract caller binding to set the session for
CallOpts bind.CallOpts // Call options to use throughout this session
}
// AllocationManagerTransactorSession is an auto generated write-only Go binding around an Ethereum contract,
// with pre-set transact options.
type AllocationManagerTransactorSession struct {
Contract *AllocationManagerTransactor // Generic contract transactor binding to set the session for
TransactOpts bind.TransactOpts // Transaction auth options to use throughout this session
}
// AllocationManagerRaw is an auto generated low-level Go binding around an Ethereum contract.
type AllocationManagerRaw struct {
Contract *AllocationManager // Generic contract binding to access the raw methods on
}
// AllocationManagerCallerRaw is an auto generated low-level read-only Go binding around an Ethereum contract.
type AllocationManagerCallerRaw struct {
Contract *AllocationManagerCaller // Generic read-only contract binding to access the raw methods on
}
// AllocationManagerTransactorRaw is an auto generated low-level write-only Go binding around an Ethereum contract.
type AllocationManagerTransactorRaw struct {
Contract *AllocationManagerTransactor // Generic write-only contract binding to access the raw methods on
}
// NewAllocationManager creates a new instance of AllocationManager, bound to a specific deployed contract.
func NewAllocationManager(address common.Address, backend bind.ContractBackend) (*AllocationManager, error) {
contract, err := bindAllocationManager(address, backend, backend, backend)
if err != nil {
return nil, err
}
return &AllocationManager{AllocationManagerCaller: AllocationManagerCaller{contract: contract}, AllocationManagerTransactor: AllocationManagerTransactor{contract: contract}, AllocationManagerFilterer: AllocationManagerFilterer{contract: contract}}, nil
}
// NewAllocationManagerCaller creates a new read-only instance of AllocationManager, bound to a specific deployed contract.
func NewAllocationManagerCaller(address common.Address, caller bind.ContractCaller) (*AllocationManagerCaller, error) {
contract, err := bindAllocationManager(address, caller, nil, nil)
if err != nil {
return nil, err
}
return &AllocationManagerCaller{contract: contract}, nil
}
// NewAllocationManagerTransactor creates a new write-only instance of AllocationManager, bound to a specific deployed contract.
func NewAllocationManagerTransactor(address common.Address, transactor bind.ContractTransactor) (*AllocationManagerTransactor, error) {
contract, err := bindAllocationManager(address, nil, transactor, nil)
if err != nil {
return nil, err
}
return &AllocationManagerTransactor{contract: contract}, nil
}
// NewAllocationManagerFilterer creates a new log filterer instance of AllocationManager, bound to a specific deployed contract.
func NewAllocationManagerFilterer(address common.Address, filterer bind.ContractFilterer) (*AllocationManagerFilterer, error) {
contract, err := bindAllocationManager(address, nil, nil, filterer)
if err != nil {
return nil, err
}
return &AllocationManagerFilterer{contract: contract}, nil
}
// bindAllocationManager binds a generic wrapper to an already deployed contract.
func bindAllocationManager(address common.Address, caller bind.ContractCaller, transactor bind.ContractTransactor, filterer bind.ContractFilterer) (*bind.BoundContract, error) {
parsed, err := AllocationManagerMetaData.GetAbi()
if err != nil {
return nil, err
}
return bind.NewBoundContract(address, *parsed, caller, transactor, filterer), nil
}
// Call invokes the (constant) contract method with params as input values and
// sets the output to result. The result type might be a single field for simple
// returns, a slice of interfaces for anonymous returns and a struct for named
// returns.
func (_AllocationManager *AllocationManagerRaw) Call(opts *bind.CallOpts, result *[]interface{}, method string, params ...interface{}) error {
return _AllocationManager.Contract.AllocationManagerCaller.contract.Call(opts, result, method, params...)
}
// Transfer initiates a plain transaction to move funds to the contract, calling
// its default method if one is available.
func (_AllocationManager *AllocationManagerRaw) Transfer(opts *bind.TransactOpts) (*types.Transaction, error) {
return _AllocationManager.Contract.AllocationManagerTransactor.contract.Transfer(opts)
}
// Transact invokes the (paid) contract method with params as input values.
func (_AllocationManager *AllocationManagerRaw) Transact(opts *bind.TransactOpts, method string, params ...interface{}) (*types.Transaction, error) {
return _AllocationManager.Contract.AllocationManagerTransactor.contract.Transact(opts, method, params...)
}
// Call invokes the (constant) contract method with params as input values and
// sets the output to result. The result type might be a single field for simple
// returns, a slice of interfaces for anonymous returns and a struct for named
// returns.
func (_AllocationManager *AllocationManagerCallerRaw) Call(opts *bind.CallOpts, result *[]interface{}, method string, params ...interface{}) error {
return _AllocationManager.Contract.contract.Call(opts, result, method, params...)
}
// Transfer initiates a plain transaction to move funds to the contract, calling
// its default method if one is available.
func (_AllocationManager *AllocationManagerTransactorRaw) Transfer(opts *bind.TransactOpts) (*types.Transaction, error) {
return _AllocationManager.Contract.contract.Transfer(opts)
}
// Transact invokes the (paid) contract method with params as input values.
func (_AllocationManager *AllocationManagerTransactorRaw) Transact(opts *bind.TransactOpts, method string, params ...interface{}) (*types.Transaction, error) {
return _AllocationManager.Contract.contract.Transact(opts, method, params...)
}
// ALLOCATIONCONFIGURATIONDELAY is a free data retrieval call binding the contract method 0x7bc1ef61.
//
// Solidity: function ALLOCATION_CONFIGURATION_DELAY() view returns(uint32)
func (_AllocationManager *AllocationManagerCaller) ALLOCATIONCONFIGURATIONDELAY(opts *bind.CallOpts) (uint32, error) {
var out []interface{}
err := _AllocationManager.contract.Call(opts, &out, "ALLOCATION_CONFIGURATION_DELAY")
if err != nil {
return *new(uint32), err
}
out0 := *abi.ConvertType(out[0], new(uint32)).(*uint32)
return out0, err
}
// ALLOCATIONCONFIGURATIONDELAY is a free data retrieval call binding the contract method 0x7bc1ef61.
//
// Solidity: function ALLOCATION_CONFIGURATION_DELAY() view returns(uint32)
func (_AllocationManager *AllocationManagerSession) ALLOCATIONCONFIGURATIONDELAY() (uint32, error) {
return _AllocationManager.Contract.ALLOCATIONCONFIGURATIONDELAY(&_AllocationManager.CallOpts)
}
// ALLOCATIONCONFIGURATIONDELAY is a free data retrieval call binding the contract method 0x7bc1ef61.
//
// Solidity: function ALLOCATION_CONFIGURATION_DELAY() view returns(uint32)
func (_AllocationManager *AllocationManagerCallerSession) ALLOCATIONCONFIGURATIONDELAY() (uint32, error) {
return _AllocationManager.Contract.ALLOCATIONCONFIGURATIONDELAY(&_AllocationManager.CallOpts)
}
// DEALLOCATIONDELAY is a free data retrieval call binding the contract method 0x2981eb77.
//
// Solidity: function DEALLOCATION_DELAY() view returns(uint32)
func (_AllocationManager *AllocationManagerCaller) DEALLOCATIONDELAY(opts *bind.CallOpts) (uint32, error) {
var out []interface{}
err := _AllocationManager.contract.Call(opts, &out, "DEALLOCATION_DELAY")
if err != nil {
return *new(uint32), err
}
out0 := *abi.ConvertType(out[0], new(uint32)).(*uint32)
return out0, err
}
// DEALLOCATIONDELAY is a free data retrieval call binding the contract method 0x2981eb77.
//
// Solidity: function DEALLOCATION_DELAY() view returns(uint32)
func (_AllocationManager *AllocationManagerSession) DEALLOCATIONDELAY() (uint32, error) {
return _AllocationManager.Contract.DEALLOCATIONDELAY(&_AllocationManager.CallOpts)
}
// DEALLOCATIONDELAY is a free data retrieval call binding the contract method 0x2981eb77.
//
// Solidity: function DEALLOCATION_DELAY() view returns(uint32)
func (_AllocationManager *AllocationManagerCallerSession) DEALLOCATIONDELAY() (uint32, error) {
return _AllocationManager.Contract.DEALLOCATIONDELAY(&_AllocationManager.CallOpts)
}
// Delegation is a free data retrieval call binding the contract method 0xdf5cf723.
//
// Solidity: function delegation() view returns(address)
func (_AllocationManager *AllocationManagerCaller) Delegation(opts *bind.CallOpts) (common.Address, error) {
var out []interface{}
err := _AllocationManager.contract.Call(opts, &out, "delegation")
if err != nil {
return *new(common.Address), err
}
out0 := *abi.ConvertType(out[0], new(common.Address)).(*common.Address)
return out0, err
}
// Delegation is a free data retrieval call binding the contract method 0xdf5cf723.
//
// Solidity: function delegation() view returns(address)
func (_AllocationManager *AllocationManagerSession) Delegation() (common.Address, error) {
return _AllocationManager.Contract.Delegation(&_AllocationManager.CallOpts)
}
// Delegation is a free data retrieval call binding the contract method 0xdf5cf723.
//
// Solidity: function delegation() view returns(address)
func (_AllocationManager *AllocationManagerCallerSession) Delegation() (common.Address, error) {
return _AllocationManager.Contract.Delegation(&_AllocationManager.CallOpts)
}
// EigenStrategy is a free data retrieval call binding the contract method 0xdb4df761.
//
// Solidity: function eigenStrategy() view returns(address)
func (_AllocationManager *AllocationManagerCaller) EigenStrategy(opts *bind.CallOpts) (common.Address, error) {
var out []interface{}
err := _AllocationManager.contract.Call(opts, &out, "eigenStrategy")
if err != nil {
return *new(common.Address), err
}
out0 := *abi.ConvertType(out[0], new(common.Address)).(*common.Address)
return out0, err
}
// EigenStrategy is a free data retrieval call binding the contract method 0xdb4df761.
//
// Solidity: function eigenStrategy() view returns(address)
func (_AllocationManager *AllocationManagerSession) EigenStrategy() (common.Address, error) {
return _AllocationManager.Contract.EigenStrategy(&_AllocationManager.CallOpts)
}
// EigenStrategy is a free data retrieval call binding the contract method 0xdb4df761.
//
// Solidity: function eigenStrategy() view returns(address)
func (_AllocationManager *AllocationManagerCallerSession) EigenStrategy() (common.Address, error) {
return _AllocationManager.Contract.EigenStrategy(&_AllocationManager.CallOpts)
}
// GetAVSRegistrar is a free data retrieval call binding the contract method 0x304c10cd.
//
// Solidity: function getAVSRegistrar(address avs) view returns(address)
func (_AllocationManager *AllocationManagerCaller) GetAVSRegistrar(opts *bind.CallOpts, avs common.Address) (common.Address, error) {
var out []interface{}
err := _AllocationManager.contract.Call(opts, &out, "getAVSRegistrar", avs)
if err != nil {
return *new(common.Address), err
}
out0 := *abi.ConvertType(out[0], new(common.Address)).(*common.Address)
return out0, err
}
// GetAVSRegistrar is a free data retrieval call binding the contract method 0x304c10cd.
//
// Solidity: function getAVSRegistrar(address avs) view returns(address)
func (_AllocationManager *AllocationManagerSession) GetAVSRegistrar(avs common.Address) (common.Address, error) {
return _AllocationManager.Contract.GetAVSRegistrar(&_AllocationManager.CallOpts, avs)
}
// GetAVSRegistrar is a free data retrieval call binding the contract method 0x304c10cd.
//
// Solidity: function getAVSRegistrar(address avs) view returns(address)
func (_AllocationManager *AllocationManagerCallerSession) GetAVSRegistrar(avs common.Address) (common.Address, error) {
return _AllocationManager.Contract.GetAVSRegistrar(&_AllocationManager.CallOpts, avs)
}
// GetAllocatableMagnitude is a free data retrieval call binding the contract method 0x6cfb4481.
//
// Solidity: function getAllocatableMagnitude(address , address ) view returns(uint64 allocatableMagnitude)
func (_AllocationManager *AllocationManagerCaller) GetAllocatableMagnitude(opts *bind.CallOpts, arg0 common.Address, arg1 common.Address) (uint64, error) {
var out []interface{}
err := _AllocationManager.contract.Call(opts, &out, "getAllocatableMagnitude", arg0, arg1)
if err != nil {
return *new(uint64), err
}
out0 := *abi.ConvertType(out[0], new(uint64)).(*uint64)
return out0, err
}
// GetAllocatableMagnitude is a free data retrieval call binding the contract method 0x6cfb4481.
//
// Solidity: function getAllocatableMagnitude(address , address ) view returns(uint64 allocatableMagnitude)
func (_AllocationManager *AllocationManagerSession) GetAllocatableMagnitude(arg0 common.Address, arg1 common.Address) (uint64, error) {
return _AllocationManager.Contract.GetAllocatableMagnitude(&_AllocationManager.CallOpts, arg0, arg1)
}
// GetAllocatableMagnitude is a free data retrieval call binding the contract method 0x6cfb4481.
//
// Solidity: function getAllocatableMagnitude(address , address ) view returns(uint64 allocatableMagnitude)
func (_AllocationManager *AllocationManagerCallerSession) GetAllocatableMagnitude(arg0 common.Address, arg1 common.Address) (uint64, error) {
return _AllocationManager.Contract.GetAllocatableMagnitude(&_AllocationManager.CallOpts, arg0, arg1)
}
// GetAllocatedSets is a free data retrieval call binding the contract method 0x15fe5028.
//
// Solidity: function getAllocatedSets(address ) view returns((address,uint32)[] operatorSets)
func (_AllocationManager *AllocationManagerCaller) GetAllocatedSets(opts *bind.CallOpts, arg0 common.Address) ([]OperatorSet, error) {
var out []interface{}
err := _AllocationManager.contract.Call(opts, &out, "getAllocatedSets", arg0)
if err != nil {
return *new([]OperatorSet), err
}
out0 := *abi.ConvertType(out[0], new([]OperatorSet)).(*[]OperatorSet)
return out0, err
}
// GetAllocatedSets is a free data retrieval call binding the contract method 0x15fe5028.
//
// Solidity: function getAllocatedSets(address ) view returns((address,uint32)[] operatorSets)
func (_AllocationManager *AllocationManagerSession) GetAllocatedSets(arg0 common.Address) ([]OperatorSet, error) {
return _AllocationManager.Contract.GetAllocatedSets(&_AllocationManager.CallOpts, arg0)
}
// GetAllocatedSets is a free data retrieval call binding the contract method 0x15fe5028.
//
// Solidity: function getAllocatedSets(address ) view returns((address,uint32)[] operatorSets)
func (_AllocationManager *AllocationManagerCallerSession) GetAllocatedSets(arg0 common.Address) ([]OperatorSet, error) {
return _AllocationManager.Contract.GetAllocatedSets(&_AllocationManager.CallOpts, arg0)
}
// GetAllocatedStake is a free data retrieval call binding the contract method 0x2b453a9a.
//
// Solidity: function getAllocatedStake((address,uint32) , address[] , address[] ) view returns(uint256[][] slashableStake)
func (_AllocationManager *AllocationManagerCaller) GetAllocatedStake(opts *bind.CallOpts, arg0 OperatorSet, arg1 []common.Address, arg2 []common.Address) ([][]*big.Int, error) {
var out []interface{}
err := _AllocationManager.contract.Call(opts, &out, "getAllocatedStake", arg0, arg1, arg2)
if err != nil {
return *new([][]*big.Int), err
}
out0 := *abi.ConvertType(out[0], new([][]*big.Int)).(*[][]*big.Int)
return out0, err
}
// GetAllocatedStake is a free data retrieval call binding the contract method 0x2b453a9a.
//
// Solidity: function getAllocatedStake((address,uint32) , address[] , address[] ) view returns(uint256[][] slashableStake)
func (_AllocationManager *AllocationManagerSession) GetAllocatedStake(arg0 OperatorSet, arg1 []common.Address, arg2 []common.Address) ([][]*big.Int, error) {
return _AllocationManager.Contract.GetAllocatedStake(&_AllocationManager.CallOpts, arg0, arg1, arg2)
}
// GetAllocatedStake is a free data retrieval call binding the contract method 0x2b453a9a.
//
// Solidity: function getAllocatedStake((address,uint32) , address[] , address[] ) view returns(uint256[][] slashableStake)
func (_AllocationManager *AllocationManagerCallerSession) GetAllocatedStake(arg0 OperatorSet, arg1 []common.Address, arg2 []common.Address) ([][]*big.Int, error) {
return _AllocationManager.Contract.GetAllocatedStake(&_AllocationManager.CallOpts, arg0, arg1, arg2)
}
// GetAllocatedStrategies is a free data retrieval call binding the contract method 0xc221d8ae.
//
// Solidity: function getAllocatedStrategies(address , (address,uint32) ) view returns(address[] strategies)
func (_AllocationManager *AllocationManagerCaller) GetAllocatedStrategies(opts *bind.CallOpts, arg0 common.Address, arg1 OperatorSet) ([]common.Address, error) {
var out []interface{}
err := _AllocationManager.contract.Call(opts, &out, "getAllocatedStrategies", arg0, arg1)
if err != nil {
return *new([]common.Address), err
}
out0 := *abi.ConvertType(out[0], new([]common.Address)).(*[]common.Address)
return out0, err
}
// GetAllocatedStrategies is a free data retrieval call binding the contract method 0xc221d8ae.
//
// Solidity: function getAllocatedStrategies(address , (address,uint32) ) view returns(address[] strategies)
func (_AllocationManager *AllocationManagerSession) GetAllocatedStrategies(arg0 common.Address, arg1 OperatorSet) ([]common.Address, error) {
return _AllocationManager.Contract.GetAllocatedStrategies(&_AllocationManager.CallOpts, arg0, arg1)
}
// GetAllocatedStrategies is a free data retrieval call binding the contract method 0xc221d8ae.
//
// Solidity: function getAllocatedStrategies(address , (address,uint32) ) view returns(address[] strategies)
func (_AllocationManager *AllocationManagerCallerSession) GetAllocatedStrategies(arg0 common.Address, arg1 OperatorSet) ([]common.Address, error) {
return _AllocationManager.Contract.GetAllocatedStrategies(&_AllocationManager.CallOpts, arg0, arg1)
}
// GetAllocation is a free data retrieval call binding the contract method 0x10e1b9b8.
//
// Solidity: function getAllocation(address , (address,uint32) , address ) view returns((uint64,int128,uint32) allocation)
func (_AllocationManager *AllocationManagerCaller) GetAllocation(opts *bind.CallOpts, arg0 common.Address, arg1 OperatorSet, arg2 common.Address) (IAllocationManagerTypesAllocation, error) {
var out []interface{}
err := _AllocationManager.contract.Call(opts, &out, "getAllocation", arg0, arg1, arg2)
if err != nil {
return *new(IAllocationManagerTypesAllocation), err
}
out0 := *abi.ConvertType(out[0], new(IAllocationManagerTypesAllocation)).(*IAllocationManagerTypesAllocation)
return out0, err
}
// GetAllocation is a free data retrieval call binding the contract method 0x10e1b9b8.
//
// Solidity: function getAllocation(address , (address,uint32) , address ) view returns((uint64,int128,uint32) allocation)
func (_AllocationManager *AllocationManagerSession) GetAllocation(arg0 common.Address, arg1 OperatorSet, arg2 common.Address) (IAllocationManagerTypesAllocation, error) {
return _AllocationManager.Contract.GetAllocation(&_AllocationManager.CallOpts, arg0, arg1, arg2)
}
// GetAllocation is a free data retrieval call binding the contract method 0x10e1b9b8.
//
// Solidity: function getAllocation(address , (address,uint32) , address ) view returns((uint64,int128,uint32) allocation)
func (_AllocationManager *AllocationManagerCallerSession) GetAllocation(arg0 common.Address, arg1 OperatorSet, arg2 common.Address) (IAllocationManagerTypesAllocation, error) {
return _AllocationManager.Contract.GetAllocation(&_AllocationManager.CallOpts, arg0, arg1, arg2)
}
// GetAllocationDelay is a free data retrieval call binding the contract method 0xb9fbaed1.
//
// Solidity: function getAllocationDelay(address operator) view returns(bool, uint32)
func (_AllocationManager *AllocationManagerCaller) GetAllocationDelay(opts *bind.CallOpts, operator common.Address) (bool, uint32, error) {
var out []interface{}
err := _AllocationManager.contract.Call(opts, &out, "getAllocationDelay", operator)
if err != nil {
return *new(bool), *new(uint32), err
}
out0 := *abi.ConvertType(out[0], new(bool)).(*bool)
out1 := *abi.ConvertType(out[1], new(uint32)).(*uint32)
return out0, out1, err
}
// GetAllocationDelay is a free data retrieval call binding the contract method 0xb9fbaed1.
//
// Solidity: function getAllocationDelay(address operator) view returns(bool, uint32)
func (_AllocationManager *AllocationManagerSession) GetAllocationDelay(operator common.Address) (bool, uint32, error) {
return _AllocationManager.Contract.GetAllocationDelay(&_AllocationManager.CallOpts, operator)
}
// GetAllocationDelay is a free data retrieval call binding the contract method 0xb9fbaed1.
//
// Solidity: function getAllocationDelay(address operator) view returns(bool, uint32)
func (_AllocationManager *AllocationManagerCallerSession) GetAllocationDelay(operator common.Address) (bool, uint32, error) {
return _AllocationManager.Contract.GetAllocationDelay(&_AllocationManager.CallOpts, operator)
}
// GetAllocations is a free data retrieval call binding the contract method 0x8ce64854.
//
// Solidity: function getAllocations(address[] , (address,uint32) , address ) view returns((uint64,int128,uint32)[] allocations)
func (_AllocationManager *AllocationManagerCaller) GetAllocations(opts *bind.CallOpts, arg0 []common.Address, arg1 OperatorSet, arg2 common.Address) ([]IAllocationManagerTypesAllocation, error) {
var out []interface{}
err := _AllocationManager.contract.Call(opts, &out, "getAllocations", arg0, arg1, arg2)
if err != nil {
return *new([]IAllocationManagerTypesAllocation), err
}
out0 := *abi.ConvertType(out[0], new([]IAllocationManagerTypesAllocation)).(*[]IAllocationManagerTypesAllocation)
return out0, err
}
// GetAllocations is a free data retrieval call binding the contract method 0x8ce64854.
//
// Solidity: function getAllocations(address[] , (address,uint32) , address ) view returns((uint64,int128,uint32)[] allocations)
func (_AllocationManager *AllocationManagerSession) GetAllocations(arg0 []common.Address, arg1 OperatorSet, arg2 common.Address) ([]IAllocationManagerTypesAllocation, error) {
return _AllocationManager.Contract.GetAllocations(&_AllocationManager.CallOpts, arg0, arg1, arg2)
}
// GetAllocations is a free data retrieval call binding the contract method 0x8ce64854.
//
// Solidity: function getAllocations(address[] , (address,uint32) , address ) view returns((uint64,int128,uint32)[] allocations)
func (_AllocationManager *AllocationManagerCallerSession) GetAllocations(arg0 []common.Address, arg1 OperatorSet, arg2 common.Address) ([]IAllocationManagerTypesAllocation, error) {
return _AllocationManager.Contract.GetAllocations(&_AllocationManager.CallOpts, arg0, arg1, arg2)
}
// GetEncumberedMagnitude is a free data retrieval call binding the contract method 0xf605ce08.
//
// Solidity: function getEncumberedMagnitude(address , address ) view returns(uint64 encumberedMagnitude)
func (_AllocationManager *AllocationManagerCaller) GetEncumberedMagnitude(opts *bind.CallOpts, arg0 common.Address, arg1 common.Address) (uint64, error) {
var out []interface{}
err := _AllocationManager.contract.Call(opts, &out, "getEncumberedMagnitude", arg0, arg1)
if err != nil {
return *new(uint64), err
}
out0 := *abi.ConvertType(out[0], new(uint64)).(*uint64)
return out0, err
}
// GetEncumberedMagnitude is a free data retrieval call binding the contract method 0xf605ce08.
//
// Solidity: function getEncumberedMagnitude(address , address ) view returns(uint64 encumberedMagnitude)
func (_AllocationManager *AllocationManagerSession) GetEncumberedMagnitude(arg0 common.Address, arg1 common.Address) (uint64, error) {
return _AllocationManager.Contract.GetEncumberedMagnitude(&_AllocationManager.CallOpts, arg0, arg1)
}
// GetEncumberedMagnitude is a free data retrieval call binding the contract method 0xf605ce08.
//
// Solidity: function getEncumberedMagnitude(address , address ) view returns(uint64 encumberedMagnitude)
func (_AllocationManager *AllocationManagerCallerSession) GetEncumberedMagnitude(arg0 common.Address, arg1 common.Address) (uint64, error) {
return _AllocationManager.Contract.GetEncumberedMagnitude(&_AllocationManager.CallOpts, arg0, arg1)
}
// GetMaxMagnitude is a free data retrieval call binding the contract method 0xa9333ec8.
//
// Solidity: function getMaxMagnitude(address , address ) view returns(uint64 maxMagnitude)
func (_AllocationManager *AllocationManagerCaller) GetMaxMagnitude(opts *bind.CallOpts, arg0 common.Address, arg1 common.Address) (uint64, error) {
var out []interface{}
err := _AllocationManager.contract.Call(opts, &out, "getMaxMagnitude", arg0, arg1)
if err != nil {
return *new(uint64), err
}
out0 := *abi.ConvertType(out[0], new(uint64)).(*uint64)
return out0, err
}
// GetMaxMagnitude is a free data retrieval call binding the contract method 0xa9333ec8.
//
// Solidity: function getMaxMagnitude(address , address ) view returns(uint64 maxMagnitude)
func (_AllocationManager *AllocationManagerSession) GetMaxMagnitude(arg0 common.Address, arg1 common.Address) (uint64, error) {
return _AllocationManager.Contract.GetMaxMagnitude(&_AllocationManager.CallOpts, arg0, arg1)
}
// GetMaxMagnitude is a free data retrieval call binding the contract method 0xa9333ec8.
//
// Solidity: function getMaxMagnitude(address , address ) view returns(uint64 maxMagnitude)
func (_AllocationManager *AllocationManagerCallerSession) GetMaxMagnitude(arg0 common.Address, arg1 common.Address) (uint64, error) {
return _AllocationManager.Contract.GetMaxMagnitude(&_AllocationManager.CallOpts, arg0, arg1)
}
// GetMaxMagnitudes is a free data retrieval call binding the contract method 0x4a10ffe5.
//
// Solidity: function getMaxMagnitudes(address[] , address ) view returns(uint64[] maxMagnitudes)
func (_AllocationManager *AllocationManagerCaller) GetMaxMagnitudes(opts *bind.CallOpts, arg0 []common.Address, arg1 common.Address) ([]uint64, error) {
var out []interface{}
err := _AllocationManager.contract.Call(opts, &out, "getMaxMagnitudes", arg0, arg1)
if err != nil {
return *new([]uint64), err
}
out0 := *abi.ConvertType(out[0], new([]uint64)).(*[]uint64)
return out0, err
}
// GetMaxMagnitudes is a free data retrieval call binding the contract method 0x4a10ffe5.
//
// Solidity: function getMaxMagnitudes(address[] , address ) view returns(uint64[] maxMagnitudes)
func (_AllocationManager *AllocationManagerSession) GetMaxMagnitudes(arg0 []common.Address, arg1 common.Address) ([]uint64, error) {
return _AllocationManager.Contract.GetMaxMagnitudes(&_AllocationManager.CallOpts, arg0, arg1)
}
// GetMaxMagnitudes is a free data retrieval call binding the contract method 0x4a10ffe5.
//
// Solidity: function getMaxMagnitudes(address[] , address ) view returns(uint64[] maxMagnitudes)
func (_AllocationManager *AllocationManagerCallerSession) GetMaxMagnitudes(arg0 []common.Address, arg1 common.Address) ([]uint64, error) {
return _AllocationManager.Contract.GetMaxMagnitudes(&_AllocationManager.CallOpts, arg0, arg1)
}
// GetMaxMagnitudes0 is a free data retrieval call binding the contract method 0x547afb87.
//
// Solidity: function getMaxMagnitudes(address , address[] ) view returns(uint64[] maxMagnitudes)
func (_AllocationManager *AllocationManagerCaller) GetMaxMagnitudes0(opts *bind.CallOpts, arg0 common.Address, arg1 []common.Address) ([]uint64, error) {
var out []interface{}
err := _AllocationManager.contract.Call(opts, &out, "getMaxMagnitudes0", arg0, arg1)
if err != nil {
return *new([]uint64), err
}
out0 := *abi.ConvertType(out[0], new([]uint64)).(*[]uint64)
return out0, err
}
// GetMaxMagnitudes0 is a free data retrieval call binding the contract method 0x547afb87.
//
// Solidity: function getMaxMagnitudes(address , address[] ) view returns(uint64[] maxMagnitudes)
func (_AllocationManager *AllocationManagerSession) GetMaxMagnitudes0(arg0 common.Address, arg1 []common.Address) ([]uint64, error) {
return _AllocationManager.Contract.GetMaxMagnitudes0(&_AllocationManager.CallOpts, arg0, arg1)
}
// GetMaxMagnitudes0 is a free data retrieval call binding the contract method 0x547afb87.
//
// Solidity: function getMaxMagnitudes(address , address[] ) view returns(uint64[] maxMagnitudes)
func (_AllocationManager *AllocationManagerCallerSession) GetMaxMagnitudes0(arg0 common.Address, arg1 []common.Address) ([]uint64, error) {
return _AllocationManager.Contract.GetMaxMagnitudes0(&_AllocationManager.CallOpts, arg0, arg1)
}
// GetMaxMagnitudesAtBlock is a free data retrieval call binding the contract method 0x94d7d00c.
//
// Solidity: function getMaxMagnitudesAtBlock(address , address[] , uint32 ) view returns(uint64[] maxMagnitudes)
func (_AllocationManager *AllocationManagerCaller) GetMaxMagnitudesAtBlock(opts *bind.CallOpts, arg0 common.Address, arg1 []common.Address, arg2 uint32) ([]uint64, error) {
var out []interface{}
err := _AllocationManager.contract.Call(opts, &out, "getMaxMagnitudesAtBlock", arg0, arg1, arg2)
if err != nil {
return *new([]uint64), err
}
out0 := *abi.ConvertType(out[0], new([]uint64)).(*[]uint64)
return out0, err
}
// GetMaxMagnitudesAtBlock is a free data retrieval call binding the contract method 0x94d7d00c.
//
// Solidity: function getMaxMagnitudesAtBlock(address , address[] , uint32 ) view returns(uint64[] maxMagnitudes)
func (_AllocationManager *AllocationManagerSession) GetMaxMagnitudesAtBlock(arg0 common.Address, arg1 []common.Address, arg2 uint32) ([]uint64, error) {
return _AllocationManager.Contract.GetMaxMagnitudesAtBlock(&_AllocationManager.CallOpts, arg0, arg1, arg2)
}
// GetMaxMagnitudesAtBlock is a free data retrieval call binding the contract method 0x94d7d00c.
//
// Solidity: function getMaxMagnitudesAtBlock(address , address[] , uint32 ) view returns(uint64[] maxMagnitudes)
func (_AllocationManager *AllocationManagerCallerSession) GetMaxMagnitudesAtBlock(arg0 common.Address, arg1 []common.Address, arg2 uint32) ([]uint64, error) {
return _AllocationManager.Contract.GetMaxMagnitudesAtBlock(&_AllocationManager.CallOpts, arg0, arg1, arg2)
}
// GetMemberCount is a free data retrieval call binding the contract method 0xb2447af7.
//
// Solidity: function getMemberCount((address,uint32) ) view returns(uint256 memberCount)
func (_AllocationManager *AllocationManagerCaller) GetMemberCount(opts *bind.CallOpts, arg0 OperatorSet) (*big.Int, error) {
var out []interface{}
err := _AllocationManager.contract.Call(opts, &out, "getMemberCount", arg0)
if err != nil {
return *new(*big.Int), err
}
out0 := *abi.ConvertType(out[0], new(*big.Int)).(**big.Int)
return out0, err
}
// GetMemberCount is a free data retrieval call binding the contract method 0xb2447af7.
//
// Solidity: function getMemberCount((address,uint32) ) view returns(uint256 memberCount)
func (_AllocationManager *AllocationManagerSession) GetMemberCount(arg0 OperatorSet) (*big.Int, error) {
return _AllocationManager.Contract.GetMemberCount(&_AllocationManager.CallOpts, arg0)
}
// GetMemberCount is a free data retrieval call binding the contract method 0xb2447af7.
//
// Solidity: function getMemberCount((address,uint32) ) view returns(uint256 memberCount)
func (_AllocationManager *AllocationManagerCallerSession) GetMemberCount(arg0 OperatorSet) (*big.Int, error) {
return _AllocationManager.Contract.GetMemberCount(&_AllocationManager.CallOpts, arg0)
}
// GetMembers is a free data retrieval call binding the contract method 0x6e875dba.
//
// Solidity: function getMembers((address,uint32) ) view returns(address[] operators)
func (_AllocationManager *AllocationManagerCaller) GetMembers(opts *bind.CallOpts, arg0 OperatorSet) ([]common.Address, error) {
var out []interface{}
err := _AllocationManager.contract.Call(opts, &out, "getMembers", arg0)
if err != nil {
return *new([]common.Address), err
}
out0 := *abi.ConvertType(out[0], new([]common.Address)).(*[]common.Address)
return out0, err
}
// GetMembers is a free data retrieval call binding the contract method 0x6e875dba.
//
// Solidity: function getMembers((address,uint32) ) view returns(address[] operators)
func (_AllocationManager *AllocationManagerSession) GetMembers(arg0 OperatorSet) ([]common.Address, error) {
return _AllocationManager.Contract.GetMembers(&_AllocationManager.CallOpts, arg0)
}
// GetMembers is a free data retrieval call binding the contract method 0x6e875dba.
//
// Solidity: function getMembers((address,uint32) ) view returns(address[] operators)
func (_AllocationManager *AllocationManagerCallerSession) GetMembers(arg0 OperatorSet) ([]common.Address, error) {
return _AllocationManager.Contract.GetMembers(&_AllocationManager.CallOpts, arg0)
}
// GetMinimumSlashableStake is a free data retrieval call binding the contract method 0x2bab2c4a.
//
// Solidity: function getMinimumSlashableStake((address,uint32) , address[] , address[] , uint32 ) view returns(uint256[][] slashableStake)
func (_AllocationManager *AllocationManagerCaller) GetMinimumSlashableStake(opts *bind.CallOpts, arg0 OperatorSet, arg1 []common.Address, arg2 []common.Address, arg3 uint32) ([][]*big.Int, error) {
var out []interface{}
err := _AllocationManager.contract.Call(opts, &out, "getMinimumSlashableStake", arg0, arg1, arg2, arg3)
if err != nil {
return *new([][]*big.Int), err
}
out0 := *abi.ConvertType(out[0], new([][]*big.Int)).(*[][]*big.Int)
return out0, err
}
// GetMinimumSlashableStake is a free data retrieval call binding the contract method 0x2bab2c4a.
//
// Solidity: function getMinimumSlashableStake((address,uint32) , address[] , address[] , uint32 ) view returns(uint256[][] slashableStake)
func (_AllocationManager *AllocationManagerSession) GetMinimumSlashableStake(arg0 OperatorSet, arg1 []common.Address, arg2 []common.Address, arg3 uint32) ([][]*big.Int, error) {
return _AllocationManager.Contract.GetMinimumSlashableStake(&_AllocationManager.CallOpts, arg0, arg1, arg2, arg3)
}
// GetMinimumSlashableStake is a free data retrieval call binding the contract method 0x2bab2c4a.
//
// Solidity: function getMinimumSlashableStake((address,uint32) , address[] , address[] , uint32 ) view returns(uint256[][] slashableStake)
func (_AllocationManager *AllocationManagerCallerSession) GetMinimumSlashableStake(arg0 OperatorSet, arg1 []common.Address, arg2 []common.Address, arg3 uint32) ([][]*big.Int, error) {
return _AllocationManager.Contract.GetMinimumSlashableStake(&_AllocationManager.CallOpts, arg0, arg1, arg2, arg3)
}
// GetOperatorSetCount is a free data retrieval call binding the contract method 0xba1a84e5.
//
// Solidity: function getOperatorSetCount(address ) view returns(uint256 count)
func (_AllocationManager *AllocationManagerCaller) GetOperatorSetCount(opts *bind.CallOpts, arg0 common.Address) (*big.Int, error) {
var out []interface{}
err := _AllocationManager.contract.Call(opts, &out, "getOperatorSetCount", arg0)
if err != nil {
return *new(*big.Int), err
}
out0 := *abi.ConvertType(out[0], new(*big.Int)).(**big.Int)
return out0, err
}
// GetOperatorSetCount is a free data retrieval call binding the contract method 0xba1a84e5.
//
// Solidity: function getOperatorSetCount(address ) view returns(uint256 count)
func (_AllocationManager *AllocationManagerSession) GetOperatorSetCount(arg0 common.Address) (*big.Int, error) {
return _AllocationManager.Contract.GetOperatorSetCount(&_AllocationManager.CallOpts, arg0)
}
// GetOperatorSetCount is a free data retrieval call binding the contract method 0xba1a84e5.
//
// Solidity: function getOperatorSetCount(address ) view returns(uint256 count)
func (_AllocationManager *AllocationManagerCallerSession) GetOperatorSetCount(arg0 common.Address) (*big.Int, error) {
return _AllocationManager.Contract.GetOperatorSetCount(&_AllocationManager.CallOpts, arg0)
}
// GetPendingSlasher is a free data retrieval call binding the contract method 0xd7794857.
//
// Solidity: function getPendingSlasher((address,uint32) ) view returns(address pendingSlasher, uint32 effectBlock)
func (_AllocationManager *AllocationManagerCaller) GetPendingSlasher(opts *bind.CallOpts, arg0 OperatorSet) (struct {
PendingSlasher common.Address
EffectBlock uint32
}, error) {
var out []interface{}
err := _AllocationManager.contract.Call(opts, &out, "getPendingSlasher", arg0)
outstruct := new(struct {
PendingSlasher common.Address
EffectBlock uint32
})
if err != nil {
return *outstruct, err
}
outstruct.PendingSlasher = *abi.ConvertType(out[0], new(common.Address)).(*common.Address)
outstruct.EffectBlock = *abi.ConvertType(out[1], new(uint32)).(*uint32)
return *outstruct, err
}
// GetPendingSlasher is a free data retrieval call binding the contract method 0xd7794857.
//
// Solidity: function getPendingSlasher((address,uint32) ) view returns(address pendingSlasher, uint32 effectBlock)
func (_AllocationManager *AllocationManagerSession) GetPendingSlasher(arg0 OperatorSet) (struct {
PendingSlasher common.Address
EffectBlock uint32
}, error) {
return _AllocationManager.Contract.GetPendingSlasher(&_AllocationManager.CallOpts, arg0)
}
// GetPendingSlasher is a free data retrieval call binding the contract method 0xd7794857.
//
// Solidity: function getPendingSlasher((address,uint32) ) view returns(address pendingSlasher, uint32 effectBlock)
func (_AllocationManager *AllocationManagerCallerSession) GetPendingSlasher(arg0 OperatorSet) (struct {
PendingSlasher common.Address
EffectBlock uint32
}, error) {
return _AllocationManager.Contract.GetPendingSlasher(&_AllocationManager.CallOpts, arg0)
}
// GetRedistributionRecipient is a free data retrieval call binding the contract method 0x0f3df50e.
//
// Solidity: function getRedistributionRecipient((address,uint32) operatorSet) view returns(address)
func (_AllocationManager *AllocationManagerCaller) GetRedistributionRecipient(opts *bind.CallOpts, operatorSet OperatorSet) (common.Address, error) {
var out []interface{}
err := _AllocationManager.contract.Call(opts, &out, "getRedistributionRecipient", operatorSet)
if err != nil {
return *new(common.Address), err
}
out0 := *abi.ConvertType(out[0], new(common.Address)).(*common.Address)
return out0, err
}
// GetRedistributionRecipient is a free data retrieval call binding the contract method 0x0f3df50e.
//
// Solidity: function getRedistributionRecipient((address,uint32) operatorSet) view returns(address)
func (_AllocationManager *AllocationManagerSession) GetRedistributionRecipient(operatorSet OperatorSet) (common.Address, error) {
return _AllocationManager.Contract.GetRedistributionRecipient(&_AllocationManager.CallOpts, operatorSet)
}
// GetRedistributionRecipient is a free data retrieval call binding the contract method 0x0f3df50e.
//
// Solidity: function getRedistributionRecipient((address,uint32) operatorSet) view returns(address)
func (_AllocationManager *AllocationManagerCallerSession) GetRedistributionRecipient(operatorSet OperatorSet) (common.Address, error) {
return _AllocationManager.Contract.GetRedistributionRecipient(&_AllocationManager.CallOpts, operatorSet)
}
// GetRegisteredSets is a free data retrieval call binding the contract method 0x79ae50cd.
//
// Solidity: function getRegisteredSets(address ) view returns((address,uint32)[] operatorSets)
func (_AllocationManager *AllocationManagerCaller) GetRegisteredSets(opts *bind.CallOpts, arg0 common.Address) ([]OperatorSet, error) {
var out []interface{}
err := _AllocationManager.contract.Call(opts, &out, "getRegisteredSets", arg0)
if err != nil {
return *new([]OperatorSet), err
}
out0 := *abi.ConvertType(out[0], new([]OperatorSet)).(*[]OperatorSet)