-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathproject_1_superPAD
1279 lines (1087 loc) · 39.2 KB
/
project_1_superPAD
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
//"SPDX-License-Identifier:UNLICENSE"
pragma solidity ^0.8.4;
contract Token{
event tge(address,address,address,address,address,bool);
event mon1(address,address,address,bool);
event mon2(address,address,address,bool);
event mon3(address,address,address,bool);
event mon4(address,address,address,bool);
event mon5(address,address,address,bool);
event mon6(address,address,address,bool);
event mon7(address,address,address,bool);
event mon8(address,address,address,bool);
event mon9(address,address,address,bool);
event mon10(address,address,address,bool);
event mon11(address,address,address,bool);
event mon12(address,address,address,bool);
event mon13(address,address,address,address,bool);
event mon14(address,address,address,address,bool);
event mon15(address,address,address,address,bool);
event mon16(address,address,address,address,bool);
event mon17(address,address,address,address,bool);
event mon18(address,address,address,address,bool);
event mon19(address,address,address,address,bool);
event mon20(address,address,address,address,bool);
event mon21(address,address,address,address,bool);
event mon22(address,address,address,address,bool);
event mon23(address,address,address,address,bool);
event mon24(address,address,address,address,bool);
modifier onlyOwner{
require(owner_of_superPAD == msg.sender ,"not owner");
_;
}
mapping (address => uint) balance;
address owner_of_superPAD ;
uint public totalsupply = 200000000 *10 **18;
string public name = "SUPERPAD";
string public symbol = "SPAD";
uint public decimal=18;
uint _private ;
uint _team ;
uint _liquidity ;
uint _market ;
uint _reserve ;
uint _public ;
uint _reward ;
// ganache addresses //
address private_ = 0x617F2E2fD72FD9D5503197092aC168c91465E7f2 ;
address team_ = 0x5c6B0f7Bf3E7ce046039Bd8FABdfD3f9F5021678;
address liquidity_ = 0x17F6AD8Ef982297579C203069C1DbfFE4348c372 ;
address market_ = 0x03C6FcED478cBbC9a4FAB34eF9f40767739D1Ff7;
address reserve_ = 0x78731D3Ca6b7E34aC0F824c42a7cC18A495cabaB ;
address public_ = 0x4B20993Bc481177ec7E8f571ceCaE8A9e22C02db ;
address reward_ = 0xAb8483F64d9C6d1EcF9b849Ae677dD3315835cb2 ;
// monthly //
uint deploy_time_month = block.timestamp;
uint timelock_1_months = deploy_time_month + 2628288;
uint timelock_2_months = timelock_1_months + 2628288;
uint timelock_3_months = timelock_2_months + 2628288;
uint timelock_4_months = timelock_3_months + 2628288;
uint timelock_5_months = timelock_4_months + 2628288;
uint timelock_6_months = timelock_5_months + 2628288;
uint timelock_7_months = timelock_6_months + 2628288;
uint timelock_8_months = timelock_7_months + 2628288;
uint timelock_9_months = timelock_8_months + 2628288;
uint timelock_10_months = timelock_9_months + 2628288;
uint timelock_11_months = timelock_10_months + 2628288;
uint timelock_12_months = timelock_11_months + 2628288;
uint timelock_13_months = timelock_12_months + 2628288;
uint timelock_14_months = timelock_13_months + 2628288;
uint timelock_15_months = timelock_14_months + 2628288;
uint timelock_16_months = timelock_15_months + 2628288;
uint timelock_17_months = timelock_16_months + 2628288;
uint timelock_18_months = timelock_17_months + 2628288;
uint timelock_19_months = timelock_18_months + 2628288;
uint timelock_20_months = timelock_19_months + 2628288;
uint timelock_21_months = timelock_20_months + 2628288;
uint timelock_22_months = timelock_21_months + 2628288;
uint timelock_23_months = timelock_22_months + 2628288;
uint timelock_24_months = timelock_23_months + 2628288;
modifier month_1(){
require(timelock_1_months < block.timestamp,"can't unlock now");
_;
}
modifier month_2(){
require(timelock_2_months < block.timestamp,"can't unlock now");
_;
}
modifier month_3(){
require(timelock_3_months < block.timestamp,"can't unlock now");
_;
}
modifier month_4(){
require(timelock_4_months < block.timestamp,"can't unlock now");
_;
}
modifier month_5(){
require(timelock_5_months < block.timestamp,"can't unlock now");
_;
}
modifier month_6(){
require(timelock_6_months < block.timestamp,"can't unlock now");
_;
}
modifier month_7(){
require(timelock_7_months < block.timestamp,"can't unlock now");
_;
}
modifier month_8(){
require(timelock_8_months < block.timestamp,"can't unlock now");
_;
}
modifier month_9(){
require(timelock_9_months < block.timestamp,"can't unlock now");
_;
}
modifier month_10(){
require(timelock_10_months < block.timestamp,"can't unlock now");
_;
}
modifier month_11(){
require(timelock_11_months < block.timestamp,"can't unlock now");
_;
}
modifier month_12(){
require(timelock_12_months < block.timestamp,"can't unlock now");
_;
}
modifier month_13(){
require(timelock_13_months < block.timestamp,"can't unlock now");
_;
}
modifier month_14(){
require(timelock_14_months < block.timestamp,"can't unlock now");
_;
}
modifier month_15(){
require(timelock_15_months < block.timestamp,"can't unlock now");
_;
}
modifier month_16(){
require(timelock_16_months < block.timestamp,"can't unlock now");
_;
}
modifier month_17(){
require(timelock_17_months < block.timestamp,"can't unlock now");
_;
}
modifier month_18(){
require(timelock_18_months < block.timestamp,"can't unlock now");
_;
}
modifier month_19(){
require(timelock_19_months < block.timestamp,"can't unlock now");
_;
}
modifier month_20(){
require(timelock_20_months < block.timestamp,"can't unlock now");
_;
}
modifier month_21(){
require(timelock_21_months < block.timestamp,"can't unlock now");
_;
}
modifier month_22(){
require(timelock_22_months < block.timestamp,"can't unlock now");
_;
}
modifier month_23(){
require(timelock_23_months < block.timestamp,"can't unlock now");
_;
}
modifier month_24(){
require(timelock_24_months < block.timestamp,"can't unlock now");
_;
}
constructor() {
owner_of_superPAD = msg.sender;
balance[msg.sender] = totalsupply;
}
function balanceOf(address _owner) public view returns(uint){
return balance[_owner];
}
function token() public view onlyOwner returns (uint) {
return balance[msg.sender];
}
function TGE() public onlyOwner returns(bool) {
_reward = 4000000 *10**18;
_market = 1000000 *10**18;
_liquidity = 6000000 *10**18;
_private = 256410.2564 *10**18;
_public = 3846153.846 *10**18;
balance[msg.sender] -= _public;
balance[public_] += _public;
balance[msg.sender] -= _private;
balance[private_] += _private;
balance[msg.sender] -= _reward;
balance[reward_] += _reward;
balance[msg.sender] -= _market;
balance[market_] += _market;
balance[msg.sender] -= _liquidity;
balance[liquidity_] += _liquidity;
emit tge(reward_,market_,liquidity_,private_,public_,true);
return true;
}
function month1() public onlyOwner month_1 returns(bool) {
_reward = 1500000 *10**18;
_market = 791666.666 *10**18;
_liquidity = 2000000 *10**18;
balance[msg.sender] -= _reward;
balance[reward_] += _reward;
balance[msg.sender] -= _market;
balance[market_] += _market;
balance[msg.sender] -= _liquidity;
balance[liquidity_] += _liquidity;
emit mon1(reward_,market_,liquidity_,true);
return true;
}
function month2() public onlyOwner month_2 returns(bool) {
_reward = 1500000 *10**18;
_market = 791666.666 *10**18;
_liquidity = 2000000 *10**18;
balance[msg.sender] -= _reward;
balance[reward_] += _reward;
balance[msg.sender] -= _market;
balance[market_] += _market;
balance[msg.sender] -= _liquidity;
balance[liquidity_] += _liquidity;
emit mon2(reward_,market_,liquidity_,true);
return true;
}
function month3() public onlyOwner month_3 returns(bool) {
_reward = 1500000 *10**18;
_market = 791666.666 *10**18;
_liquidity = 2000000 *10**18;
balance[msg.sender] -= _reward;
balance[reward_] += _reward;
balance[msg.sender] -= _market;
balance[market_] += _market;
balance[msg.sender] -= _liquidity;
balance[liquidity_] += _liquidity;
emit mon3(reward_,market_,liquidity_,true);
return true;
}
function month4() public onlyOwner month_4 returns(bool) {
_reward = 1500000 *10**18;
_market = 791666.666 *10**18;
_liquidity = 2000000 *10**18;
balance[msg.sender] -= _reward;
balance[reward_] += _reward;
balance[msg.sender] -= _market;
balance[market_] += _market;
balance[msg.sender] -= _liquidity;
balance[liquidity_] += _liquidity;
emit mon4(reward_,market_,liquidity_,true);
return true;
}
function month5() public onlyOwner month_5 returns(bool) {
_reward = 1500000 *10**18;
_market = 791666.666 *10**18;
_liquidity = 2000000 *10**18;
balance[msg.sender] -= _reward;
balance[reward_] += _reward;
balance[msg.sender] -= _market;
balance[market_] += _market;
balance[msg.sender] -= _liquidity;
balance[liquidity_] += _liquidity;
emit mon6(reward_,market_,liquidity_,true);
return true;
}
function month6() public onlyOwner month_6 returns(bool) {
_reward = 1500000 *10**18;
_market = 791666.666 *10**18;
_liquidity = 2000000 *10**18;
balance[msg.sender] -= _reward;
balance[reward_] += _reward;
balance[msg.sender] -= _market;
balance[market_] += _market;
balance[msg.sender] -= _liquidity;
balance[liquidity_] += _liquidity;
emit mon7(reward_,market_,liquidity_,true);
return true;
}
function month7() public onlyOwner month_7 returns(bool) {
_reward = 1500000 *10**18;
_market = 791666.666 *10**18;
_liquidity = 2000000 *10**18;
balance[msg.sender] -= _reward;
balance[reward_] += _reward;
balance[msg.sender] -= _market;
balance[market_] += _market;
balance[msg.sender] -= _liquidity;
balance[liquidity_] += _liquidity;
emit mon7(reward_,market_,liquidity_,true);
return true;
}
function month8() public onlyOwner month_8 returns(bool) {
_reward = 1500000 *10**18;
_market = 791666.666 *10**18;
_liquidity = 2000000 *10**18;
balance[msg.sender] -= _reward;
balance[reward_] += _reward;
balance[msg.sender] -= _market;
balance[market_] += _market;
balance[msg.sender] -= _liquidity;
balance[liquidity_] += _liquidity;
emit mon8(reward_,market_,liquidity_,true);
return true;
}
function month9() public onlyOwner month_9 returns(bool) {
_reward = 1500000 *10**18;
_market = 791666.666 *10**18;
_liquidity = 2000000 *10**18;
balance[msg.sender] -= _reward;
balance[reward_] += _reward;
balance[msg.sender] -= _market;
balance[market_] += _market;
balance[msg.sender] -= _liquidity;
balance[liquidity_] += _liquidity;
emit mon9(reward_,market_,liquidity_,true);
return true;
}
function month10() public onlyOwner month_10 returns(bool) {
_reward = 1500000 *10**18;
_market = 791666.666 *10**18;
_liquidity = 2000000 *10**18;
balance[msg.sender] -= _reward;
balance[reward_] += _reward;
balance[msg.sender] -= _market;
balance[market_] += _market;
balance[msg.sender] -= _liquidity;
balance[liquidity_] += _liquidity;
emit mon10(reward_,market_,liquidity_,true);
return true;
}
function month11() public onlyOwner month_11 returns(bool) {
_reward = 1500000 *10**18;
_market = 791666.666 *10**18;
_liquidity = 2000000 *10**18;
balance[msg.sender] -= _reward;
balance[reward_] += _reward;
balance[msg.sender] -= _market;
balance[market_] += _market;
balance[msg.sender] -= _liquidity;
balance[liquidity_] += _liquidity;
emit mon11(reward_,market_,liquidity_,true);
return true;
}
function month12() public onlyOwner month_12 returns(bool) {
_reward = 1500000 *10**18;
_market = 791666.666 *10**18;
_liquidity = 2000000 *10**18;
balance[msg.sender] -= _reward;
balance[reward_] += _reward;
balance[msg.sender] -= _market;
balance[market_] += _market;
balance[msg.sender] -= _liquidity;
balance[liquidity_] += _liquidity;
emit mon12(reward_,market_,liquidity_,true);
return true;
}
function month13() public onlyOwner month_13 returns(bool) {
_reward = 1500000 *10**18;
_market = 791666.666 *10**18;
_team = 2500000 *10**18;
_reserve = 3333333.3333333 *10**18;
balance[msg.sender] -= _reward;
balance[reward_] += _reward;
balance[msg.sender] -= _market;
balance[market_] += _market;
balance[msg.sender] -= _team;
balance[team_] += _team;
balance[msg.sender] -= _reserve;
balance[reserve_] += _reserve;
emit mon13(reward_,market_,team_,reserve_,true);
return true;
}
function month14() public onlyOwner month_14 returns(bool) {
_reward = 1500000 *10**18;
_market = 791666.666 *10**18;
_team = 2500000 *10**18;
_reserve = 3333333.3333333 *10**18;
balance[msg.sender] -= _reward;
balance[reward_] += _reward;
balance[msg.sender] -= _market;
balance[market_] += _market;
balance[msg.sender] -= _team;
balance[team_] += _team;
balance[msg.sender] -= _reserve;
balance[reserve_] += _reserve;
emit mon14(reward_,market_,team_,reserve_,true);
return true;
}
function month15() public onlyOwner month_15 returns(bool) {
_reward = 1500000 *10**18;
_market = 791666.666 *10**18;
_team = 2500000 *10**18;
_reserve = 3333333.3333333 *10**18;
balance[msg.sender] -= _reward;
balance[reward_] += _reward;
balance[msg.sender] -= _market;
balance[market_] += _market;
balance[msg.sender] -= _team;
balance[team_] += _team;
balance[msg.sender] -= _reserve;
balance[reserve_] += _reserve;
emit mon15(reward_,market_,team_,reserve_,true);
return true;
}
function month16() public onlyOwner month_16 returns(bool) {
_reward = 1500000 *10**18;
_market = 791666.666 *10**18;
_team = 2500000 *10**18;
_reserve = 3333333.3333333 *10**18;
balance[msg.sender] -= _reward;
balance[reward_] += _reward;
balance[msg.sender] -= _market;
balance[market_] += _market;
balance[msg.sender] -= _team;
balance[team_] += _team;
balance[msg.sender] -= _reserve;
balance[reserve_] += _reserve;
emit mon16(reward_,market_,team_,reserve_,true);
return true;
}
function month17() public onlyOwner month_17 returns(bool) {
_reward = 1500000 *10**18;
_market = 791666.666 *10**18;
_team = 2500000 *10**18;
_reserve = 3333333.3333333 *10**18;
balance[msg.sender] -= _reward;
balance[reward_] += _reward;
balance[msg.sender] -= _market;
balance[market_] += _market;
balance[msg.sender] -= _team;
balance[team_] += _team;
balance[msg.sender] -= _reserve;
balance[reserve_] += _reserve;
emit mon17(reward_,market_,team_,reserve_,true);
return true;
}
function month18() public onlyOwner month_18 returns(bool) {
_reward = 1500000 *10**18;
_market = 791666.666 *10**18;
_team = 2500000 *10**18;
_reserve = 3333333.3333333 *10**18;
balance[msg.sender] -= _reward;
balance[reward_] += _reward;
balance[msg.sender] -= _market;
balance[market_] += _market;
balance[msg.sender] -= _team;
balance[team_] += _team;
balance[msg.sender] -= _reserve;
balance[reserve_] += _reserve;
emit mon18(reward_,market_,team_,reserve_,true);
return true;
}
function month19() public onlyOwner month_19 returns(bool) {
_reward = 1500000 *10**18;
_market = 791666.666 *10**18;
_team = 2500000 *10**18;
_reserve = 3333333.3333333 *10**18;
balance[msg.sender] -= _reward;
balance[reward_] += _reward;
balance[msg.sender] -= _market;
balance[market_] += _market;
balance[msg.sender] -= _team;
balance[team_] += _team;
balance[msg.sender] -= _reserve;
balance[reserve_] += _reserve;
emit mon19(reward_,market_,team_,reserve_,true);
return true;
}
function month20() public onlyOwner month_20 returns(bool) {
_reward = 1500000 *10**18;
_market = 791666.666 *10**18;
_team = 2500000 *10**18;
_reserve = 3333333.3333333 *10**18;
balance[msg.sender] -= _reward;
balance[reward_] += _reward;
balance[msg.sender] -= _market;
balance[market_] += _market;
balance[msg.sender] -= _team;
balance[team_] += _team;
balance[msg.sender] -= _reserve;
balance[reserve_] += _reserve;
emit mon20(reward_,market_,team_,reserve_,true);
return true;
}
function month21() public onlyOwner month_21 returns(bool) {
_reward = 1500000 *10**18;
_market = 791666.666 *10**18;
_team = 2500000 *10**18;
_reserve = 3333333.3333333 *10**18;
balance[msg.sender] -= _reward;
balance[reward_] += _reward;
balance[msg.sender] -= _market;
balance[market_] += _market;
balance[msg.sender] -= _team;
balance[team_] += _team;
balance[msg.sender] -= _reserve;
balance[reserve_] += _reserve;
emit mon21(reward_,market_,team_,reserve_,true);
return true;
}
function month22() public onlyOwner month_22 returns(bool) {
_reward = 1500000 *10**18;
_market = 791666.666 *10**18;
_team = 2500000 *10**18;
_reserve = 3333333.3333333 *10**18;
balance[msg.sender] -= _reward;
balance[reward_] += _reward;
balance[msg.sender] -= _market;
balance[market_] += _market;
balance[msg.sender] -= _team;
balance[team_] += _team;
balance[msg.sender] -= _reserve;
balance[reserve_] += _reserve;
emit mon22(reward_,market_,team_,reserve_,true);
return true;
}
function month23() public onlyOwner month_23 returns(bool) {
_reward = 1500000 *10**18;
_market = 791666.666 *10**18;
_team = 2500000 *10**18;
_reserve = 3333333.3333333 *10**18;
balance[msg.sender] -= _reward;
balance[reward_] += _reward;
balance[msg.sender] -= _market;
balance[market_] += _market;
balance[msg.sender] -= _team;
balance[team_] += _team;
balance[msg.sender] -= _reserve;
balance[reserve_] += _reserve;
emit mon23(reward_,market_,team_,reserve_,true);
return true;
}
function month24() public onlyOwner month_24 returns(bool) {
_reward = 1500000 *10**18;
_market = 791666.666 *10**18;
_team = 2500000 *10**18;
_reserve = 3333333.3333333 *10**18;
balance[msg.sender] -= _reward;
balance[reward_] += _reward;
balance[msg.sender] -= _market;
balance[market_] += _market;
balance[msg.sender] -= _team;
balance[team_] += _team;
balance[msg.sender] -= _reserve;
balance[reserve_] += _reserve;
emit mon24(reward_,market_,team_,reserve_,true);
return true;
}
// monthly completed //
// weekly //
uint deploy_time_week = block.timestamp;
uint timelock_1_week = deploy_time_week + 604800;
uint timelock_2_week = timelock_1_week + 604800;
uint timelock_3_week = timelock_2_week + 604800;
uint timelock_4_week = timelock_3_week + 604800;
uint timelock_5_week = timelock_4_week + 604800;
uint timelock_6_week = timelock_5_week + 604800;
uint timelock_7_week = timelock_6_week + 604800;
uint timelock_8_week = timelock_7_week + 604800;
uint timelock_9_week = timelock_8_week + 604800;
uint timelock_10_week = timelock_9_week + 604800;
uint timelock_11_week = timelock_10_week + 604800;
uint timelock_12_week = timelock_11_week + 604800;
uint timelock_13_week = timelock_12_week + 604800;
uint timelock_14_week = timelock_13_week + 604800;
uint timelock_15_week = timelock_14_week + 604800;
uint timelock_16_week = timelock_15_week + 604800;
uint timelock_17_week = timelock_16_week + 604800;
uint timelock_18_week = timelock_17_week + 604800;
uint timelock_19_week = timelock_18_week + 604800;
uint timelock_20_week = timelock_19_week + 604800;
uint timelock_21_week = timelock_20_week + 604800;
uint timelock_22_week = timelock_21_week + 604800;
uint timelock_23_week = timelock_22_week + 604800;
uint timelock_24_week = timelock_23_week + 604800;
uint timelock_25_week = timelock_24_week + 604800;
uint timelock_26_week = timelock_25_week + 604800;
uint timelock_27_week = timelock_26_week + 604800;
uint timelock_28_week = timelock_27_week + 604800;
uint timelock_29_week = timelock_28_week + 604800;
uint timelock_30_week = timelock_29_week + 604800;
uint timelock_31_week = timelock_30_week + 604800;
uint timelock_32_week = timelock_31_week + 604800;
uint timelock_33_week = timelock_32_week + 604800;
uint timelock_34_week = timelock_33_week + 604800;
uint timelock_35_week = timelock_34_week + 604800;
uint timelock_36_week = timelock_35_week + 604800;
uint timelock_37_week = timelock_36_week + 604800;
uint timelock_38_week = timelock_37_week + 604800;
uint timelock_39_week = timelock_38_week + 604800;
modifier week_1(){
require(timelock_1_week < block.timestamp,"can't unlock now");
_;
}
modifier week_2(){
require(timelock_2_week < block.timestamp,"can't unlock now");
_;
}
modifier week_3(){
require(timelock_3_week < block.timestamp,"can't unlock now");
_;
}
modifier week_4(){
require(timelock_4_week < block.timestamp,"can't unlock now");
_;
}
modifier week_5(){
require(timelock_5_week < block.timestamp,"can't unlock now");
_;
}
modifier week_6(){
require(timelock_6_week < block.timestamp,"can't unlock now");
_;
}
modifier week_7(){
require(timelock_7_week < block.timestamp,"can't unlock now");
_;
}
modifier week_8(){
require(timelock_8_week < block.timestamp,"can't unlock now");
_;
}
modifier week_9(){
require(timelock_9_week < block.timestamp,"can't unlock now");
_;
}
modifier week_10(){
require(timelock_10_week < block.timestamp,"can't unlock now");
_;
}
modifier week_11(){
require(timelock_11_week < block.timestamp,"can't unlock now");
_;
}
modifier week_12(){
require(timelock_12_week < block.timestamp,"can't unlock now");
_;
}
modifier week_13(){
require(timelock_13_week < block.timestamp,"can't unlock now");
_;
}
modifier week_14(){
require(timelock_14_week < block.timestamp,"can't unlock now");
_;
}
modifier week_15(){
require(timelock_15_week < block.timestamp,"can't unlock now");
_;
}
modifier week_16(){
require(timelock_16_week < block.timestamp,"can't unlock now");
_;
}
modifier week_17(){
require(timelock_17_week < block.timestamp,"can't unlock now");
_;
}
modifier week_18(){
require(timelock_18_week < block.timestamp,"can't unlock now");
_;
}
modifier week_19(){
require(timelock_19_week < block.timestamp,"can't unlock now");
_;
}
modifier week_20(){
require(timelock_20_week < block.timestamp,"can't unlock now");
_;
}
modifier week_21(){
require(timelock_21_week < block.timestamp,"can't unlock now");
_;
}
modifier week_22(){
require(timelock_22_week < block.timestamp,"can't unlock now");
_;
}
modifier week_23(){
require(timelock_23_week < block.timestamp,"can't unlock now");
_;
}
modifier week_24(){
require(timelock_24_week < block.timestamp,"can't unlock now");
_;
}
modifier week_25(){
require(timelock_25_week < block.timestamp,"can't unlock now");
_;
}
modifier week_26(){
require(timelock_26_week < block.timestamp,"can't unlock now");
_;
}
modifier week_27(){
require(timelock_27_week < block.timestamp,"can't unlock now");
_;
}
modifier week_28(){
require(timelock_28_week < block.timestamp,"can't unlock now");
_;
}
modifier week_29(){
require(timelock_29_week < block.timestamp,"can't unlock now");
_;
}
modifier week_30(){
require(timelock_30_week < block.timestamp,"can't unlock now");
_;
}
modifier week_31(){
require(timelock_31_week < block.timestamp,"can't unlock now");
_;
}
modifier week_32(){
require(timelock_32_week < block.timestamp,"can't unlock now");
_;
}
modifier week_33(){
require(timelock_33_week < block.timestamp,"can't unlock now");
_;
}
modifier week_34(){
require(timelock_34_week < block.timestamp,"can't unlock now");
_;
}
modifier week_35(){
require(timelock_35_week < block.timestamp,"can't unlock now");
_;
}
modifier week_36(){
require(timelock_36_week < block.timestamp,"can't unlock now");
_;
}
modifier week_37(){
require(timelock_37_week < block.timestamp,"can't unlock now");
_;
}
modifier week_38(){
require(timelock_38_week < block.timestamp,"can't unlock now");
_;
}
event week1_(address,address);
event week2_(address,address);
event week3_(address,address);
event week4_(address,address);
event week5_(address,address);
event week6_(address,address);
event week7_(address,address);
event week8_(address,address);
event week9_(address,address);
event week10_(address,address);
event week11_(address,address);
event week12_(address,address);
event week13_(address);
event week14_(address);
event week15_(address);
event week16_(address);
event week17_(address);
event week18_(address);
event week19_(address);
event week20_(address);
event week21_(address);
event week22_(address);
event week23_(address);
event week24_(address);
event week25_(address);
event week26_(address);
event week27_(address);
event week28_(address);
event week29_(address);
event week30_(address);
event week31_(address);
event week32_(address);
event week33_(address);
event week34_(address);
event week35_(address);
event week36_(address);
event week37_(address);
event week38_(address);
function week1() public onlyOwner week_1 returns(bool){
_private = 256410.2564 *10**18;
_public = 3846153.846 *10**18;
balance[msg.sender] -= _public;
balance[public_] += _public;
balance[msg.sender] -= _private;
balance[private_] += _private;
emit week1_(private_,public_);
return true;
}
function week2() public onlyOwner week_2 returns(bool){
_private = 256410.2564 *10**18;
_public = 3846153.846 *10**18;
balance[msg.sender] -= _public;
balance[public_] += _public;
balance[msg.sender] -= _private;
balance[private_] += _private;
emit week2_(private_,public_);
return true;
}
function week3() public onlyOwner week_3 returns(bool){
_private = 256410.2564 *10**18;
_public = 3846153.846 *10**18;
balance[msg.sender] -= _public;
balance[public_] += _public;
balance[msg.sender] -= _private;
balance[private_] += _private;
emit week3_(private_,public_);
return true;
}
function week4() public onlyOwner week_4 returns(bool){
_private = 256410.2564 *10**18;
_public = 3846153.846 *10**18;
balance[msg.sender] -= _public;
balance[public_] += _public;
balance[msg.sender] -= _private;
balance[private_] += _private;
emit week4_(private_,public_);
return true;
}
function week5() public onlyOwner week_5 returns(bool){
_private = 256410.2564 *10**18;
_public = 3846153.846 *10**18;
balance[msg.sender] -= _public;
balance[public_] += _public;
balance[msg.sender] -= _private;
balance[private_] += _private;
emit week5_(private_,public_);
return true;
}
function week6() public onlyOwner week_6 returns(bool){
_private = 256410.2564 *10**18;
_public = 3846153.846 *10**18;
balance[msg.sender] -= _public;
balance[public_] += _public;
balance[msg.sender] -= _private;
balance[private_] += _private;
emit week6_(private_,public_);
return true;
}
function week7() public onlyOwner week_7 returns(bool){
_private = 256410.2564 *10**18;
_public = 3846153.846 *10**18;
balance[msg.sender] -= _public;