-
Notifications
You must be signed in to change notification settings - Fork 88
/
index.html
1098 lines (1023 loc) · 134 KB
/
index.html
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
<!DOCTYPE html>
<html lang="en-GB">
<!-- Mirrored from memeseasoncoin.com/ by HTTrack Website Copier/3.x [XR&CO'2014], Fri, 09 Jun 2023 13:43:24 GMT -->
<!-- Added by HTTrack --><meta http-equiv="content-type" content="text/html;charset=UTF-8" /><!-- /Added by HTTrack -->
<head>
<meta charset="UTF-8">
<link rel="preload" as="image" href="wp-content/uploads/2023/05/memeseason-final-4-e1685408938352.png"><title>Meme Season</title>
<meta name='robots' content='max-image-preview:large' />
<link rel="alternate" type="application/rss+xml" title="Meme Season » Feed" href="indexd784.html?feed=rss2" />
<link rel="alternate" type="application/rss+xml" title="Meme Season » Comments Feed" href="indexa6da.html?feed=comments-rss2" />
<script>
window._wpemojiSettings = {"baseUrl":"https:\/\/s.w.org\/images\/core\/emoji\/14.0.0\/72x72\/","ext":".png","svgUrl":"https:\/\/s.w.org\/images\/core\/emoji\/14.0.0\/svg\/","svgExt":".svg","source":{"concatemoji":"https:\/\/memeseasoncoin.com\/wp-includes\/js\/wp-emoji-release.min.js?ver=6.2.2"}};
/*! This file is auto-generated */
!function(e,a,t){var n,r,o,i=a.createElement("canvas"),p=i.getContext&&i.getContext("2d");function s(e,t){p.clearRect(0,0,i.width,i.height),p.fillText(e,0,0);e=i.toDataURL();return p.clearRect(0,0,i.width,i.height),p.fillText(t,0,0),e===i.toDataURL()}function c(e){var t=a.createElement("script");t.src=e,t.defer=t.type="text/javascript",a.getElementsByTagName("head")[0].appendChild(t)}for(o=Array("flag","emoji"),t.supports={everything:!0,everythingExceptFlag:!0},r=0;r<o.length;r++)t.supports[o[r]]=function(e){if(p&&p.fillText)switch(p.textBaseline="top",p.font="600 32px Arial",e){case"flag":return s("\ud83c\udff3\ufe0f\u200d\u26a7\ufe0f","\ud83c\udff3\ufe0f\u200b\u26a7\ufe0f")?!1:!s("\ud83c\uddfa\ud83c\uddf3","\ud83c\uddfa\u200b\ud83c\uddf3")&&!s("\ud83c\udff4\udb40\udc67\udb40\udc62\udb40\udc65\udb40\udc6e\udb40\udc67\udb40\udc7f","\ud83c\udff4\u200b\udb40\udc67\u200b\udb40\udc62\u200b\udb40\udc65\u200b\udb40\udc6e\u200b\udb40\udc67\u200b\udb40\udc7f");case"emoji":return!s("\ud83e\udef1\ud83c\udffb\u200d\ud83e\udef2\ud83c\udfff","\ud83e\udef1\ud83c\udffb\u200b\ud83e\udef2\ud83c\udfff")}return!1}(o[r]),t.supports.everything=t.supports.everything&&t.supports[o[r]],"flag"!==o[r]&&(t.supports.everythingExceptFlag=t.supports.everythingExceptFlag&&t.supports[o[r]]);t.supports.everythingExceptFlag=t.supports.everythingExceptFlag&&!t.supports.flag,t.DOMReady=!1,t.readyCallback=function(){t.DOMReady=!0},t.supports.everything||(n=function(){t.readyCallback()},a.addEventListener?(a.addEventListener("DOMContentLoaded",n,!1),e.addEventListener("load",n,!1)):(e.attachEvent("onload",n),a.attachEvent("onreadystatechange",function(){"complete"===a.readyState&&t.readyCallback()})),(e=t.source||{}).concatemoji?c(e.concatemoji):e.wpemoji&&e.twemoji&&(c(e.twemoji),c(e.wpemoji)))}(window,document,window._wpemojiSettings);
</script>
<style>
img.wp-smiley,
img.emoji {
display: inline !important;
border: none !important;
box-shadow: none !important;
height: 1em !important;
width: 1em !important;
margin: 0 0.07em !important;
vertical-align: -0.1em !important;
background: none !important;
padding: 0 !important;
}
</style>
<link rel='stylesheet' id='loftloader-style-css' href='wp-content/plugins/loftloader-pro/assets/css/loftloader.min3a45.css?ver=2022022501' media='all' />
<style id='loftloader-style-inline-css'>
#loftloader-wrapper .loader-bg { opacity: 1.00; }#loftloader-wrapper.end-split-h .loader-bg:before, #loftloader-wrapper.end-split-h .loader-bg:after, #loftloader-wrapper.end-split-v .loader-bg:before, #loftloader-wrapper.end-split-v .loader-bg:after, #loftloader-wrapper.end-fade .loader-bg, #loftloader-wrapper.end-up .loader-bg, #loftloader-wrapper.end-down .loader-bg, #loftloader-wrapper.end-left .loader-bg, #loftloader-wrapper.end-right .loader-bg, #loftloader-wrapper.end-shrink-fade .loader-bg:before, .loader-bg .loader-bg-half:before { background-color: #000000; }#loftloader-wrapper .loader-inner #loader, #loftloader-wrapper.loftloader-ducks #loader span { color: #248acc }#loftloader-wrapper.loftloader-crystal #loader span { box-shadow: 0 -15px 0 0 rgba(36, 138, 204, 0.5), 15px -15px 0 0 rgba(36, 138, 204, 0.5), 15px 0 0 0 rgba(36, 138, 204, 0.5), 15px 15px 0 0 rgba(36, 138, 204, 0.5), 0 15px 0 0 rgba(36, 138, 204, 0.5), -15px 15px 0 0 rgba(36, 138, 204, 0.5), -15px 0 0 0 rgba(36, 138, 204, 0.5), -15px -15px 0 0 rgba(36, 138, 204, 0.5); }#loftloader-wrapper.loftloader-crossing #loader span:before { background: #00ffff }#loftloader-wrapper.loftloader-crossing #loader span:after { background: #ff0000 }#loftloader-wrapper.loftloader-rainbow #loader span:before { box-shadow: 0 0 0 10px #ff0000, 0 0 0 20px #ffd700, 0 0 0 30px #00ffff; }#loftloader-wrapper.loftloader-frame #loader { width: 80px; }#loftloader-wrapper.loftloader-frame #loader { height: 80px; }#loftloader-wrapper.loftloader-frame #loader span:after, #loftloader-wrapper.loftloader-frame #loader span:before { width: 4px; }#loftloader-wrapper.loftloader-frame #loader:after, #loftloader-wrapper.loftloader-frame #loader:before { height: 4px; }#loftloader-wrapper.loftloader-imgfading #loader img, #loftloader-wrapper.loftloader-imgloading #loader img, #loftloader-wrapper.loftloader-imgrotating #loader img, #loftloader-wrapper.loftloader-imgbouncing #loader img, #loftloader-wrapper.loftloader-imgstatic #loader img { width: 140px; }#loftloader-wrapper.loftloader-imgfading .loader-inner #loader, #loftloader-wrapper.loftloader-imgloading .loader-inner #loader, #loftloader-wrapper.loftloader-imgrotating .loader-inner #loader, #loftloader-wrapper.loftloader-imgbouncing .loader-inner #loader, #loftloader-wrapper.loftloader-imgstatic .loader-inner #loader { max-width: 100%; }#loftloader-wrapper span.bar { width: 30vw; }#loftloader-wrapper span.bar { height: 10px; }#loftloader-wrapper span.bar, #loftloader-wrapper span.percentage { color: #248acc; }#loftloader-wrapper span.percentage, #loftloader-wrapper span.bar span.load-count { font-family: Lato; }#loftloader-wrapper span.percentage, #loftloader-wrapper span.bar span.load-count { font-weight: 100; }#loftloader-wrapper span.percentage, #loftloader-wrapper span.bar span.load-count { letter-spacing: 0.1em; }body #loftloader-wrapper span.percentage, body #loftloader-wrapper span.bar span.load-count { font-size: 16px; }#loftloader-wrapper .loader-message { font-size: 16px; }#loftloader-wrapper .loader-message { color: #248acc; }#loftloader-wrapper .loader-message { font-family: Lato; }#loftloader-wrapper .loader-message { font-weight: 400; }#loftloader-wrapper .loader-message { letter-spacing: 0.1em; }#loftloader-wrapper .loader-message { line-height: 1.5; }
</style>
<link rel='stylesheet' id='wp-block-library-css' href='wp-includes/css/dist/block-library/style.min3781.css?ver=6.2.2' media='all' />
<link rel='stylesheet' id='classic-theme-styles-css' href='wp-includes/css/classic-themes.min3781.css?ver=6.2.2' media='all' />
<style id='global-styles-inline-css'>
body{--wp--preset--color--black: #000000;--wp--preset--color--cyan-bluish-gray: #abb8c3;--wp--preset--color--white: #ffffff;--wp--preset--color--pale-pink: #f78da7;--wp--preset--color--vivid-red: #cf2e2e;--wp--preset--color--luminous-vivid-orange: #ff6900;--wp--preset--color--luminous-vivid-amber: #fcb900;--wp--preset--color--light-green-cyan: #7bdcb5;--wp--preset--color--vivid-green-cyan: #00d084;--wp--preset--color--pale-cyan-blue: #8ed1fc;--wp--preset--color--vivid-cyan-blue: #0693e3;--wp--preset--color--vivid-purple: #9b51e0;--wp--preset--gradient--vivid-cyan-blue-to-vivid-purple: linear-gradient(135deg,rgba(6,147,227,1) 0%,rgb(155,81,224) 100%);--wp--preset--gradient--light-green-cyan-to-vivid-green-cyan: linear-gradient(135deg,rgb(122,220,180) 0%,rgb(0,208,130) 100%);--wp--preset--gradient--luminous-vivid-amber-to-luminous-vivid-orange: linear-gradient(135deg,rgba(252,185,0,1) 0%,rgba(255,105,0,1) 100%);--wp--preset--gradient--luminous-vivid-orange-to-vivid-red: linear-gradient(135deg,rgba(255,105,0,1) 0%,rgb(207,46,46) 100%);--wp--preset--gradient--very-light-gray-to-cyan-bluish-gray: linear-gradient(135deg,rgb(238,238,238) 0%,rgb(169,184,195) 100%);--wp--preset--gradient--cool-to-warm-spectrum: linear-gradient(135deg,rgb(74,234,220) 0%,rgb(151,120,209) 20%,rgb(207,42,186) 40%,rgb(238,44,130) 60%,rgb(251,105,98) 80%,rgb(254,248,76) 100%);--wp--preset--gradient--blush-light-purple: linear-gradient(135deg,rgb(255,206,236) 0%,rgb(152,150,240) 100%);--wp--preset--gradient--blush-bordeaux: linear-gradient(135deg,rgb(254,205,165) 0%,rgb(254,45,45) 50%,rgb(107,0,62) 100%);--wp--preset--gradient--luminous-dusk: linear-gradient(135deg,rgb(255,203,112) 0%,rgb(199,81,192) 50%,rgb(65,88,208) 100%);--wp--preset--gradient--pale-ocean: linear-gradient(135deg,rgb(255,245,203) 0%,rgb(182,227,212) 50%,rgb(51,167,181) 100%);--wp--preset--gradient--electric-grass: linear-gradient(135deg,rgb(202,248,128) 0%,rgb(113,206,126) 100%);--wp--preset--gradient--midnight: linear-gradient(135deg,rgb(2,3,129) 0%,rgb(40,116,252) 100%);--wp--preset--duotone--dark-grayscale: url('#wp-duotone-dark-grayscale');--wp--preset--duotone--grayscale: url('#wp-duotone-grayscale');--wp--preset--duotone--purple-yellow: url('#wp-duotone-purple-yellow');--wp--preset--duotone--blue-red: url('#wp-duotone-blue-red');--wp--preset--duotone--midnight: url('#wp-duotone-midnight');--wp--preset--duotone--magenta-yellow: url('#wp-duotone-magenta-yellow');--wp--preset--duotone--purple-green: url('#wp-duotone-purple-green');--wp--preset--duotone--blue-orange: url('#wp-duotone-blue-orange');--wp--preset--font-size--small: 13px;--wp--preset--font-size--medium: 20px;--wp--preset--font-size--large: 36px;--wp--preset--font-size--x-large: 42px;--wp--preset--spacing--20: 0.44rem;--wp--preset--spacing--30: 0.67rem;--wp--preset--spacing--40: 1rem;--wp--preset--spacing--50: 1.5rem;--wp--preset--spacing--60: 2.25rem;--wp--preset--spacing--70: 3.38rem;--wp--preset--spacing--80: 5.06rem;--wp--preset--shadow--natural: 6px 6px 9px rgba(0, 0, 0, 0.2);--wp--preset--shadow--deep: 12px 12px 50px rgba(0, 0, 0, 0.4);--wp--preset--shadow--sharp: 6px 6px 0px rgba(0, 0, 0, 0.2);--wp--preset--shadow--outlined: 6px 6px 0px -3px rgba(255, 255, 255, 1), 6px 6px rgba(0, 0, 0, 1);--wp--preset--shadow--crisp: 6px 6px 0px rgba(0, 0, 0, 1);}:where(.is-layout-flex){gap: 0.5em;}body .is-layout-flow > .alignleft{float: left;margin-inline-start: 0;margin-inline-end: 2em;}body .is-layout-flow > .alignright{float: right;margin-inline-start: 2em;margin-inline-end: 0;}body .is-layout-flow > .aligncenter{margin-left: auto !important;margin-right: auto !important;}body .is-layout-constrained > .alignleft{float: left;margin-inline-start: 0;margin-inline-end: 2em;}body .is-layout-constrained > .alignright{float: right;margin-inline-start: 2em;margin-inline-end: 0;}body .is-layout-constrained > .aligncenter{margin-left: auto !important;margin-right: auto !important;}body .is-layout-constrained > :where(:not(.alignleft):not(.alignright):not(.alignfull)){max-width: var(--wp--style--global--content-size);margin-left: auto !important;margin-right: auto !important;}body .is-layout-constrained > .alignwide{max-width: var(--wp--style--global--wide-size);}body .is-layout-flex{display: flex;}body .is-layout-flex{flex-wrap: wrap;align-items: center;}body .is-layout-flex > *{margin: 0;}:where(.wp-block-columns.is-layout-flex){gap: 2em;}.has-black-color{color: var(--wp--preset--color--black) !important;}.has-cyan-bluish-gray-color{color: var(--wp--preset--color--cyan-bluish-gray) !important;}.has-white-color{color: var(--wp--preset--color--white) !important;}.has-pale-pink-color{color: var(--wp--preset--color--pale-pink) !important;}.has-vivid-red-color{color: var(--wp--preset--color--vivid-red) !important;}.has-luminous-vivid-orange-color{color: var(--wp--preset--color--luminous-vivid-orange) !important;}.has-luminous-vivid-amber-color{color: var(--wp--preset--color--luminous-vivid-amber) !important;}.has-light-green-cyan-color{color: var(--wp--preset--color--light-green-cyan) !important;}.has-vivid-green-cyan-color{color: var(--wp--preset--color--vivid-green-cyan) !important;}.has-pale-cyan-blue-color{color: var(--wp--preset--color--pale-cyan-blue) !important;}.has-vivid-cyan-blue-color{color: var(--wp--preset--color--vivid-cyan-blue) !important;}.has-vivid-purple-color{color: var(--wp--preset--color--vivid-purple) !important;}.has-black-background-color{background-color: var(--wp--preset--color--black) !important;}.has-cyan-bluish-gray-background-color{background-color: var(--wp--preset--color--cyan-bluish-gray) !important;}.has-white-background-color{background-color: var(--wp--preset--color--white) !important;}.has-pale-pink-background-color{background-color: var(--wp--preset--color--pale-pink) !important;}.has-vivid-red-background-color{background-color: var(--wp--preset--color--vivid-red) !important;}.has-luminous-vivid-orange-background-color{background-color: var(--wp--preset--color--luminous-vivid-orange) !important;}.has-luminous-vivid-amber-background-color{background-color: var(--wp--preset--color--luminous-vivid-amber) !important;}.has-light-green-cyan-background-color{background-color: var(--wp--preset--color--light-green-cyan) !important;}.has-vivid-green-cyan-background-color{background-color: var(--wp--preset--color--vivid-green-cyan) !important;}.has-pale-cyan-blue-background-color{background-color: var(--wp--preset--color--pale-cyan-blue) !important;}.has-vivid-cyan-blue-background-color{background-color: var(--wp--preset--color--vivid-cyan-blue) !important;}.has-vivid-purple-background-color{background-color: var(--wp--preset--color--vivid-purple) !important;}.has-black-border-color{border-color: var(--wp--preset--color--black) !important;}.has-cyan-bluish-gray-border-color{border-color: var(--wp--preset--color--cyan-bluish-gray) !important;}.has-white-border-color{border-color: var(--wp--preset--color--white) !important;}.has-pale-pink-border-color{border-color: var(--wp--preset--color--pale-pink) !important;}.has-vivid-red-border-color{border-color: var(--wp--preset--color--vivid-red) !important;}.has-luminous-vivid-orange-border-color{border-color: var(--wp--preset--color--luminous-vivid-orange) !important;}.has-luminous-vivid-amber-border-color{border-color: var(--wp--preset--color--luminous-vivid-amber) !important;}.has-light-green-cyan-border-color{border-color: var(--wp--preset--color--light-green-cyan) !important;}.has-vivid-green-cyan-border-color{border-color: var(--wp--preset--color--vivid-green-cyan) !important;}.has-pale-cyan-blue-border-color{border-color: var(--wp--preset--color--pale-cyan-blue) !important;}.has-vivid-cyan-blue-border-color{border-color: var(--wp--preset--color--vivid-cyan-blue) !important;}.has-vivid-purple-border-color{border-color: var(--wp--preset--color--vivid-purple) !important;}.has-vivid-cyan-blue-to-vivid-purple-gradient-background{background: var(--wp--preset--gradient--vivid-cyan-blue-to-vivid-purple) !important;}.has-light-green-cyan-to-vivid-green-cyan-gradient-background{background: var(--wp--preset--gradient--light-green-cyan-to-vivid-green-cyan) !important;}.has-luminous-vivid-amber-to-luminous-vivid-orange-gradient-background{background: var(--wp--preset--gradient--luminous-vivid-amber-to-luminous-vivid-orange) !important;}.has-luminous-vivid-orange-to-vivid-red-gradient-background{background: var(--wp--preset--gradient--luminous-vivid-orange-to-vivid-red) !important;}.has-very-light-gray-to-cyan-bluish-gray-gradient-background{background: var(--wp--preset--gradient--very-light-gray-to-cyan-bluish-gray) !important;}.has-cool-to-warm-spectrum-gradient-background{background: var(--wp--preset--gradient--cool-to-warm-spectrum) !important;}.has-blush-light-purple-gradient-background{background: var(--wp--preset--gradient--blush-light-purple) !important;}.has-blush-bordeaux-gradient-background{background: var(--wp--preset--gradient--blush-bordeaux) !important;}.has-luminous-dusk-gradient-background{background: var(--wp--preset--gradient--luminous-dusk) !important;}.has-pale-ocean-gradient-background{background: var(--wp--preset--gradient--pale-ocean) !important;}.has-electric-grass-gradient-background{background: var(--wp--preset--gradient--electric-grass) !important;}.has-midnight-gradient-background{background: var(--wp--preset--gradient--midnight) !important;}.has-small-font-size{font-size: var(--wp--preset--font-size--small) !important;}.has-medium-font-size{font-size: var(--wp--preset--font-size--medium) !important;}.has-large-font-size{font-size: var(--wp--preset--font-size--large) !important;}.has-x-large-font-size{font-size: var(--wp--preset--font-size--x-large) !important;}
.wp-block-navigation a:where(:not(.wp-element-button)){color: inherit;}
:where(.wp-block-columns.is-layout-flex){gap: 2em;}
.wp-block-pullquote{font-size: 1.5em;line-height: 1.6;}
</style>
<link rel='stylesheet' id='hello-elementor-css' href='wp-content/themes/hello-elementor/style.min653d.css?ver=2.7.1' media='all' />
<link rel='stylesheet' id='hello-elementor-theme-style-css' href='wp-content/themes/hello-elementor/theme.min653d.css?ver=2.7.1' media='all' />
<link rel='stylesheet' id='elementor-frontend-css' href='wp-content/plugins/elementor/assets/css/frontend-lite.minfb6f.css?ver=3.12.1' media='all' />
<link rel='stylesheet' id='elementor-post-25-css' href='wp-content/uploads/elementor/css/post-25c24b.css?ver=1685451693' media='all' />
<link rel='stylesheet' id='elementor-icons-ekiticons-css' href='wp-content/plugins/elementskit-lite/modules/elementskit-icon-pack/assets/css/ekiticonsa489.css?ver=2.8.7' media='all' />
<link rel='stylesheet' id='eael-general-css' href='wp-content/plugins/essential-addons-for-elementor-lite/assets/front-end/css/view/general.min9f31.css?ver=5.7.2' media='all' />
<link rel='stylesheet' id='eael-9-css' href='wp-content/uploads/essential-addons-elementor/eael-90fa6.css?ver=1685813897' media='all' />
<link rel='stylesheet' id='elementor-icons-css' href='wp-content/plugins/elementor/assets/lib/eicons/css/elementor-icons.min3b94.css?ver=5.18.0' media='all' />
<style id='elementor-icons-inline-css'>
.elementor-add-new-section .elementor-add-templately-promo-button{
background-color: #5d4fff;
background-image: url(wp-content/plugins/essential-addons-for-elementor-lite/assets/admin/images/templately/logo-icon.svg);
background-repeat: no-repeat;
background-position: center center;
position: relative;
}
.elementor-add-new-section .elementor-add-templately-promo-button > i{
height: 12px;
}
body .elementor-add-new-section .elementor-add-section-area-button {
margin-left: 0;
}
.elementor-add-new-section .elementor-add-templately-promo-button{
background-color: #5d4fff;
background-image: url(wp-content/plugins/essential-addons-for-elementor-lite/assets/admin/images/templately/logo-icon.svg);
background-repeat: no-repeat;
background-position: center center;
position: relative;
}
.elementor-add-new-section .elementor-add-templately-promo-button > i{
height: 12px;
}
body .elementor-add-new-section .elementor-add-section-area-button {
margin-left: 0;
}
</style>
<link rel='stylesheet' id='swiper-css' href='wp-content/plugins/elementor/assets/lib/swiper/v8/css/swiper.min94a4.css?ver=8.4.5' media='all' />
<link rel='stylesheet' id='elementor-pro-css' href='wp-content/plugins/elementor-pro/assets/css/frontend-lite.minac9e.css?ver=3.7.7' media='all' />
<link rel='stylesheet' id='mdp-selection-sticky-effect-styles-css' href='wp-content/plugins/selection-lite/css/sticky-effect.min4b1d.css?ver=1.8' media='all' />
<link rel='stylesheet' id='elementor-post-9-css' href='wp-content/uploads/elementor/css/post-94bc9.css?ver=1685810319' media='all' />
<link rel='stylesheet' id='ekit-widget-styles-css' href='wp-content/plugins/elementskit-lite/widgets/init/assets/css/widget-stylesa489.css?ver=2.8.7' media='all' />
<link rel='stylesheet' id='ekit-responsive-css' href='wp-content/plugins/elementskit-lite/widgets/init/assets/css/responsivea489.css?ver=2.8.7' media='all' />
<link rel='stylesheet' id='google-fonts-1-css' href='https://fonts.googleapis.com/css?family=Bowlby+One%3A100%2C100italic%2C200%2C200italic%2C300%2C300italic%2C400%2C400italic%2C500%2C500italic%2C600%2C600italic%2C700%2C700italic%2C800%2C800italic%2C900%2C900italic%7CNothing+You+Could+Do%3A100%2C100italic%2C200%2C200italic%2C300%2C300italic%2C400%2C400italic%2C500%2C500italic%2C600%2C600italic%2C700%2C700italic%2C800%2C800italic%2C900%2C900italic%7CJost%3A100%2C100italic%2C200%2C200italic%2C300%2C300italic%2C400%2C400italic%2C500%2C500italic%2C600%2C600italic%2C700%2C700italic%2C800%2C800italic%2C900%2C900italic%7CBungee%3A100%2C100italic%2C200%2C200italic%2C300%2C300italic%2C400%2C400italic%2C500%2C500italic%2C600%2C600italic%2C700%2C700italic%2C800%2C800italic%2C900%2C900italic%7CBowlby+One+SC%3A100%2C100italic%2C200%2C200italic%2C300%2C300italic%2C400%2C400italic%2C500%2C500italic%2C600%2C600italic%2C700%2C700italic%2C800%2C800italic%2C900%2C900italic%7CRammetto+One%3A100%2C100italic%2C200%2C200italic%2C300%2C300italic%2C400%2C400italic%2C500%2C500italic%2C600%2C600italic%2C700%2C700italic%2C800%2C800italic%2C900%2C900italic%7CComic+Neue%3A100%2C100italic%2C200%2C200italic%2C300%2C300italic%2C400%2C400italic%2C500%2C500italic%2C600%2C600italic%2C700%2C700italic%2C800%2C800italic%2C900%2C900italic%7CAndika%3A100%2C100italic%2C200%2C200italic%2C300%2C300italic%2C400%2C400italic%2C500%2C500italic%2C600%2C600italic%2C700%2C700italic%2C800%2C800italic%2C900%2C900italic&display=swap&ver=6.2.2' media='all' />
<link rel='stylesheet' id='elementor-icons-shared-0-css' href='wp-content/plugins/elementor/assets/lib/font-awesome/css/fontawesome.min52d5.css?ver=5.15.3' media='all' />
<link rel='stylesheet' id='elementor-icons-fa-solid-css' href='wp-content/plugins/elementor/assets/lib/font-awesome/css/solid.min52d5.css?ver=5.15.3' media='all' />
<link rel='stylesheet' id='elementor-icons-fa-brands-css' href='wp-content/plugins/elementor/assets/lib/font-awesome/css/brands.min52d5.css?ver=5.15.3' media='all' />
<link rel="preconnect" href="https://fonts.gstatic.com/" crossorigin><script src='wp-includes/js/jquery/jquery.min5aed.js?ver=3.6.4' id='jquery-core-js'></script>
<script src='wp-includes/js/jquery/jquery-migrate.min6b00.js?ver=3.4.0' id='jquery-migrate-js'></script>
<link rel="https://api.w.org/" href="index52f0.json?rest_route=/" /><link rel="alternate" type="application/json" href="index4e68.json?rest_route=/wp/v2/pages/9" /><link rel="EditURI" type="application/rsd+xml" title="RSD" href="xmlrpc0db0.php?rsd" />
<link rel="wlwmanifest" type="application/wlwmanifest+xml" href="wp-includes/wlwmanifest.xml" />
<meta name="generator" content="WordPress 6.2.2" />
<link rel="canonical" href="index.html" />
<link rel='shortlink' href='index.html' />
<link rel="alternate" type="application/json+oembed" href="index4d18.json?rest_route=%2Foembed%2F1.0%2Fembed&url=https%3A%2F%2Fmemeseasoncoin.com%2F" />
<link rel="alternate" type="text/xml+oembed" href="index2373.php?rest_route=%2Foembed%2F1.0%2Fembed&url=https%3A%2F%2Fmemeseasoncoin.com%2F&format=xml" />
<meta name="generator" content="Elementor 3.12.1; features: e_dom_optimization, e_optimized_assets_loading, e_optimized_css_loading, a11y_improvements, additional_custom_breakpoints; settings: css_print_method-external, google_font-enabled, font_display-swap">
<link rel="icon" href="wp-content/uploads/2023/05/memeseason-final-4-e1685408938352-150x150.png" sizes="32x32" />
<link rel="icon" href="wp-content/uploads/2023/05/elementor/thumbs/memeseason-final-4-e1685408938352-q77bc67k014vpiyskuxgoqdtaxj8ax2l0n2wcmspzc.html" sizes="192x192" />
<link rel="apple-touch-icon" href="wp-content/uploads/2023/05/elementor/thumbs/memeseason-final-4-e1685408938352-q77bc67k014vpiyskuxgoqdtaxj8ax2l0n2wcmspzc.html" />
<meta name="msapplication-TileImage" content="https://memeseasoncoin.com/wp-content/uploads/2023/05/elementor/thumbs/memeseason-final-4-e1685408938352-q77bc67k014vpiyskuxgoqdtaxj8ax2l0n2wcmspzc.png" />
<noscript><style>#loftloader-wrapper { display: none !important; }</style></noscript>
<style> html.loftloader-pro-hide #loftloader-wrapper, html.loftloader-pro-spt-hide #loftloader-wrapper { display: none !important; } </style><script type="text/javascript">
var loftloaderProProgressInit = 0.6, init = 0, percentageStyles = '', LoftLoaderProGlobalSessionStorage = {
getItem: function( name ) {
try {
return sessionStorage.getItem( name );
} catch( msg ) {
return false;
}
}
};
function loftloaderProInsertStyle( styleID, styleContent ) {
var style = document.createElement( 'style' );
style.id = styleID;
style.innerText = styleContent;
document.head.appendChild( style );
}
if ( LoftLoaderProGlobalSessionStorage.getItem( 'loftloader-pro-smooth-transition' ) && ( 'on' === LoftLoaderProGlobalSessionStorage.getItem( 'loftloader-pro-smooth-transition' ) ) ) {
var onceStyles = '', initPercentage = loftloaderProProgressInit * 100;
init = loftloaderProProgressInit; }
percentageStyles = '#loftloader-wrapper span.percentage:after, #loftloader-wrapper .load-count:after { content: "' + ( init * 100 ) + '%"; }';
percentageStyles += ' #loftloader-wrapper .load-count { width: ' + ( init * 100 ) + '%; }';
loftloaderProInsertStyle( 'loftloader-pro-progress-bar-style', '#loftloader-wrapper span.bar span.load { transform: scaleX(' + init + '); }' );
loftloaderProInsertStyle( 'loftloader-pro-progress-percentage-style', percentageStyles );
</script>
<style id="wpforms-css-vars-root">
:root {
--wpforms-field-border-radius: 3px;
--wpforms-field-background-color: #ffffff;
--wpforms-field-border-color: rgba( 0, 0, 0, 0.25 );
--wpforms-field-text-color: rgba( 0, 0, 0, 0.7 );
--wpforms-label-color: rgba( 0, 0, 0, 0.85 );
--wpforms-label-sublabel-color: rgba( 0, 0, 0, 0.55 );
--wpforms-label-error-color: #d63637;
--wpforms-button-border-radius: 3px;
--wpforms-button-background-color: #066aab;
--wpforms-button-text-color: #ffffff;
--wpforms-field-size-input-height: 43px;
--wpforms-field-size-input-spacing: 15px;
--wpforms-field-size-font-size: 16px;
--wpforms-field-size-line-height: 19px;
--wpforms-field-size-padding-h: 14px;
--wpforms-field-size-checkbox-size: 16px;
--wpforms-field-size-sublabel-spacing: 5px;
--wpforms-field-size-icon-size: 1;
--wpforms-label-size-font-size: 16px;
--wpforms-label-size-line-height: 19px;
--wpforms-label-size-sublabel-font-size: 14px;
--wpforms-label-size-sublabel-line-height: 17px;
--wpforms-button-size-font-size: 17px;
--wpforms-button-size-height: 41px;
--wpforms-button-size-padding-h: 15px;
--wpforms-button-size-margin-top: 10px;
}
</style> <meta name="viewport" content="width=device-width, initial-scale=1.0, viewport-fit=cover" /></head>
<body data-rsssl=1 class="home page-template page-template-elementor_canvas page page-id-9 loftloader-pro-enabled elementor-default elementor-template-canvas elementor-kit-25 elementor-page elementor-page-9"><div id="loftloader-wrapper" class="end-up loftloader-imgrotating twod ease-back"><div class="loader-bg"></div><div class="loader-inner"><div id="loader"><img width="140" height="134" data-no-lazy="1" class="skip-lazy" alt="loader image" src="wp-content/uploads/2023/05/memeseason-final-4-e1685408938352.png"></div></div><div class="loader-close-button" style="display: none;"><span class="screen-reader-text">Close</span></div></div>
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 0 0" width="0" height="0" focusable="false" role="none" style="visibility: hidden; position: absolute; left: -9999px; overflow: hidden;" ><defs><filter id="wp-duotone-dark-grayscale"><feColorMatrix color-interpolation-filters="sRGB" type="matrix" values=" .299 .587 .114 0 0 .299 .587 .114 0 0 .299 .587 .114 0 0 .299 .587 .114 0 0 " /><feComponentTransfer color-interpolation-filters="sRGB" ><feFuncR type="table" tableValues="0 0.49803921568627" /><feFuncG type="table" tableValues="0 0.49803921568627" /><feFuncB type="table" tableValues="0 0.49803921568627" /><feFuncA type="table" tableValues="1 1" /></feComponentTransfer><feComposite in2="SourceGraphic" operator="in" /></filter></defs></svg><svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 0 0" width="0" height="0" focusable="false" role="none" style="visibility: hidden; position: absolute; left: -9999px; overflow: hidden;" ><defs><filter id="wp-duotone-grayscale"><feColorMatrix color-interpolation-filters="sRGB" type="matrix" values=" .299 .587 .114 0 0 .299 .587 .114 0 0 .299 .587 .114 0 0 .299 .587 .114 0 0 " /><feComponentTransfer color-interpolation-filters="sRGB" ><feFuncR type="table" tableValues="0 1" /><feFuncG type="table" tableValues="0 1" /><feFuncB type="table" tableValues="0 1" /><feFuncA type="table" tableValues="1 1" /></feComponentTransfer><feComposite in2="SourceGraphic" operator="in" /></filter></defs></svg><svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 0 0" width="0" height="0" focusable="false" role="none" style="visibility: hidden; position: absolute; left: -9999px; overflow: hidden;" ><defs><filter id="wp-duotone-purple-yellow"><feColorMatrix color-interpolation-filters="sRGB" type="matrix" values=" .299 .587 .114 0 0 .299 .587 .114 0 0 .299 .587 .114 0 0 .299 .587 .114 0 0 " /><feComponentTransfer color-interpolation-filters="sRGB" ><feFuncR type="table" tableValues="0.54901960784314 0.98823529411765" /><feFuncG type="table" tableValues="0 1" /><feFuncB type="table" tableValues="0.71764705882353 0.25490196078431" /><feFuncA type="table" tableValues="1 1" /></feComponentTransfer><feComposite in2="SourceGraphic" operator="in" /></filter></defs></svg><svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 0 0" width="0" height="0" focusable="false" role="none" style="visibility: hidden; position: absolute; left: -9999px; overflow: hidden;" ><defs><filter id="wp-duotone-blue-red"><feColorMatrix color-interpolation-filters="sRGB" type="matrix" values=" .299 .587 .114 0 0 .299 .587 .114 0 0 .299 .587 .114 0 0 .299 .587 .114 0 0 " /><feComponentTransfer color-interpolation-filters="sRGB" ><feFuncR type="table" tableValues="0 1" /><feFuncG type="table" tableValues="0 0.27843137254902" /><feFuncB type="table" tableValues="0.5921568627451 0.27843137254902" /><feFuncA type="table" tableValues="1 1" /></feComponentTransfer><feComposite in2="SourceGraphic" operator="in" /></filter></defs></svg><svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 0 0" width="0" height="0" focusable="false" role="none" style="visibility: hidden; position: absolute; left: -9999px; overflow: hidden;" ><defs><filter id="wp-duotone-midnight"><feColorMatrix color-interpolation-filters="sRGB" type="matrix" values=" .299 .587 .114 0 0 .299 .587 .114 0 0 .299 .587 .114 0 0 .299 .587 .114 0 0 " /><feComponentTransfer color-interpolation-filters="sRGB" ><feFuncR type="table" tableValues="0 0" /><feFuncG type="table" tableValues="0 0.64705882352941" /><feFuncB type="table" tableValues="0 1" /><feFuncA type="table" tableValues="1 1" /></feComponentTransfer><feComposite in2="SourceGraphic" operator="in" /></filter></defs></svg><svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 0 0" width="0" height="0" focusable="false" role="none" style="visibility: hidden; position: absolute; left: -9999px; overflow: hidden;" ><defs><filter id="wp-duotone-magenta-yellow"><feColorMatrix color-interpolation-filters="sRGB" type="matrix" values=" .299 .587 .114 0 0 .299 .587 .114 0 0 .299 .587 .114 0 0 .299 .587 .114 0 0 " /><feComponentTransfer color-interpolation-filters="sRGB" ><feFuncR type="table" tableValues="0.78039215686275 1" /><feFuncG type="table" tableValues="0 0.94901960784314" /><feFuncB type="table" tableValues="0.35294117647059 0.47058823529412" /><feFuncA type="table" tableValues="1 1" /></feComponentTransfer><feComposite in2="SourceGraphic" operator="in" /></filter></defs></svg><svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 0 0" width="0" height="0" focusable="false" role="none" style="visibility: hidden; position: absolute; left: -9999px; overflow: hidden;" ><defs><filter id="wp-duotone-purple-green"><feColorMatrix color-interpolation-filters="sRGB" type="matrix" values=" .299 .587 .114 0 0 .299 .587 .114 0 0 .299 .587 .114 0 0 .299 .587 .114 0 0 " /><feComponentTransfer color-interpolation-filters="sRGB" ><feFuncR type="table" tableValues="0.65098039215686 0.40392156862745" /><feFuncG type="table" tableValues="0 1" /><feFuncB type="table" tableValues="0.44705882352941 0.4" /><feFuncA type="table" tableValues="1 1" /></feComponentTransfer><feComposite in2="SourceGraphic" operator="in" /></filter></defs></svg><svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 0 0" width="0" height="0" focusable="false" role="none" style="visibility: hidden; position: absolute; left: -9999px; overflow: hidden;" ><defs><filter id="wp-duotone-blue-orange"><feColorMatrix color-interpolation-filters="sRGB" type="matrix" values=" .299 .587 .114 0 0 .299 .587 .114 0 0 .299 .587 .114 0 0 .299 .587 .114 0 0 " /><feComponentTransfer color-interpolation-filters="sRGB" ><feFuncR type="table" tableValues="0.098039215686275 1" /><feFuncG type="table" tableValues="0 0.66274509803922" /><feFuncB type="table" tableValues="0.84705882352941 0.41960784313725" /><feFuncA type="table" tableValues="1 1" /></feComponentTransfer><feComposite in2="SourceGraphic" operator="in" /></filter></defs></svg> <div data-elementor-type="wp-page" data-elementor-id="9" class="elementor elementor-9">
<section data-particle_enable="false" data-particle-mobile-disabled="false" class="elementor-section elementor-top-section elementor-element elementor-element-2a73f06a elementor-section-boxed elementor-section-height-default elementor-section-height-default" data-id="2a73f06a" data-element_type="section" data-settings="{"background_background":"classic","mdp_selection_sticky_effect_enable":false}">
<div class="elementor-container elementor-column-gap-default">
<div class="elementor-column elementor-col-50 elementor-top-column elementor-element elementor-element-82655b3" data-id="82655b3" data-element_type="column" data-settings="{"mdp_selection_sticky_column_effect_enable":false}">
<div class="elementor-widget-wrap elementor-element-populated">
<div class="elementor-element elementor-element-e9258b9 elementor-invisible elementor-widget elementor-widget-image" data-id="e9258b9" data-element_type="widget" data-settings="{"_animation":"fadeInLeft"}" data-widget_type="image.default">
<div class="elementor-widget-container">
<style>/*! elementor - v3.12.1 - 02-04-2023 */
.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=".svg"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style> <img decoding="async" width="800" height="348" src="wp-content/uploads/2023/05/memeseason-e1685457809152-1024x445.png" class="attachment-large size-large wp-image-788" alt="" loading="lazy" srcset="https://memeseasoncoin.com/wp-content/uploads/2023/05/memeseason-e1685457809152-1024x445.png 1024w, https://memeseasoncoin.com/wp-content/uploads/2023/05/memeseason-e1685457809152-300x130.png 300w, https://memeseasoncoin.com/wp-content/uploads/2023/05/memeseason-e1685457809152-768x334.png 768w, https://memeseasoncoin.com/wp-content/uploads/2023/05/memeseason-e1685457809152-1536x667.png 1536w, https://memeseasoncoin.com/wp-content/uploads/2023/05/memeseason-e1685457809152-2048x890.png 2048w" sizes="(max-width: 800px) 100vw, 800px" /> </div>
</div>
</div>
</div>
<div class="elementor-column elementor-col-50 elementor-top-column elementor-element elementor-element-5d9be12" data-id="5d9be12" data-element_type="column" data-settings="{"mdp_selection_sticky_column_effect_enable":false}">
<div class="elementor-widget-wrap elementor-element-populated">
<div class="elementor-element elementor-element-345302e elementor-invisible elementor-widget elementor-widget-ekit-nav-menu" data-id="345302e" data-element_type="widget" data-settings="{"_animation":"fadeInDown"}" data-widget_type="ekit-nav-menu.default">
<div class="elementor-widget-container">
<div class="ekit-wid-con ekit_menu_responsive_tablet" data-hamburger-icon="" data-hamburger-icon-type="icon" data-responsive-breakpoint="1024"> <button class="elementskit-menu-hamburger elementskit-menu-toggler" type="button" aria-label="hamburger-icon">
<span class="elementskit-menu-hamburger-icon"></span><span class="elementskit-menu-hamburger-icon"></span><span class="elementskit-menu-hamburger-icon"></span>
</button>
<div id="ekit-megamenu-menuu" class="elementskit-menu-container elementskit-menu-offcanvas-elements elementskit-navbar-nav-default elementskit_line_arrow ekit-nav-menu-one-page-no ekit-nav-dropdown-hover"><ul id="menu-menuu" class="elementskit-navbar-nav elementskit-menu-po-center submenu-click-on-icon"><li id="menu-item-11" class="menu-item menu-item-type-custom menu-item-object-custom menu-item-11 nav-item elementskit-mobile-builder-content" data-vertical-menu=750px><a href="#About" class="ekit-menu-nav-link">About</a></li>
<li id="menu-item-12" class="menu-item menu-item-type-custom menu-item-object-custom menu-item-12 nav-item elementskit-mobile-builder-content" data-vertical-menu=750px><a href="#Tokenomics" class="ekit-menu-nav-link">Tokenomics</a></li>
<li id="menu-item-14" class="menu-item menu-item-type-custom menu-item-object-custom menu-item-14 nav-item elementskit-mobile-builder-content" data-vertical-menu=750px><a href="#Roadmap" class="ekit-menu-nav-link">Roadmap</a></li>
<li id="menu-item-910" class="menu-item menu-item-type-custom menu-item-object-custom menu-item-910 nav-item elementskit-mobile-builder-content" data-vertical-menu=750px><a href="#Team" class="ekit-menu-nav-link">Team</a></li>
<li id="menu-item-911" class="menu-item menu-item-type-custom menu-item-object-custom menu-item-911 nav-item elementskit-mobile-builder-content" data-vertical-menu=750px><a href="#Contact" class="ekit-menu-nav-link">Contact</a></li>
</ul><div class="elementskit-nav-identity-panel">
<div class="elementskit-site-title">
<a class="elementskit-nav-logo" href="index.html" target="_self" rel="">
<img width="3633" height="1578" src="wp-content/uploads/2023/05/memeseason-e1685457809152.png" class="attachment-full size-full" alt="" decoding="async" loading="lazy" srcset="https://memeseasoncoin.com/wp-content/uploads/2023/05/memeseason-e1685457809152.png 3633w, https://memeseasoncoin.com/wp-content/uploads/2023/05/memeseason-e1685457809152-300x130.png 300w, https://memeseasoncoin.com/wp-content/uploads/2023/05/memeseason-e1685457809152-1024x445.png 1024w, https://memeseasoncoin.com/wp-content/uploads/2023/05/memeseason-e1685457809152-768x334.png 768w, https://memeseasoncoin.com/wp-content/uploads/2023/05/memeseason-e1685457809152-1536x667.png 1536w, https://memeseasoncoin.com/wp-content/uploads/2023/05/memeseason-e1685457809152-2048x890.png 2048w" sizes="(max-width: 3633px) 100vw, 3633px" />
</a>
</div><button class="elementskit-menu-close elementskit-menu-toggler" type="button">X</button></div></div><div class="elementskit-menu-overlay elementskit-menu-offcanvas-elements elementskit-menu-toggler ekit-nav-menu--overlay"></div></div> </div>
</div>
</div>
</div>
</div>
</section>
<section data-particle_enable="false" data-particle-mobile-disabled="false" class="elementor-section elementor-top-section elementor-element elementor-element-4bcc6f12 elementor-section-height-min-height elementor-section-boxed elementor-section-height-default elementor-section-items-middle" data-id="4bcc6f12" data-element_type="section" data-settings="{"background_background":"classic","shape_divider_bottom":"curve","shape_divider_bottom_negative":"yes","mdp_selection_sticky_effect_enable":false}">
<div class="elementor-background-overlay"></div>
<div class="elementor-shape elementor-shape-bottom" data-negative="true">
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1000 100" preserveAspectRatio="none">
<path class="elementor-shape-fill" d="M500,97C126.7,96.3,0.8,19.8,0,0v100l1000,0V1C1000,19.4,873.3,97.8,500,97z"/>
</svg> </div>
<div class="elementor-container elementor-column-gap-default">
<div class="elementor-column elementor-col-50 elementor-top-column elementor-element elementor-element-28a08f0" data-id="28a08f0" data-element_type="column" data-settings="{"mdp_selection_sticky_column_effect_enable":false}">
<div class="elementor-widget-wrap elementor-element-populated">
<div class="elementor-element elementor-element-b42dd90 elementor-invisible elementor-widget elementor-widget-heading" data-id="b42dd90" data-element_type="widget" data-settings="{"_animation":"zoomIn"}" data-widget_type="heading.default">
<div class="elementor-widget-container">
<style>/*! elementor - v3.12.1 - 02-04-2023 */
.elementor-heading-title{padding:0;margin:0;line-height:1}.elementor-widget-heading .elementor-heading-title[class*=elementor-size-]>a{color:inherit;font-size:inherit;line-height:inherit}.elementor-widget-heading .elementor-heading-title.elementor-size-small{font-size:15px}.elementor-widget-heading .elementor-heading-title.elementor-size-medium{font-size:19px}.elementor-widget-heading .elementor-heading-title.elementor-size-large{font-size:29px}.elementor-widget-heading .elementor-heading-title.elementor-size-xl{font-size:39px}.elementor-widget-heading .elementor-heading-title.elementor-size-xxl{font-size:59px}</style><h2 class="elementor-heading-title elementor-size-default">Welcome to the world of Meme Season</h2> </div>
</div>
</div>
</div>
<div class="elementor-column elementor-col-50 elementor-top-column elementor-element elementor-element-72dd2042" data-id="72dd2042" data-element_type="column" data-settings="{"mdp_selection_sticky_column_effect_enable":false}">
<div class="elementor-widget-wrap elementor-element-populated">
<div class="elementor-element elementor-element-3fe5aaa e-transform elementor-widget elementor-widget-image" data-id="3fe5aaa" data-element_type="widget" data-settings="{"_transform_rotateZ_effect_hover":{"unit":"px","size":360,"sizes":[]},"_transform_rotateZ_effect_hover_tablet":{"unit":"deg","size":"","sizes":[]},"_transform_rotateZ_effect_hover_mobile":{"unit":"deg","size":"","sizes":[]}}" data-widget_type="image.default">
<div class="elementor-widget-container">
<img decoding="async" width="800" height="771" src="wp-content/uploads/2023/05/memeseason-final-4-e1685408938352-1024x987.png" class="attachment-large size-large wp-image-745" alt="" loading="lazy" srcset="https://memeseasoncoin.com/wp-content/uploads/2023/05/memeseason-final-4-e1685408938352-1024x987.png 1024w, https://memeseasoncoin.com/wp-content/uploads/2023/05/memeseason-final-4-e1685408938352-300x289.png 300w, https://memeseasoncoin.com/wp-content/uploads/2023/05/memeseason-final-4-e1685408938352-768x740.png 768w, https://memeseasoncoin.com/wp-content/uploads/2023/05/memeseason-final-4-e1685408938352-1536x1481.png 1536w, https://memeseasoncoin.com/wp-content/uploads/2023/05/memeseason-final-4-e1685408938352-2048x1974.png 2048w" sizes="(max-width: 800px) 100vw, 800px" /> </div>
</div>
</div>
</div>
</div>
</section>
<section data-particle_enable="false" data-particle-mobile-disabled="false" class="elementor-section elementor-top-section elementor-element elementor-element-0f98853 elementor-reverse-tablet elementor-reverse-mobile elementor-section-boxed elementor-section-height-default elementor-section-height-default" data-id="0f98853" data-element_type="section" id="About" data-settings="{"background_background":"classic","mdp_selection_sticky_effect_enable":false}">
<div class="elementor-background-overlay"></div>
<div class="elementor-container elementor-column-gap-default">
<div class="elementor-column elementor-col-100 elementor-top-column elementor-element elementor-element-58091bb" data-id="58091bb" data-element_type="column" data-settings="{"background_background":"classic","mdp_selection_sticky_column_effect_enable":false}">
<div class="elementor-widget-wrap elementor-element-populated">
<div class="elementor-background-overlay"></div>
<section data-particle_enable="false" data-particle-mobile-disabled="false" class="elementor-section elementor-inner-section elementor-element elementor-element-43d88c2 elementor-section-boxed elementor-section-height-default elementor-section-height-default" data-id="43d88c2" data-element_type="section" data-settings="{"background_background":"classic","mdp_selection_sticky_effect_enable":false}">
<div class="elementor-container elementor-column-gap-default">
<div class="elementor-column elementor-col-100 elementor-inner-column elementor-element elementor-element-3452d85 elementor-invisible" data-id="3452d85" data-element_type="column" data-settings="{"animation":"fadeInUp","background_background":"classic","mdp_selection_sticky_column_effect_enable":false}">
<div class="elementor-widget-wrap elementor-element-populated">
<div class="elementor-background-overlay"></div>
<div class="elementor-element elementor-element-06544dc elementor-invisible elementor-widget elementor-widget-heading" data-id="06544dc" data-element_type="widget" data-settings="{"_animation":"zoomIn"}" data-widget_type="heading.default">
<div class="elementor-widget-container">
<h2 class="elementor-heading-title elementor-size-default">What is Meme Season</h2> </div>
</div>
<div class="elementor-element elementor-element-898bfbc elementor-invisible elementor-widget elementor-widget-text-editor" data-id="898bfbc" data-element_type="widget" data-settings="{"_animation":"zoomIn"}" data-widget_type="text-editor.default">
<div class="elementor-widget-container">
<style>/*! elementor - v3.12.1 - 02-04-2023 */
.elementor-widget-text-editor.elementor-drop-cap-view-stacked .elementor-drop-cap{background-color:#69727d;color:#fff}.elementor-widget-text-editor.elementor-drop-cap-view-framed .elementor-drop-cap{color:#69727d;border:3px solid;background-color:transparent}.elementor-widget-text-editor:not(.elementor-drop-cap-view-default) .elementor-drop-cap{margin-top:8px}.elementor-widget-text-editor:not(.elementor-drop-cap-view-default) .elementor-drop-cap-letter{width:1em;height:1em}.elementor-widget-text-editor .elementor-drop-cap{float:left;text-align:center;line-height:1;font-size:50px}.elementor-widget-text-editor .elementor-drop-cap-letter{display:inline-block}</style> <p>#This=MemeSeason2023</p> </div>
</div>
</div>
</div>
</div>
</section>
<div class="elementor-element elementor-element-0424552 elementor-widget elementor-widget-text-editor" data-id="0424552" data-element_type="widget" data-widget_type="text-editor.default">
<div class="elementor-widget-container">
<p>Welcome to Meme Season, where we’ve combined the best of memes and cryptocurrencies for an exciting experience! As a holder of Meme Season tokens, you’ll be pleased to know that 1% of every transaction is reflected back to you. Additionally, 1% of every transaction will be allocated to marketing efforts, ensuring the continued growth and exposure of Meme Season. Furthermore, 1% will be dedicated to the liquidity pool (lp), providing stability and liquidity to the Meme Season token ecosystem. With a total tax of 3%, these allocations ensure that the Meme Season community benefits from their participation in the token’s ecosystem. So, as the memes spread and the crypto market thrives, Join us at Meme Season!</p><p>It’s officially MemeSeason, this year, this June 2023!✅</p> </div>
</div>
<div class="elementor-element elementor-element-5b5797f elementor-widget__width-initial elementor-invisible elementor-widget elementor-widget-eael-creative-button" data-id="5b5797f" data-element_type="widget" data-settings="{"_animation":"fadeInRight"}" data-widget_type="eael-creative-button.default">
<div class="elementor-widget-container">
<div class="eael-creative-button-wrapper">
<a class="eael-creative-button eael-creative-button--moema" href="wp-content/uploads/2023/06/MemeSeason-WP.pdf" target="_blank _blank" data-text="Go!">
<div class="creative-button-inner">
<span class="eael-creative-button-icon-left"></span>
<span class="cretive-button-text">Whitepaper</span>
</div>
</a>
</div>
</div>
</div>
<div class="elementor-element elementor-element-d48781c elementor-widget__width-initial elementor-invisible elementor-widget elementor-widget-eael-creative-button" data-id="d48781c" data-element_type="widget" data-settings="{"_animation":"fadeInLeft"}" data-widget_type="eael-creative-button.default">
<div class="elementor-widget-container">
<div class="eael-creative-button-wrapper">
<a class="eael-creative-button eael-creative-button--moema" href="https://github.com/CFG-NINJA/audits/blob/4d9f05eb568480f947977b4d4c680b66f648318b/20230601_CFGNINJA_Meme Season_Memes_Audit.pdf" target="_blank _blank" data-text="Go!">
<div class="creative-button-inner">
<span class="eael-creative-button-icon-left"></span>
<span class="cretive-button-text">Audit</span>
</div>
</a>
</div>
</div>
</div>
</div>
</div>
</div>
</section>
<section data-particle_enable="false" data-particle-mobile-disabled="false" class="elementor-section elementor-top-section elementor-element elementor-element-9bb6a20 elementor-hidden-tablet elementor-hidden-mobile elementor-section-boxed elementor-section-height-default elementor-section-height-default" data-id="9bb6a20" data-element_type="section" id="Tokenomics" data-settings="{"background_background":"classic","shape_divider_top":"curve","shape_divider_top_negative":"yes","shape_divider_bottom":"curve","shape_divider_bottom_negative":"yes","mdp_selection_sticky_effect_enable":false}">
<div class="elementor-background-overlay"></div>
<div class="elementor-shape elementor-shape-top" data-negative="true">
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1000 100" preserveAspectRatio="none">
<path class="elementor-shape-fill" d="M500,97C126.7,96.3,0.8,19.8,0,0v100l1000,0V1C1000,19.4,873.3,97.8,500,97z"/>
</svg> </div>
<div class="elementor-shape elementor-shape-bottom" data-negative="true">
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1000 100" preserveAspectRatio="none">
<path class="elementor-shape-fill" d="M500,97C126.7,96.3,0.8,19.8,0,0v100l1000,0V1C1000,19.4,873.3,97.8,500,97z"/>
</svg> </div>
<div class="elementor-container elementor-column-gap-default">
<div class="elementor-column elementor-col-33 elementor-top-column elementor-element elementor-element-4c1d540 elementor-invisible" data-id="4c1d540" data-element_type="column" data-settings="{"animation":"fadeInUp","background_background":"classic","mdp_selection_sticky_column_effect_enable":false}">
<div class="elementor-widget-wrap elementor-element-populated">
<div class="elementor-element elementor-element-dc67f42 elementor-view-default elementor-vertical-align-top elementor-invisible elementor-widget elementor-widget-icon-box" data-id="dc67f42" data-element_type="widget" data-settings="{"_animation":"fadeInLeft"}" data-widget_type="icon-box.default">
<div class="elementor-widget-container">
<link rel="stylesheet" href="wp-content/plugins/elementor/assets/css/widget-icon-box.min.css"> <div class="elementor-icon-box-wrapper">
<div class="elementor-icon-box-content">
<h2 class="elementor-icon-box-title">
<span >
Contract </span>
</h2>
<p class="elementor-icon-box-description">
0x79702f3Cb5e47fbfD2702221B3f0d5e17aA023c9 </p>
</div>
</div>
</div>
</div>
</div>
</div>
<div class="elementor-column elementor-col-33 elementor-top-column elementor-element elementor-element-c73b6ce elementor-invisible" data-id="c73b6ce" data-element_type="column" data-settings="{"animation":"fadeInUp","background_background":"classic","mdp_selection_sticky_column_effect_enable":false}">
<div class="elementor-widget-wrap elementor-element-populated">
<div class="elementor-element elementor-element-0a2a080 elementor-invisible elementor-widget elementor-widget-heading" data-id="0a2a080" data-element_type="widget" data-settings="{"_animation":"zoomIn"}" data-widget_type="heading.default">
<div class="elementor-widget-container">
<h2 class="elementor-heading-title elementor-size-default">Get $MEMES</h2> </div>
</div>
<div class="elementor-element elementor-element-e84c36a elementor-invisible elementor-widget elementor-widget-text-editor" data-id="e84c36a" data-element_type="widget" data-settings="{"_animation":"zoomIn"}" data-widget_type="text-editor.default">
<div class="elementor-widget-container">
<p>#This=MemeSeason2023</p> </div>
</div>
<div class="elementor-element elementor-element-9758440 elementor-invisible elementor-widget elementor-widget-eael-creative-button" data-id="9758440" data-element_type="widget" data-settings="{"_animation":"fadeInRight"}" data-widget_type="eael-creative-button.default">
<div class="elementor-widget-container">
<div class="eael-creative-button-wrapper">
<a class="eael-creative-button eael-creative-button--moema" href="https://www.pinksale.finance/launchpad/0x1d053f05250171f2b8eca1b719bd23c6e6de7bf1?chain=BSC" target="_blank _blank" data-text="Go!">
<div class="creative-button-inner">
<span class="eael-creative-button-icon-left"></span>
<span class="cretive-button-text">Buy $MEME</span>
</div>
</a>
</div>
</div>
</div>
</div>
</div>
<div class="elementor-column elementor-col-33 elementor-top-column elementor-element elementor-element-4405ba1 elementor-invisible" data-id="4405ba1" data-element_type="column" data-settings="{"animation":"fadeInUp","mdp_selection_sticky_column_effect_enable":false}">
<div class="elementor-widget-wrap elementor-element-populated">
<div class="elementor-element elementor-element-a7bf880 elementor-invisible elementor-widget elementor-widget-counter" data-id="a7bf880" data-element_type="widget" data-settings="{"_animation":"fadeInRight"}" data-widget_type="counter.default">
<div class="elementor-widget-container">
<style>/*! elementor - v3.12.1 - 02-04-2023 */
.elementor-counter .elementor-counter-number-wrapper{display:flex;font-size:69px;font-weight:600;line-height:1}.elementor-counter .elementor-counter-number-prefix,.elementor-counter .elementor-counter-number-suffix{flex-grow:1;white-space:pre-wrap}.elementor-counter .elementor-counter-number-prefix{text-align:right}.elementor-counter .elementor-counter-number-suffix{text-align:left}.elementor-counter .elementor-counter-title{text-align:center;font-size:19px;font-weight:400;line-height:2.5}</style> <div class="elementor-counter">
<div class="elementor-counter-number-wrapper">
<span class="elementor-counter-number-prefix"></span>
<span class="elementor-counter-number" data-duration="2000" data-to-value="100" data-from-value="0" data-delimiter=",">0</span>
<span class="elementor-counter-number-suffix">Q</span>
</div>
<div class="elementor-counter-title">SupplY</div>
</div>
</div>
</div>
<div class="elementor-element elementor-element-0138012 elementor-invisible elementor-widget elementor-widget-counter" data-id="0138012" data-element_type="widget" data-settings="{"_animation":"fadeInLeft"}" data-widget_type="counter.default">
<div class="elementor-widget-container">
<div class="elementor-counter">
<div class="elementor-counter-number-wrapper">
<span class="elementor-counter-number-prefix"></span>
<span class="elementor-counter-number" data-duration="2000" data-to-value="3" data-from-value="0" data-delimiter=",">0</span>
<span class="elementor-counter-number-suffix">%</span>
</div>
<div class="elementor-counter-title">Tax</div>
</div>
</div>
</div>
</div>
</div>
</div>
</section>
<section data-particle_enable="false" data-particle-mobile-disabled="false" class="elementor-section elementor-top-section elementor-element elementor-element-3f011d8 elementor-hidden-desktop elementor-section-boxed elementor-section-height-default elementor-section-height-default" data-id="3f011d8" data-element_type="section" data-settings="{"background_background":"classic","shape_divider_top":"curve","shape_divider_top_negative":"yes","shape_divider_bottom":"curve","shape_divider_bottom_negative":"yes","mdp_selection_sticky_effect_enable":false}">
<div class="elementor-background-overlay"></div>
<div class="elementor-shape elementor-shape-top" data-negative="true">
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1000 100" preserveAspectRatio="none">
<path class="elementor-shape-fill" d="M500,97C126.7,96.3,0.8,19.8,0,0v100l1000,0V1C1000,19.4,873.3,97.8,500,97z"/>
</svg> </div>
<div class="elementor-shape elementor-shape-bottom" data-negative="true">
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1000 100" preserveAspectRatio="none">
<path class="elementor-shape-fill" d="M500,97C126.7,96.3,0.8,19.8,0,0v100l1000,0V1C1000,19.4,873.3,97.8,500,97z"/>
</svg> </div>
<div class="elementor-container elementor-column-gap-default">
<div class="elementor-column elementor-col-33 elementor-top-column elementor-element elementor-element-95a5aa8 elementor-invisible" data-id="95a5aa8" data-element_type="column" data-settings="{"animation":"fadeInUp","background_background":"classic","mdp_selection_sticky_column_effect_enable":false}">
<div class="elementor-widget-wrap elementor-element-populated">
<div class="elementor-element elementor-element-a5724fc elementor-invisible elementor-widget elementor-widget-heading" data-id="a5724fc" data-element_type="widget" data-settings="{"_animation":"zoomIn"}" data-widget_type="heading.default">
<div class="elementor-widget-container">
<h2 class="elementor-heading-title elementor-size-default">Get $MEMES</h2> </div>
</div>
<div class="elementor-element elementor-element-6be70ab elementor-widget elementor-widget-text-editor" data-id="6be70ab" data-element_type="widget" data-widget_type="text-editor.default">
<div class="elementor-widget-container">
<p>#This=MemeSeason2023</p> </div>
</div>
<div class="elementor-element elementor-element-84998d6 elementor-invisible elementor-widget elementor-widget-eael-creative-button" data-id="84998d6" data-element_type="widget" data-settings="{"_animation":"fadeInRight"}" data-widget_type="eael-creative-button.default">
<div class="elementor-widget-container">
<div class="eael-creative-button-wrapper">
<a class="eael-creative-button eael-creative-button--moema" href="https://www.pinksale.finance/launchpad/0x1d053f05250171f2b8eca1b719bd23c6e6de7bf1?chain=BSC" target="_blank _blank" data-text="Go!">
<div class="creative-button-inner">
<span class="eael-creative-button-icon-left"></span>
<span class="cretive-button-text">Buy $MEME</span>
</div>
</a>
</div>
</div>
</div>
</div>
</div>
<div class="elementor-column elementor-col-33 elementor-top-column elementor-element elementor-element-e7c022e elementor-invisible" data-id="e7c022e" data-element_type="column" data-settings="{"animation":"fadeInUp","background_background":"classic","mdp_selection_sticky_column_effect_enable":false}">
<div class="elementor-widget-wrap elementor-element-populated">
<div class="elementor-element elementor-element-5703c31 elementor-view-default elementor-vertical-align-top elementor-invisible elementor-widget elementor-widget-icon-box" data-id="5703c31" data-element_type="widget" data-settings="{"_animation":"fadeInLeft"}" data-widget_type="icon-box.default">
<div class="elementor-widget-container">
<div class="elementor-icon-box-wrapper">
<div class="elementor-icon-box-content">
<h2 class="elementor-icon-box-title">
<span >
Contract </span>
</h2>
<p class="elementor-icon-box-description">
0x79702f3Cb5e47fbfD2702221B3f0d5e17aA023c9 </p>
</div>
</div>
</div>
</div>
</div>
</div>
<div class="elementor-column elementor-col-33 elementor-top-column elementor-element elementor-element-2d3a661 elementor-invisible" data-id="2d3a661" data-element_type="column" data-settings="{"animation":"fadeInUp","mdp_selection_sticky_column_effect_enable":false}">
<div class="elementor-widget-wrap elementor-element-populated">
<div class="elementor-element elementor-element-682e1d8 elementor-invisible elementor-widget elementor-widget-counter" data-id="682e1d8" data-element_type="widget" data-settings="{"_animation":"fadeInRight"}" data-widget_type="counter.default">
<div class="elementor-widget-container">
<div class="elementor-counter">
<div class="elementor-counter-number-wrapper">
<span class="elementor-counter-number-prefix"></span>
<span class="elementor-counter-number" data-duration="2000" data-to-value="100" data-from-value="0" data-delimiter=",">0</span>
<span class="elementor-counter-number-suffix">Q</span>
</div>
<div class="elementor-counter-title">SupplY</div>
</div>
</div>
</div>
<div class="elementor-element elementor-element-6c56ce5 elementor-invisible elementor-widget elementor-widget-counter" data-id="6c56ce5" data-element_type="widget" data-settings="{"_animation":"fadeInLeft"}" data-widget_type="counter.default">
<div class="elementor-widget-container">
<div class="elementor-counter">
<div class="elementor-counter-number-wrapper">
<span class="elementor-counter-number-prefix"></span>
<span class="elementor-counter-number" data-duration="2000" data-to-value="3" data-from-value="0" data-delimiter=",">0</span>
<span class="elementor-counter-number-suffix">%</span>
</div>
<div class="elementor-counter-title">Tax</div>
</div>
</div>
</div>
</div>
</div>
</div>
</section>
<section data-particle_enable="false" data-particle-mobile-disabled="false" class="elementor-section elementor-top-section elementor-element elementor-element-7caafd30 elementor-section-boxed elementor-section-height-default elementor-section-height-default" data-id="7caafd30" data-element_type="section" id="Roadmap" data-settings="{"background_background":"classic","mdp_selection_sticky_effect_enable":false}">
<div class="elementor-background-overlay"></div>
<div class="elementor-container elementor-column-gap-default">
<div class="elementor-column elementor-col-100 elementor-top-column elementor-element elementor-element-1ec556f8" data-id="1ec556f8" data-element_type="column" data-settings="{"mdp_selection_sticky_column_effect_enable":false}">
<div class="elementor-widget-wrap elementor-element-populated">
<div class="elementor-element elementor-element-7b5872e elementor-invisible elementor-widget elementor-widget-heading" data-id="7b5872e" data-element_type="widget" data-settings="{"_animation":"zoomIn"}" data-widget_type="heading.default">
<div class="elementor-widget-container">
<h2 class="elementor-heading-title elementor-size-default">Upcoming Plans</h2> </div>
</div>
<div class="elementor-element elementor-element-eca40c1 elementor-invisible elementor-widget elementor-widget-text-editor" data-id="eca40c1" data-element_type="widget" data-settings="{"_animation":"zoomIn"}" data-widget_type="text-editor.default">
<div class="elementor-widget-container">
<p>#This=MemeSeason2023</p> </div>
</div>
<section data-particle_enable="false" data-particle-mobile-disabled="false" class="elementor-section elementor-inner-section elementor-element elementor-element-2d5975dd elementor-section-boxed elementor-section-height-default elementor-section-height-default elementor-invisible" data-id="2d5975dd" data-element_type="section" data-settings="{"animation":"fadeInUp","animation_delay":200,"mdp_selection_sticky_effect_enable":false}">
<div class="elementor-container elementor-column-gap-default">
<div class="elementor-column elementor-col-25 elementor-inner-column elementor-element elementor-element-35f0219a" data-id="35f0219a" data-element_type="column" data-settings="{"mdp_selection_sticky_column_effect_enable":false}">
<div class="elementor-widget-wrap elementor-element-populated">
<div class="elementor-element elementor-element-fbf8317 eael-flipbox-content-align-center elementor-invisible elementor-widget elementor-widget-eael-flip-box" data-id="fbf8317" data-element_type="widget" data-settings="{"_animation":"fadeInRight"}" data-widget_type="eael-flip-box.default">
<div class="elementor-widget-container">
<div class="eael-elements-flip-box-container eael-animate-flip eael-animate-left eael-content">
<div class="eael-elements-flip-box-flip-card">
<div class="eael-elements-flip-box-front-container">
<div class="eael-elements-slider-display-table">
<div class="eael-elements-flip-box-vertical-align">
<div class="eael-elements-flip-box-padding">
<div class="eael-elements-flip-box-icon-image">
</div>
<h2 class="eael-elements-flip-box-heading">Phase 1</h2>
<div class="eael-elements-flip-box-content">
<p></p>
</div>
</div>
</div>
</div>
</div>
<div class="eael-elements-flip-box-rear-container">
<div class="eael-elements-slider-display-table">
<div class="eael-elements-flip-box-vertical-align">
<div class="eael-elements-flip-box-padding">
<div class="eael-elements-flip-box-icon-image">
</div>
<div class="eael-elements-flip-box-content">
<p><p> ⁃ Name and idea<br />⁃ Website launch<br />- Giving flyers out in real world<br />⁃ Logo<br />⁃ Audit and contract deployment<br />-Community building<br />-Billboards worldwide</p></p>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
<div class="elementor-column elementor-col-25 elementor-inner-column elementor-element elementor-element-c9fbd6c" data-id="c9fbd6c" data-element_type="column" data-settings="{"mdp_selection_sticky_column_effect_enable":false}">
<div class="elementor-widget-wrap elementor-element-populated">
<div class="elementor-element elementor-element-00b7376 eael-flipbox-content-align-center elementor-invisible elementor-widget elementor-widget-eael-flip-box" data-id="00b7376" data-element_type="widget" data-settings="{"_animation":"fadeInLeft"}" data-widget_type="eael-flip-box.default">
<div class="elementor-widget-container">
<div class="eael-elements-flip-box-container eael-animate-flip eael-animate-left eael-content">
<div class="eael-elements-flip-box-flip-card">
<div class="eael-elements-flip-box-front-container">
<div class="eael-elements-slider-display-table">
<div class="eael-elements-flip-box-vertical-align">
<div class="eael-elements-flip-box-padding">
<div class="eael-elements-flip-box-icon-image">
</div>
<h2 class="eael-elements-flip-box-heading">Phase 2</h2>
<div class="eael-elements-flip-box-content">
<p></p>
</div>
</div>
</div>
</div>
</div>
<div class="eael-elements-flip-box-rear-container">
<div class="eael-elements-slider-display-table">
<div class="eael-elements-flip-box-vertical-align">
<div class="eael-elements-flip-box-padding">
<div class="eael-elements-flip-box-icon-image">
</div>
<div class="eael-elements-flip-box-content">
<p><p>-Guerilla marketing<br />-KYC with Pinksale<br />⁃ Fair Launch on Pinksale<br />⁃ Pancakeswap Listing<br />⁃ 5000 holders<br />-Avedex hot, Dextools trending and dexview trending.<br />⁃ Coinmarketcap & Coingecko listing<br />-Trendings on the sites mentioned above.</p></p>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
<div class="elementor-column elementor-col-25 elementor-inner-column elementor-element elementor-element-bea99b8" data-id="bea99b8" data-element_type="column" data-settings="{"mdp_selection_sticky_column_effect_enable":false}">
<div class="elementor-widget-wrap elementor-element-populated">
<div class="elementor-element elementor-element-24bc63c eael-flipbox-content-align-center elementor-invisible elementor-widget elementor-widget-eael-flip-box" data-id="24bc63c" data-element_type="widget" data-settings="{"_animation":"fadeInRight"}" data-widget_type="eael-flip-box.default">
<div class="elementor-widget-container">
<div class="eael-elements-flip-box-container eael-animate-flip eael-animate-left eael-content">
<div class="eael-elements-flip-box-flip-card">
<div class="eael-elements-flip-box-front-container">
<div class="eael-elements-slider-display-table">
<div class="eael-elements-flip-box-vertical-align">
<div class="eael-elements-flip-box-padding">
<div class="eael-elements-flip-box-icon-image">
</div>
<h2 class="eael-elements-flip-box-heading">Phase 3</h2>
<div class="eael-elements-flip-box-content">
<p></p>
</div>
</div>
</div>
</div>
</div>
<div class="eael-elements-flip-box-rear-container">
<div class="eael-elements-slider-display-table">
<div class="eael-elements-flip-box-vertical-align">
<div class="eael-elements-flip-box-padding">
<div class="eael-elements-flip-box-icon-image">
</div>
<div class="eael-elements-flip-box-content">
<p><p>-Branding and Merchandise shop<br />⁃ 7000 holders<br />⁃ Staking<br />⁃ Celebrity marketing<br />⁃ Billboards<br />⁃ Buy competitions<br />-Staking</p></p>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
<div class="elementor-column elementor-col-25 elementor-inner-column elementor-element elementor-element-809de89" data-id="809de89" data-element_type="column" data-settings="{"mdp_selection_sticky_column_effect_enable":false}">
<div class="elementor-widget-wrap elementor-element-populated">
<div class="elementor-element elementor-element-167ae52 eael-flipbox-content-align-center elementor-invisible elementor-widget elementor-widget-eael-flip-box" data-id="167ae52" data-element_type="widget" data-settings="{"_animation":"fadeInLeft"}" data-widget_type="eael-flip-box.default">
<div class="elementor-widget-container">
<div class="eael-elements-flip-box-container eael-animate-flip eael-animate-left eael-content">
<div class="eael-elements-flip-box-flip-card">
<div class="eael-elements-flip-box-front-container">
<div class="eael-elements-slider-display-table">
<div class="eael-elements-flip-box-vertical-align">
<div class="eael-elements-flip-box-padding">
<div class="eael-elements-flip-box-icon-image">
</div>
<h2 class="eael-elements-flip-box-heading">Phase 4</h2>
<div class="eael-elements-flip-box-content">
<p></p>
</div>
</div>
</div>
</div>
</div>
<div class="eael-elements-flip-box-rear-container">
<div class="eael-elements-slider-display-table">
<div class="eael-elements-flip-box-vertical-align">
<div class="eael-elements-flip-box-padding">
<div class="eael-elements-flip-box-icon-image">
</div>
<div class="eael-elements-flip-box-content">
<p><p><br />⁃ CEX tier 1 top 5 exchange<br />⁃ Multi-million market capitalization<br />⁃ Viral marketing campaign<br />- Setting up a reallife business<br />-Developing more usecases</p></p>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</section>
</div>
</div>
</div>
</section>
<section data-particle_enable="false" data-particle-mobile-disabled="false" class="elementor-section elementor-top-section elementor-element elementor-element-3c809f3 elementor-section-full_width elementor-section-height-default elementor-section-height-default" data-id="3c809f3" data-element_type="section" data-settings="{"background_background":"classic","mdp_selection_sticky_effect_enable":false}">
<div class="elementor-container elementor-column-gap-default">
<div class="elementor-column elementor-col-100 elementor-top-column elementor-element elementor-element-7292208" data-id="7292208" data-element_type="column" data-settings="{"mdp_selection_sticky_column_effect_enable":false}">
<div class="elementor-widget-wrap elementor-element-populated">
<div class="elementor-element elementor-element-dfe6792 elementor-widget elementor-widget-mdp-crawler-elementor" data-id="dfe6792" data-element_type="widget" data-widget_type="mdp-crawler-elementor.default">
<div class="elementor-widget-container">
<!-- Start Crawler for Elementor WordPress Plugin -->
<div class="mdp-crawler-elementor-box"
data-ticker-type="ticker"
>
<div class="mdp-crawler-elementor-ticker mdp-crawler-elementor-ticker-ticker-type mdp-crawler-elementor-ticker-label-align-">
<div class="mdp-crawler-elementor-content-wrapper">
<div class="mdp-crawler-elementor-ticker-content mdp-crawler-elementor-ticker-animation-reverse ">
<div class="mdp-crawler-elementor-ticker-item">
<a href="#">PEPE</a>
</div>
<span class="mdp-crawler-elementor-ticker-item-separator">
<i aria-hidden="true" class="fas fa-star-of-life"></i> </span>
<div class="mdp-crawler-elementor-ticker-item">
<a href="#">DOGE</a>
</div>
<span class="mdp-crawler-elementor-ticker-item-separator">
<i aria-hidden="true" class="fas fa-star-of-life"></i> </span>
<div class="mdp-crawler-elementor-ticker-item">
<a href="#">SHIBA</a>
</div>
<span class="mdp-crawler-elementor-ticker-item-separator">
<i aria-hidden="true" class="fas fa-star-of-life"></i> </span>
<div class="mdp-crawler-elementor-ticker-item">
<a href="#">OGGY</a>
</div>
<span class="mdp-crawler-elementor-ticker-item-separator">
<i aria-hidden="true" class="fas fa-star-of-life"></i> </span>
<div class="mdp-crawler-elementor-ticker-item">
<a href="#">WOJACK</a>
</div>
<span class="mdp-crawler-elementor-ticker-item-separator">
<i aria-hidden="true" class="fas fa-star-of-life"></i> </span>
<div class="mdp-crawler-elementor-ticker-item">
<a href="#">AIDOGE</a>
</div>
<span class="mdp-crawler-elementor-ticker-item-separator">
<i aria-hidden="true" class="fas fa-star-of-life"></i> </span>
<div class="mdp-crawler-elementor-ticker-item">
<a href="#">BONK</a>
</div>
<span class="mdp-crawler-elementor-ticker-item-separator">
<i aria-hidden="true" class="fas fa-star-of-life"></i> </span>
<div class="mdp-crawler-elementor-ticker-item">
<a href="#">FLOKI</a>
</div>
<span class="mdp-crawler-elementor-ticker-item-separator">
<i aria-hidden="true" class="fas fa-star-of-life"></i> </span>
</div>
</div>
</div>
</div>
<!-- End Crawler for Elementor WordPress Plugin -->
</div>
</div>
</div>
</div>
</div>
</section>
<section data-particle_enable="false" data-particle-mobile-disabled="false" class="elementor-section elementor-top-section elementor-element elementor-element-188fe70c elementor-hidden-tablet elementor-hidden-mobile elementor-section-boxed elementor-section-height-default elementor-section-height-default" data-id="188fe70c" data-element_type="section" id="Team" data-settings="{"background_background":"classic","mdp_selection_sticky_effect_enable":false}">
<div class="elementor-container elementor-column-gap-default">
<div class="elementor-column elementor-col-100 elementor-top-column elementor-element elementor-element-6b53999f" data-id="6b53999f" data-element_type="column" data-settings="{"mdp_selection_sticky_column_effect_enable":false}">
<div class="elementor-widget-wrap elementor-element-populated">
<section data-particle_enable="false" data-particle-mobile-disabled="false" class="elementor-section elementor-inner-section elementor-element elementor-element-252bad96 elementor-section-boxed elementor-section-height-default elementor-section-height-default" data-id="252bad96" data-element_type="section" data-settings="{"mdp_selection_sticky_effect_enable":false}">
<div class="elementor-container elementor-column-gap-default">
<div class="elementor-column elementor-col-33 elementor-inner-column elementor-element elementor-element-11ad0fa5 elementor-invisible" data-id="11ad0fa5" data-element_type="column" data-settings="{"animation":"fadeInLeft","animation_delay":200,"background_background":"classic","mdp_selection_sticky_column_effect_enable":false}">
<div class="elementor-widget-wrap elementor-element-populated">
<div class="elementor-element elementor-element-44cbe34 elementor-widget elementor-widget-image" data-id="44cbe34" data-element_type="widget" data-widget_type="image.default">
<div class="elementor-widget-container">
<img decoding="async" src="wp-content/uploads/2023/05/memeseason-final-4-e1685408938352.png" title="memeseason final 4" alt="memeseason final 4" loading="lazy" /> </div>
</div>
<div class="elementor-element elementor-element-265ac3f6 elementor-widget elementor-widget-heading" data-id="265ac3f6" data-element_type="widget" data-widget_type="heading.default">
<div class="elementor-widget-container">
<h3 class="elementor-heading-title elementor-size-default"><a href="https://t.me/JamesMemeSeason" target="_blank">James</a></h3> </div>
</div>
<div class="elementor-element elementor-element-18fd4598 elementor-widget elementor-widget-heading" data-id="18fd4598" data-element_type="widget" data-widget_type="heading.default">
<div class="elementor-widget-container">
<span class="elementor-heading-title elementor-size-default">Founder</span> </div>
</div>
</div>
</div>
<div class="elementor-column elementor-col-33 elementor-inner-column elementor-element elementor-element-54532d8" data-id="54532d8" data-element_type="column" data-settings="{"mdp_selection_sticky_column_effect_enable":false}">
<div class="elementor-widget-wrap elementor-element-populated">
<div class="elementor-element elementor-element-72d525c elementor-invisible elementor-widget elementor-widget-heading" data-id="72d525c" data-element_type="widget" data-settings="{"_animation":"zoomIn"}" data-widget_type="heading.default">
<div class="elementor-widget-container">
<h2 class="elementor-heading-title elementor-size-default">Our Team</h2> </div>
</div>
<div class="elementor-element elementor-element-06cafe4 elementor-invisible elementor-widget elementor-widget-text-editor" data-id="06cafe4" data-element_type="widget" data-settings="{"_animation":"zoomIn"}" data-widget_type="text-editor.default">
<div class="elementor-widget-container">
<p>#This=MemeSeason2023</p> </div>
</div>
<div class="elementor-element elementor-element-dc622aa elementor-invisible elementor-widget elementor-widget-eael-creative-button" data-id="dc622aa" data-element_type="widget" data-settings="{"_animation":"fadeInRight"}" data-widget_type="eael-creative-button.default">
<div class="elementor-widget-container">
<div class="eael-creative-button-wrapper">
<a class="eael-creative-button eael-creative-button--moema" href="https://pinksale.notion.site/MemeSeason-KYC-Verification-d7ab73d9c166410b8257dd8836346a21" target="_blank _blank" data-text="Go!">
<div class="creative-button-inner">
<span class="eael-creative-button-icon-left"></span>
<span class="cretive-button-text">KYC</span>
</div>
</a>
</div>
</div>
</div>
</div>
</div>
<div class="elementor-column elementor-col-33 elementor-inner-column elementor-element elementor-element-7d10379 elementor-invisible" data-id="7d10379" data-element_type="column" data-settings="{"animation":"fadeInRight","animation_delay":200,"background_background":"classic","mdp_selection_sticky_column_effect_enable":false}">
<div class="elementor-widget-wrap elementor-element-populated">
<div class="elementor-element elementor-element-315539b elementor-widget elementor-widget-image" data-id="315539b" data-element_type="widget" data-widget_type="image.default">
<div class="elementor-widget-container">
<img decoding="async" src="wp-content/uploads/2023/05/memeseason-final-4-e1685408938352.png" title="memeseason final 4" alt="memeseason final 4" loading="lazy" /> </div>
</div>
<div class="elementor-element elementor-element-927497b elementor-widget elementor-widget-heading" data-id="927497b" data-element_type="widget" data-widget_type="heading.default">
<div class="elementor-widget-container">
<h3 class="elementor-heading-title elementor-size-default"><a href="https://t.me/ladymemeseason" target="_blank">Lady</a></h3> </div>
</div>
<div class="elementor-element elementor-element-983ab47 elementor-widget elementor-widget-heading" data-id="983ab47" data-element_type="widget" data-widget_type="heading.default">
<div class="elementor-widget-container">
<span class="elementor-heading-title elementor-size-default">Marketing</span> </div>
</div>
</div>
</div>
</div>
</section>
</div>
</div>
</div>
</section>
<section data-particle_enable="false" data-particle-mobile-disabled="false" class="elementor-section elementor-top-section elementor-element elementor-element-3663434 elementor-hidden-desktop elementor-section-boxed elementor-section-height-default elementor-section-height-default" data-id="3663434" data-element_type="section" data-settings="{"background_background":"classic","mdp_selection_sticky_effect_enable":false}">
<div class="elementor-container elementor-column-gap-default">
<div class="elementor-column elementor-col-100 elementor-top-column elementor-element elementor-element-3928d53" data-id="3928d53" data-element_type="column" data-settings="{"mdp_selection_sticky_column_effect_enable":false}">
<div class="elementor-widget-wrap elementor-element-populated">
<section data-particle_enable="false" data-particle-mobile-disabled="false" class="elementor-section elementor-inner-section elementor-element elementor-element-43af429 elementor-section-boxed elementor-section-height-default elementor-section-height-default" data-id="43af429" data-element_type="section" data-settings="{"mdp_selection_sticky_effect_enable":false}">
<div class="elementor-container elementor-column-gap-default">
<div class="elementor-column elementor-col-33 elementor-inner-column elementor-element elementor-element-837da28" data-id="837da28" data-element_type="column" data-settings="{"mdp_selection_sticky_column_effect_enable":false}">
<div class="elementor-widget-wrap elementor-element-populated">
<div class="elementor-element elementor-element-cc22ca1 elementor-invisible elementor-widget elementor-widget-heading" data-id="cc22ca1" data-element_type="widget" data-settings="{"_animation":"zoomIn"}" data-widget_type="heading.default">
<div class="elementor-widget-container">
<h2 class="elementor-heading-title elementor-size-default">Our Team</h2> </div>
</div>
<div class="elementor-element elementor-element-bb0b83e elementor-widget elementor-widget-text-editor" data-id="bb0b83e" data-element_type="widget" data-widget_type="text-editor.default">
<div class="elementor-widget-container">
<p>#This=MemeSeason2023</p> </div>
</div>
<div class="elementor-element elementor-element-e733eca elementor-invisible elementor-widget elementor-widget-eael-creative-button" data-id="e733eca" data-element_type="widget" data-settings="{"_animation":"fadeInRight"}" data-widget_type="eael-creative-button.default">
<div class="elementor-widget-container">
<div class="eael-creative-button-wrapper">
<a class="eael-creative-button eael-creative-button--moema" href="https://pinksale.notion.site/MemeSeason-KYC-Verification-d7ab73d9c166410b8257dd8836346a21" target="_blank _blank" data-text="Go!">
<div class="creative-button-inner">
<span class="eael-creative-button-icon-left"></span>
<span class="cretive-button-text">KYC</span>
</div>
</a>
</div>
</div>
</div>
</div>
</div>
<div class="elementor-column elementor-col-33 elementor-inner-column elementor-element elementor-element-f43d831 elementor-invisible" data-id="f43d831" data-element_type="column" data-settings="{"animation":"fadeInLeft","animation_delay":200,"background_background":"classic","mdp_selection_sticky_column_effect_enable":false}">
<div class="elementor-widget-wrap elementor-element-populated">
<div class="elementor-element elementor-element-f4c2cc8 elementor-widget elementor-widget-image" data-id="f4c2cc8" data-element_type="widget" data-widget_type="image.default">
<div class="elementor-widget-container">
<img decoding="async" src="wp-content/uploads/2023/05/memeseason-final-4-e1685408938352.png" title="memeseason final 4" alt="memeseason final 4" loading="lazy" /> </div>
</div>
<div class="elementor-element elementor-element-823e5f0 elementor-widget elementor-widget-heading" data-id="823e5f0" data-element_type="widget" data-widget_type="heading.default">
<div class="elementor-widget-container">
<h3 class="elementor-heading-title elementor-size-default"><a href="https://t.me/JamesMemeSeason" target="_blank">James</a></h3> </div>
</div>
<div class="elementor-element elementor-element-4239d26 elementor-widget elementor-widget-heading" data-id="4239d26" data-element_type="widget" data-widget_type="heading.default">
<div class="elementor-widget-container">
<span class="elementor-heading-title elementor-size-default">Founder</span> </div>
</div>
</div>
</div>
<div class="elementor-column elementor-col-33 elementor-inner-column elementor-element elementor-element-21fc86a elementor-invisible" data-id="21fc86a" data-element_type="column" data-settings="{"animation":"fadeInRight","animation_delay":200,"background_background":"classic","mdp_selection_sticky_column_effect_enable":false}">
<div class="elementor-widget-wrap elementor-element-populated">
<div class="elementor-element elementor-element-36aded5 elementor-widget elementor-widget-image" data-id="36aded5" data-element_type="widget" data-widget_type="image.default">
<div class="elementor-widget-container">
<img decoding="async" src="wp-content/uploads/2023/05/memeseason-final-4-e1685408938352.png" title="memeseason final 4" alt="memeseason final 4" loading="lazy" /> </div>
</div>
<div class="elementor-element elementor-element-2f8ad87 elementor-widget elementor-widget-heading" data-id="2f8ad87" data-element_type="widget" data-widget_type="heading.default">
<div class="elementor-widget-container">
<h3 class="elementor-heading-title elementor-size-default"><a href="https://t.me/ladymemeseason" target="_blank">Lady</a></h3> </div>
</div>
<div class="elementor-element elementor-element-cad823d elementor-widget elementor-widget-heading" data-id="cad823d" data-element_type="widget" data-widget_type="heading.default">
<div class="elementor-widget-container">
<span class="elementor-heading-title elementor-size-default">Marketing</span> </div>
</div>
</div>
</div>
</div>
</section>
</div>
</div>
</div>
</section>
<section data-particle_enable="false" data-particle-mobile-disabled="false" class="elementor-section elementor-top-section elementor-element elementor-element-e6cbf49 elementor-section-boxed elementor-section-height-default elementor-section-height-default" data-id="e6cbf49" data-element_type="section" data-settings="{"background_background":"classic","mdp_selection_sticky_effect_enable":false}">
<div class="elementor-container elementor-column-gap-default">
<div class="elementor-column elementor-col-12 elementor-top-column elementor-element elementor-element-2331486" data-id="2331486" data-element_type="column" data-settings="{"animation":"none","mdp_selection_sticky_column_effect_enable":false}">
<div class="elementor-widget-wrap elementor-element-populated">
<div class="elementor-element elementor-element-b1d738e elementor-invisible elementor-widget elementor-widget-image" data-id="b1d738e" data-element_type="widget" data-settings="{"_animation":"fadeInDown"}" data-widget_type="image.default">
<div class="elementor-widget-container">
<a href="https://www.pinksale.finance/launchpad/0x1d053f05250171f2b8eca1b719bd23c6e6de7bf1?chain=BSC" target="_blank">
<img decoding="async" width="300" height="300" src="wp-content/uploads/2023/05/12.png" class="elementor-animation-shrink attachment-large size-large wp-image-762" alt="" loading="lazy" srcset="https://memeseasoncoin.com/wp-content/uploads/2023/05/12.png 300w, https://memeseasoncoin.com/wp-content/uploads/2023/05/12-150x150.png 150w" sizes="(max-width: 300px) 100vw, 300px" /> </a>
</div>
</div>
</div>
</div>
<div class="elementor-column elementor-col-12 elementor-top-column elementor-element elementor-element-cd05d0b" data-id="cd05d0b" data-element_type="column" data-settings="{"animation":"none","mdp_selection_sticky_column_effect_enable":false}">
<div class="elementor-widget-wrap elementor-element-populated">
<div class="elementor-element elementor-element-068860f elementor-invisible elementor-widget elementor-widget-image" data-id="068860f" data-element_type="widget" data-settings="{"_animation":"fadeInUp"}" data-widget_type="image.default">
<div class="elementor-widget-container">
<a href="https://www.dexview.com/bsc/0x79702f3Cb5e47fbfD2702221B3f0d5e17aA023c9" target="_blank">
<img decoding="async" width="300" height="300" src="wp-content/uploads/2023/05/2.png" class="elementor-animation-shrink attachment-large size-large wp-image-757" alt="" loading="lazy" srcset="https://memeseasoncoin.com/wp-content/uploads/2023/05/2.png 300w, https://memeseasoncoin.com/wp-content/uploads/2023/05/2-150x150.png 150w" sizes="(max-width: 300px) 100vw, 300px" /> </a>
</div>
</div>
</div>
</div>
<div class="elementor-column elementor-col-12 elementor-top-column elementor-element elementor-element-4e6f250" data-id="4e6f250" data-element_type="column" data-settings="{"animation":"none","mdp_selection_sticky_column_effect_enable":false}">
<div class="elementor-widget-wrap elementor-element-populated">
<div class="elementor-element elementor-element-03f9e49 elementor-invisible elementor-widget elementor-widget-image" data-id="03f9e49" data-element_type="widget" data-settings="{"_animation":"fadeInDown"}" data-widget_type="image.default">
<div class="elementor-widget-container">
<a href="https://bscscan.com/token/0x79702f3cb5e47fbfd2702221b3f0d5e17aa023c9" target="_blank">
<img decoding="async" width="300" height="300" src="wp-content/uploads/2023/05/4.png" class="elementor-animation-shrink attachment-large size-large wp-image-759" alt="" loading="lazy" srcset="https://memeseasoncoin.com/wp-content/uploads/2023/05/4.png 300w, https://memeseasoncoin.com/wp-content/uploads/2023/05/4-150x150.png 150w" sizes="(max-width: 300px) 100vw, 300px" /> </a>
</div>
</div>
</div>
</div>
<div class="elementor-column elementor-col-12 elementor-top-column elementor-element elementor-element-a6243bd" data-id="a6243bd" data-element_type="column" data-settings="{"animation":"none","mdp_selection_sticky_column_effect_enable":false}">
<div class="elementor-widget-wrap elementor-element-populated">
<div class="elementor-element elementor-element-dd74b2f elementor-invisible elementor-widget elementor-widget-image" data-id="dd74b2f" data-element_type="widget" data-settings="{"_animation":"fadeInUp"}" data-widget_type="image.default">
<div class="elementor-widget-container">
<a href="https://pancakeswap.finance/swap?outputCurrency=0x79702f3Cb5e47fbfD2702221B3f0d5e17aA023c9" target="_blank">
<img decoding="async" width="300" height="300" src="wp-content/uploads/2023/05/6.png" class="elementor-animation-shrink attachment-large size-large wp-image-761" alt="" loading="lazy" srcset="https://memeseasoncoin.com/wp-content/uploads/2023/05/6.png 300w, https://memeseasoncoin.com/wp-content/uploads/2023/05/6-150x150.png 150w" sizes="(max-width: 300px) 100vw, 300px" /> </a>
</div>
</div>
</div>
</div>
<div class="elementor-column elementor-col-12 elementor-top-column elementor-element elementor-element-d5e1ef5" data-id="d5e1ef5" data-element_type="column" data-settings="{"animation":"none","mdp_selection_sticky_column_effect_enable":false}">
<div class="elementor-widget-wrap elementor-element-populated">
<div class="elementor-element elementor-element-21b1b45 elementor-invisible elementor-widget elementor-widget-image" data-id="21b1b45" data-element_type="widget" data-settings="{"_animation":"fadeInDown"}" data-widget_type="image.default">
<div class="elementor-widget-container">
<a href="https://poocoin.app/tokens/0x79702f3cb5e47fbfd2702221b3f0d5e17aa023c9" target="_blank">
<img decoding="async" width="300" height="300" src="wp-content/uploads/2023/05/5.png" class="elementor-animation-shrink attachment-large size-large wp-image-760" alt="" loading="lazy" srcset="https://memeseasoncoin.com/wp-content/uploads/2023/05/5.png 300w, https://memeseasoncoin.com/wp-content/uploads/2023/05/5-150x150.png 150w" sizes="(max-width: 300px) 100vw, 300px" /> </a>
</div>
</div>
</div>
</div>
<div class="elementor-column elementor-col-12 elementor-top-column elementor-element elementor-element-2dcb4ab" data-id="2dcb4ab" data-element_type="column" data-settings="{"animation":"none","mdp_selection_sticky_column_effect_enable":false}">
<div class="elementor-widget-wrap elementor-element-populated">
<div class="elementor-element elementor-element-5a07caf elementor-invisible elementor-widget elementor-widget-image" data-id="5a07caf" data-element_type="widget" data-settings="{"_animation":"fadeInUp"}" data-widget_type="image.default">
<div class="elementor-widget-container">
<a href="https://www.dextools.io/app/en/bnb/pair-explorer/0x0b4451d21554efab1bf7a8a030fbf7950d4bb2eb" target="_blank">
<img decoding="async" width="300" height="300" src="wp-content/uploads/2023/05/3.png" class="elementor-animation-shrink attachment-large size-large wp-image-758" alt="" loading="lazy" srcset="https://memeseasoncoin.com/wp-content/uploads/2023/05/3.png 300w, https://memeseasoncoin.com/wp-content/uploads/2023/05/3-150x150.png 150w" sizes="(max-width: 300px) 100vw, 300px" /> </a>
</div>
</div>
</div>
</div>
<div class="elementor-column elementor-col-12 elementor-top-column elementor-element elementor-element-fbe8acf" data-id="fbe8acf" data-element_type="column" data-settings="{"animation":"none","mdp_selection_sticky_column_effect_enable":false}">
<div class="elementor-widget-wrap elementor-element-populated">
<div class="elementor-element elementor-element-b84b45c elementor-invisible elementor-widget elementor-widget-image" data-id="b84b45c" data-element_type="widget" data-settings="{"_animation":"fadeInDown"}" data-widget_type="image.default">
<div class="elementor-widget-container">
<img decoding="async" width="512" height="512" src="wp-content/uploads/2023/05/614237.png" class="elementor-animation-shrink attachment-large size-large wp-image-945" alt="" loading="lazy" srcset="https://memeseasoncoin.com/wp-content/uploads/2023/05/614237.png 512w, https://memeseasoncoin.com/wp-content/uploads/2023/05/614237-300x300.png 300w, https://memeseasoncoin.com/wp-content/uploads/2023/05/614237-150x150.png 150w" sizes="(max-width: 512px) 100vw, 512px" /> </div>
</div>
</div>
</div>
<div class="elementor-column elementor-col-12 elementor-top-column elementor-element elementor-element-867fc7e" data-id="867fc7e" data-element_type="column" data-settings="{"animation":"none","mdp_selection_sticky_column_effect_enable":false}">
<div class="elementor-widget-wrap elementor-element-populated">
<div class="elementor-element elementor-element-036189a elementor-invisible elementor-widget elementor-widget-image" data-id="036189a" data-element_type="widget" data-settings="{"_animation":"fadeInUp"}" data-widget_type="image.default">
<div class="elementor-widget-container">
<a href="https://github.com/CFG-NINJA/audits/blob/4d9f05eb568480f947977b4d4c680b66f648318b/20230601_CFGNINJA_Meme Season_Memes_Audit.pdf" target="_blank">
<img decoding="async" width="512" height="512" src="wp-content/uploads/2023/06/cropped-icono-512x512-1.png" class="elementor-animation-shrink attachment-large size-large wp-image-1020" alt="" loading="lazy" srcset="https://memeseasoncoin.com/wp-content/uploads/2023/06/cropped-icono-512x512-1.png 512w, https://memeseasoncoin.com/wp-content/uploads/2023/06/cropped-icono-512x512-1-300x300.png 300w, https://memeseasoncoin.com/wp-content/uploads/2023/06/cropped-icono-512x512-1-150x150.png 150w" sizes="(max-width: 512px) 100vw, 512px" /> </a>
</div>
</div>
</div>
</div>
</div>
</section>
<section data-particle_enable="false" data-particle-mobile-disabled="false" class="elementor-section elementor-top-section elementor-element elementor-element-c38ce7f elementor-section-boxed elementor-section-height-default elementor-section-height-default" data-id="c38ce7f" data-element_type="section" id="Contact" data-settings="{"background_background":"classic","mdp_selection_sticky_effect_enable":false}">
<div class="elementor-background-overlay"></div>
<div class="elementor-container elementor-column-gap-default">
<div class="elementor-column elementor-col-33 elementor-top-column elementor-element elementor-element-448bdc39" data-id="448bdc39" data-element_type="column" data-settings="{"mdp_selection_sticky_column_effect_enable":false}">
<div class="elementor-widget-wrap elementor-element-populated">
<div class="elementor-element elementor-element-44215102 e-grid-align-left e-grid-align-tablet-center e-grid-align-mobile-center elementor-shape-rounded elementor-grid-0 elementor-invisible elementor-widget elementor-widget-social-icons" data-id="44215102" data-element_type="widget" data-settings="{"_animation":"fadeInLeft"}" data-widget_type="social-icons.default">
<div class="elementor-widget-container">
<style>/*! elementor - v3.12.1 - 02-04-2023 */
.elementor-widget-social-icons.elementor-grid-0 .elementor-widget-container,.elementor-widget-social-icons.elementor-grid-mobile-0 .elementor-widget-container,.elementor-widget-social-icons.elementor-grid-tablet-0 .elementor-widget-container{line-height:1;font-size:0}.elementor-widget-social-icons:not(.elementor-grid-0):not(.elementor-grid-tablet-0):not(.elementor-grid-mobile-0) .elementor-grid{display:inline-grid}.elementor-widget-social-icons .elementor-grid{grid-column-gap:var(--grid-column-gap,5px);grid-row-gap:var(--grid-row-gap,5px);grid-template-columns:var(--grid-template-columns);justify-content:var(--justify-content,center);justify-items:var(--justify-content,center)}.elementor-icon.elementor-social-icon{font-size:var(--icon-size,25px);line-height:var(--icon-size,25px);width:calc(var(--icon-size, 25px) + (2 * var(--icon-padding, .5em)));height:calc(var(--icon-size, 25px) + (2 * var(--icon-padding, .5em)))}.elementor-social-icon{--e-social-icon-icon-color:#fff;display:inline-flex;background-color:#69727d;align-items:center;justify-content:center;text-align:center;cursor:pointer}.elementor-social-icon i{color:var(--e-social-icon-icon-color)}.elementor-social-icon svg{fill:var(--e-social-icon-icon-color)}.elementor-social-icon:last-child{margin:0}.elementor-social-icon:hover{opacity:.9;color:#fff}.elementor-social-icon-android{background-color:#a4c639}.elementor-social-icon-apple{background-color:#999}.elementor-social-icon-behance{background-color:#1769ff}.elementor-social-icon-bitbucket{background-color:#205081}.elementor-social-icon-codepen{background-color:#000}.elementor-social-icon-delicious{background-color:#39f}.elementor-social-icon-deviantart{background-color:#05cc47}.elementor-social-icon-digg{background-color:#005be2}.elementor-social-icon-dribbble{background-color:#ea4c89}.elementor-social-icon-elementor{background-color:#d30c5c}.elementor-social-icon-envelope{background-color:#ea4335}.elementor-social-icon-facebook,.elementor-social-icon-facebook-f{background-color:#3b5998}.elementor-social-icon-flickr{background-color:#0063dc}.elementor-social-icon-foursquare{background-color:#2d5be3}.elementor-social-icon-free-code-camp,.elementor-social-icon-freecodecamp{background-color:#006400}.elementor-social-icon-github{background-color:#333}.elementor-social-icon-gitlab{background-color:#e24329}.elementor-social-icon-globe{background-color:#69727d}.elementor-social-icon-google-plus,.elementor-social-icon-google-plus-g{background-color:#dd4b39}.elementor-social-icon-houzz{background-color:#7ac142}.elementor-social-icon-instagram{background-color:#262626}.elementor-social-icon-jsfiddle{background-color:#487aa2}.elementor-social-icon-link{background-color:#818a91}.elementor-social-icon-linkedin,.elementor-social-icon-linkedin-in{background-color:#0077b5}.elementor-social-icon-medium{background-color:#00ab6b}.elementor-social-icon-meetup{background-color:#ec1c40}.elementor-social-icon-mixcloud{background-color:#273a4b}.elementor-social-icon-odnoklassniki{background-color:#f4731c}.elementor-social-icon-pinterest{background-color:#bd081c}.elementor-social-icon-product-hunt{background-color:#da552f}.elementor-social-icon-reddit{background-color:#ff4500}.elementor-social-icon-rss{background-color:#f26522}.elementor-social-icon-shopping-cart{background-color:#4caf50}.elementor-social-icon-skype{background-color:#00aff0}.elementor-social-icon-slideshare{background-color:#0077b5}.elementor-social-icon-snapchat{background-color:#fffc00}.elementor-social-icon-soundcloud{background-color:#f80}.elementor-social-icon-spotify{background-color:#2ebd59}.elementor-social-icon-stack-overflow{background-color:#fe7a15}.elementor-social-icon-steam{background-color:#00adee}.elementor-social-icon-stumbleupon{background-color:#eb4924}.elementor-social-icon-telegram{background-color:#2ca5e0}.elementor-social-icon-thumb-tack{background-color:#1aa1d8}.elementor-social-icon-tripadvisor{background-color:#589442}.elementor-social-icon-tumblr{background-color:#35465c}.elementor-social-icon-twitch{background-color:#6441a5}.elementor-social-icon-twitter{background-color:#1da1f2}.elementor-social-icon-viber{background-color:#665cac}.elementor-social-icon-vimeo{background-color:#1ab7ea}.elementor-social-icon-vk{background-color:#45668e}.elementor-social-icon-weibo{background-color:#dd2430}.elementor-social-icon-weixin{background-color:#31a918}.elementor-social-icon-whatsapp{background-color:#25d366}.elementor-social-icon-wordpress{background-color:#21759b}.elementor-social-icon-xing{background-color:#026466}.elementor-social-icon-yelp{background-color:#af0606}.elementor-social-icon-youtube{background-color:#cd201f}.elementor-social-icon-500px{background-color:#0099e5}.elementor-shape-rounded .elementor-icon.elementor-social-icon{border-radius:10%}.elementor-shape-circle .elementor-icon.elementor-social-icon{border-radius:50%}</style> <div class="elementor-social-icons-wrapper elementor-grid">
<span class="elementor-grid-item">
<a class="elementor-icon elementor-social-icon elementor-social-icon-telegram-plane elementor-animation-push elementor-repeater-item-1ca55ab" href="https://t.me/MemeSeasonOfficial" target="_blank">
<span class="elementor-screen-only">Telegram-plane</span>
<i class="fab fa-telegram-plane"></i> </a>
</span>
<span class="elementor-grid-item">
<a class="elementor-icon elementor-social-icon elementor-social-icon-twitter elementor-animation-push elementor-repeater-item-2718ad2" href="https://twitter.com/BSCMemeSeason" target="_blank">
<span class="elementor-screen-only">Twitter</span>
<i class="fab fa-twitter"></i> </a>
</span>
</div>
</div>
</div>
</div>
</div>
<div class="elementor-column elementor-col-33 elementor-top-column elementor-element elementor-element-396105a0" data-id="396105a0" data-element_type="column" data-settings="{"mdp_selection_sticky_column_effect_enable":false}">
<div class="elementor-widget-wrap elementor-element-populated">
<div class="elementor-element elementor-element-9781ffa elementor-invisible elementor-widget elementor-widget-image" data-id="9781ffa" data-element_type="widget" data-settings="{"_animation":"zoomIn"}" data-widget_type="image.default">
<div class="elementor-widget-container">
<img decoding="async" width="800" height="771" src="wp-content/uploads/2023/05/memeseason-final-4-e1685408938352-1024x987.png" class="attachment-large size-large wp-image-745" alt="" loading="lazy" srcset="https://memeseasoncoin.com/wp-content/uploads/2023/05/memeseason-final-4-e1685408938352-1024x987.png 1024w, https://memeseasoncoin.com/wp-content/uploads/2023/05/memeseason-final-4-e1685408938352-300x289.png 300w, https://memeseasoncoin.com/wp-content/uploads/2023/05/memeseason-final-4-e1685408938352-768x740.png 768w, https://memeseasoncoin.com/wp-content/uploads/2023/05/memeseason-final-4-e1685408938352-1536x1481.png 1536w, https://memeseasoncoin.com/wp-content/uploads/2023/05/memeseason-final-4-e1685408938352-2048x1974.png 2048w" sizes="(max-width: 800px) 100vw, 800px" /> </div>
</div>