aiia-vault-sdk 1.1.30 → 1.2.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -0,0 +1,1302 @@
1
+ {
2
+ "_format": "hh-sol-artifact-1",
3
+ "contractName": "FairLaunch",
4
+ "sourceName": "contracts/FairLaunch.sol",
5
+ "abi": [
6
+ {
7
+ "inputs": [],
8
+ "stateMutability": "nonpayable",
9
+ "type": "constructor"
10
+ },
11
+ {
12
+ "inputs": [],
13
+ "name": "AccessControlBadConfirmation",
14
+ "type": "error"
15
+ },
16
+ {
17
+ "inputs": [
18
+ {
19
+ "internalType": "address",
20
+ "name": "account",
21
+ "type": "address"
22
+ },
23
+ {
24
+ "internalType": "bytes32",
25
+ "name": "neededRole",
26
+ "type": "bytes32"
27
+ }
28
+ ],
29
+ "name": "AccessControlUnauthorizedAccount",
30
+ "type": "error"
31
+ },
32
+ {
33
+ "inputs": [],
34
+ "name": "AlreadyClaimed",
35
+ "type": "error"
36
+ },
37
+ {
38
+ "inputs": [],
39
+ "name": "ClaimingNotEnabled",
40
+ "type": "error"
41
+ },
42
+ {
43
+ "inputs": [],
44
+ "name": "ETHTransferFailed",
45
+ "type": "error"
46
+ },
47
+ {
48
+ "inputs": [],
49
+ "name": "InsufficientBalance",
50
+ "type": "error"
51
+ },
52
+ {
53
+ "inputs": [],
54
+ "name": "InvalidAmount",
55
+ "type": "error"
56
+ },
57
+ {
58
+ "inputs": [],
59
+ "name": "InvalidDexRouterAddress",
60
+ "type": "error"
61
+ },
62
+ {
63
+ "inputs": [],
64
+ "name": "InvalidInitialization",
65
+ "type": "error"
66
+ },
67
+ {
68
+ "inputs": [],
69
+ "name": "InvalidPayment",
70
+ "type": "error"
71
+ },
72
+ {
73
+ "inputs": [],
74
+ "name": "InvalidTimestamp",
75
+ "type": "error"
76
+ },
77
+ {
78
+ "inputs": [],
79
+ "name": "InvalidTokenAddress",
80
+ "type": "error"
81
+ },
82
+ {
83
+ "inputs": [],
84
+ "name": "InvalidTradingVaultAddress",
85
+ "type": "error"
86
+ },
87
+ {
88
+ "inputs": [],
89
+ "name": "LiquidityAlreadyAdded",
90
+ "type": "error"
91
+ },
92
+ {
93
+ "inputs": [],
94
+ "name": "NotAuthorized",
95
+ "type": "error"
96
+ },
97
+ {
98
+ "inputs": [],
99
+ "name": "NotInitializing",
100
+ "type": "error"
101
+ },
102
+ {
103
+ "inputs": [],
104
+ "name": "NothingToClaim",
105
+ "type": "error"
106
+ },
107
+ {
108
+ "inputs": [
109
+ {
110
+ "internalType": "address",
111
+ "name": "owner",
112
+ "type": "address"
113
+ }
114
+ ],
115
+ "name": "OwnableInvalidOwner",
116
+ "type": "error"
117
+ },
118
+ {
119
+ "inputs": [
120
+ {
121
+ "internalType": "address",
122
+ "name": "account",
123
+ "type": "address"
124
+ }
125
+ ],
126
+ "name": "OwnableUnauthorizedAccount",
127
+ "type": "error"
128
+ },
129
+ {
130
+ "inputs": [
131
+ {
132
+ "internalType": "address",
133
+ "name": "token",
134
+ "type": "address"
135
+ }
136
+ ],
137
+ "name": "SafeERC20FailedOperation",
138
+ "type": "error"
139
+ },
140
+ {
141
+ "inputs": [],
142
+ "name": "SaleAlreadyEnded",
143
+ "type": "error"
144
+ },
145
+ {
146
+ "inputs": [],
147
+ "name": "SaleNotActive",
148
+ "type": "error"
149
+ },
150
+ {
151
+ "inputs": [],
152
+ "name": "SaleNotEnded",
153
+ "type": "error"
154
+ },
155
+ {
156
+ "inputs": [],
157
+ "name": "TransferFailed",
158
+ "type": "error"
159
+ },
160
+ {
161
+ "inputs": [],
162
+ "name": "ZeroAddress",
163
+ "type": "error"
164
+ },
165
+ {
166
+ "inputs": [],
167
+ "name": "ZeroAmount",
168
+ "type": "error"
169
+ },
170
+ {
171
+ "anonymous": false,
172
+ "inputs": [],
173
+ "name": "ClaimingEnabled",
174
+ "type": "event"
175
+ },
176
+ {
177
+ "anonymous": false,
178
+ "inputs": [
179
+ {
180
+ "indexed": true,
181
+ "internalType": "address",
182
+ "name": "user",
183
+ "type": "address"
184
+ },
185
+ {
186
+ "indexed": false,
187
+ "internalType": "uint256",
188
+ "name": "amount",
189
+ "type": "uint256"
190
+ }
191
+ ],
192
+ "name": "Contributed",
193
+ "type": "event"
194
+ },
195
+ {
196
+ "anonymous": false,
197
+ "inputs": [
198
+ {
199
+ "indexed": true,
200
+ "internalType": "address",
201
+ "name": "recipient",
202
+ "type": "address"
203
+ },
204
+ {
205
+ "indexed": false,
206
+ "internalType": "uint256",
207
+ "name": "amount",
208
+ "type": "uint256"
209
+ }
210
+ ],
211
+ "name": "ETHWithdrawn",
212
+ "type": "event"
213
+ },
214
+ {
215
+ "anonymous": false,
216
+ "inputs": [
217
+ {
218
+ "indexed": true,
219
+ "internalType": "address",
220
+ "name": "user",
221
+ "type": "address"
222
+ },
223
+ {
224
+ "indexed": false,
225
+ "internalType": "uint256",
226
+ "name": "amount",
227
+ "type": "uint256"
228
+ }
229
+ ],
230
+ "name": "InitialClaimed",
231
+ "type": "event"
232
+ },
233
+ {
234
+ "anonymous": false,
235
+ "inputs": [
236
+ {
237
+ "indexed": false,
238
+ "internalType": "uint64",
239
+ "name": "version",
240
+ "type": "uint64"
241
+ }
242
+ ],
243
+ "name": "Initialized",
244
+ "type": "event"
245
+ },
246
+ {
247
+ "anonymous": false,
248
+ "inputs": [
249
+ {
250
+ "indexed": false,
251
+ "internalType": "uint256",
252
+ "name": "tokenAmount",
253
+ "type": "uint256"
254
+ },
255
+ {
256
+ "indexed": false,
257
+ "internalType": "uint256",
258
+ "name": "fundingTokenAmount",
259
+ "type": "uint256"
260
+ }
261
+ ],
262
+ "name": "LiquidityAdded",
263
+ "type": "event"
264
+ },
265
+ {
266
+ "anonymous": false,
267
+ "inputs": [
268
+ {
269
+ "indexed": true,
270
+ "internalType": "address",
271
+ "name": "previousOwner",
272
+ "type": "address"
273
+ },
274
+ {
275
+ "indexed": true,
276
+ "internalType": "address",
277
+ "name": "newOwner",
278
+ "type": "address"
279
+ }
280
+ ],
281
+ "name": "OwnershipTransferred",
282
+ "type": "event"
283
+ },
284
+ {
285
+ "anonymous": false,
286
+ "inputs": [
287
+ {
288
+ "indexed": true,
289
+ "internalType": "bytes32",
290
+ "name": "role",
291
+ "type": "bytes32"
292
+ },
293
+ {
294
+ "indexed": true,
295
+ "internalType": "bytes32",
296
+ "name": "previousAdminRole",
297
+ "type": "bytes32"
298
+ },
299
+ {
300
+ "indexed": true,
301
+ "internalType": "bytes32",
302
+ "name": "newAdminRole",
303
+ "type": "bytes32"
304
+ }
305
+ ],
306
+ "name": "RoleAdminChanged",
307
+ "type": "event"
308
+ },
309
+ {
310
+ "anonymous": false,
311
+ "inputs": [
312
+ {
313
+ "indexed": true,
314
+ "internalType": "bytes32",
315
+ "name": "role",
316
+ "type": "bytes32"
317
+ },
318
+ {
319
+ "indexed": true,
320
+ "internalType": "address",
321
+ "name": "account",
322
+ "type": "address"
323
+ },
324
+ {
325
+ "indexed": true,
326
+ "internalType": "address",
327
+ "name": "sender",
328
+ "type": "address"
329
+ }
330
+ ],
331
+ "name": "RoleGranted",
332
+ "type": "event"
333
+ },
334
+ {
335
+ "anonymous": false,
336
+ "inputs": [
337
+ {
338
+ "indexed": true,
339
+ "internalType": "bytes32",
340
+ "name": "role",
341
+ "type": "bytes32"
342
+ },
343
+ {
344
+ "indexed": true,
345
+ "internalType": "address",
346
+ "name": "account",
347
+ "type": "address"
348
+ },
349
+ {
350
+ "indexed": true,
351
+ "internalType": "address",
352
+ "name": "sender",
353
+ "type": "address"
354
+ }
355
+ ],
356
+ "name": "RoleRevoked",
357
+ "type": "event"
358
+ },
359
+ {
360
+ "anonymous": false,
361
+ "inputs": [
362
+ {
363
+ "indexed": false,
364
+ "internalType": "uint256",
365
+ "name": "totalRaised",
366
+ "type": "uint256"
367
+ },
368
+ {
369
+ "indexed": false,
370
+ "internalType": "uint256",
371
+ "name": "tokenPrice",
372
+ "type": "uint256"
373
+ }
374
+ ],
375
+ "name": "SaleEnded",
376
+ "type": "event"
377
+ },
378
+ {
379
+ "anonymous": false,
380
+ "inputs": [
381
+ {
382
+ "indexed": true,
383
+ "internalType": "address",
384
+ "name": "user",
385
+ "type": "address"
386
+ },
387
+ {
388
+ "indexed": false,
389
+ "internalType": "uint256",
390
+ "name": "positionId",
391
+ "type": "uint256"
392
+ },
393
+ {
394
+ "indexed": false,
395
+ "internalType": "uint256",
396
+ "name": "amount",
397
+ "type": "uint256"
398
+ }
399
+ ],
400
+ "name": "TradingVaultPositionCreated",
401
+ "type": "event"
402
+ },
403
+ {
404
+ "anonymous": false,
405
+ "inputs": [
406
+ {
407
+ "indexed": true,
408
+ "internalType": "address",
409
+ "name": "user",
410
+ "type": "address"
411
+ },
412
+ {
413
+ "indexed": false,
414
+ "internalType": "uint256",
415
+ "name": "amount",
416
+ "type": "uint256"
417
+ }
418
+ ],
419
+ "name": "VestedClaimed",
420
+ "type": "event"
421
+ },
422
+ {
423
+ "stateMutability": "payable",
424
+ "type": "fallback"
425
+ },
426
+ {
427
+ "inputs": [],
428
+ "name": "DEFAULT_ADMIN_ROLE",
429
+ "outputs": [
430
+ {
431
+ "internalType": "bytes32",
432
+ "name": "",
433
+ "type": "bytes32"
434
+ }
435
+ ],
436
+ "stateMutability": "view",
437
+ "type": "function"
438
+ },
439
+ {
440
+ "inputs": [],
441
+ "name": "OPERATOR_ROLE",
442
+ "outputs": [
443
+ {
444
+ "internalType": "bytes32",
445
+ "name": "",
446
+ "type": "bytes32"
447
+ }
448
+ ],
449
+ "stateMutability": "view",
450
+ "type": "function"
451
+ },
452
+ {
453
+ "inputs": [],
454
+ "name": "addLiquidity",
455
+ "outputs": [],
456
+ "stateMutability": "payable",
457
+ "type": "function"
458
+ },
459
+ {
460
+ "inputs": [],
461
+ "name": "claimInitial",
462
+ "outputs": [],
463
+ "stateMutability": "nonpayable",
464
+ "type": "function"
465
+ },
466
+ {
467
+ "inputs": [],
468
+ "name": "claimVested",
469
+ "outputs": [],
470
+ "stateMutability": "nonpayable",
471
+ "type": "function"
472
+ },
473
+ {
474
+ "inputs": [],
475
+ "name": "claimingEnabled",
476
+ "outputs": [
477
+ {
478
+ "internalType": "bool",
479
+ "name": "",
480
+ "type": "bool"
481
+ }
482
+ ],
483
+ "stateMutability": "view",
484
+ "type": "function"
485
+ },
486
+ {
487
+ "inputs": [
488
+ {
489
+ "internalType": "uint256",
490
+ "name": "_amount",
491
+ "type": "uint256"
492
+ },
493
+ {
494
+ "internalType": "address",
495
+ "name": "_recipient",
496
+ "type": "address"
497
+ }
498
+ ],
499
+ "name": "contribute",
500
+ "outputs": [],
501
+ "stateMutability": "payable",
502
+ "type": "function"
503
+ },
504
+ {
505
+ "inputs": [
506
+ {
507
+ "internalType": "uint256",
508
+ "name": "",
509
+ "type": "uint256"
510
+ }
511
+ ],
512
+ "name": "contributors",
513
+ "outputs": [
514
+ {
515
+ "internalType": "address",
516
+ "name": "",
517
+ "type": "address"
518
+ }
519
+ ],
520
+ "stateMutability": "view",
521
+ "type": "function"
522
+ },
523
+ {
524
+ "inputs": [],
525
+ "name": "dexRouter",
526
+ "outputs": [
527
+ {
528
+ "internalType": "address",
529
+ "name": "",
530
+ "type": "address"
531
+ }
532
+ ],
533
+ "stateMutability": "view",
534
+ "type": "function"
535
+ },
536
+ {
537
+ "inputs": [],
538
+ "name": "earlyParticipationWindow",
539
+ "outputs": [
540
+ {
541
+ "internalType": "uint256",
542
+ "name": "",
543
+ "type": "uint256"
544
+ }
545
+ ],
546
+ "stateMutability": "view",
547
+ "type": "function"
548
+ },
549
+ {
550
+ "inputs": [],
551
+ "name": "enableClaiming",
552
+ "outputs": [],
553
+ "stateMutability": "nonpayable",
554
+ "type": "function"
555
+ },
556
+ {
557
+ "inputs": [],
558
+ "name": "endSale",
559
+ "outputs": [],
560
+ "stateMutability": "nonpayable",
561
+ "type": "function"
562
+ },
563
+ {
564
+ "inputs": [],
565
+ "name": "endTime",
566
+ "outputs": [
567
+ {
568
+ "internalType": "uint256",
569
+ "name": "",
570
+ "type": "uint256"
571
+ }
572
+ ],
573
+ "stateMutability": "view",
574
+ "type": "function"
575
+ },
576
+ {
577
+ "inputs": [],
578
+ "name": "fundingToken",
579
+ "outputs": [
580
+ {
581
+ "internalType": "address",
582
+ "name": "",
583
+ "type": "address"
584
+ }
585
+ ],
586
+ "stateMutability": "view",
587
+ "type": "function"
588
+ },
589
+ {
590
+ "inputs": [],
591
+ "name": "fundingTokenPrice",
592
+ "outputs": [
593
+ {
594
+ "internalType": "uint256",
595
+ "name": "",
596
+ "type": "uint256"
597
+ }
598
+ ],
599
+ "stateMutability": "view",
600
+ "type": "function"
601
+ },
602
+ {
603
+ "inputs": [
604
+ {
605
+ "internalType": "uint256",
606
+ "name": "_index",
607
+ "type": "uint256"
608
+ }
609
+ ],
610
+ "name": "getContributorAt",
611
+ "outputs": [
612
+ {
613
+ "internalType": "address",
614
+ "name": "",
615
+ "type": "address"
616
+ }
617
+ ],
618
+ "stateMutability": "view",
619
+ "type": "function"
620
+ },
621
+ {
622
+ "inputs": [],
623
+ "name": "getContributorsCount",
624
+ "outputs": [
625
+ {
626
+ "internalType": "uint256",
627
+ "name": "",
628
+ "type": "uint256"
629
+ }
630
+ ],
631
+ "stateMutability": "view",
632
+ "type": "function"
633
+ },
634
+ {
635
+ "inputs": [
636
+ {
637
+ "internalType": "bytes32",
638
+ "name": "role",
639
+ "type": "bytes32"
640
+ }
641
+ ],
642
+ "name": "getRoleAdmin",
643
+ "outputs": [
644
+ {
645
+ "internalType": "bytes32",
646
+ "name": "",
647
+ "type": "bytes32"
648
+ }
649
+ ],
650
+ "stateMutability": "view",
651
+ "type": "function"
652
+ },
653
+ {
654
+ "inputs": [],
655
+ "name": "getSaleInfo",
656
+ "outputs": [
657
+ {
658
+ "internalType": "uint256",
659
+ "name": "_startTime",
660
+ "type": "uint256"
661
+ },
662
+ {
663
+ "internalType": "uint256",
664
+ "name": "_endTime",
665
+ "type": "uint256"
666
+ },
667
+ {
668
+ "internalType": "uint256",
669
+ "name": "_totalTokensForSale",
670
+ "type": "uint256"
671
+ },
672
+ {
673
+ "internalType": "uint256",
674
+ "name": "_totalRaised",
675
+ "type": "uint256"
676
+ },
677
+ {
678
+ "internalType": "uint256",
679
+ "name": "_tokenPrice",
680
+ "type": "uint256"
681
+ },
682
+ {
683
+ "internalType": "bool",
684
+ "name": "_saleEnded",
685
+ "type": "bool"
686
+ },
687
+ {
688
+ "internalType": "bool",
689
+ "name": "_claimingEnabled",
690
+ "type": "bool"
691
+ },
692
+ {
693
+ "internalType": "bool",
694
+ "name": "_liquidityAdded",
695
+ "type": "bool"
696
+ }
697
+ ],
698
+ "stateMutability": "view",
699
+ "type": "function"
700
+ },
701
+ {
702
+ "inputs": [
703
+ {
704
+ "internalType": "address",
705
+ "name": "_user",
706
+ "type": "address"
707
+ }
708
+ ],
709
+ "name": "getUserInfo",
710
+ "outputs": [
711
+ {
712
+ "internalType": "uint256",
713
+ "name": "amount",
714
+ "type": "uint256"
715
+ },
716
+ {
717
+ "internalType": "uint256",
718
+ "name": "tokenAllocation",
719
+ "type": "uint256"
720
+ },
721
+ {
722
+ "internalType": "bool",
723
+ "name": "hasClaimedInitial",
724
+ "type": "bool"
725
+ },
726
+ {
727
+ "internalType": "uint256",
728
+ "name": "vestedClaimed",
729
+ "type": "uint256"
730
+ },
731
+ {
732
+ "internalType": "uint256",
733
+ "name": "tradingVaultId",
734
+ "type": "uint256"
735
+ },
736
+ {
737
+ "internalType": "uint256",
738
+ "name": "claimableInitial",
739
+ "type": "uint256"
740
+ },
741
+ {
742
+ "internalType": "uint256",
743
+ "name": "claimableVested",
744
+ "type": "uint256"
745
+ }
746
+ ],
747
+ "stateMutability": "view",
748
+ "type": "function"
749
+ },
750
+ {
751
+ "inputs": [
752
+ {
753
+ "internalType": "bytes32",
754
+ "name": "role",
755
+ "type": "bytes32"
756
+ },
757
+ {
758
+ "internalType": "address",
759
+ "name": "account",
760
+ "type": "address"
761
+ }
762
+ ],
763
+ "name": "grantRole",
764
+ "outputs": [],
765
+ "stateMutability": "nonpayable",
766
+ "type": "function"
767
+ },
768
+ {
769
+ "inputs": [
770
+ {
771
+ "internalType": "bytes32",
772
+ "name": "role",
773
+ "type": "bytes32"
774
+ },
775
+ {
776
+ "internalType": "address",
777
+ "name": "account",
778
+ "type": "address"
779
+ }
780
+ ],
781
+ "name": "hasRole",
782
+ "outputs": [
783
+ {
784
+ "internalType": "bool",
785
+ "name": "",
786
+ "type": "bool"
787
+ }
788
+ ],
789
+ "stateMutability": "view",
790
+ "type": "function"
791
+ },
792
+ {
793
+ "inputs": [],
794
+ "name": "initialClaimPercent",
795
+ "outputs": [
796
+ {
797
+ "internalType": "uint256",
798
+ "name": "",
799
+ "type": "uint256"
800
+ }
801
+ ],
802
+ "stateMutability": "view",
803
+ "type": "function"
804
+ },
805
+ {
806
+ "inputs": [
807
+ {
808
+ "internalType": "address",
809
+ "name": "_projectToken",
810
+ "type": "address"
811
+ },
812
+ {
813
+ "internalType": "address",
814
+ "name": "_fundingToken",
815
+ "type": "address"
816
+ },
817
+ {
818
+ "internalType": "address",
819
+ "name": "_tradingVault",
820
+ "type": "address"
821
+ },
822
+ {
823
+ "internalType": "address",
824
+ "name": "_dexRouter",
825
+ "type": "address"
826
+ },
827
+ {
828
+ "internalType": "uint256",
829
+ "name": "_startTime",
830
+ "type": "uint256"
831
+ },
832
+ {
833
+ "internalType": "uint256",
834
+ "name": "_endTime",
835
+ "type": "uint256"
836
+ },
837
+ {
838
+ "internalType": "uint256",
839
+ "name": "_totalTokensForSale",
840
+ "type": "uint256"
841
+ },
842
+ {
843
+ "internalType": "uint256",
844
+ "name": "_liquidityTokens",
845
+ "type": "uint256"
846
+ },
847
+ {
848
+ "internalType": "uint256",
849
+ "name": "_liquidityPercent",
850
+ "type": "uint256"
851
+ },
852
+ {
853
+ "internalType": "uint256",
854
+ "name": "_initialClaimPercent",
855
+ "type": "uint256"
856
+ },
857
+ {
858
+ "internalType": "uint256",
859
+ "name": "_vestingDuration",
860
+ "type": "uint256"
861
+ },
862
+ {
863
+ "internalType": "uint256",
864
+ "name": "_earlyParticipationWindow",
865
+ "type": "uint256"
866
+ },
867
+ {
868
+ "internalType": "uint256",
869
+ "name": "_fundingTokenPrice",
870
+ "type": "uint256"
871
+ }
872
+ ],
873
+ "name": "initialize",
874
+ "outputs": [],
875
+ "stateMutability": "nonpayable",
876
+ "type": "function"
877
+ },
878
+ {
879
+ "inputs": [],
880
+ "name": "liquidityAdded",
881
+ "outputs": [
882
+ {
883
+ "internalType": "bool",
884
+ "name": "",
885
+ "type": "bool"
886
+ }
887
+ ],
888
+ "stateMutability": "view",
889
+ "type": "function"
890
+ },
891
+ {
892
+ "inputs": [],
893
+ "name": "liquidityPercent",
894
+ "outputs": [
895
+ {
896
+ "internalType": "uint256",
897
+ "name": "",
898
+ "type": "uint256"
899
+ }
900
+ ],
901
+ "stateMutability": "view",
902
+ "type": "function"
903
+ },
904
+ {
905
+ "inputs": [],
906
+ "name": "liquidityTokens",
907
+ "outputs": [
908
+ {
909
+ "internalType": "uint256",
910
+ "name": "",
911
+ "type": "uint256"
912
+ }
913
+ ],
914
+ "stateMutability": "view",
915
+ "type": "function"
916
+ },
917
+ {
918
+ "inputs": [],
919
+ "name": "owner",
920
+ "outputs": [
921
+ {
922
+ "internalType": "address",
923
+ "name": "",
924
+ "type": "address"
925
+ }
926
+ ],
927
+ "stateMutability": "view",
928
+ "type": "function"
929
+ },
930
+ {
931
+ "inputs": [],
932
+ "name": "projectToken",
933
+ "outputs": [
934
+ {
935
+ "internalType": "address",
936
+ "name": "",
937
+ "type": "address"
938
+ }
939
+ ],
940
+ "stateMutability": "view",
941
+ "type": "function"
942
+ },
943
+ {
944
+ "inputs": [],
945
+ "name": "renounceOwnership",
946
+ "outputs": [],
947
+ "stateMutability": "nonpayable",
948
+ "type": "function"
949
+ },
950
+ {
951
+ "inputs": [
952
+ {
953
+ "internalType": "bytes32",
954
+ "name": "role",
955
+ "type": "bytes32"
956
+ },
957
+ {
958
+ "internalType": "address",
959
+ "name": "callerConfirmation",
960
+ "type": "address"
961
+ }
962
+ ],
963
+ "name": "renounceRole",
964
+ "outputs": [],
965
+ "stateMutability": "nonpayable",
966
+ "type": "function"
967
+ },
968
+ {
969
+ "inputs": [
970
+ {
971
+ "internalType": "bytes32",
972
+ "name": "role",
973
+ "type": "bytes32"
974
+ },
975
+ {
976
+ "internalType": "address",
977
+ "name": "account",
978
+ "type": "address"
979
+ }
980
+ ],
981
+ "name": "revokeRole",
982
+ "outputs": [],
983
+ "stateMutability": "nonpayable",
984
+ "type": "function"
985
+ },
986
+ {
987
+ "inputs": [],
988
+ "name": "saleEnded",
989
+ "outputs": [
990
+ {
991
+ "internalType": "bool",
992
+ "name": "",
993
+ "type": "bool"
994
+ }
995
+ ],
996
+ "stateMutability": "view",
997
+ "type": "function"
998
+ },
999
+ {
1000
+ "inputs": [],
1001
+ "name": "startTime",
1002
+ "outputs": [
1003
+ {
1004
+ "internalType": "uint256",
1005
+ "name": "",
1006
+ "type": "uint256"
1007
+ }
1008
+ ],
1009
+ "stateMutability": "view",
1010
+ "type": "function"
1011
+ },
1012
+ {
1013
+ "inputs": [
1014
+ {
1015
+ "internalType": "bytes4",
1016
+ "name": "interfaceId",
1017
+ "type": "bytes4"
1018
+ }
1019
+ ],
1020
+ "name": "supportsInterface",
1021
+ "outputs": [
1022
+ {
1023
+ "internalType": "bool",
1024
+ "name": "",
1025
+ "type": "bool"
1026
+ }
1027
+ ],
1028
+ "stateMutability": "view",
1029
+ "type": "function"
1030
+ },
1031
+ {
1032
+ "inputs": [],
1033
+ "name": "tokenPrice",
1034
+ "outputs": [
1035
+ {
1036
+ "internalType": "uint256",
1037
+ "name": "",
1038
+ "type": "uint256"
1039
+ }
1040
+ ],
1041
+ "stateMutability": "view",
1042
+ "type": "function"
1043
+ },
1044
+ {
1045
+ "inputs": [],
1046
+ "name": "totalRaised",
1047
+ "outputs": [
1048
+ {
1049
+ "internalType": "uint256",
1050
+ "name": "",
1051
+ "type": "uint256"
1052
+ }
1053
+ ],
1054
+ "stateMutability": "view",
1055
+ "type": "function"
1056
+ },
1057
+ {
1058
+ "inputs": [],
1059
+ "name": "totalTokensForSale",
1060
+ "outputs": [
1061
+ {
1062
+ "internalType": "uint256",
1063
+ "name": "",
1064
+ "type": "uint256"
1065
+ }
1066
+ ],
1067
+ "stateMutability": "view",
1068
+ "type": "function"
1069
+ },
1070
+ {
1071
+ "inputs": [],
1072
+ "name": "tradingVault",
1073
+ "outputs": [
1074
+ {
1075
+ "internalType": "address",
1076
+ "name": "",
1077
+ "type": "address"
1078
+ }
1079
+ ],
1080
+ "stateMutability": "view",
1081
+ "type": "function"
1082
+ },
1083
+ {
1084
+ "inputs": [
1085
+ {
1086
+ "internalType": "address",
1087
+ "name": "newOwner",
1088
+ "type": "address"
1089
+ }
1090
+ ],
1091
+ "name": "transferOwnership",
1092
+ "outputs": [],
1093
+ "stateMutability": "nonpayable",
1094
+ "type": "function"
1095
+ },
1096
+ {
1097
+ "inputs": [
1098
+ {
1099
+ "internalType": "uint256",
1100
+ "name": "_earlyParticipationWindow",
1101
+ "type": "uint256"
1102
+ }
1103
+ ],
1104
+ "name": "updateEarlyParticipationWindow",
1105
+ "outputs": [],
1106
+ "stateMutability": "nonpayable",
1107
+ "type": "function"
1108
+ },
1109
+ {
1110
+ "inputs": [
1111
+ {
1112
+ "internalType": "uint256",
1113
+ "name": "_fundingTokenPrice",
1114
+ "type": "uint256"
1115
+ }
1116
+ ],
1117
+ "name": "updateFundingTokenPrice",
1118
+ "outputs": [],
1119
+ "stateMutability": "nonpayable",
1120
+ "type": "function"
1121
+ },
1122
+ {
1123
+ "inputs": [
1124
+ {
1125
+ "internalType": "uint256",
1126
+ "name": "_initialClaimPercent",
1127
+ "type": "uint256"
1128
+ }
1129
+ ],
1130
+ "name": "updateInitialClaimPercent",
1131
+ "outputs": [],
1132
+ "stateMutability": "nonpayable",
1133
+ "type": "function"
1134
+ },
1135
+ {
1136
+ "inputs": [
1137
+ {
1138
+ "internalType": "uint256",
1139
+ "name": "_liquidityPercent",
1140
+ "type": "uint256"
1141
+ }
1142
+ ],
1143
+ "name": "updateLiquidityPercent",
1144
+ "outputs": [],
1145
+ "stateMutability": "nonpayable",
1146
+ "type": "function"
1147
+ },
1148
+ {
1149
+ "inputs": [
1150
+ {
1151
+ "internalType": "uint256",
1152
+ "name": "_liquidityTokens",
1153
+ "type": "uint256"
1154
+ }
1155
+ ],
1156
+ "name": "updateLiquidityTokens",
1157
+ "outputs": [],
1158
+ "stateMutability": "nonpayable",
1159
+ "type": "function"
1160
+ },
1161
+ {
1162
+ "inputs": [
1163
+ {
1164
+ "internalType": "uint256",
1165
+ "name": "_vestingDuration",
1166
+ "type": "uint256"
1167
+ }
1168
+ ],
1169
+ "name": "updateVestingDuration",
1170
+ "outputs": [],
1171
+ "stateMutability": "nonpayable",
1172
+ "type": "function"
1173
+ },
1174
+ {
1175
+ "inputs": [
1176
+ {
1177
+ "internalType": "address",
1178
+ "name": "",
1179
+ "type": "address"
1180
+ }
1181
+ ],
1182
+ "name": "userContributions",
1183
+ "outputs": [
1184
+ {
1185
+ "internalType": "uint256",
1186
+ "name": "amount",
1187
+ "type": "uint256"
1188
+ },
1189
+ {
1190
+ "internalType": "uint256",
1191
+ "name": "tokenAllocation",
1192
+ "type": "uint256"
1193
+ },
1194
+ {
1195
+ "internalType": "bool",
1196
+ "name": "hasClaimedInitial",
1197
+ "type": "bool"
1198
+ },
1199
+ {
1200
+ "internalType": "uint256",
1201
+ "name": "vestedClaimed",
1202
+ "type": "uint256"
1203
+ },
1204
+ {
1205
+ "internalType": "uint256",
1206
+ "name": "tradingVaultId",
1207
+ "type": "uint256"
1208
+ }
1209
+ ],
1210
+ "stateMutability": "view",
1211
+ "type": "function"
1212
+ },
1213
+ {
1214
+ "inputs": [],
1215
+ "name": "vestingDuration",
1216
+ "outputs": [
1217
+ {
1218
+ "internalType": "uint256",
1219
+ "name": "",
1220
+ "type": "uint256"
1221
+ }
1222
+ ],
1223
+ "stateMutability": "view",
1224
+ "type": "function"
1225
+ },
1226
+ {
1227
+ "inputs": [],
1228
+ "name": "vestingStartTime",
1229
+ "outputs": [
1230
+ {
1231
+ "internalType": "uint256",
1232
+ "name": "",
1233
+ "type": "uint256"
1234
+ }
1235
+ ],
1236
+ "stateMutability": "view",
1237
+ "type": "function"
1238
+ },
1239
+ {
1240
+ "inputs": [
1241
+ {
1242
+ "internalType": "address",
1243
+ "name": "_token",
1244
+ "type": "address"
1245
+ },
1246
+ {
1247
+ "internalType": "uint256",
1248
+ "name": "_amount",
1249
+ "type": "uint256"
1250
+ }
1251
+ ],
1252
+ "name": "withdrawERC20",
1253
+ "outputs": [],
1254
+ "stateMutability": "nonpayable",
1255
+ "type": "function"
1256
+ },
1257
+ {
1258
+ "inputs": [
1259
+ {
1260
+ "internalType": "uint256",
1261
+ "name": "_amount",
1262
+ "type": "uint256"
1263
+ },
1264
+ {
1265
+ "internalType": "address payable",
1266
+ "name": "_recipient",
1267
+ "type": "address"
1268
+ }
1269
+ ],
1270
+ "name": "withdrawETH",
1271
+ "outputs": [],
1272
+ "stateMutability": "nonpayable",
1273
+ "type": "function"
1274
+ },
1275
+ {
1276
+ "inputs": [
1277
+ {
1278
+ "internalType": "address",
1279
+ "name": "_lpToken",
1280
+ "type": "address"
1281
+ },
1282
+ {
1283
+ "internalType": "address",
1284
+ "name": "_recipient",
1285
+ "type": "address"
1286
+ }
1287
+ ],
1288
+ "name": "withdrawLPTokens",
1289
+ "outputs": [],
1290
+ "stateMutability": "nonpayable",
1291
+ "type": "function"
1292
+ },
1293
+ {
1294
+ "stateMutability": "payable",
1295
+ "type": "receive"
1296
+ }
1297
+ ],
1298
+ "bytecode": "0x6080806040523460d2577ff0c57e16840df040f15088dc2f81fe391c3923bec73e23a9662efc9c229c6a005460ff8160401c1660c1576002600160401b03196001600160401b03821601605c575b60405161233a90816100d88239f35b6001600160401b0319166001600160401b039081177ff0c57e16840df040f15088dc2f81fe391c3923bec73e23a9662efc9c229c6a005581527fc7f505b2f371ae2175ee4913f4499e1f2633a7b5936321eed1cdaeb6115181d290602090a13880604d565b63f92ee8a960e01b60005260046000fd5b600080fdfe60808060405260043610156100a0575b5036156100275763078d696560e31b60005260046000fd5b6001546000906001600160a01b0316610091573461004157005b303b1561008e5760405163060b0b0f60e41b815260048101829052336024820152818160448134305af180156100835761007757005b8161008191611cea565b005b6040513d84823e3d90fd5b80fd5b63078d696560e31b8152600490fd5b60003560e01c90816301ffc9a714611be6575080630758d92414611bbd57806307bb0a2214611b0857806309295d0914611add5780630e141a9b14611ab75780630f6ca1a814611a4c5780631514617e14611a2e5780632081a88c146119d6578063248a9ca3146119b05780632f2ff15d1461197f5780633197cbb61461196157806336118b521461187657806336568abe14611830578063380d831b146117205780633845cebf146116de5780633cb5d100146116b557806341cf19ba146116975780634b60ce771461166e5780634b8ce6021461165057806360219c7b1461163257806360b0b0f01461138e5780636386c1c71461121e57806366349e3f146111a1578063684d411e1461115f578063692c931a14611141578063715018a6146110d757806378065f27146110ae57806378e97925146110905780637ff9b596146110725780638da5cb5b1461103c57806391d1485414610fe2578063928ba37f14610f1b5780639b23218a14610ef45780639b8906ae14610ed1578063a1db978214610e1f578063a217fddf14610e03578063a8660a7814610de5578063b068375514610dc7578063b6d74568146109eb578063c5c4744c146109cd578063d01c44cd1461088b578063d547741f14610855578063d89031d014610837578063d944392314610811578063db83694c146107a9578063dd19aa5714610778578063e8078d94146103ff578063f1bd27a8146103d6578063f2fde38b146103ad578063f5b541a614610372578063fa09267c1461030c5763feed5561146102e9573861000f565b34610307576000366003190112610307576020601254604051908152f35b600080fd5b3461030757602036600319011261030757600435610328611e0d565b60ff600a54166103615780158015610355575b61034457600e55005b63162908e360e11b60005260046000fd5b5060065481101561033b565b637ce54feb60e11b60005260046000fd5b346103075760003660031901126103075760206040517f97667070c54ef182b0f5858b034beac1b6f3089aa2d3188bb1e8929f4fa9b9298152f35b34610307576020366003190112610307576100816103c9611c39565b6103d16121e5565b611d59565b34610307576000366003190112610307576002546040516001600160a01b039091168152602090f35b600036600319011261030757610413611e0d565b600a5460ff8116156107675760ff8160101c1661075657620100009062ff0000191617600a55606461044a600754600f5490611c96565b60008054600354600e5460405163095ea7b360e01b81526001600160a01b03928316600482015260248101919091529490930493926020928492604492849291165af180156105b957610739575b5060018060a01b0360035416600e546062810290808204606214901517156105c557606490049160628102818104606214821517156105c5576001546064909104906000906001600160a01b0316806105db57505060018060a01b0360005416600e54926107084201948542116105c55760609560c494604051988997889663f305d71960e01b8852600488015260248701526044860152606485015230608485015260a48401525af180156105b9577f38f8a0c92f4c5b0b6877f878cb4c0c8d348a47b76d716c8e78f425043df9515b91604091600091600091610587575b505b82519182526020820152a1005b90506105ab915060603d6060116105b2575b6105a38183611cea565b810190611d3e565b5084610578565b503d610599565b6040513d6000823e3d90fd5b634e487b7160e01b600052601160045260246000fd5b60405163095ea7b360e01b81526001600160a01b0386166004820152602481018590529195949293929190602090829060449082908a905af1801561072e57610701575b5060018060a01b038554169160018060a01b036001541693600e54956107084201928342116106ed57928892610104959260609897956040519a8b998a9862e8e33760e81b8a5260048a0152602489015260448801526064870152608486015260a48501523060c485015260e48401525af190811561008357916040917f38f8a0c92f4c5b0b6877f878cb4c0c8d348a47b76d716c8e78f425043df9515b9382916106cb575b5061057a565b90506106e6915060603d6060116105b2576105a38183611cea565b50846106c5565b634e487b7160e01b89526011600452602489fd5b6107229060203d602011610727575b61071a8183611cea565b810190611d26565b61061f565b503d610710565b6040513d88823e3d90fd5b6107519060203d6020116107275761071a8183611cea565b610498565b630fd02b6d60e41b60005260046000fd5b639d98b04b60e01b60005260046000fd5b3461030757602036600319011261030757600435610794611e0d565b60ff600a541661036157801561034457600c55005b346103075760003660031901126103075761010060045460ff60055460065460075460085491600a54936040519687526020870152604086015260608501526080840152818116151560a0840152818160081c16151560c084015260101c16151560e0820152f35b3461030757600036600319011261030757602060ff600a5460101c166040519015158152f35b34610307576000366003190112610307576020600954604051908152f35b3461030757604036600319011261030757610081600435610874611c4f565b9061088661088182611cc9565b611ed2565b612145565b3461030757600036600319011261030757600a5460ff8160081c16156109bc5760ff16156107675733600052601160205260406000206001810154801561096e57600d5460640390606482116105c5576064916108e791611c96565b0490600b54600c54906108fa8282611d0c565b421061097f575060039190505b0161091481548093611d19565b91821561096e578261092591611d0c565b905560005461094090829033906001600160a01b0316611dcf565b6040519081527fc15eb22beb780252072bdeec94b7fce7b15822d73417b8a4f92640577eb6fceb60203392a2005b6312d37ee560e31b60005260046000fd5b9061099c603c806109936109a19542611d19565b04920485611ca9565b611c96565b918083116109b3575b50600390610907565b915060036109aa565b6371642c7760e11b60005260046000fd5b34610307576000366003190112610307576020600754604051908152f35b34610307576101a036600319011261030757610a05611c39565b610a0d611c4f565b6044356001600160a01b03811690819003610307576064356001600160a01b038116908190036103075760843560a43560c43560e4359161010435936101243595610144359761018435996000805160206122e5833981519152549b60ff8d60401c16159c8d67ffffffffffffffff821680159182610dbf575b506001149081610db5575b159081610dac575b50610d9b5767ffffffffffffffff1981166001176000805160206122e5833981519152558d610d6e575b50610acd612276565b610ad5612276565b610ade33611d59565b610ae6612276565b6001600160a01b03168015610d5d578215610d4c578315610d3b5742851115610d2a5784861115610d2a5786156103445787158015610d20575b6103445788158015610d16575b6103445789158015610d0c575b610344578a15610344578b15610344576001600160601b0360a01b600054161760005560018060a01b03166001600160601b0360a01b60015416176001556001600160601b0360a01b60025416176002556001600160601b0360a01b6003541617600355600455600555600655600e55600f55600d55600c5561016435601055600955610bc633611f1c565b50610bd033611fce565b5060025460405163e5a6b10f60e01b81526001600160a01b0390911690602081600481855afa9081156105b957600091610cc5575b5060405163095ea7b360e01b815260048101929092526000196024830152602090829060449082906000906001600160a01b03165af180156105b957610ca6575b50610c4d57005b68ff0000000000000000196000805160206122e583398151915254166000805160206122e5833981519152557fc7f505b2f371ae2175ee4913f4499e1f2633a7b5936321eed1cdaeb6115181d2602060405160018152a1005b610cbe9060203d6020116107275761071a8183611cea565b5081610c46565b6020813d602011610d04575b81610cde60209383611cea565b81010312610d005751906001600160a01b038216820361008e57506000610c05565b5080fd5b3d9150610cd1565b5060648a11610b3a565b5060648911610b2d565b5086881015610b20565b63b7d0949760e01b60005260046000fd5b631bf06d4d60e31b60005260046000fd5b632b33b1fb60e21b60005260046000fd5b630f58058360e11b60005260046000fd5b68ffffffffffffffffff191668010000000000000001176000805160206122e5833981519152558d610ac4565b63f92ee8a960e01b60005260046000fd5b9050158f610a9a565b303b159150610a92565b91508f610a87565b34610307576000366003190112610307576020600f54604051908152f35b34610307576000366003190112610307576020600b54604051908152f35b3461030757600036600319011261030757602060405160008152f35b3461030757604036600319011261030757610e38611c39565b60243590610e44611e7f565b6001600160a01b0316908115610ec0578015610eaf5760ff600a54161580610e87575b610e7657610081913390611dcf565b63ea8e4eb560e01b60005260046000fd5b506000546001600160a01b0316821480610e6757506001546001600160a01b03168214610e67565b631f2a200560e01b60005260046000fd5b63d92e233d60e01b60005260046000fd5b3461030757600036600319011261030757602060ff600a54166040519015158152f35b3461030757602036600319011261030757600435610f10611e0d565b801561034457600955005b3461030757604036600319011261030757610f34611c39565b610f3c611c4f565b90610f45611e7f565b60ff600a5460101c1615610756576001600160a01b0316908115610ec0576001600160a01b03811615610ec0576040516370a0823160e01b815230600482015290602082602481865afa9182156105b957600092610fae575b508115610eaf5761008192611dcf565b90916020823d602011610fda575b81610fc960209383611cea565b8101031261008e5750519083610f9e565b3d9150610fbc565b3461030757604036600319011261030757610ffb611c4f565b6004356000526000805160206122c583398151915260205260406000209060018060a01b0316600052602052602060ff604060002054166040519015158152f35b34610307576000366003190112610307576000805160206122a5833981519152546040516001600160a01b039091168152602090f35b34610307576000366003190112610307576020600854604051908152f35b34610307576000366003190112610307576020600454604051908152f35b34610307576000366003190112610307576001546040516001600160a01b039091168152602090f35b34610307576000366003190112610307576110f06121e5565b6000805160206122a583398151915280546001600160a01b031981169091556000906001600160a01b03167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e08280a3005b34610307576000366003190112610307576020601054604051908152f35b346103075760203660031901126103075760043561117b611e0d565b60ff600a54166103615780158015611197575b61034457600f55005b506064811161118e565b34610307576020366003190112610307576004356012548110156111e3576111ca602091611c65565b905460405160039290921b1c6001600160a01b03168152f35b60405162461bcd60e51b8152602060048201526013602482015272496e646578206f7574206f6620626f756e647360681b6044820152606490fd5b3461030757602036600319011261030757611237611c39565b6000809160018060a01b0316825260116020526040822091825491600184015460ff60028601541694600460038201549101549160ff600a5460081c1680611385575b6112ab575b9560e0966040519687526020870152151560408601526060850152608084015260a083015260c0820152f35b9395801561136e575b600d546064036064811161135a57968260646112d260e09a89611c96565b048290600b54600c54906112e68282611d0c565b421061131357505090505b8181111561130c576113039250611d19565b9490965061127f565b5050611303565b804211611323575b5050506112f1565b611342929350603c8061133961099c9342611d19565b04920484611ca9565b90808211611352575b808061131b565b90508a61134b565b634e487b7160e01b88526011600452602488fd5b9250606461137e600d5486611c96565b04926112b4565b5080151561127a565b6040366003190112610307576004356113a5611c4f565b60045442108015611627575b611616576001546001600160a01b0316806115c9575034913415610eaf576115b8575b6001600160a01b0316600081815260116020526040902080549192911561155d575b611401828254611d0c565b815561140f82600754611d0c565b60075561142160045460105490611d0c565b42111580611551575b61145d575b5060207f62722348256371b5147820d6cad90c40fd2da1ccee18c3ed52c0bca5a61dbbab91604051908152a2005b600090670de0b6b3a764000061147560095485611c96565b04602060018060a01b036002541660446040518096819363307ada3960e21b83528660048401528a60248401525af19182156105b9578593600093611517575b50604083602095937f62722348256371b5147820d6cad90c40fd2da1ccee18c3ed52c0bca5a61dbbab979560047fdb4445d4f94b7320d1834734c8c6f93a74a25048fc5295cac114fe2734d8e348950155825191825286820152a2915061142f565b919350916020823d602011611549575b8161153460209383611cea565b8101031261008e5750518492909160406114b5565b3d9150611527565b5060048101541561142a565b601254680100000000000000008110156115a2578060016115819201601255611c65565b81546001600160a01b0360039290921b91821b19169085901b1790556113f6565b634e487b7160e01b600052604160045260246000fd5b63078d696560e31b60005260046000fd5b91346115b8578015610eaf57806116119193604051916323b872dd60e01b602084015233602484015230604484015260648301526064825261160c608483611cea565b61221b565b6113d4565b63b7b2409760e01b60005260046000fd5b5060055442116113b1565b34610307576000366003190112610307576020600654604051908152f35b34610307576000366003190112610307576020600e54604051908152f35b34610307576000366003190112610307576000546040516001600160a01b039091168152602090f35b34610307576000366003190112610307576020600d54604051908152f35b3461030757602036600319011261030757600435601254811015610307576111ca602091611c65565b34610307576020366003190112610307576004356116fa611e0d565b60ff600a54166103615780158015611716575b61034457600d55005b506064811161170d565b3461030757600036600319011261030757611739611e0d565b60055442111561076757600a5460ff81166103615760ff1916600117600a556007541561182657600754670de0b6b3a7640000810290808204670de0b6b3a764000014901517156105c55760065461179091611ca9565b6008555b60005b6012548110156117ec57806117ad600192611c65565b838060a01b0391549060031b1c1660005260116020526040600020826117e36117da835460065490611c96565b60075490611ca9565b91015501611797565b42600b557fce4010416b0dec196298b584ceebdd43ecf89e6c03007517c3a7f4403db6c212604060075460085482519182526020820152a1005b6000600855611794565b3461030757604036600319011261030757611849611c4f565b336001600160a01b038216036118655761008190600435612145565b63334bd91960e11b60005260046000fd5b34610307576040366003190112610307576024356001600160a01b0381169060043590829003610307576118a8611e7f565b60ff600a541615610767578015610eaf578115610ec05780471061195057600080808084865af13d1561194b573d67ffffffffffffffff81116115a257604051906118fd601f8201601f191660200183611cea565b8152600060203d92013e5b1561193a5760207f94b2de810873337ed265c5f8cf98c9cffefa06b8607f9a2f1fbaebdfbcfbef1c91604051908152a2005b63b12d13eb60e01b60005260046000fd5b611908565b631e9acf1760e31b60005260046000fd5b34610307576000366003190112610307576020600554604051908152f35b346103075760403660031901126103075761008160043561199e611c4f565b906119ab61088182611cc9565b61209c565b346103075760203660031901126103075760206119ce600435611cc9565b604051908152f35b34610307576000366003190112610307576119ef611e0d565b600a5460ff8116156107675761ff00191661010017600a557f25b238f97b16f614c2cc471460ad0d72c33c632bde1300d098e531ed9b5a627a600080a1005b34610307576000366003190112610307576020600c54604051908152f35b34610307576020366003190112610307576001600160a01b03611a6d611c39565b16600052601160205260a0604060002080549060018101549060ff600282015416600460038301549201549260405194855260208501521515604084015260608301526080820152f35b3461030757600036600319011261030757602060ff600a5460081c166040519015158152f35b3461030757602036600319011261030757611af6611e0d565b60ff600a541661036157600435601055005b346103075760003660031901126103075760ff600a5460081c16156109bc573360005260116020526040600020600181015490811561096e5760020180549160ff8316611bac576064611b60600192600d5490611c96565b049260ff1916179055611b7e813360018060a01b0360005416611dcf565b6040519081527f1db3d897126a63b6e2ce74502c05c2867d4246724fb12e092410859138231dc260203392a2005b630c8d9eab60e31b60005260046000fd5b34610307576000366003190112610307576003546040516001600160a01b039091168152602090f35b34610307576020366003190112610307576004359063ffffffff60e01b821680920361030757602091637965db0b60e01b8114908115611c28575b5015158152f35b6301ffc9a760e01b14905083611c21565b600435906001600160a01b038216820361030757565b602435906001600160a01b038216820361030757565b601254811015611c8057601260005260206000200190600090565b634e487b7160e01b600052603260045260246000fd5b818102929181159184041417156105c557565b8115611cb3570490565b634e487b7160e01b600052601260045260246000fd5b6000526000805160206122c583398151915260205260016040600020015490565b90601f8019910116810190811067ffffffffffffffff8211176115a257604052565b919082018092116105c557565b919082039182116105c557565b90816020910312610307575180151581036103075790565b90816060910312610307578051916040602083015192015190565b6001600160a01b03168015611db9576000805160206122a583398151915280546001600160a01b0319811683179091556001600160a01b03167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0600080a3565b631e4fbdf760e01b600052600060045260246000fd5b60405163a9059cbb60e01b60208201526001600160a01b03929092166024830152604480830193909352918152611e0b9161160c606483611cea565b565b3360009081527f448256db8f8fb95ee3eaaf89c1051414494e85cebb6057fcf996cc3d0ccfb456602052604090205460ff1615611e4657565b63e2517d3f60e01b600052336004527f97667070c54ef182b0f5858b034beac1b6f3089aa2d3188bb1e8929f4fa9b92960245260446000fd5b3360009081527fb7db2dd08fcb62d0c9e08c51941cae53c267786a0b75803fb7960902fc8ef97d602052604090205460ff1615611eb857565b63e2517d3f60e01b60005233600452600060245260446000fd5b60008181526000805160206122c58339815191526020908152604080832033845290915290205460ff1615611f045750565b63e2517d3f60e01b6000523360045260245260446000fd5b6001600160a01b03811660009081527fb7db2dd08fcb62d0c9e08c51941cae53c267786a0b75803fb7960902fc8ef97d602052604090205460ff16611fc8576001600160a01b031660008181527fb7db2dd08fcb62d0c9e08c51941cae53c267786a0b75803fb7960902fc8ef97d60205260408120805460ff191660011790553391907f2f8788117e7eff1d82e926ec794901d17c78024a50270940304540a733656f0d8180a4600190565b50600090565b6001600160a01b03811660009081527f448256db8f8fb95ee3eaaf89c1051414494e85cebb6057fcf996cc3d0ccfb456602052604090205460ff16611fc8576001600160a01b031660008181527f448256db8f8fb95ee3eaaf89c1051414494e85cebb6057fcf996cc3d0ccfb45660205260408120805460ff191660011790553391907f97667070c54ef182b0f5858b034beac1b6f3089aa2d3188bb1e8929f4fa9b929907f2f8788117e7eff1d82e926ec794901d17c78024a50270940304540a733656f0d9080a4600190565b60008181526000805160206122c5833981519152602090815260408083206001600160a01b038616845290915290205460ff1661213e5760008181526000805160206122c5833981519152602090815260408083206001600160a01b0395909516808452949091528120805460ff19166001179055339291907f2f8788117e7eff1d82e926ec794901d17c78024a50270940304540a733656f0d9080a4600190565b5050600090565b60008181526000805160206122c5833981519152602090815260408083206001600160a01b038616845290915290205460ff161561213e5760008181526000805160206122c5833981519152602090815260408083206001600160a01b0395909516808452949091528120805460ff19169055339291907ff6391f5c32d9c69d2a47ea670b442974b53935d1edc7fd64eb21e047a839171b9080a4600190565b6000805160206122a5833981519152546001600160a01b0316330361220657565b63118cdaa760e01b6000523360045260246000fd5b906000602091828151910182855af1156105b9576000513d61226d57506001600160a01b0381163b155b61224c5750565b635274afe760e01b60009081526001600160a01b0391909116600452602490fd5b60011415612245565b60ff6000805160206122e58339815191525460401c161561229357565b631afcd79f60e31b60005260046000fdfe9016d09d72d40fdae2fd8ceac6b6234c7706214fd39c1cd1e609a0528c19930002dd7bc7dec4dceedda775e58dd541e08a116c6c53815c0bd028192f7b626800f0c57e16840df040f15088dc2f81fe391c3923bec73e23a9662efc9c229c6a00a2646970667358221220a03fbbe281a0beea7632c1723ebb610950c03994e76347c93cc1baa899d6b72b64736f6c634300081c0033",
1299
+ "deployedBytecode": "0x60808060405260043610156100a0575b5036156100275763078d696560e31b60005260046000fd5b6001546000906001600160a01b0316610091573461004157005b303b1561008e5760405163060b0b0f60e41b815260048101829052336024820152818160448134305af180156100835761007757005b8161008191611cea565b005b6040513d84823e3d90fd5b80fd5b63078d696560e31b8152600490fd5b60003560e01c90816301ffc9a714611be6575080630758d92414611bbd57806307bb0a2214611b0857806309295d0914611add5780630e141a9b14611ab75780630f6ca1a814611a4c5780631514617e14611a2e5780632081a88c146119d6578063248a9ca3146119b05780632f2ff15d1461197f5780633197cbb61461196157806336118b521461187657806336568abe14611830578063380d831b146117205780633845cebf146116de5780633cb5d100146116b557806341cf19ba146116975780634b60ce771461166e5780634b8ce6021461165057806360219c7b1461163257806360b0b0f01461138e5780636386c1c71461121e57806366349e3f146111a1578063684d411e1461115f578063692c931a14611141578063715018a6146110d757806378065f27146110ae57806378e97925146110905780637ff9b596146110725780638da5cb5b1461103c57806391d1485414610fe2578063928ba37f14610f1b5780639b23218a14610ef45780639b8906ae14610ed1578063a1db978214610e1f578063a217fddf14610e03578063a8660a7814610de5578063b068375514610dc7578063b6d74568146109eb578063c5c4744c146109cd578063d01c44cd1461088b578063d547741f14610855578063d89031d014610837578063d944392314610811578063db83694c146107a9578063dd19aa5714610778578063e8078d94146103ff578063f1bd27a8146103d6578063f2fde38b146103ad578063f5b541a614610372578063fa09267c1461030c5763feed5561146102e9573861000f565b34610307576000366003190112610307576020601254604051908152f35b600080fd5b3461030757602036600319011261030757600435610328611e0d565b60ff600a54166103615780158015610355575b61034457600e55005b63162908e360e11b60005260046000fd5b5060065481101561033b565b637ce54feb60e11b60005260046000fd5b346103075760003660031901126103075760206040517f97667070c54ef182b0f5858b034beac1b6f3089aa2d3188bb1e8929f4fa9b9298152f35b34610307576020366003190112610307576100816103c9611c39565b6103d16121e5565b611d59565b34610307576000366003190112610307576002546040516001600160a01b039091168152602090f35b600036600319011261030757610413611e0d565b600a5460ff8116156107675760ff8160101c1661075657620100009062ff0000191617600a55606461044a600754600f5490611c96565b60008054600354600e5460405163095ea7b360e01b81526001600160a01b03928316600482015260248101919091529490930493926020928492604492849291165af180156105b957610739575b5060018060a01b0360035416600e546062810290808204606214901517156105c557606490049160628102818104606214821517156105c5576001546064909104906000906001600160a01b0316806105db57505060018060a01b0360005416600e54926107084201948542116105c55760609560c494604051988997889663f305d71960e01b8852600488015260248701526044860152606485015230608485015260a48401525af180156105b9577f38f8a0c92f4c5b0b6877f878cb4c0c8d348a47b76d716c8e78f425043df9515b91604091600091600091610587575b505b82519182526020820152a1005b90506105ab915060603d6060116105b2575b6105a38183611cea565b810190611d3e565b5084610578565b503d610599565b6040513d6000823e3d90fd5b634e487b7160e01b600052601160045260246000fd5b60405163095ea7b360e01b81526001600160a01b0386166004820152602481018590529195949293929190602090829060449082908a905af1801561072e57610701575b5060018060a01b038554169160018060a01b036001541693600e54956107084201928342116106ed57928892610104959260609897956040519a8b998a9862e8e33760e81b8a5260048a0152602489015260448801526064870152608486015260a48501523060c485015260e48401525af190811561008357916040917f38f8a0c92f4c5b0b6877f878cb4c0c8d348a47b76d716c8e78f425043df9515b9382916106cb575b5061057a565b90506106e6915060603d6060116105b2576105a38183611cea565b50846106c5565b634e487b7160e01b89526011600452602489fd5b6107229060203d602011610727575b61071a8183611cea565b810190611d26565b61061f565b503d610710565b6040513d88823e3d90fd5b6107519060203d6020116107275761071a8183611cea565b610498565b630fd02b6d60e41b60005260046000fd5b639d98b04b60e01b60005260046000fd5b3461030757602036600319011261030757600435610794611e0d565b60ff600a541661036157801561034457600c55005b346103075760003660031901126103075761010060045460ff60055460065460075460085491600a54936040519687526020870152604086015260608501526080840152818116151560a0840152818160081c16151560c084015260101c16151560e0820152f35b3461030757600036600319011261030757602060ff600a5460101c166040519015158152f35b34610307576000366003190112610307576020600954604051908152f35b3461030757604036600319011261030757610081600435610874611c4f565b9061088661088182611cc9565b611ed2565b612145565b3461030757600036600319011261030757600a5460ff8160081c16156109bc5760ff16156107675733600052601160205260406000206001810154801561096e57600d5460640390606482116105c5576064916108e791611c96565b0490600b54600c54906108fa8282611d0c565b421061097f575060039190505b0161091481548093611d19565b91821561096e578261092591611d0c565b905560005461094090829033906001600160a01b0316611dcf565b6040519081527fc15eb22beb780252072bdeec94b7fce7b15822d73417b8a4f92640577eb6fceb60203392a2005b6312d37ee560e31b60005260046000fd5b9061099c603c806109936109a19542611d19565b04920485611ca9565b611c96565b918083116109b3575b50600390610907565b915060036109aa565b6371642c7760e11b60005260046000fd5b34610307576000366003190112610307576020600754604051908152f35b34610307576101a036600319011261030757610a05611c39565b610a0d611c4f565b6044356001600160a01b03811690819003610307576064356001600160a01b038116908190036103075760843560a43560c43560e4359161010435936101243595610144359761018435996000805160206122e5833981519152549b60ff8d60401c16159c8d67ffffffffffffffff821680159182610dbf575b506001149081610db5575b159081610dac575b50610d9b5767ffffffffffffffff1981166001176000805160206122e5833981519152558d610d6e575b50610acd612276565b610ad5612276565b610ade33611d59565b610ae6612276565b6001600160a01b03168015610d5d578215610d4c578315610d3b5742851115610d2a5784861115610d2a5786156103445787158015610d20575b6103445788158015610d16575b6103445789158015610d0c575b610344578a15610344578b15610344576001600160601b0360a01b600054161760005560018060a01b03166001600160601b0360a01b60015416176001556001600160601b0360a01b60025416176002556001600160601b0360a01b6003541617600355600455600555600655600e55600f55600d55600c5561016435601055600955610bc633611f1c565b50610bd033611fce565b5060025460405163e5a6b10f60e01b81526001600160a01b0390911690602081600481855afa9081156105b957600091610cc5575b5060405163095ea7b360e01b815260048101929092526000196024830152602090829060449082906000906001600160a01b03165af180156105b957610ca6575b50610c4d57005b68ff0000000000000000196000805160206122e583398151915254166000805160206122e5833981519152557fc7f505b2f371ae2175ee4913f4499e1f2633a7b5936321eed1cdaeb6115181d2602060405160018152a1005b610cbe9060203d6020116107275761071a8183611cea565b5081610c46565b6020813d602011610d04575b81610cde60209383611cea565b81010312610d005751906001600160a01b038216820361008e57506000610c05565b5080fd5b3d9150610cd1565b5060648a11610b3a565b5060648911610b2d565b5086881015610b20565b63b7d0949760e01b60005260046000fd5b631bf06d4d60e31b60005260046000fd5b632b33b1fb60e21b60005260046000fd5b630f58058360e11b60005260046000fd5b68ffffffffffffffffff191668010000000000000001176000805160206122e5833981519152558d610ac4565b63f92ee8a960e01b60005260046000fd5b9050158f610a9a565b303b159150610a92565b91508f610a87565b34610307576000366003190112610307576020600f54604051908152f35b34610307576000366003190112610307576020600b54604051908152f35b3461030757600036600319011261030757602060405160008152f35b3461030757604036600319011261030757610e38611c39565b60243590610e44611e7f565b6001600160a01b0316908115610ec0578015610eaf5760ff600a54161580610e87575b610e7657610081913390611dcf565b63ea8e4eb560e01b60005260046000fd5b506000546001600160a01b0316821480610e6757506001546001600160a01b03168214610e67565b631f2a200560e01b60005260046000fd5b63d92e233d60e01b60005260046000fd5b3461030757600036600319011261030757602060ff600a54166040519015158152f35b3461030757602036600319011261030757600435610f10611e0d565b801561034457600955005b3461030757604036600319011261030757610f34611c39565b610f3c611c4f565b90610f45611e7f565b60ff600a5460101c1615610756576001600160a01b0316908115610ec0576001600160a01b03811615610ec0576040516370a0823160e01b815230600482015290602082602481865afa9182156105b957600092610fae575b508115610eaf5761008192611dcf565b90916020823d602011610fda575b81610fc960209383611cea565b8101031261008e5750519083610f9e565b3d9150610fbc565b3461030757604036600319011261030757610ffb611c4f565b6004356000526000805160206122c583398151915260205260406000209060018060a01b0316600052602052602060ff604060002054166040519015158152f35b34610307576000366003190112610307576000805160206122a5833981519152546040516001600160a01b039091168152602090f35b34610307576000366003190112610307576020600854604051908152f35b34610307576000366003190112610307576020600454604051908152f35b34610307576000366003190112610307576001546040516001600160a01b039091168152602090f35b34610307576000366003190112610307576110f06121e5565b6000805160206122a583398151915280546001600160a01b031981169091556000906001600160a01b03167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e08280a3005b34610307576000366003190112610307576020601054604051908152f35b346103075760203660031901126103075760043561117b611e0d565b60ff600a54166103615780158015611197575b61034457600f55005b506064811161118e565b34610307576020366003190112610307576004356012548110156111e3576111ca602091611c65565b905460405160039290921b1c6001600160a01b03168152f35b60405162461bcd60e51b8152602060048201526013602482015272496e646578206f7574206f6620626f756e647360681b6044820152606490fd5b3461030757602036600319011261030757611237611c39565b6000809160018060a01b0316825260116020526040822091825491600184015460ff60028601541694600460038201549101549160ff600a5460081c1680611385575b6112ab575b9560e0966040519687526020870152151560408601526060850152608084015260a083015260c0820152f35b9395801561136e575b600d546064036064811161135a57968260646112d260e09a89611c96565b048290600b54600c54906112e68282611d0c565b421061131357505090505b8181111561130c576113039250611d19565b9490965061127f565b5050611303565b804211611323575b5050506112f1565b611342929350603c8061133961099c9342611d19565b04920484611ca9565b90808211611352575b808061131b565b90508a61134b565b634e487b7160e01b88526011600452602488fd5b9250606461137e600d5486611c96565b04926112b4565b5080151561127a565b6040366003190112610307576004356113a5611c4f565b60045442108015611627575b611616576001546001600160a01b0316806115c9575034913415610eaf576115b8575b6001600160a01b0316600081815260116020526040902080549192911561155d575b611401828254611d0c565b815561140f82600754611d0c565b60075561142160045460105490611d0c565b42111580611551575b61145d575b5060207f62722348256371b5147820d6cad90c40fd2da1ccee18c3ed52c0bca5a61dbbab91604051908152a2005b600090670de0b6b3a764000061147560095485611c96565b04602060018060a01b036002541660446040518096819363307ada3960e21b83528660048401528a60248401525af19182156105b9578593600093611517575b50604083602095937f62722348256371b5147820d6cad90c40fd2da1ccee18c3ed52c0bca5a61dbbab979560047fdb4445d4f94b7320d1834734c8c6f93a74a25048fc5295cac114fe2734d8e348950155825191825286820152a2915061142f565b919350916020823d602011611549575b8161153460209383611cea565b8101031261008e5750518492909160406114b5565b3d9150611527565b5060048101541561142a565b601254680100000000000000008110156115a2578060016115819201601255611c65565b81546001600160a01b0360039290921b91821b19169085901b1790556113f6565b634e487b7160e01b600052604160045260246000fd5b63078d696560e31b60005260046000fd5b91346115b8578015610eaf57806116119193604051916323b872dd60e01b602084015233602484015230604484015260648301526064825261160c608483611cea565b61221b565b6113d4565b63b7b2409760e01b60005260046000fd5b5060055442116113b1565b34610307576000366003190112610307576020600654604051908152f35b34610307576000366003190112610307576020600e54604051908152f35b34610307576000366003190112610307576000546040516001600160a01b039091168152602090f35b34610307576000366003190112610307576020600d54604051908152f35b3461030757602036600319011261030757600435601254811015610307576111ca602091611c65565b34610307576020366003190112610307576004356116fa611e0d565b60ff600a54166103615780158015611716575b61034457600d55005b506064811161170d565b3461030757600036600319011261030757611739611e0d565b60055442111561076757600a5460ff81166103615760ff1916600117600a556007541561182657600754670de0b6b3a7640000810290808204670de0b6b3a764000014901517156105c55760065461179091611ca9565b6008555b60005b6012548110156117ec57806117ad600192611c65565b838060a01b0391549060031b1c1660005260116020526040600020826117e36117da835460065490611c96565b60075490611ca9565b91015501611797565b42600b557fce4010416b0dec196298b584ceebdd43ecf89e6c03007517c3a7f4403db6c212604060075460085482519182526020820152a1005b6000600855611794565b3461030757604036600319011261030757611849611c4f565b336001600160a01b038216036118655761008190600435612145565b63334bd91960e11b60005260046000fd5b34610307576040366003190112610307576024356001600160a01b0381169060043590829003610307576118a8611e7f565b60ff600a541615610767578015610eaf578115610ec05780471061195057600080808084865af13d1561194b573d67ffffffffffffffff81116115a257604051906118fd601f8201601f191660200183611cea565b8152600060203d92013e5b1561193a5760207f94b2de810873337ed265c5f8cf98c9cffefa06b8607f9a2f1fbaebdfbcfbef1c91604051908152a2005b63b12d13eb60e01b60005260046000fd5b611908565b631e9acf1760e31b60005260046000fd5b34610307576000366003190112610307576020600554604051908152f35b346103075760403660031901126103075761008160043561199e611c4f565b906119ab61088182611cc9565b61209c565b346103075760203660031901126103075760206119ce600435611cc9565b604051908152f35b34610307576000366003190112610307576119ef611e0d565b600a5460ff8116156107675761ff00191661010017600a557f25b238f97b16f614c2cc471460ad0d72c33c632bde1300d098e531ed9b5a627a600080a1005b34610307576000366003190112610307576020600c54604051908152f35b34610307576020366003190112610307576001600160a01b03611a6d611c39565b16600052601160205260a0604060002080549060018101549060ff600282015416600460038301549201549260405194855260208501521515604084015260608301526080820152f35b3461030757600036600319011261030757602060ff600a5460081c166040519015158152f35b3461030757602036600319011261030757611af6611e0d565b60ff600a541661036157600435601055005b346103075760003660031901126103075760ff600a5460081c16156109bc573360005260116020526040600020600181015490811561096e5760020180549160ff8316611bac576064611b60600192600d5490611c96565b049260ff1916179055611b7e813360018060a01b0360005416611dcf565b6040519081527f1db3d897126a63b6e2ce74502c05c2867d4246724fb12e092410859138231dc260203392a2005b630c8d9eab60e31b60005260046000fd5b34610307576000366003190112610307576003546040516001600160a01b039091168152602090f35b34610307576020366003190112610307576004359063ffffffff60e01b821680920361030757602091637965db0b60e01b8114908115611c28575b5015158152f35b6301ffc9a760e01b14905083611c21565b600435906001600160a01b038216820361030757565b602435906001600160a01b038216820361030757565b601254811015611c8057601260005260206000200190600090565b634e487b7160e01b600052603260045260246000fd5b818102929181159184041417156105c557565b8115611cb3570490565b634e487b7160e01b600052601260045260246000fd5b6000526000805160206122c583398151915260205260016040600020015490565b90601f8019910116810190811067ffffffffffffffff8211176115a257604052565b919082018092116105c557565b919082039182116105c557565b90816020910312610307575180151581036103075790565b90816060910312610307578051916040602083015192015190565b6001600160a01b03168015611db9576000805160206122a583398151915280546001600160a01b0319811683179091556001600160a01b03167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0600080a3565b631e4fbdf760e01b600052600060045260246000fd5b60405163a9059cbb60e01b60208201526001600160a01b03929092166024830152604480830193909352918152611e0b9161160c606483611cea565b565b3360009081527f448256db8f8fb95ee3eaaf89c1051414494e85cebb6057fcf996cc3d0ccfb456602052604090205460ff1615611e4657565b63e2517d3f60e01b600052336004527f97667070c54ef182b0f5858b034beac1b6f3089aa2d3188bb1e8929f4fa9b92960245260446000fd5b3360009081527fb7db2dd08fcb62d0c9e08c51941cae53c267786a0b75803fb7960902fc8ef97d602052604090205460ff1615611eb857565b63e2517d3f60e01b60005233600452600060245260446000fd5b60008181526000805160206122c58339815191526020908152604080832033845290915290205460ff1615611f045750565b63e2517d3f60e01b6000523360045260245260446000fd5b6001600160a01b03811660009081527fb7db2dd08fcb62d0c9e08c51941cae53c267786a0b75803fb7960902fc8ef97d602052604090205460ff16611fc8576001600160a01b031660008181527fb7db2dd08fcb62d0c9e08c51941cae53c267786a0b75803fb7960902fc8ef97d60205260408120805460ff191660011790553391907f2f8788117e7eff1d82e926ec794901d17c78024a50270940304540a733656f0d8180a4600190565b50600090565b6001600160a01b03811660009081527f448256db8f8fb95ee3eaaf89c1051414494e85cebb6057fcf996cc3d0ccfb456602052604090205460ff16611fc8576001600160a01b031660008181527f448256db8f8fb95ee3eaaf89c1051414494e85cebb6057fcf996cc3d0ccfb45660205260408120805460ff191660011790553391907f97667070c54ef182b0f5858b034beac1b6f3089aa2d3188bb1e8929f4fa9b929907f2f8788117e7eff1d82e926ec794901d17c78024a50270940304540a733656f0d9080a4600190565b60008181526000805160206122c5833981519152602090815260408083206001600160a01b038616845290915290205460ff1661213e5760008181526000805160206122c5833981519152602090815260408083206001600160a01b0395909516808452949091528120805460ff19166001179055339291907f2f8788117e7eff1d82e926ec794901d17c78024a50270940304540a733656f0d9080a4600190565b5050600090565b60008181526000805160206122c5833981519152602090815260408083206001600160a01b038616845290915290205460ff161561213e5760008181526000805160206122c5833981519152602090815260408083206001600160a01b0395909516808452949091528120805460ff19169055339291907ff6391f5c32d9c69d2a47ea670b442974b53935d1edc7fd64eb21e047a839171b9080a4600190565b6000805160206122a5833981519152546001600160a01b0316330361220657565b63118cdaa760e01b6000523360045260246000fd5b906000602091828151910182855af1156105b9576000513d61226d57506001600160a01b0381163b155b61224c5750565b635274afe760e01b60009081526001600160a01b0391909116600452602490fd5b60011415612245565b60ff6000805160206122e58339815191525460401c161561229357565b631afcd79f60e31b60005260046000fdfe9016d09d72d40fdae2fd8ceac6b6234c7706214fd39c1cd1e609a0528c19930002dd7bc7dec4dceedda775e58dd541e08a116c6c53815c0bd028192f7b626800f0c57e16840df040f15088dc2f81fe391c3923bec73e23a9662efc9c229c6a00a2646970667358221220a03fbbe281a0beea7632c1723ebb610950c03994e76347c93cc1baa899d6b72b64736f6c634300081c0033",
1300
+ "linkReferences": {},
1301
+ "deployedLinkReferences": {}
1302
+ }