forked from Pseudo-Corp/SynergismOfficial
-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
3954 lines (3871 loc) · 450 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">
<head>
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta content="text/html;charset=utf-8" http-equiv="Content-Type">
<meta content="utf-8" http-equiv="encoding">
<link rel="icon" href="favicon.ico" type="image/x-icon" sizes="16x16">
<link rel="stylesheet" href="Synergism.css">
<script src="./dist/out.js" defer></script>
</head>
<body class="bodycolor loading">
<div id="transparentBG" alt="transparentBG" label="transparentBG" style="display: block;"></div>
<div id="notification" alt="notification" label="notification">
<div id="notifx" alt="notifx" label="notifx">
<img src="Pictures/X.png" height="16px" width="16px" />
</div>
<p></p>
</div>
<div id="confirmationBox" alt="confirmationBox" label="confirmationBox">
<div id="confirmWrapper" alt="confirmWrapper" label="confirmWrapper">
<div id="confirm" alt="confirm" label="confirm" tabindex="-1">
<p class="scrollbar"></p>
<button id="ok_confirm" alt="ok_confirm" label="ok_confirm">OK</button>
<button id="cancel_confirm" alt="cancel_confirm" label="cancel_confirm">Cancel</button>
</div>
</div>
<div id="alertWrapper" alt="alertWrapper" label="alertWrapper">
<div id="alert" alt="alert" label="alert" tabindex="-1">
<p class="scrollbar"></p>
<button id="ok_alert" alt="ok_alert" label="ok_alert">OK</button>
</div>
</div>
<div id="promptWrapper" alt="promptWrapper" label="promptWrapper">
<div id="prompt" alt="prompt" label="prompt" tabindex="-1">
<label class="scrollbar" for="prompt_text"></label>
<input id="prompt_text" alt="prompt_text" label="prompt_text">
<button id="ok_prompt" alt="ok_prompt" label="ok_prompt">OK</button>
<button id="cancel_prompt" alt="cancel_prompt" label="cancel_prompt">Cancel</button>
</div>
</div>
</div>
<div id="offlineBlur">
<img src="Pictures/logo.png" alt="logo" label="The Synergism Logo" />
<button id="preloadDeleteGame" alt="preloadDeleteGame" label="preloadDeleteGame" style="display: none;">Delete savefile</button>
</div>
<div id="offlineContainer" alt="offlineContainer" label="offlineContainer" style="display: none;">
<p id="offlineTimer" alt="offlineTimer" label="offlineTimer" class="offlineText" style="color: plum"></p>
<p id="progressbardescription" alt="progressbardescription" label="progressbardescription" class="offlineText" style="color: yellow">Loading Offline Progress...</p>
<div class="offlineStats scrollbar" style="color: white">
<div class="offlineStat prestigeunlock" id="offlinePrestigeCountDiv" alt="offlinePrestigeCountDiv" label="offlinePrestigeCountDiv">
<img src="Pictures/Prestige.png" alt='' class='offlineStatIcon'>
<span id="offlinePrestigeCount" alt="offlinePrestigeCount" label="offlinePrestigeCount" class='offlineStatElement'>Prestige Count: +<span id="offlinePrestigeCountNumber" alt="offlinePrestigeCountNumber" label="offlinePrestigeCountNumber" style="color: cyan;"></span></span>
</div>
<div class="offlineStat" id="offlinePrestigeTimerDiv" alt="offlinePrestigeTimerDiv" label="offlinePrestigeTimerDiv">
<img src="Pictures/Prestige.png" alt='' class='offlineStatIcon'>
<span id="offlinePrestigeTimer" alt="offlinePrestigeTimer" label="offlinePrestigeTimer" class='offlineStatElement'>Current Prestige Timer: +<span id="offlinePrestigeTimerNumber" alt="offlinePrestigeTimerNumber" label="offlinePrestigeTimerNumber" style="color: cyan;"></span> seconds</span>
</div>
<div class="offlineStat prestigeunlock" id="offlineOfferingCountDiv" alt="offlineOfferingCountDiv" label="offlineOfferingCountDiv">
<img src="Pictures/Offering.png" alt='' class='offlineStatIcon'>
<span id="offlineOfferingCount" alt="offlineOfferingCount" label="offlineOfferingCount" class='offlineStatElement'>Offerings Generated: <span id="offlineOfferingCountNumber" alt="offlineOfferingCountNumber" label="offlineOfferingCountNumber" style="color: orange"></span></span>
</div>
<div class="offlineStat transcendunlock" id="offlineTranscensionCountDiv" alt="offlineTranscensionCountDiv" label="offlineTranscensionCountDiv">
<img src="Pictures/Transcend.png" alt='' class='offlineStatIcon'>
<span id="offlineTranscensionCount" alt="offlineTranscensionCount" label="offlineTranscensionCount" class='offlineStatElement'>Transcension Count: +<span id="offlineTranscensionCountNumber" alt="offlineTranscensionCountNumber" label="offlineTranscensionCountNumber" style="color: orchid"></span></span>
</div>
<div class="offlineStat transcendunlock" id="offlineTranscensionTimerDiv" alt="offlineTranscensionTimerDiv" label="offlineTranscensionTimerDiv">
<img src="Pictures/Transcend.png" alt='' class='offlineStatIcon'>
<span id="offlineTranscensionTimer" alt="offlineTranscensionTimer" label="offlineTranscensionTimer" class='offlineStatElement'>Current Transcension Timer: +<span id="offlineTranscensionTimerNumber" alt="offlineTranscensionTimerNumber" label="offlineTranscensionTimerNumber" style="color: orchid"></span> seconds</span>
</div>
<div class='offlineStat reincarnationunlock' id="offlineReincarnationCountDiv" alt="offlineReincarnationCountDiv" label="offlineReincarnationCountDiv">
<img src="Pictures/Reincarnate.png" alt='' class='offlineStatIcon'>
<span id="offlineReincarnationCount" alt="offlineReincarnationCount" label="offlineReincarnationCount" class='offlineStatElement'>Reincarnation Count: +<span id="offlineReincarnationCountNumber" alt="offlineReincarnationCountNumber" label="offlineReincarnationCountNumber" style="color: limegreen;"></span></span>
</div>
<div class='offlineStat reincarnationunlock' id="offlineReincarnationTimerDiv" alt="offlineReincarnationTimerDiv" label="offlineReincarnationTimerDiv">
<img src="Pictures/Reincarnate.png" alt='' class='offlineStatIcon'>
<span id="offlineReincarnationTimer" alt="offlineReincarnationTimer" label="offlineReincarnationTimer" class='offlineStatElement'>Current Reincarnation Timer: +<span id="offlineReincarnationTimerNumber" alt="offlineReincarnationTimerNumber" label="offlineReincarnationTimerNumber" style="color: limegreen;"></span> seconds</span>
</div>
<div class='offlineStat reincarnationunlock' id="offlineObtainiumCountDiv" alt="offlineObtainiumCountDiv" label="offlineObtainiumCountDiv">
<img src="Pictures/Obtainium.png" alt='' class='offlineStatIcon'>
<span id="offlineObtainiumCount" alt="offlineObtainiumCount" label="offlineObtainiumCount" class='offlineStatElement'>Obtainium Generated: <span id="offlineObtainiumCountNumber" alt="offlineObtainiumCountNumber" label="offlineObtainiumCountNumber" style="color: pink;"></span></span>
</div>
<div class='offlineStat chal8' id="offlineAntTimerDiv" alt="offlineAntTimerDiv" label="offlineAntTimerDiv">
<img src="Pictures/crumb.png" alt='' class='offlineStatIcon'>
<span id="offlineAntTimer" alt="offlineAntTimer" label="offlineAntTimer" class='offlineStatElement'>In-Game Ant Sacrifice Timer: +<span id="offlineAntTimerNumber" alt="offlineAntTimerNumber" label="offlineAntTimerNumber" style="color: red;"></span> seconds</span>
</div>
<div class='offlineStat chal8' id="offlineRealAntTimerDiv" alt="offlineRealAntTimerDiv" label="offlineRealAntTimerDiv">
<img src="Pictures/crumb.png" alt='' class='offlineStatIcon'>
<span id="offlineRealAntTimer" alt="offlineRealAntTimer" label="offlineRealAntTimer" class='offlineStatElement'>Real-Life Ant Sacrifice Timer: +<span id="offlineRealAntTimerNumber" alt="offlineRealAntTimerNumber" label="offlineRealAntTimerNumber" style="color: red;"></span> seconds</span>
</div>
<div class='offlineStat ascendunlock' id="offlineAscensionTimerDiv" alt="offlineAscensionTimerDiv" label="offlineAscensionTimerDiv">
<img src="Pictures/questionable.png" alt='' class='offlineStatIcon'>
<span id="offlineAscensionTimer" alt="offlineAscensionTimer" label="offlineAscensionTimer" class='offlineStatElement'>Current Ascension Timer: +<span id="offlineAscensionTimerNumber" alt="offlineAscensionTimerNumber" label="offlineAscensionTimerNumber" style="color: gold;"></span> seconds</span>
</div>
<div class='offlineStat' id="offlineQuarkCountDiv" alt="offlineQuarkCountDiv" label="offlineQuarkCountDiv">
<img src="Pictures/Quark.png" alt='' class='offlineStatIcon'>
<span id="offlineQuarkCount" alt="offlineQuarkCount" label="offlineQuarkCount" class='offlineStatElement'>Export Quarks: +<span id="offlineQuarkCountNumber" alt="offlineQuarkCountNumber" label="offlineQuarkCountNumber" style="color:goldenrod"></span></span>
</div>
</div>
<button id="exitOffline" alt="exitOffline" label="exitOffline" class="subtabContent" class="visibility: hidden">That's cool. Take me to the game!</button>
</div>
<header>
<div id="ascensionStats" alt="ascensionStats" label="ascensionStats">
<span id="ascCubeStats" alt="ascCubeStats" label="ascCubeStats">
<img src="Pictures/WowCube.png" class="corruptionImg" title="Cube Information" loading="lazy">
<span id="ascCubes" alt="ascCubes" label="ascCubes">x</span> C<span id="unit1" alt="unit1" label="unit1">/s</span>
</span>
<span id="ascTessStats" alt="ascTessStats" label="ascTessStats">
<img src="Pictures/WowTessaract.png" class="corruptionImg" title="Tesseract Information" loading="lazy">
<span id="ascTess" alt="ascTess" label="ascTess">x</span> T<span id="unit2" alt="unit2" label="unit2">/s</span>
</span>
<span id="ascHyperStats" alt="ascHyperStats" label="ascHyperStats">
<img src="Pictures/WowHypercube.png" class="corruptionImg" title="Hypercube Information" loading="lazy">
<span id="ascHyper" alt="ascHyper" label="ascHyper">x</span> Hy<span id="unit3" alt="unit3" label="unit3">/s</span>
</span>
<span id="ascPlatonicStats" alt="ascPlatonicStats" label="ascPlatonicStats">
<img src="Pictures/Platonic%20Cube.png" class="corruptionImg" title="Platonic Information" loading="lazy">
<span id="ascPlatonic" alt="ascPlatonic" label="ascPlatonic">x</span> P<span id="unit4" alt="unit4" label="unit4">/s</span>
</span>
<span id="ascHepteractStats" alt="ascHepteractStats" label="ascHepteractStats">
<img src="Pictures/Hepteract.png" class="corruptionImg" title="Hepteract Information" loading="lazy">
<span id="ascHepteract" alt="ascHepteract" label="ascHepteract">x</span> He<span id="unit5" alt="unit5" label="unit5">/s</span>
</span>
<span id="ascTimeTakenStats" alt="ascTimeTakenStats" label="ascTimeTakenStats">
<img src="Pictures/questionable.png" class="corruptionImg" title="Ascension Timer" loading="lazy">
<span id="ascLen" alt="ascLen" label="ascLen">x</span> <span id="unit6" alt="unit6" label="unit6"></span>
</span>
<span id="ascC10CompletionsStats" alt="ascC10CompletionsStats" label="ascC10CompletionsStats">
<img src="Pictures/Challenge10.png" class="corruptionImg" title="Challenge 10 Completions" loading="lazy">
<span id="ascC10" alt="ascC10" label="ascC10">x</span>
</span>
<span id="ascTimeFactorStats" alt="ascTimeFactorStats" label="ascTimeFactorStats">
<img src="Pictures/TimeAccel.png" class="corruptionImg" title="Global Speed Multiplier" loading="lazy">
<span id="ascTimeAccel" alt="ascTimeAccel" label="ascTimeAccel">x</span>
</span>
<span id="ascAscensionTimeFactorStats" alt="ascAscensionTimeFactorStats" label="ascAscensionTimeFactorStats">
<img src="Pictures/AscendTimeAccel.png" class="corruptionImg" title="Ascension Speed Multiplier" loading="lazy">
<span id="ascAscensionTimeAccel" alt="ascAscensionTimeAccel" label="ascAscensionTimeAccel">x</span>
</span>
<span id="ascSingularityCountStats" alt="ascSingularityCountStats" label="ascSingularityCountStats">
<img src="Pictures/Singularity.png" class="corruptionImg singularity" title="Singularity count" loading="lazy">
<span id="ascSingularityCount" class="singularity" alt="ascSingularityCount" label="ascSingularityCount">1</span>
</span>
<span id="ascSingTimeTakenStats" alt="ascSingTimeTakenStats" label="ascSingTimeTakenStats">
<img src="Pictures/Singularity.png" class="corruptionImg singularity" title="Singularity Timer" loading="lazy">
<span id="ascSingLen" class="singularity" alt="ascSingLen" label="ascSingLen">x</span>
</span>
</div>
<div class="subHeader">
<div class="currenciesContainer">
<div class="currencyContainer">
<img class="img coin" src="Pictures/Coin.png" alt="Coin" title='Coin' loading="lazy">
<div class="statDisplay" id="coinDisplay" alt="coinDisplay" label="coinDisplay">1</div>
</div>
<div class="currencyContainer">
<img class="prestigeunlock img diamond" src="Pictures/Diamond.png" alt="Diamond" title='Diamond' loading="lazy">
<div class="prestigeunlock statDisplay" id="diamondDisplay" alt="diamondDisplay" label="diamondDisplay">1</div>
</div>
<div class="currencyContainer">
<img class="prestigeunlock img offering" src="Pictures/Offering.png" alt="Offering" title='Offering' loading="lazy">
<div class="prestigeunlock statDisplay" id="offeringDisplay" alt="offeringDisplay" label="offeringDisplay">1</div>
</div>
<div class="currencyContainer">
<img class="img quark" src="Pictures/Quark.png" alt="Quark" title='Quark' loading="lazy">
<div class="statDisplay" id="quarkDisplay" alt="quarkDisplay" label="quarkDisplay">1</div>
</div>
<div class="currencyContainer">
<img class="transcendunlock img mythos" src="Pictures/Mythos.png" alt="Mythos" title='Mythos' loading="lazy">
<div class="transcendunlock statDisplay" id="mythosDisplay" alt="mythosDisplay" label="mythosDisplay">1</div>
</div>
<div class="currencyContainer">
<img class="transcendunlock img mythosshard" src="Pictures/MythosShard.png" alt="Mythos Shard" title='Mythos Shard' loading="lazy">
<div class="transcendunlock statDisplay" id="mythosshardDisplay" alt="mythosshardDisplay" label="mythosshardDisplay">1</div>
</div>
<div class="currencyContainer">
<img class="reincarnationunlock img particle" src="Pictures/Particle.png" alt="Particle" title='Particle' loading="lazy">
<div class="reincarnationunlock statDisplay" id="particlesDisplay" alt="particlesDisplay" label="particlesDisplay">1</div>
</div>
<div class="currencyContainer">
<img class="reincarnationunlock img obtanium" src="Pictures/Obtainium.png" alt="Obtainium" title='Obtainium' loading="lazy">
<div class="reincarnationunlock statDisplay" id="obtainiumDisplay" alt="obtainiumDisplay" label="obtainiumDisplay">1</div>
</div>
</div>
<div class="resetInformationContainer">
<div class="resetsContainer">
<div class="resetsButtons">
<img class="resetbtn coinunlock4" id="prestigebtn" alt="prestigebtn" label="prestigebtn" src="Pictures/Transparent Pics/Prestige.png" loading="lazy">
<img class="resetbtn prestigeunlock" id="transcendbtn" alt="transcendbtn" label="transcendbtn" src="Pictures/Transparent Pics/Transcend.png" loading="lazy">
<img class="resetbtn transcendunlock" id="reincarnatebtn" alt="reincarnatebtn" label="reincarnatebtn" src="Pictures/Transparent Pics/Reincarnate.png" loading="lazy">
<img class="resetbtn transcendunlock" id="acceleratorboostbtn" alt="acceleratorboostbtn" label="acceleratorboostbtn" src="Pictures/Transparent Pics/AcceleratorBoost.png" loading="lazy">
<img class="resetbtn transcendunlock" id="challengebtn" alt="challengebtn" label="challengebtn" src="Pictures/Transparent Pics/Challenge.png" loading="lazy">
<img class="resetbtn reincarnationunlock" id="reincarnatechallengebtn" alt="reincarnatechallengebtn" label="reincarnatechallengebtn" src="Pictures/Transparent Pics/ChallengeReincarnation.png" loading="lazy">
<img class="resetbtn ascendunlock" id="ascendChallengeBtn" alt="ascendChallengeBtn" label="ascendChallengeBtn" src="Pictures/Transparent Pics/ChallengeAscension.png" loading="lazy">
<img class="resetbtn chal10" id="ascendbtn" alt="ascendbtn" label="ascendbtn" src="Pictures/Transparent Pics/Ascension.png" loading="lazy">
<img class="resetbtn singularity" id="singularitybtn" src="Pictures/Transparent Pics/Singularity.png" alt="Enter the Singularity!" loading="lazy">
</div>
<div id="resetrow" alt="resetrow" label="resetrow">
<div id="resetrewards" alt="resetrewards" label="resetrewards" style="display: block;">
<div>
<img id="resetofferings1" alt="resetofferings1" label="resetofferings1" src="Pictures/Offering.png" style="display: none;" loading="lazy">
<div id="resetofferings2" alt="resetofferings2" label="resetofferings2" style="color: gold"></div>
<img id="resetcurrency1" alt="resetcurrency1" label="resetcurrency1" src="" style="display: none;" loading="lazy">
<div id="resetcurrency2" alt="resetcurrency2" label="resetcurrency2" style="color:gold"></div>
<img id="resetobtainium" alt="resetobtainium" label="resetobtainium" src="Pictures/Obtainium.png" style="display: none;" loading="lazy">
<div id="resetobtainium2" alt="resetobtainium2" label="resetobtainium2" style="color:pink;"></div>
</div>
</div>
</div>
</div>
<div id="resetinfo" alt="resetinfo" label="resetinfo"></div>
</div>
</div>
<nav class="navbar">
<div id="tabrow" alt="tabrow" label="tabrow">
<button id="buildingstab" alt="buildingstab" label="buildingstab">Buildings</button>
<button id="upgradestab" alt="upgradestab" label="upgradestab">Upgrades</button>
<button class="coinunlock4" id="achievementstab" alt="achievementstab" label="achievementstab">Achievements</button>
<button class="prestigeunlock" id="runestab" alt="runestab" label="runestab">Runes</button>
<button class="transcendunlock" id="challengetab" alt="challengetab" label="challengetab">Challenges</button>
<button class="reincarnationunlock" id="researchtab" alt="researchtab" label="researchtab">Research</button>
<button class="chal8" id="anttab" alt="anttab" label="anttab">Anthill</button>
<button class="chal10" id="cubetab" alt="cubetab" label="cubetab">WOW! Cubes</button>
<button class="chal11" id="traitstab" alt="traitstab" label="traitstab">Corruption</button>
<button class="singularity" id="singularitytab" alt="singularitytab" label="singularitytab">Singularity</button>
<button id="settingstab" alt="settingstab" label="settingstab">Settings</button>
<button class="reincarnationunlock" id="shoptab" alt="shoptab" label="shoptab">Shop</button>
</div>
</nav>
</header>
<div id="tabBorder" alt="tabBorder" label="tabBorder" style="background-color: yellow;"></div>
<div id="buildings" alt="buildings" label="buildings">
<div class="subTabWrapper">
<button id="switchToCoinBuilding" alt="switchToCoinBuilding" label="switchToCoinBuilding" style="border: 2px solid yellow; background-color: crimson;">Coin Buildings</button>
<button class="prestigeunlock" id="switchToDiamondBuilding" alt="switchToDiamondBuilding" label="switchToDiamondBuilding" style="border: 2px solid cyan">Diamond Buildings</button>
<button class="transcendunlock" id="switchToMythosBuilding" alt="switchToMythosBuilding" label="switchToMythosBuilding" style="border: 2px solid plum">Mythos Buildings</button>
<button class="reincarnationunlock" id="switchToParticleBuilding" alt="switchToParticleBuilding" label="switchToParticleBuilding" style="border: 2px solid greenyellow">Particle Buildings</button>
<button class="ascendunlock" id="switchToTesseractBuilding" alt="switchToTesseractBuilding" label="switchToTesseractBuilding" style="border: 2px solid orange">Tesseract Buildings</button>
</div>
<div id="coinBuildings" alt="coinBuildings" label="coinBuildings">
<div id="buyamountcoin" alt="buyamountcoin" label="buyamountcoin">
<table class="coinunlock3" id="coinbuyamount" alt="coinbuyamount" label="coinbuyamount" title="Toggle amount to buy">
<tr>
<td><img id="coinone" alt="coinone" label="coinone" class="buyAmountBtn" src="Pictures/Transparent Pics/CoinOne.png" style="background-color: green;" loading="lazy"></td>
<td><img id="cointen" alt="cointen" label="cointen" class="buyAmountBtn" src="Pictures/Transparent Pics/CoinTen.png" loading="lazy"></td>
<td><img id="coinhundred" alt="coinhundred" label="coinhundred" class="buyAmountBtn" src="Pictures/Transparent Pics/CoinHundred.png" loading="lazy"></td>
<td><img id="cointhousand" alt="cointhousand" label="cointhousand" class="buyAmountBtn" src="Pictures/Transparent Pics/CoinThousand.png" loading="lazy"></td>
</tr>
</table>
</div>
<!--
This is how the reusable resource row structure must be formatted.
A main element with a class "buttonRow", then a list of <div>s with
the element children inside.
-->
<div class="buttonRow">
<div>
<img class="image" id="coin1" alt="coin1" label="coin1" src="Pictures/Tier1.png" loading="lazy">
<span class="desc" id="buildtext1" alt="buildtext1" label="buildtext1" style="color: gold">Workers: 321495 [+1.49e+391945]</span>
<button class="buildingPurchaseBtn" id="buycoin1" alt="buycoin1" label="buycoin1">Cost: 100 Coins.</button>
<button class="auto autobuyerToggleButton" id="toggle1" alt="toggle1" label="toggle1" toggleid="1" alt="1" label="1">Auto: On</button>
<span class="stats" id="buildtext2" alt="buildtext2" label="buildtext2" style="color: gold">100 Coins/second [100%]</span>
</div>
<div>
<img class="coinunlock1 image" id="coin2" alt="coin2" label="coin2" src="Pictures/Tier2.png" loading="lazy">
<span class="coinunlock1 desc" id="buildtext3" alt="buildtext3" label="buildtext3" style="color: gold">Investments: 0 [+0]</span>
<button class="coinunlock1 buildingPurchaseBtn" id="buycoin2" alt="buycoin2" label="buycoin2">Cost: 2e3 Coins.</button>
<button class="auto autobuyerToggleButton" id="toggle2" alt="toggle2" label="toggle2" toggleid="2" alt="2" label="2">Auto: On</button>
<span class="coinunlock1 stats" id="buildtext4" alt="buildtext4" label="buildtext4" style="color: gold">0 Coins/second [0%]</span>
</div>
<div>
<img class="coinunlock2 image" id="coin3" alt="coin3" label="coin3" src="Pictures/Tier3.png" loading="lazy">
<span class="coinunlock2 desc" id="buildtext5" alt="buildtext5" label="buildtext5" style="color: gold">Printers: 0 [+0]</span>
<button class="coinunlock2 buildingPurchaseBtn" id="buycoin3" alt="buycoin3" label="buycoin3">Cost: 4e4 Coins.</button>
<button class="auto autobuyerToggleButton" id="toggle3" alt="toggle3" label="toggle3" toggleid="3" alt="3" label="3">Auto: On</button>
<span class="coinunlock2 stats" id="buildtext6" alt="buildtext6" label="buildtext6" style="color: gold">0 Coins/second [0%]</span>
</div>
<div>
<img class="coinunlock3 image" id="coin4" alt="coin4" label="coin4" src="Pictures/Tier4.png" loading="lazy">
<span class="coinunlock3 desc" id="buildtext7" alt="buildtext7" label="buildtext7" style="color: gold">Coin Mints: 0 [+0]</span>
<button class="coinunlock3 buildingPurchaseBtn" id="buycoin4" alt="buycoin4" label="buycoin4">Cost: 8e5 Coins.</button>
<button class="auto autobuyerToggleButton" id="toggle4" alt="toggle4" label="toggle4" toggleid="4" alt="4" label="4">Auto: On</button>
<span class="coinunlock3 stats" id="buildtext8" alt="buildtext8" label="buildtext8" style="color: gold">0 Coins/second [0%]</span>
</div>
<div>
<img class="coinunlock4 image" id="coin5" alt="coin5" label="coin5" src="Pictures/Tier5.png" loading="lazy">
<span class="coinunlock4 desc" id="buildtext9" alt="buildtext9" label="buildtext9" style="color: gold">Alchemies: 0 [+0]</span>
<button class="coinunlock4 buildingPurchaseBtn" id="buycoin5" alt="buycoin5" label="buycoin5">Cost: 1.6e7 Coins.</button>
<button class="auto autobuyerToggleButton" id="toggle5" alt="toggle5" label="toggle5" toggleid="5" alt="5" label="5">Auto: On</button>
<span class="coinunlock4 stats" id="buildtext10" alt="buildtext10" label="buildtext10" style="color: gold">0 Coins/second [0%]</span>
</div>
<div class="buildingSpacer"></div>
<div>
<img class="coinunlock1 image" id="accelerator" alt="accelerator" label="accelerator" src="Pictures/Accelerator.png" loading="lazy">
<span class="coinunlock1 desc" id="buildtext11" alt="buildtext11" label="buildtext11" style="color: yellow">Accelerators: 0 [+0]</span>
<button class="coinunlock1 buildingPurchaseBtn" id="buyaccelerator" alt="buyaccelerator" label="buyaccelerator">Cost: 500 Coins.</button>
<button class="auto autobuyerToggleButton" id="toggle6" alt="toggle6" label="toggle6" toggleid="6" alt="6" label="6">Auto: On</button>
<span class="coinunlock1 stats" id="buildtext12" alt="buildtext12" label="buildtext12" style="color: cyan">Acceleration Factor: 10.0%. Acceleration Multiplier: 1.00x</span>
</div>
<div>
<img class="coinunlock2 image" id="multiplier" alt="multiplier" label="multiplier" src="Pictures/Multiplier.png" loading="lazy">
<span class="coinunlock2 desc" id="buildtext13" alt="buildtext13" label="buildtext13" style="color: yellow">Multipliers: 0 [+0]</span>
<button class="coinunlock2 buildingPurchaseBtn" id="buymultiplier" alt="buymultiplier" label="buymultiplier">Cost: 500 Coins.</button>
<button class="auto autobuyerToggleButton" id="toggle7" alt="toggle7" label="toggle7" toggleid="7" alt="7" label="7">Auto: On</button>
<span class="coinunlock2 stats" id="buildtext14" alt="buildtext14" label="buildtext14" style="color: pink">Multiplier Power: 2.000%. Multiplier: 1.00x</span>
</div>
<div>
<img class="prestigeunlock image" id="acceleratorboost" alt="acceleratorboost" label="acceleratorboost" src="Pictures/AcceleratorBoost.png" loading="lazy">
<span class="prestigeunlock desc" id="buildtext15" alt="buildtext15" label="buildtext15" style="color: cyan">Accelerator Boosts: 0 [+0]</span>
<button class="prestigeunlock buildingPurchaseBtn" id="buyacceleratorboost" alt="buyacceleratorboost" label="buyacceleratorboost">Cost: 500 Coins.</button>
<button class="auto autobuyerToggleButton" id="toggle8" alt="toggle8" label="toggle8" toggleid="8" alt="8" label="8">Auto: On</button>
<span class="prestigeunlock stats" id="buildtext16" alt="buildtext16" label="buildtext16" style="color: crimson">Next one adds 1.00% Acceleration Factor.</span>
</div>
</div>
<div id="buildingtext" alt="buildingtext" label="buildingtext">
<p class="prestigeunlock" id="taxinfo" alt="taxinfo" label="taxinfo" style="color: orange;">Due to your excessive wealth, all coin production is divided by 1.00 to pay taxes!</p>
<p class="prestigeunlock" id="buildinghotkeys" alt="buildinghotkeys" label="buildinghotkeys">Press [1], [2], [3], [4], or [5] to buy the corresponding tier starting from the top. Press [A] to buy Accelerator, [M] to buy Multiplier, or [B] to buy Accelerator Boost.<br>Press [Left arrow] or [Right arrow] to switch tabs. Enjoy!</p>
</div>
</div>
<div id="prestige" alt="prestige" label="prestige" style="display: none;">
<div id="buyamountcrystal" alt="buyamountcrystal" label="buyamountcrystal">
<table id="crystalbuyamount" alt="crystalbuyamount" label="crystalbuyamount" title="Toggle amount to buy">
<tr>
<td><img id="crystalone" alt="crystalone" label="crystalone" class="buyAmountBtn" src="Pictures/Transparent Pics/CrystalOne.png" style="background-color: green;" loading="lazy"></td>
<td><img id="crystalten" alt="crystalten" label="crystalten" class="buyAmountBtn" src="Pictures/Transparent Pics/CrystalTen.png" loading="lazy"></td>
<td><img id="crystalhundred" alt="crystalhundred" label="crystalhundred" class="buyAmountBtn" src="Pictures/Transparent Pics/CrystalHundred.png" loading="lazy"></td>
<td><img id="crystalthousand" alt="crystalthousand" label="crystalthousand" class="buyAmountBtn" src="Pictures/Transparent Pics/CrystalThousand.png" loading="lazy"></td>
</tr>
</table>
</div>
<div class="buttonRow">
<div>
<img id="diamond1" alt="diamond1" label="diamond1" class="image" src="Pictures/DiamondTier1.png" loading="lazy">
<span id="prestigetext1" alt="prestigetext1" label="prestigetext1" class="desc">Refineries: 0 [+0]</span>
<button id="buydiamond1" alt="buydiamond1" label="buydiamond1" class="buildingPurchaseBtn"></button>
<button class="auto autobuyerToggleButton" id="toggle10" alt="toggle10" label="toggle10" toggleid="10" alt="10" label="10">Auto: On</button>
<span id="prestigetext2" alt="prestigetext2" label="prestigetext2" class="stats">100 Shards/sec</span>
</div>
<div>
<img id="diamond2" alt="diamond2" label="diamond2" class="image" src="Pictures/DiamondTier2.png" loading="lazy">
<span id="prestigetext3" alt="prestigetext3" label="prestigetext3" class="desc">Coal Plants: 0 [+0]</span>
<button id="buydiamond2" alt="buydiamond2" label="buydiamond2" class="buildingPurchaseBtn"></button>
<button class="auto autobuyerToggleButton" id="toggle11" alt="toggle11" label="toggle11" toggleid="11" alt="11" label="11">Auto: On</button>
<span id="prestigetext4" alt="prestigetext4" label="prestigetext4" class="stats">100 Augments/sec</span>
</div>
<div>
<img id="diamond3" alt="diamond3" label="diamond3" class="image" src="Pictures/DiamondTier3.png" loading="lazy">
<span id="prestigetext5" alt="prestigetext5" label="prestigetext5" class="desc">Coal Rigs: 0 [+0]</span>
<button id="buydiamond3" alt="buydiamond3" label="buydiamond3" class="buildingPurchaseBtn"></button>
<button class="auto autobuyerToggleButton" id="toggle12" alt="toggle12" label="toggle12" toggleid="12" alt="12" label="12">Auto: On</button>
<span id="prestigetext6" alt="prestigetext6" label="prestigetext6" class="stats">100 Enhancements/sec</span>
</div>
<div>
<img id="diamond4" alt="diamond4" label="diamond4" class="image" src="Pictures/DiamondTier4.png" loading="lazy">
<span id="prestigetext7" alt="prestigetext7" label="prestigetext7" class="desc">Diamond Pickaxes: 0 [+0]</span>
<button id="buydiamond4" alt="buydiamond4" label="buydiamond4" class="buildingPurchaseBtn"></button>
<button class="auto autobuyerToggleButton" id="toggle13" alt="toggle13" label="toggle13" toggleid="13" alt="13" label="13">Auto: On</button>
<span id="prestigetext8" alt="prestigetext8" label="prestigetext8" class="stats">100 Wizards/sec</span>
</div>
<div>
<img id="diamond5" alt="diamond5" label="diamond5" class="image" src="Pictures/DiamondTier5.png" loading="lazy">
<span id="prestigetext9" alt="prestigetext9" label="prestigetext9" class="desc">Pandora's Box: 0 [+0]</span>
<button id="buydiamond5" alt="buydiamond5" label="buydiamond5" class="buildingPurchaseBtn"></button>
<button class="auto autobuyerToggleButton" id="toggle14" alt="toggle14" label="toggle14" toggleid="14" alt="14" label="14">Auto: On</button>
<span id="prestigetext10" alt="prestigetext10" label="prestigetext10" class="stats">100 Oracles/sec</span>
</div>
</div>
<p id="prestigeshardinfo" alt="prestigeshardinfo" label="prestigeshardinfo" style="color:lightcyan; text-align: center">You have 1.39e+100394 Prestige Shards, providing 1,214,593 multiplier power boosts.</p>
<div id="crystalupgrades" alt="crystalupgrades" label="crystalupgrades">
<table id="crystalupgradestable" alt="crystalupgradestable" label="crystalupgradestable" style="padding: 0; font-size: 0;">
<tr>
<td><img id="buycrystalupgrade1" alt="buycrystalupgrade1" label="buycrystalupgrade1" src="Pictures/Transparent Pics/CrystalUpgrade1.png" loading="lazy"></td>
<td><img id="buycrystalupgrade2" alt="buycrystalupgrade2" label="buycrystalupgrade2" src="Pictures/Transparent Pics/CrystalUpgrade2.png" loading="lazy"></td>
<td><img id="buycrystalupgrade3" alt="buycrystalupgrade3" label="buycrystalupgrade3" class="transcendunlock" src="Pictures/Transparent Pics/CrystalUpgrade3.png" loading="lazy"></td>
<td><img id="buycrystalupgrade4" alt="buycrystalupgrade4" label="buycrystalupgrade4" class="transcendunlock" src="Pictures/Transparent Pics/CrystalUpgrade4.png" loading="lazy"></td>
<td><img id="buycrystalupgrade5" alt="buycrystalupgrade5" label="buycrystalupgrade5" class="transcendunlock" src="Pictures/Transparent Pics/CrystalUpgrade5.png" loading="lazy"></td>
</tr>
</table>
<p class="mainText" id="crystalupgradedescription" alt="crystalupgradedescription" label="crystalupgradedescription" style="text-align: center;">Hover over a crystal upgrade to get information!</p>
<p class="mainText" id="crystalupgradescost1" alt="crystalupgradescost1" label="crystalupgradescost1" style="text-align: center;">Cost: <span id="crystalupgradescost" alt="crystalupgradescost" label="crystalupgradescost" style="color: lightcyan">---</span> crystals</p>
<p class="mainText" id="crystalupgradeslevel1" alt="crystalupgradeslevel1" label="crystalupgradeslevel1" style="text-align: center;">Level: <span id="crystalupgradeslevel" alt="crystalupgradeslevel" label="crystalupgradeslevel" style="color: lightcyan">---</span></p>
</div>
<div class="resetautomation" id="autocrystalbuild" alt="autocrystalbuild" label="autocrystalbuild">
<button class="auto" id="toggle15" alt="toggle15" label="toggle15" toggleid="15" alt="15" label="15" format="Auto Prestige [$]">Automatic Prestige & Customization Being Developed!</button>
<button id="prestigeautotoggle" alt="prestigeautotoggle" label="prestigeautotoggle" style="border:2px solid green;"></button>
<input class="transcendunlock" type="number" id="prestigeamount" alt="prestigeamount" label="prestigeamount" min="1" max="999999999" defaultValue="1">
<p class="transcendunlock mainText" id="autoprestige" alt="autoprestige" label="autoprestige"></p>
<p id="prestigehotkeys" alt="prestigehotkeys" label="prestigehotkeys">Press [1], [2], [3], [4], or [5] to buy the respective tiered producer. Press [6], [7], [8], [9] or [0] to buy the corresponding Crystal upgrade starting on the left.</p>
</div>
</div>
<div id="transcension" alt="transcension" label="transcension" style="display: none;">
<div id="buyamountmythos" alt="buyamountmythos" label="buyamountmythos">
<table id="mythosbuyamount" alt="mythosbuyamount" label="mythosbuyamount" title="Toggle amount to buy">
<tr>
<td><img id="mythosone" alt="mythosone" label="mythosone" class="buyAmountBtn" src="Pictures/Transparent Pics/MythosOne.png" style="background-color: green;" loading="lazy"></td>
<td><img id="mythosten" alt="mythosten" label="mythosten" class="buyAmountBtn" src="Pictures/Transparent Pics/MythosTen.png" loading="lazy"></td>
<td><img id="mythoshundred" alt="mythoshundred" label="mythoshundred" class="buyAmountBtn" src="Pictures/Transparent Pics/MythosHundred.png" loading="lazy"></td>
<td><img id="mythosthousand" alt="mythosthousand" label="mythosthousand" class="buyAmountBtn" src="Pictures/Transparent Pics/MythosThousand.png" loading="lazy"></td>
</tr>
</table>
</div>
<div class="buttonRow">
<div>
<img id="mythos1" alt="mythos1" label="mythos1" class="image" src="Pictures/MythosTier1.png" loading="lazy">
<span id="transcendtext1" alt="transcendtext1" label="transcendtext1" class="desc">Augments: 0 [+0]</span>
<button id="buymythos1" alt="buymythos1" label="buymythos1" class="buildingPurchaseBtn"></button>
<button class="auto autobuyerToggleButton" id="toggle16" alt="toggle16" label="toggle16" toggleid="16" alt="16" label="16">Auto: Off</button>
<span id="transcendtext2" alt="transcendtext2" label="transcendtext2" class="stats">100 Shards/sec</span>
</div>
<div>
<img id="mythos2" alt="mythos2" label="mythos2" class="image" src="Pictures/MythosTier2.png" loading="lazy">
<span id="transcendtext3" alt="transcendtext3" label="transcendtext3" class="desc">Enhancements: 0 [+0]</span>
<button id="buymythos2" alt="buymythos2" label="buymythos2" class="buildingPurchaseBtn"></button>
<button class="auto autobuyerToggleButton" id="toggle17" alt="toggle17" label="toggle17" toggleid="17" alt="17" label="17">Auto: Off</button>
<span id="transcendtext4" alt="transcendtext4" label="transcendtext4" class="stats">100 Augments/sec</span>
</div>
<div>
<img id="mythos3" alt="mythos3" label="mythos3" class="image" src="Pictures/MythosTier3.png" loading="lazy">
<span id="transcendtext5" alt="transcendtext5" label="transcendtext5" class="desc">Wizards: 0 [+0]</span>
<button id="buymythos3" alt="buymythos3" label="buymythos3" class="buildingPurchaseBtn"></button>
<button class="auto autobuyerToggleButton" id="toggle18" alt="toggle18" label="toggle18" toggleid="18" alt="18" label="18">Auto: Off</button>
<span id="transcendtext6" alt="transcendtext6" label="transcendtext6" class="stats">100 Enhancements/sec</span>
</div>
<div>
<img id="mythos4" alt="mythos4" label="mythos4" class="image" src="Pictures/MythosTier4.png" loading="lazy">
<span id="transcendtext7" alt="transcendtext7" label="transcendtext7" class="desc">Oracles: 0 [+0]</span>
<button id="buymythos4" alt="buymythos4" label="buymythos4" class="buildingPurchaseBtn"></button>
<button class="auto autobuyerToggleButton" id="toggle19" alt="toggle19" label="toggle19" toggleid="19" alt="19" label="19">Auto: Off</button>
<span id="transcendtext8" alt="transcendtext8" label="transcendtext8" class="stats">100 Wizards/sec</span>
</div>
<div>
<img id="mythos5" alt="mythos5" label="mythos5" class="image" src="Pictures/MythosTier5.png" loading="lazy">
<span id="transcendtext9" alt="transcendtext9" label="transcendtext9" class="desc">Grandmasters: 0 [+0]</span>
<button id="buymythos5" alt="buymythos5" label="buymythos5" class="buildingPurchaseBtn"></button>
<button class="auto autobuyerToggleButton" id="toggle20" alt="toggle20" label="toggle20" toggleid="20" alt="20" label="20">Auto: Off</button>
<span id="transcendtext10" alt="transcendtext10" label="transcendtext10" class="stats">100 Oracles/sec</span>
</div>
</div>
<p id="transcendshardinfo" alt="transcendshardinfo" label="transcendshardinfo" style="color:pink;">You have 1.39e+100394 Transcend Shards, providing 1,214,593 multiplier power boosts.</p>
<p id="transcendshardbonus" alt="transcendshardbonus" label="transcendshardbonus" style="color: limegreen;">Each Multiplier Boost increases the base effect of Multipliers by 0.005!</p>
<div class="resetautomation">
<button class="auto" id="toggle21" alt="toggle21" label="toggle21" toggleid="21" alt="21" label="21" format="Auto Transcend [$]">Auto: Off</button>
<button id="transcendautotoggle" alt="transcendautotoggle" label="transcendautotoggle" style="border:2px solid green;"></button>
<input class="transcendunlock" type="number" id="transcendamount" alt="transcendamount" label="transcendamount" min="1" max="999999999" defaultValue="1">
<p class="transcendunlock" id="autotranscend" alt="autotranscend" label="autotranscend"></p>
</div>
<p id="transcendhotkeys" alt="transcendhotkeys" label="transcendhotkeys">Press [1], [2], [3], [4], or [5] to buy the respective tiered producer.</p>
</div>
<div id="reincarnation" alt="reincarnation" label="reincarnation" style="display: none;">
<div id="buyamountparticle" alt="buyamountparticle" label="buyamountparticle">
<table id="particlebuyamount" alt="particlebuyamount" label="particlebuyamount" title="Toggle amount to buy">
<tr>
<td><img id="particleone" alt="particleone" label="particleone" class="buyAmountBtn" src="Pictures/Transparent Pics/ParticleOne.png" style="background-color: green;" loading="lazy"></td>
<td><img id="particleten" alt="particleten" label="particleten" class="buyAmountBtn" src="Pictures/Transparent Pics/ParticleTen.png" loading="lazy"></td>
<td><img id="particlehundred" alt="particlehundred" label="particlehundred" class="buyAmountBtn" src="Pictures/Transparent Pics/ParticleHundred.png" loading="lazy"></td>
<td><img id="particlethousand" alt="particlethousand" label="particlethousand" class="buyAmountBtn" src="Pictures/Transparent Pics/ParticleThousand.png" loading="lazy"></td>
</tr>
</table>
</div>
<div class="buttonRow">
<div>
<img id="particles1" alt="particles1" label="particles1" src="Pictures/ParticlesTier1.png" loading="lazy">
<span id="reincarnationtext1" alt="reincarnationtext1" label="reincarnationtext1" class="desc">Protons: 0 [+0]</span>
<button id="buyparticles1" alt="buyparticles1" label="buyparticles1" class="buildingPurchaseBtn">Cost: 1 Particles</button>
<button class="auto autobuyerToggleButton" id="toggle22" alt="toggle22" label="toggle22" toggleid="22" alt="22" label="22">Auto: Off</button>
<span id="reincarnationtext6" alt="reincarnationtext6" label="reincarnationtext6" class="stats">100 Elements/sec</span>
</div>
<div>
<img id="particles2" alt="particles2" label="particles2" class="image" src="Pictures/ParticlesTier2.png" loading="lazy">
<span id="reincarnationtext2" alt="reincarnationtext2" label="reincarnationtext2" class="desc">Elements: 0 [+0]</span>
<button id="buyparticles2" alt="buyparticles2" label="buyparticles2" class="buildingPurchaseBtn">Cost: 100 Particles</button>
<button class="auto autobuyerToggleButton" id="toggle23" alt="toggle23" label="toggle23" toggleid="23" alt="23" label="23">Auto: Off</button>
<span id="reincarnationtext7" alt="reincarnationtext7" label="reincarnationtext7" class="stats">Black Holes: 0 [+0]</span>
</div>
<div>
<img id="particles3" alt="particles3" label="particles3" class="image" src="Pictures/ParticlesTier3.png" loading="lazy">
<span id="reincarnationtext3" alt="reincarnationtext3" label="reincarnationtext3" class="desc">100 Atoms/sec</span>
<button id="buyparticles3" alt="buyparticles3" label="buyparticles3" class="buildingPurchaseBtn">Cost: 1e+4 Particles</button>
<button class="auto autobuyerToggleButton" id="toggle24" alt="toggle24" label="toggle24" toggleid="24" alt="24" label="24">Auto: Off</button>
<span id="reincarnationtext8" alt="reincarnationtext8" label="reincarnationtext8" class="stats">100 Pulsars/sec</span>
</div>
<div>
<img id="particles4" alt="particles4" label="particles4" class="image" src="Pictures/ParticlesTier4.png" loading="lazy">
<span id="reincarnationtext4" alt="reincarnationtext4" label="reincarnationtext4" class="desc">100 Protons/sec</span>
<button id="buyparticles4" alt="buyparticles4" label="buyparticles4" class="buildingPurchaseBtn">Cost: 1e+8 Particles</button>
<button class="auto autobuyerToggleButton" id="toggle25" alt="toggle25" label="toggle25" toggleid="25" alt="25" label="25">Auto: Off</button>
<span id="reincarnationtext9" alt="reincarnationtext9" label="reincarnationtext9" class="stats">Quasars: 0 [+0]</span>
</div>
<div>
<img id="particles5" alt="particles5" label="particles5" class="image" src="Pictures/ParticlesTier5.png" loading="lazy">
<span id="reincarnationtext5" alt="reincarnationtext5" label="reincarnationtext5" class="desc">Pulsars: 0 [+0]</span>
<button id="buyparticles5" alt="buyparticles5" label="buyparticles5" class="buildingPurchaseBtn">Cost: 1e+16 Particles</button>
<button class="auto autobuyerToggleButton" id="toggle26" alt="toggle26" label="toggle26" toggleid="26" alt="26" label="26">Auto: Off</button>
<span id="reincarnationtext10" alt="reincarnationtext10" label="reincarnationtext10" class="stats">100 Black Holes/sec</span>
</div>
</div>
<div id="reincarnationTexts" alt="reincarnationTexts" label="reincarnationTexts">
<p id="reincarnationshardinfo" alt="reincarnationshardinfo" label="reincarnationshardinfo" style="color:lime;">You have 1.39e+100394 Atoms, providing a building power of 3.02.</p>
<p id="reincarnationCrystalInfo" alt="reincarnationCrystalInfo" label="reincarnationCrystalInfo" style="color: cyan; display: none;">Thanks to research 3x9, you also multiply Crystal producion by 1.</p>
<p id="reincarnationMythosInfo" alt="reincarnationMythosInfo" label="reincarnationMythosInfo" style="color:plum; display: none;">Thanks to research 3x10, you also multiply Mythos Shard production by 1.</p>
</div>
<div class="resetautomation" id="reincarnateautomation" alt="reincarnateautomation" label="reincarnateautomation">
<div>
<button class="auto" id="toggle27" alt="toggle27" label="toggle27" toggleid="27" alt="27" label="27" format="Auto Reincarnate [$]">Auto: Off</button>
<button id="reincarnateautotoggle" alt="reincarnateautotoggle" label="reincarnateautotoggle" style="border:2px solid green;"></button>
<input class="reincarnationunlock" type="number" id="reincarnationamount" alt="reincarnationamount" label="reincarnationamount" min="1" max="999999999" defaultValue="1">
<p class="reincarnationunlock mainText" id="autoreincarnate" alt="autoreincarnate" label="autoreincarnate"></p>
</div>
</div>
<p id="reincarnatehotkeys" alt="reincarnatehotkeys" label="reincarnatehotkeys">Press [1], [2], [3], [4], or [5] to buy the respective tiered producer.</p>
</div>
<div id="ascension" alt="ascension" label="ascension" style="display: none">
<div id="buyAmountTesseract" alt="buyAmountTesseract" label="buyAmountTesseract">
<table id="buyTesseractToggles" alt="buyTesseractToggles" label="buyTesseractToggles" title="Toggle amount to buy">
<tr>
<td><img id="tesseractone" alt="tesseractone" label="tesseractone" class="buyAmountBtn" src="Pictures/Transparent Pics/TesseractOne.png" style="background-color: green;" loading="lazy"></td>
<td><img id="tesseractten" alt="tesseractten" label="tesseractten" class="buyAmountBtn" src="Pictures/Transparent Pics/TesseractTen.png" loading="lazy"></td>
<td><img id="tesseracthundred" alt="tesseracthundred" label="tesseracthundred" class="buyAmountBtn" src="Pictures/Transparent Pics/TesseractHundred.png" loading="lazy"></td>
<td><img id="tesseractthousand" alt="tesseractthousand" label="tesseractthousand" class="buyAmountBtn"src="Pictures/Transparent Pics/TesseractThousand.png" loading="lazy"></td>
</tr>
</table>
</div>
<div class="buttonRow">
<div>
<img class="image" id="tesseracts1" alt="tesseracts1" label="tesseracts1" src="Pictures/TesseractTier1.png" loading="lazy">
<span class="desc" id="ascendText1" alt="ascendText1" label="ascendText1">Dot: 0 [+0]</span>
<button class="buildingPurchaseBtn" id="buyTesseracts1" alt="buyTesseracts1" label="buyTesseracts1">Cost: 1 Tesseracts</button>
<button class="auto autobuyerToggleButton" id="tesseractAutoToggle1" alt="tesseractAutoToggle1" label="tesseractAutoToggle1">Auto [OFF]</button>
<span class="stats" id="ascendText6" alt="ascendText6" label="ascendText6">+100 Constant/sec</span>
</div>
<div>
<img class="image" id="tesseracts2" alt="tesseracts2" label="tesseracts2" src="Pictures/TesseractTier2.png" loading="lazy">
<span class="desc" id="ascendText2" alt="ascendText2" label="ascendText2">Vector: 0 [+0]</span>
<button class="buildingPurchaseBtn" id="buyTesseracts2" alt="buyTesseracts2" label="buyTesseracts2">Cost: 10 Tesseracts</button>
<button class="auto autobuyerToggleButton" id="tesseractAutoToggle2" alt="tesseractAutoToggle2" label="tesseractAutoToggle2">Auto [OFF]</button>
<span class="stats" id="ascendText7" alt="ascendText7" label="ascendText7">100 Dots/sec</span>
</div>
<div>
<img class="image" id="tesseracts3" alt="tesseracts3" label="tesseracts3" src="Pictures/TesseractTier3.png" loading="lazy">
<span class="desc" id="ascendText3" alt="ascendText3" label="ascendText3">Three-Space: 0 [+0]</span>
<button class="buildingPurchaseBtn" id="buyTesseracts3" alt="buyTesseracts3" label="buyTesseracts3">Cost: 100 Tesseracts</button>
<button class="auto autobuyerToggleButton" id="tesseractAutoToggle3" alt="tesseractAutoToggle3" label="tesseractAutoToggle3">Auto [OFF]</button>
<span class="stats" id="ascendText8" alt="ascendText8" label="ascendText8">100 Vectors/sec</span>
</div>
<div>
<img class="image" id="tesseracts4" alt="tesseracts4" label="tesseracts4" src="Pictures/TesseractTier4.png" loading="lazy">
<span class="desc" id="ascendText4" alt="ascendText4" label="ascendText4">Bent Time: 0 [+0]</span>
<button class="buildingPurchaseBtn" id="buyTesseracts4" alt="buyTesseracts4" label="buyTesseracts4">Cost: 1000 Tesseracts</button>
<button class="auto autobuyerToggleButton" id="tesseractAutoToggle4" alt="tesseractAutoToggle4" label="tesseractAutoToggle4">Auto [OFF]</button>
<span class="stats" id="ascendText9" alt="ascendText9" label="ascendText9">100 Three-Spaces/sec</span>
</div>
<div>
<img class="image" id="tesseracts5" alt="tesseracts5" label="tesseracts5" src="Pictures/TesseractTier5.png" loading="lazy">
<span class="desc" id="ascendText5" alt="ascendText5" label="ascendText5">Hilbert Space: 0 [+0]</span>
<button class="buildingPurchaseBtn" id="buyTesseracts5" alt="buyTesseracts5" label="buyTesseracts5">Cost: 10000 Tesseracts</button>
<button class="auto autobuyerToggleButton" id="tesseractAutoToggle5" alt="tesseractAutoToggle5" label="tesseractAutoToggle5">Auto [OFF]</button>
<span class="stats" id="ascendText10" alt="ascendText10" label="ascendText10">100 Bent Time/sec</span>
</div>
</div>
<div id="tesseractTexts" alt="tesseractTexts" label="tesseractTexts">
<p id="tesseractInfo" alt="tesseractInfo" label="tesseractInfo" style="color:plum;">You have 0 Wow! Tesseracts. Gain more through completing Challenge 10 each ascension.</p>
<p id="ascendShardInfo" alt="ascendShardInfo" label="ascendShardInfo" style="color: orange;">You have a mathematical constant of 3. I Wonder what it's for!</p>
</div>
<div id="ascendConstantUpgrades" alt="ascendConstantUpgrades" label="ascendConstantUpgrades">
<table id="constantUpgradeTable" alt="constantUpgradeTable" label="constantUpgradeTable">
<tr>
<td>
<img class="constUpgrade" id='buyConstantUpgrade1' src="Pictures/Transparent Pics/ConstantUpgrade1.png" loading="lazy">
</td>
<td>
<img class="constUpgrade" id='buyConstantUpgrade2' src="Pictures/Transparent Pics/ConstantUpgrade2.png" loading="lazy">
</td>
<td>
<img class="constUpgrade" id='buyConstantUpgrade3' src="Pictures/Transparent Pics/ConstantUpgrade3.png" loading="lazy">
</td>
<td>
<img class="constUpgrade" id='buyConstantUpgrade4' src="Pictures/Transparent Pics/ConstantUpgrade4.png" loading="lazy">
</td>
<td>
<img class="constUpgrade" id='buyConstantUpgrade5' src="Pictures/Transparent Pics/ConstantUpgrade5.png" loading="lazy">
</td>
<td>
<img class="constUpgrade" id='buyConstantUpgrade6' src="Pictures/Transparent Pics/ConstantUpgrade6.png" loading="lazy">
</td>
<td>
<img class="constUpgrade" id='buyConstantUpgrade7' src="Pictures/Transparent Pics/ConstantUpgrade7.png" loading="lazy">
</td>
<td>
<img class="constUpgrade" id='buyConstantUpgrade8' src="Pictures/Transparent Pics/ConstantUpgrade8.png" loading="lazy">
</td>
<td>
<img class="constUpgrade" id='buyConstantUpgrade9' src="Pictures/Transparent Pics/ConstantUpgrade9.png" loading="lazy">
</td>
<td>
<img class="constUpgrade" id='buyConstantUpgrade10' src="Pictures/Transparent Pics/ConstantUpgrade10.png" loading="lazy">
</td>
</tr>
</table>
<p id="constUpgradeDescription" alt="constUpgradeDescription" label="constUpgradeDescription" style="color: gold">Hover over an icon for a description of the upgrade. Click to buy it!</p>
<p class="mainText" id="constUpgradeLevel" alt="constUpgradeLevel" label="constUpgradeLevel">Current Level: <span id="constUpgradeLevel2" alt="constUpgradeLevel2" label="constUpgradeLevel2" style="color: orchid">---</span></p>
<p class="mainText" id="constUpgradeCost" alt="constUpgradeCost" label="constUpgradeCost">Cost: <span id="constUpgradeCost2" alt="constUpgradeCost2" label="constUpgradeCost2" style="color: orchid">---</span> from your Constant</p>
<p class="mainText" id="constUpgradeEffect1" alt="constUpgradeEffect1" label="constUpgradeEffect1">Current Effect: <span id="constUpgradeEffect2" alt="constUpgradeEffect2" label="constUpgradeEffect2" style="color: orchid">---</span></p>
</div>
<div class="resetautomation" id="ascendautomation" alt="ascendautomation" label="ascendautomation">
<button id="tesseractautobuytoggle" alt="tesseractautobuytoggle" label="tesseractautobuytoggle" style="border:2px solid red;">Auto Buy: OFF</button>
<button id="tesseractautobuymode" alt="tesseractautobuymode" label="tesseractautobuymode" style="border:2px solid green;">Mode: AMOUNT</button>
<input class="tesseractautobuyamount" type="number" id="tesseractAmount" alt="tesseractAmount" label="tesseractAmount" min="1" max="999999999" defaultValue="1">
<p class="tesseractautobuyamount mainText" id="autotessbuyeramount" alt="autotessbuyeramount" label="autotessbuyeramount"></p>
</div>
<p id="ascendHotKeys" alt="ascendHotKeys" label="ascendHotKeys">Press [1], [2], [3], [4], or [5] to buy the respective tiered producer.</p>
</div>
</div>
<div id="upgrades" alt="upgrades" label="upgrades" style="display: none;">
<div id="upgradesFlex" alt="upgradesFlex" label="upgradesFlex">
<div>
<img id="upgrades1" alt="upgrades1" label="upgrades1" src="Pictures/Coin.png" loading="lazy">
<p id="cointext" alt="cointext" label="cointext" style="color: gold">Coin Upgrades</p>
<table id="coinupgradestable" alt="coinupgradestable" label="coinupgradestable" style="display: inline-block;">
<tr>
<td><img src="Pictures/Transparent Pics/Coin1.png" id="upg1" alt="upg1" label="upg1" loading="lazy"></td>
<td><img src="Pictures/Transparent Pics/Coin2.png" id="upg2" alt="upg2" label="upg2" loading="lazy"></td>
<td><img src="Pictures/Transparent Pics/Coin3.png" id="upg3" alt="upg3" label="upg3" loading="lazy"></td>
<td><img src="Pictures/Transparent Pics/Coin4.png" id="upg4" alt="upg4" label="upg4" loading="lazy"></td>
<td><img src="Pictures/Transparent Pics/Coin5.png" id="upg5" alt="upg5" label="upg5" loading="lazy"></td>
</tr>
<tr>
<td><img class="prestigeunlock" src="Pictures/Transparent Pics/Coin6.png" id="upg6" alt="upg6" label="upg6" loading="lazy"></td>
<td><img class="prestigeunlock" src="Pictures/Transparent Pics/Coin7.png" id="upg7" alt="upg7" label="upg7" loading="lazy"></td>
<td><img class="prestigeunlock" src="Pictures/Transparent Pics/Coin8.png" id="upg8" alt="upg8" label="upg8" loading="lazy"></td>
<td><img class="prestigeunlock" src="Pictures/Transparent Pics/Coin9.png" id="upg9" alt="upg9" label="upg9" loading="lazy"></td>
<td><img class="prestigeunlock" src="Pictures/Transparent Pics/Coin10.png" id="upg10" alt="upg10" label="upg10" loading="lazy"></td>
</tr>
<tr>
<td><img class="generationunlock" src="Pictures/Transparent Pics/Coin11.png" id="upg11" alt="upg11" label="upg11" loading="lazy"></td>
<td><img class="generationunlock" src="Pictures/Transparent Pics/Coin12.png" id="upg12" alt="upg12" label="upg12" loading="lazy"></td>
<td><img class="generationunlock" src="Pictures/Transparent Pics/Coin13.png" id="upg13" alt="upg13" label="upg13" loading="lazy"></td>
<td><img class="generationunlock" src="Pictures/Transparent Pics/Coin14.png" id="upg14" alt="upg14" label="upg14" loading="lazy"></td>
<td><img class="generationunlock" src="Pictures/Transparent Pics/Coin15.png" id="upg15" alt="upg15" label="upg15" loading="lazy"></td>
</tr>
<tr>
<td><img class="transcendunlock" src="Pictures/Transparent Pics/Coin16.png" id="upg16" alt="upg16" label="upg16" loading="lazy"></td>
<td><img class="transcendunlock" src="Pictures/Transparent Pics/Coin17.png" id="upg17" alt="upg17" label="upg17" loading="lazy"></td>
<td><img class="transcendunlock" src="Pictures/Transparent Pics/Coin18.png" id="upg18" alt="upg18" label="upg18" loading="lazy"></td>
<td><img class="transcendunlock" src="Pictures/Transparent Pics/Coin19.png" id="upg19" alt="upg19" label="upg19" loading="lazy"></td>
<td><img class="transcendunlock" src="Pictures/Transparent Pics/Coin20.png" id="upg20" alt="upg20" label="upg20" loading="lazy"></td>
</tr>
<tr>
<td><img class="cubeUpgrade19" src="Pictures/Transparent Pics/Coin21.png" id="upg121" alt="upg121" label="upg121" loading="lazy"></td>
<td><img class="cubeUpgrade19" src="Pictures/Transparent Pics/Coin22.png" id="upg122" alt="upg122" label="upg122" loading="lazy"></td>
<td><img class="cubeUpgrade19" src="Pictures/Transparent Pics/Coin23.png" id="upg123" alt="upg123" label="upg123" loading="lazy"></td>
<td><img class="cubeUpgrade19" src="Pictures/Transparent Pics/Coin24.png" id="upg124" alt="upg124" label="upg124" loading="lazy"></td>
<td><img class="cubeUpgrade19" src="Pictures/Transparent Pics/ConstantUpgrade1.png" id="upg125" alt="upg125" label="upg125" loading="lazy"></td>
</tr>
</table>
<button class="autobuyerToggleButton upgradeToggle" id="coinAutoUpgrade" alt="coinAutoUpgrade" label="coinAutoUpgrade" style="border:2px solid green">Auto: ON</button>
</div>
<div>
<img id="upgrades2" alt="upgrades2" label="upgrades2" class="prestigeunlock" src="Pictures/Diamond.png" loading="lazy">
<p class="prestigeunlock" id="prestigetext" alt="prestigetext" label="prestigetext" style="color: cyan">Diamond Upgrades</p>
<table class="prestigeunlock" id="prestigeupgradestable" alt="prestigeupgradestable" label="prestigeupgradestable">
<tr>
<td><img src="Pictures/Transparent Pics/Diamond1.png" id="upg21" alt="upg21" label="upg21" loading="lazy"></td>
<td><img src="Pictures/Transparent Pics/Diamond2.png" id="upg22" alt="upg22" label="upg22" loading="lazy"></td>
<td><img src="Pictures/Transparent Pics/Diamond3.png" id="upg23" alt="upg23" label="upg23" loading="lazy"></td>
<td><img src="Pictures/Transparent Pics/Diamond4.png" id="upg24" alt="upg24" label="upg24" loading="lazy"></td>
<td><img src="Pictures/Transparent Pics/Diamond5.png" id="upg25" alt="upg25" label="upg25" loading="lazy"></td>
</tr>
<tr>
<td><img src="Pictures/Transparent Pics/Diamond6.png" id="upg26" alt="upg26" label="upg26" loading="lazy"></td>
<td><img src="Pictures/Transparent Pics/Diamond7.png" id="upg27" alt="upg27" label="upg27" loading="lazy"></td>
<td><img src="Pictures/Transparent Pics/Diamond8.png" id="upg28" alt="upg28" label="upg28" loading="lazy"></td>
<td><img src="Pictures/Transparent Pics/Diamond9.png" id="upg29" alt="upg29" label="upg29" loading="lazy"></td>
<td><img src="Pictures/Transparent Pics/Diamond10.png" id="upg30" alt="upg30" label="upg30" loading="lazy"></td>
</tr>
<tr>
<td><img class="transcendunlock" src="Pictures/Transparent Pics/Diamond11.png" id="upg31" alt="upg31" label="upg31" loading="lazy"></td>
<td><img class="transcendunlock" src="Pictures/Transparent Pics/Diamond12.png" id="upg32" alt="upg32" label="upg32" loading="lazy"></td>
<td><img class="transcendunlock" src="Pictures/Transparent Pics/Diamond13.png" id="upg33" alt="upg33" label="upg33" loading="lazy"></td>
<td><img class="transcendunlock" src="Pictures/Transparent Pics/Diamond14.png" id="upg34" alt="upg34" label="upg34" loading="lazy"></td>
<td><img class="transcendunlock" src="Pictures/Transparent Pics/Diamond15.png" id="upg35" alt="upg35" label="upg35" loading="lazy"></td>
</tr>
<tr>
<td><img class="reincarnationunlock" src="Pictures/Transparent Pics/Diamond16.png" id="upg36" alt="upg36" label="upg36" loading="lazy"></td>
<td><img class="reincarnationunlock" src="Pictures/Transparent Pics/Diamond17.png" id="upg37" alt="upg37" label="upg37" loading="lazy"></td>
<td><img class="chal7" src="Pictures/Transparent Pics/Diamond18.png" id="upg38" alt="upg38" label="upg38" loading="lazy"></td>
<td><img class="chal8" src="Pictures/Transparent Pics/Diamond19.png" id="upg39" alt="upg39" label="upg39" loading="lazy"></td>
<td><img class="chal9" src="Pictures/Transparent Pics/Diamond20.png" id="upg40" alt="upg40" label="upg40" loading="lazy"></td>
</tr>
</table>
<button class="autobuyerToggleButton upgradeToggle" id="prestigeAutoUpgrade" alt="prestigeAutoUpgrade" label="prestigeAutoUpgrade" style="border:2px solid green">Auto: ON</button>
</div>
<div>
<img id="upgrades3" alt="upgrades3" label="upgrades3" class="transcendunlock" src="Pictures/Mythos.png" loading="lazy">
<p class="transcendunlock" id="transcendtext" alt="transcendtext" label="transcendtext" style="color: plum">Mythos Upgrades</p>
<table class="transcendunlock" id="transcendupgradestable" alt="transcendupgradestable" label="transcendupgradestable">
<tr>
<td><img src="Pictures/Transparent Pics/Mythos1.png" id="upg41" alt="upg41" label="upg41" loading="lazy"></td>
<td><img src="Pictures/Transparent Pics/Mythos2.png" id="upg42" alt="upg42" label="upg42" loading="lazy"></td>
<td><img src="Pictures/Transparent Pics/Mythos3.png" id="upg43" alt="upg43" label="upg43" loading="lazy"></td>
<td><img src="Pictures/Transparent Pics/Mythos4.png" id="upg44" alt="upg44" label="upg44" loading="lazy"></td>
<td><img src="Pictures/Transparent Pics/Mythos5.png" id="upg45" alt="upg45" label="upg45" loading="lazy"></td>
</tr>
<tr>
<td><img src="Pictures/Transparent Pics/Mythos6.png" id="upg46" alt="upg46" label="upg46" loading="lazy"></td>
<td><img src="Pictures/Transparent Pics/Mythos7.png" id="upg47" alt="upg47" label="upg47" loading="lazy"></td>
<td><img src="Pictures/Transparent Pics/Mythos8.png" id="upg48" alt="upg48" label="upg48" loading="lazy"></td>
<td><img src="Pictures/Transparent Pics/Mythos9.png" id="upg49" alt="upg49" label="upg49" loading="lazy"></td>
<td><img src="Pictures/Transparent Pics/Mythos10.png" id="upg50" alt="upg50" label="upg50" loading="lazy"></td>
</tr>
<tr>
<td><img class="reincarnationunlock" src="Pictures/Transparent Pics/Mythos11.png" id="upg51" alt="upg51" label="upg51" loading="lazy"></td>
<td><img class="reincarnationunlock" src="Pictures/Transparent Pics/Mythos12.png" id="upg52" alt="upg52" label="upg52" loading="lazy"></td>
<td><img class="reincarnationunlock" src="Pictures/Transparent Pics/Mythos13.png" id="upg53" alt="upg53" label="upg53" loading="lazy"></td>
<td><img class="reincarnationunlock" src="Pictures/Transparent Pics/Mythos14.png" id="upg54" alt="upg54" label="upg54" loading="lazy"></td>
<td><img class="reincarnationunlock" src="Pictures/Transparent Pics/Mythos15.png" id="upg55" alt="upg55" label="upg55" loading="lazy"></td>
</tr>
<tr>
<td><img class="reincarnationunlock" src="Pictures/Transparent Pics/Mythos16.png" id="upg56" alt="upg56" label="upg56" loading="lazy"></td>
<td><img class="reincarnationunlock" src="Pictures/Transparent Pics/Mythos17.png" id="upg57" alt="upg57" label="upg57" loading="lazy"></td>
<td><img class="reincarnationunlock" src="Pictures/Transparent Pics/Mythos18.png" id="upg58" alt="upg58" label="upg58" loading="lazy"></td>
<td><img class="reincarnationunlock" src="Pictures/Transparent Pics/Mythos19.png" id="upg59" alt="upg59" label="upg59" loading="lazy"></td>
<td><img class="reincarnationunlock" src="Pictures/Transparent Pics/Mythos20.png" id="upg60" alt="upg60" label="upg60" loading="lazy"></td>
</tr>
</table>
<button class="autobuyerToggleButton upgradeToggle" id="transcendAutoUpgrade" alt="transcendAutoUpgrade" label="transcendAutoUpgrade" style="border:2px solid green">Auto: ON</button>
</div>
<div>
<img id="upgrades4" alt="upgrades4" label="upgrades4" class="prestigeunlock" src="Pictures/Generators.png" loading="lazy">
<p class="prestigeunlock" id="generatortext" alt="generatortext" label="generatortext" style="color: lightgray">Generator Shop</p>
<table class="prestigeunlock" id="generatortable" alt="generatortable" label="generatortable">
<tr>
<td><img id="upg101" alt="upg101" label="upg101" src="Pictures/Transparent Pics/GeneratorOne.png" loading="lazy"></td>
<td><img id="upg102" alt="upg102" label="upg102" class="generationunlock" src="Pictures/Transparent Pics/GeneratorTwo.png" loading="lazy"></td>
<td><img id="upg103" alt="upg103" label="upg103" class="generationunlock" src="Pictures/Transparent Pics/GeneratorThree.png" loading="lazy"></td>
<td><img id="upg104" alt="upg104" label="upg104" class="generationunlock" src="Pictures/Transparent Pics/GeneratorFour.png" loading="lazy"></td>
<td><img id="upg105" alt="upg105" label="upg105" class="generationunlock" src="Pictures/Transparent Pics/GeneratorFive.png" loading="lazy"></td>
</tr>
<tr>
<td><img id="upg106" alt="upg106" label="upg106" class="transcendunlock" src="Pictures/Transparent Pics/GeneratorSix.png" loading="lazy"></td>
<td><img id="upg107" alt="upg107" label="upg107" class="transcendunlock" src="Pictures/Transparent Pics/GeneratorSeven.png" loading="lazy"></td>
<td><img id="upg108" alt="upg108" label="upg108" class="transcendunlock" src="Pictures/Transparent Pics/GeneratorEight.png" loading="lazy"></td>
<td><img id="upg109" alt="upg109" label="upg109" class="transcendunlock" src="Pictures/Transparent Pics/GeneratorNine.png" loading="lazy"></td>
<td><img id="upg110" alt="upg110" label="upg110" class="transcendunlock" src="Pictures/Transparent Pics/GeneratorTen.png" loading="lazy"></td>
</tr>
<tr>
<td><img id="upg111" alt="upg111" label="upg111" class="transcendunlock" src="Pictures/Transparent Pics/GeneratorEleven.png" loading="lazy"></td>
<td><img id="upg112" alt="upg112" label="upg112" class="transcendunlock" src="Pictures/Transparent Pics/GeneratorTwelve.png" loading="lazy"></td>
<td><img id="upg113" alt="upg113" label="upg113" class="transcendunlock" src="Pictures/Transparent Pics/GeneratorThirteen.png" loading="lazy"></td>
<td><img id="upg114" alt="upg114" label="upg114" class="transcendunlock" src="Pictures/Transparent Pics/GeneratorFourteen.png" loading="lazy"></td>
<td><img id="upg115" alt="upg115" label="upg115" class="transcendunlock" src="Pictures/Transparent Pics/GeneratorFifteen.png" loading="lazy"></td>
</tr>
<tr>
<td><img id="upg116" alt="upg116" label="upg116" class="transcendunlock" src="Pictures/Transparent Pics/GeneratorSixteen.png" loading="lazy"></td>
<td><img id="upg117" alt="upg117" label="upg117" class="transcendunlock" src="Pictures/Transparent Pics/GeneratorSeventeen.png" loading="lazy"></td>
<td><img id="upg118" alt="upg118" label="upg118" class="transcendunlock" src="Pictures/Transparent Pics/GeneratorEighteen.png" loading="lazy"></td>
<td><img id="upg119" alt="upg119" label="upg119" class="transcendunlock" src="Pictures/Transparent Pics/GeneratorNineteen.png" loading="lazy"></td>
<td><img id="upg120" alt="upg120" label="upg120" class="transcendunlock" src="Pictures/Transparent Pics/GeneratorTwenty.png" loading="lazy"></td>
</tr>
</table>
<button class="autobuyerToggleButton upgradeToggle" id="generatorsAutoUpgrade" alt="generatorsAutoUpgrade" label="generatorsAutoUpgrade" style="border:2px solid green">Auto: ON</button>
</div>
<div>
<img id="upgrades5" alt="upgrades5" label="upgrades5" class="prestigeunlock" src="Pictures/Automation.png" loading="lazy">
<p class="prestigeunlock" id="automationtext" alt="automationtext" label="automationtext" style="color: crimson">Automation Shop</p>
<table class="prestigeunlock" id="automationtable" alt="automationtable" label="automationtable">
<tr>
<td><img id="upg81" alt="upg81" label="upg81" src="Pictures/Transparent Pics/AutomationOne.png" loading="lazy"></td>
<td><img id="upg82" alt="upg82" label="upg82" src="Pictures/Transparent Pics/AutomationTwo.png" loading="lazy"></td>
<td><img id="upg83" alt="upg83" label="upg83" src="Pictures/Transparent Pics/AutomationThree.png" loading="lazy"></td>
<td><img id="upg84" alt="upg84" label="upg84" src="Pictures/Transparent Pics/AutomationFour.png" loading="lazy"></td>
<td><img id="upg85" alt="upg85" label="upg85" src="Pictures/Transparent Pics/AutomationFive.png" loading="lazy"></td>
</tr>
<tr>
<td><img id="upg86" alt="upg86" label="upg86" src="Pictures/Transparent Pics/AutomationSix.png" loading="lazy"></td>
<td><img id="upg87" alt="upg87" label="upg87" src="Pictures/Transparent Pics/AutomationSeven.png" loading="lazy"></td>
<td><img id="upg88" alt="upg88" label="upg88" class="transcendunlock" id="auto8" alt="auto8" label="auto8" src="Pictures/Transparent Pics/AutomationEight.png" loading="lazy"></td>
<td><img id="upg89" alt="upg89" label="upg89" class="transcendunlock" id="auto9" alt="auto9" label="auto9" src="Pictures/Transparent Pics/AutomationNine.png" loading="lazy"></td>
<td><img id="upg90" alt="upg90" label="upg90" class="transcendunlock" id="auto10" alt="auto10" label="auto10" src="Pictures/Transparent Pics/AutomationTen.png" loading="lazy"></td>
</tr>
<tr>
<td><img id="upg91" alt="upg91" label="upg91" class="transcendunlock" src="Pictures/Transparent Pics/AutomationEleven.png" loading="lazy"></td>
<td><img id="upg92" alt="upg92" label="upg92" class="transcendunlock" src="Pictures/Transparent Pics/AutomationTwelve.png" loading="lazy"></td>
<td><img id="upg93" alt="upg93" label="upg93" class="transcendunlock" src="Pictures/Transparent Pics/AutomationThirteen.png" loading="lazy"></td>
<td><img id="upg94" alt="upg94" label="upg94" class="reincarnationunlock" src="Pictures/Transparent Pics/AutomationFourteen.png" loading="lazy"></td>
<td><img id="upg95" alt="upg95" label="upg95" class="reincarnationunlock" src="Pictures/Transparent Pics/AutomationFifteen.png" loading="lazy"></td>
</tr>
<tr>
<td><img id="upg96" alt="upg96" label="upg96" class="reincarnationunlock" src="Pictures/Transparent Pics/AutomationSixteen.png" loading="lazy"></td>
<td><img id="upg97" alt="upg97" label="upg97" class="reincarnationunlock" src="Pictures/Transparent Pics/AutomationSeventeen.png" loading="lazy"></td>
<td><img id="upg98" alt="upg98" label="upg98" class="reincarnationunlock" src="Pictures/Transparent Pics/AutomationEighteen.png" loading="lazy"></td>
<td><img id="upg99" alt="upg99" label="upg99" class="reincarnationunlock" src="Pictures/Transparent Pics/AutomationNineteen.png" loading="lazy"></td>
<td><img id="upg100" alt="upg100" label="upg100" class="reincarnationunlock" src="Pictures/Transparent Pics/AutomationTwenty.png" loading="lazy"></td>
</tr>
</table>
</div>
<div>
<img id="upgrades6" alt="upgrades6" label="upgrades6" class="reincarnationunlock" src="Pictures/Particle.png" loading="lazy">
<p class="reincarnationunlock" id="reincarnationtext" alt="reincarnationtext" label="reincarnationtext" style="color: limegreen">Particles Upgrades</p>
<table class="reincarnationunlock" id="reincarnationupgradestable" alt="reincarnationupgradestable" label="reincarnationupgradestable">
<tr>
<td><img class="reinrow1" src="Pictures/Transparent Pics/Particle1.png" id="upg61" alt="upg61" label="upg61" loading="lazy"></td>
<td><img class="reinrow1" src="Pictures/Transparent Pics/Particle2.png" id="upg62" alt="upg62" label="upg62" loading="lazy"></td>
<td><img class="reinrow1" src="Pictures/Transparent Pics/Particle3.png" id="upg63" alt="upg63" label="upg63" loading="lazy"></td>
<td><img class="reinrow1" src="Pictures/Transparent Pics/Particle4.png" id="upg64" alt="upg64" label="upg64" loading="lazy"></td>
<td><img class="reinrow1" src="Pictures/Transparent Pics/Particle5.png" id="upg65" alt="upg65" label="upg65" loading="lazy"></td>
</tr>
<tr>
<td><img class="reinrow2" src="Pictures/Transparent Pics/Particle6.png" id="upg66" alt="upg66" label="upg66" loading="lazy"></td>
<td><img class="reinrow2" src="Pictures/Transparent Pics/Particle7.png" id="upg67" alt="upg67" label="upg67" loading="lazy"></td>
<td><img class="reinrow2" src="Pictures/Transparent Pics/Particle8.png" id="upg68" alt="upg68" label="upg68" loading="lazy"></td>
<td><img class="reinrow2" src="Pictures/Transparent Pics/Particle9.png" id="upg69" alt="upg69" label="upg69" loading="lazy"></td>
<td><img class="reinrow2" src="Pictures/Transparent Pics/Particle10.png" id="upg70" alt="upg70" label="upg70" loading="lazy"></td>
</tr>
<tr>
<td><img class="reinrow3" src="Pictures/Transparent Pics/Particle11.png" id="upg71" alt="upg71" label="upg71" loading="lazy"></td>
<td><img class="reinrow3" src="Pictures/Transparent Pics/Particle12.png" id="upg72" alt="upg72" label="upg72" loading="lazy"></td>
<td><img class="reinrow3" src="Pictures/Transparent Pics/Particle13.png" id="upg73" alt="upg73" label="upg73" loading="lazy"></td>
<td><img class="reinrow3" src="Pictures/Transparent Pics/Particle14.png" id="upg74" alt="upg74" label="upg74" loading="lazy"></td>
<td><img class="reinrow3" src="Pictures/Transparent Pics/Particle15.png" id="upg75" alt="upg75" label="upg75" loading="lazy"></td>
</tr>
<tr>
<td><img class="reinrow4" src="Pictures/Transparent Pics/Particle16.png" id="upg76" alt="upg76" label="upg76" loading="lazy"></td>
<td><img class="reinrow4" src="Pictures/Transparent Pics/Particle17.png" id="upg77" alt="upg77" label="upg77" loading="lazy"></td>
<td><img class="reinrow4" src="Pictures/Transparent Pics/Particle18.png" id="upg78" alt="upg78" label="upg78" loading="lazy"></td>
<td><img class="reinrow4" src="Pictures/Transparent Pics/Particle19.png" id="upg79" alt="upg79" label="upg79" loading="lazy"></td>
<td><img class="reinrow4" src="Pictures/Transparent Pics/Particle20.png" id="upg80" alt="upg80" label="upg80" loading="lazy"></td>
</tr>
</table>
<button class="autobuyerToggleButton upgradeToggle" id="reincarnateAutoUpgrade" alt="reincarnateAutoUpgrade" label="reincarnateAutoUpgrade" style="border: 2px solid green">Auto: ON</button>
</div>
</div>
<div id="upgradesrow3" alt="upgradesrow3" label="upgradesrow3">
<p id="upgradedescription" alt="upgradedescription" label="upgradedescription" style="color: beige">Hover over an upgrade icon to see details!</p>
<p id="upgradecost" alt="upgradecost" label="upgradecost"></p>
<p id="upgradeeffect" alt="upgradeeffect" label="upgradeeffect"></p>
<button class="auto autobuyerToggleButton" id="toggle9" alt="toggle9" label="toggle9" toggleid="9" alt="9" label="9" format="Hover-to-Buy [$]" style="border:2px solid green">Hover-To-Buy: Off</button>
<p id="upgradehotkeys" alt="upgradehotkeys" label="upgradehotkeys" style="color: gray;">Press [1], [2], [3], [4], [5] or [6] on your keyboard to use resources for each upgrades.</p>
</div>
</div>
<div id="statistics" alt="statistics" label="statistics" style="display: none;">
<div class="NotificationToggle">
<p class="mainText" id="achievementprogress" alt="achievementprogress" label="achievementprogress"></p>
<img class="achNotification" id="achnotificationpic" alt="achnotificationpic" label="achnotificationpic" src = "Pictures/Notifications.png" title='Notifications' loading="lazy">
<button class="auto nonSquare" id="toggle34" alt="toggle34" label="toggle34" toggleid="34" alt="34" label="34" format="[$]" style="border: 2px solid green">[ON]</button>
</div>
<div id="achievements" alt="achievements" label="achievements">
<div class="achievementstables scrollbarX">
<table id="achievementstable" alt="achievementstable" label="achievementstable" style="padding: 0; font-size:0;">
<tr>
<td><img src="Pictures/Transparent Pics/ach1.png" id="ach1" alt="ach1" label="ach1" loading="lazy"></td>
<td><img src="Pictures/Transparent Pics/ach2.png" id="ach8" alt="ach8" label="ach8" loading="lazy"></td>
<td><img src="Pictures/Transparent Pics/ach3.png" id="ach15" alt="ach15" label="ach15" loading="lazy"></td>
<td><img src="Pictures/Transparent Pics/ach4.png" id="ach22" alt="ach22" label="ach22" loading="lazy"></td>
<td><img src="Pictures/Transparent Pics/ach5.png" id="ach29" alt="ach29" label="ach29" loading="lazy"></td>
<td><img src="Pictures/Transparent Pics/ach6.png" id="ach148" alt="ach148" label="ach148" loading="lazy"></td>
<td><img src="Pictures/Transparent Pics/ach7.png" id="ach155" alt="ach155" label="ach155" loading="lazy"></td>
<td><img class="prestigeunlock purpleach" src="Pictures/Transparent Pics/ach8.png" id="ach36" alt="ach36" label="ach36" loading="lazy"></td>
<td><img class="prestigeunlock" src="Pictures/Transparent Pics/ach14.png" id="ach162" alt="ach162" label="ach162" loading="lazy"></td>
<td><img class="prestigeunlock purpleach" src="Pictures/Transparent Pics/ach15.png" id="ach60" alt="ach60" label="ach60" loading="lazy"></td>
<td><img class="prestigeunlock" src="Pictures/Transparent Pics/ach16.png" id="ach64" alt="ach64" label="ach64" loading="lazy"></td>
<td><img class="transcendunlock redach" src="Pictures/Transparent Pics/ach19.png" id="ach43" alt="ach43" label="ach43" loading="lazy"></td>
<td><img class="transcendunlock redach" src="Pictures/Transparent Pics/ach25.png" id="ach78" alt="ach78" label="ach78" loading="lazy"></td>
<td><img class="transcendunlock redach" src="Pictures/Transparent Pics/ach26.png" id="ach85" alt="ach85" label="ach85" loading="lazy"></td>
<td><img class="transcendunlock redach" src="Pictures/Transparent Pics/ach27.png" id="ach92" alt="ach92" label="ach92" loading="lazy"></td>
<td><img class="transcendunlock redach" src="Pictures/Transparent Pics/ach28.png" id="ach99" alt="ach99" label="ach99" loading="lazy"></td>
<td><img class="transcendunlock redach" src="Pictures/Transparent Pics/ach29.png" id="ach106" alt="ach106" label="ach106" loading="lazy"></td>
<td><img class="transcendunlock purpleach" src="Pictures/Transparent Pics/ach31.png" id="ach71" alt="ach71" label="ach71" loading="lazy"></td>
<td><img class="reincarnationunlock redach" src="Pictures/Transparent Pics/ach32.png" id="ach50" alt="ach50" label="ach50" loading="lazy"></td>
<td><img class="reincarnationunlock" src="Pictures/Transparent Pics/ach38.png" id="ach113" alt="ach113" label="ach113" loading="lazy"></td>
<td><img class="reincarnationunlock" src="Pictures/Transparent Pics/ach39.png" id="ach120" alt="ach120" label="ach120" loading="lazy"></td>
<td><img class="reincarnationunlock redach" src="Pictures/Transparent Pics/ach40.png" id="ach127" alt="ach127" label="ach127" loading="lazy"></td>
<td><img class="reincarnationunlock redach" src="Pictures/Transparent Pics/ach288.png" id="ach134" alt="ach134" label="ach134" loading="lazy"></td>
<td><img class="reincarnationunlock redach" src="Pictures/Transparent Pics/ach295.png" id="ach141" alt="ach141" label="ach141" loading="lazy"></td>
<td><img class="chal8 purpleach" src="Pictures/Transparent Pics/ach302.png" id="ach169" alt="ach169" label="ach169" loading="lazy"></td>
<td><img class="chal8 redach" src="Pictures/Transparent Pics/ach309.png" id="ach176" alt="ach176" label="ach176" loading="lazy"></td>
<td><img class="ascendunlock" src="Pictures/Transparent Pics/ach316.png" id="ach183" alt="ach183" label="ach183" loading="lazy"></td>
<td><img class="ascendunlock" src="Pictures/Transparent Pics/ach323.png" id="ach190" alt="ach190" label="ach190" loading="lazy"></td>
<td><img class="ascendunlock redach" src="Pictures/Transparent Pics/ach330.png" id="ach197" alt="ach197" label="ach197" loading="lazy"></td>
<td><img class="chal11 redach" src="Pictures/Transparent Pics/ach337.png" id="ach204" alt="ach204" label="ach204" loading="lazy"></td>
<td><img class="chal12 redach" src="Pictures/Transparent Pics/ach344.png" id="ach211" alt="ach211" label="ach211" loading="lazy"></td>
<td><img class="chal13 redach" src="Pictures/Transparent Pics/ach351.png" id="ach218" alt="ach218" label="ach218" loading="lazy"></td>
<td><img class="ascendunlock" src="Pictures/Transparent Pics/ach358.png" id="ach225" alt="ach225" label="ach225" loading="lazy"></td>
<td><img class="ascendunlock" src="Pictures/Transparent Pics/ach365.png" id="ach232" alt="ach232" label="ach232" loading="lazy"></td>
<td><img class="ascendunlock" src="Pictures/Transparent Pics/ach372.png" id="ach239" alt="ach239" label="ach239" loading="lazy"></td>
<td><img class="ascendunlock" src="Pictures/Transparent Pics/ach379.png" id="ach246" alt="ach246" label="ach246" loading="lazy"></td>
<td><img class="chal14 purpleach" src="Pictures/Transparent Pics/ach386.png" id="ach253" alt="ach253" label="ach253" loading="lazy"></td>
<td><img class="chal14 purpleach" src="Pictures/Transparent Pics/ach393.png" id="ach260" alt="ach260" label="ach260" loading="lazy"></td>
<td><img class="chal14 purpleach" src="Pictures/Transparent Pics/ach400.png" id="ach267" alt="ach267" label="ach267" loading="lazy"></td>
<td><img class="singularity" src="Pictures/Transparent Pics/ach407.png" id="ach274" alt="ach274" label="ach274" loading="lazy"></td>
</tr>
<tr>
<td><img src="Pictures/Transparent Pics/ach42.png" id="ach2" alt="ach2" label="ach2" loading="lazy"></td>
<td><img src="Pictures/Transparent Pics/ach43.png" id="ach9" alt="ach9" label="ach9" loading="lazy"></td>
<td><img src="Pictures/Transparent Pics/ach44.png" id="ach16" alt="ach16" label="ach16" loading="lazy"></td>
<td><img src="Pictures/Transparent Pics/ach45.png" id="ach23" alt="ach23" label="ach23" loading="lazy"></td>
<td><img src="Pictures/Transparent Pics/ach46.png" id="ach30" alt="ach30" label="ach30" loading="lazy"></td>
<td><img src="Pictures/Transparent Pics/ach47.png" id="ach149" alt="ach149" label="ach149" loading="lazy"></td>
<td><img src="Pictures/Transparent Pics/ach48.png" id="ach156" alt="ach156" label="ach156" loading="lazy"></td>
<td><img class="prestigeunlock redach" src="Pictures/Transparent Pics/ach49.png" id="ach37" alt="ach37" label="ach37" loading="lazy"></td>
<td><img class="prestigeunlock" src="Pictures/Transparent Pics/ach55.png" id="ach163" alt="ach163" label="ach163" loading="lazy"></td>
<td><img class="prestigeunlock purpleach" src="Pictures/Transparent Pics/ach56.png" id="ach57" alt="ach57" label="ach57" loading="lazy"></td>
<td><img class="prestigeunlock" src="Pictures/Transparent Pics/ach57.png" id="ach65" alt="ach65" label="ach65" loading="lazy"></td>
<td><img class="transcendunlock redach" src="Pictures/Transparent Pics/ach60.png" id="ach44" alt="ach44" label="ach44" loading="lazy"></td>
<td><img class="transcendunlock redach" src="Pictures/Transparent Pics/ach66.png" id="ach79" alt="ach79" label="ach79" loading="lazy"></td>
<td><img class="transcendunlock redach" src="Pictures/Transparent Pics/ach67.png" id="ach86" alt="ach86" label="ach86" loading="lazy"></td>
<td><img class="transcendunlock redach" src="Pictures/Transparent Pics/ach68.png" id="ach93" alt="ach93" label="ach93" loading="lazy"></td>
<td><img class="transcendunlock redach" src="Pictures/Transparent Pics/ach69.png" id="ach100" alt="ach100" label="ach100" loading="lazy"></td>
<td><img class="transcendunlock redach" src="Pictures/Transparent Pics/ach70.png" id="ach107" alt="ach107" label="ach107" loading="lazy"></td>
<td><img class="transcendunlock purpleach" src="Pictures/Transparent Pics/ach72.png" id="ach72" alt="ach72" label="ach72" loading="lazy"></td>
<td><img class="reincarnationunlock redach" src="Pictures/Transparent Pics/ach73.png" id="ach51" alt="ach51" label="ach51" loading="lazy"></td>
<td><img class="reincarnationunlock" src="Pictures/Transparent Pics/ach79.png" id="ach114" alt="ach114" label="ach114" loading="lazy"></td>
<td><img class="reincarnationunlock" src="Pictures/Transparent Pics/ach80.png" id="ach121" alt="ach121" label="ach121" loading="lazy"></td>
<td><img class="reincarnationunlock purpleach" src="Pictures/Transparent Pics/ach81.png" id="ach128" alt="ach128" label="ach128" loading="lazy"></td>
<td><img class="reincarnationunlock purpleach" src="Pictures/Transparent Pics/ach289.png" id="ach135" alt="ach135" label="ach135" loading="lazy"></td>
<td><img style="display: none;" class="reincarnationunlock" src="Pictures/Transparent Pics/ach296.png" id="ach142" alt="ach142" label="ach142" loading="lazy"></td>
<td><img style="display: none;" class="chal8" src="Pictures/Transparent Pics/ach303.png" id="ach170" alt="ach170" label="ach170" loading="lazy"></td>
<td><img class="chal8 redach" src="Pictures/Transparent Pics/ach310.png" id="ach177" alt="ach177" label="ach177" loading="lazy"></td>
<td><img class="ascendunlock" src="Pictures/Transparent Pics/ach317.png" id="ach184" alt="ach184" label="ach184" loading="lazy"></td>
<td><img class="ascendunlock" src="Pictures/Transparent Pics/ach324.png" id="ach191" alt="ach191" label="ach191" loading="lazy"></td>
<td><img class="ascendunlock purpleach" src="Pictures/Transparent Pics/ach331.png" id="ach198" alt="ach198" label="ach198" loading="lazy"></td>
<td><img class="chal11 purpleach" src="Pictures/Transparent Pics/ach338.png" id="ach205" alt="ach205" label="ach205" loading="lazy"></td>
<td><img class="chal12 purpleach" src="Pictures/Transparent Pics/ach345.png" id="ach212" alt="ach212" label="ach212" loading="lazy"></td>
<td><img class="chal13 purpleach" src="Pictures/Transparent Pics/ach352.png" id="ach219" alt="ach219" label="ach219" loading="lazy"></td>
<td><img class="ascendunlock" src="Pictures/Transparent Pics/ach359.png" id="ach226" alt="ach226" label="ach226" loading="lazy"></td>
<td><img class="ascendunlock" src="Pictures/Transparent Pics/ach366.png" id="ach233" alt="ach233" label="ach233" loading="lazy"></td>
<td><img class="ascendunlock purpleach" src="Pictures/Transparent Pics/ach373.png" id="ach240" alt="ach240" label="ach240" loading="lazy"></td>
<td><img class="ascendunlock" src="Pictures/Transparent Pics/ach380.png" id="ach247" alt="ach247" label="ach247" loading="lazy"></td>
<td><img class="chal14 purpleach" src="Pictures/Transparent Pics/ach387.png" id="ach254" alt="ach254" label="ach254" loading="lazy"></td>
<td><img class="chal14 purpleach" src="Pictures/Transparent Pics/ach394.png" id="ach261" alt="ach261" label="ach261" loading="lazy"></td>
<td><img class="chal14" src="Pictures/Transparent Pics/ach401.png" id="ach268" alt="ach268" label="ach268" loading="lazy"></td>
<td><img class="singularity" src="Pictures/Transparent Pics/ach408.png" id="ach275" alt="ach275" label="ach275" loading="lazy"></td>
</tr>
<tr>
<td><img src="Pictures/Transparent Pics/ach83.png" id="ach3" alt="ach3" label="ach3" class="purpleach" loading="lazy"></td>
<td><img src="Pictures/Transparent Pics/ach84.png" id="ach10" alt="ach10" label="ach10" class="purpleach" loading="lazy"></td>
<td><img src="Pictures/Transparent Pics/ach85.png" id="ach17" alt="ach17" label="ach17" class="purpleach" loading="lazy"></td>
<td><img src="Pictures/Transparent Pics/ach86.png" id="ach24" alt="ach24" label="ach24" class="purpleach" loading="lazy"></td>
<td><img src="Pictures/Transparent Pics/ach87.png" id="ach31" alt="ach31" label="ach31" class="purpleach" loading="lazy"></td>
<td><img src="Pictures/Transparent Pics/ach88.png" id="ach150" alt="ach150" label="ach150" loading="lazy"></td>
<td><img src="Pictures/Transparent Pics/ach89.png" id="ach157" alt="ach157" label="ach157" loading="lazy"></td>
<td><img class="prestigeunlock redach" src="Pictures/Transparent Pics/ach90.png" id="ach38" alt="ach38" label="ach38"loading="lazy"></td>
<td><img class="prestigeunlock" src="Pictures/Transparent Pics/ach96.png" id="ach164" alt="ach164" label="ach164"loading="lazy"></td>
<td><img class="prestigeunlock purpleach" src="Pictures/Transparent Pics/ach97.png" id="ach61" alt="ach61" label="ach61" loading="lazy"></td>
<td><img class="prestigeunlock" src="Pictures/Transparent Pics/ach98.png" id="ach66" alt="ach66" label="ach66" loading="lazy"></td>
<td><img class="transcendunlock purpleach" src="Pictures/Transparent Pics/ach101.png" id="ach45" alt="ach45" label="ach45" loading="lazy"></td>
<td><img class="transcendunlock redach" src="Pictures/Transparent Pics/ach107.png" id="ach80" alt="ach80" label="ach80" loading="lazy"></td>
<td><img class="transcendunlock redach" src="Pictures/Transparent Pics/ach108.png" id="ach87" alt="ach87" label="ach87" loading="lazy"></td>
<td><img class="transcendunlock purpleach" src="Pictures/Transparent Pics/ach109.png" id="ach94" alt="ach94" label="ach94" loading="lazy"></td>
<td><img class="transcendunlock purpleach" src="Pictures/Transparent Pics/ach110.png" id="ach101" alt="ach101" label="ach101" loading="lazy"></td>
<td><img class="transcendunlock purpleach" src="Pictures/Transparent Pics/ach111.png" id="ach108" alt="ach108" label="ach108" loading="lazy"></td>
<td><img class="transcendunlock purpleach" src="Pictures/Transparent Pics/ach113.png" id="ach73" alt="ach73" label="ach73" loading="lazy"></td>
<td><img class="reincarnationunlock redach" src="Pictures/Transparent Pics/ach114.png" id="ach52" alt="ach52" label="ach52" loading="lazy"></td>
<td><img class="reincarnationunlock purpleach" src="Pictures/Transparent Pics/ach120.png" id="ach115" alt="ach115" label="ach115" loading="lazy"></td>
<td><img class="reincarnationunlock purpleach" src="Pictures/Transparent Pics/ach121.png" id="ach122" alt="ach122" label="ach122" loading="lazy"></td>
<td><img class="reincarnationunlock purpleach" src="Pictures/Transparent Pics/ach122.png" id="ach129" alt="ach129" label="ach129" loading="lazy"></td>
<td><img class="reincarnationunlock purpleach" src="Pictures/Transparent Pics/ach290.png" id="ach136" alt="ach136" label="ach136" loading="lazy"></td>
<td><img style="display: none;" class="reincarnationunlock" src="Pictures/Transparent Pics/ach297.png" id="ach143" alt="ach143" label="ach143" loading="lazy"></td>
<td><img class="chal8 purpleach" src="Pictures/Transparent Pics/ach304.png" id="ach171" alt="ach171" label="ach171" loading="lazy"></td>
<td><img class="chal8 redach" src="Pictures/Transparent Pics/ach311.png" id="ach178" alt="ach178" label="ach178" loading="lazy"></td>
<td><img class="ascendunlock" src="Pictures/Transparent Pics/ach318.png" id="ach185" alt="ach185" label="ach185" loading="lazy"></td>
<td><img class="ascendunlock" src="Pictures/Transparent Pics/ach325.png" id="ach192" alt="ach192" label="ach192" loading="lazy"></td>
<td><img class="ascendunlock purpleach" src="Pictures/Transparent Pics/ach332.png" id="ach199" alt="ach199" label="ach199" loading="lazy"></td>
<td><img class="chal11 purpleach" src="Pictures/Transparent Pics/ach339.png" id="ach206" alt="ach206" label="ach206" loading="lazy"></td>
<td><img class="chal12 purpleach" src="Pictures/Transparent Pics/ach346.png" id="ach213" alt="ach213" label="ach213" loading="lazy"></td>
<td><img class="chal13 purpleach" src="Pictures/Transparent Pics/ach353.png" id="ach220" alt="ach220" label="ach220" loading="lazy"></td>
<td><img class="ascendunlock" src="Pictures/Transparent Pics/ach360.png" id="ach227" alt="ach227" label="ach227" loading="lazy"></td>
<td><img class="ascendunlock" src="Pictures/Transparent Pics/ach367.png" id="ach234" alt="ach234" label="ach234" loading="lazy"></td>
<td><img class="ascendunlock" src="Pictures/Transparent Pics/ach374.png" id="ach241" alt="ach241" label="ach241" loading="lazy"></td>
<td><img class="ascendunlock" src="Pictures/Transparent Pics/ach381.png" id="ach248" alt="ach248" label="ach248" loading="lazy"></td>
<td><img class="chal14 purpleach" src="Pictures/Transparent Pics/ach388.png" id="ach255" alt="ach255" label="ach255" loading="lazy"></td>
<td><img class="chal14 purpleach" src="Pictures/Transparent Pics/ach395.png" id="ach262" alt="ach262" label="ach262" loading="lazy"></td>
<td><img class="chal14" src="Pictures/Transparent Pics/ach402.png" id="ach269" alt="ach269" label="ach269" loading="lazy"></td>
<td><img class="singularity" src="Pictures/Transparent Pics/ach409.png" id="ach276" alt="ach276" label="ach276" loading="lazy"></td>
</tr>
<tr>
<td><img src="Pictures/Transparent Pics/ach124.png" id="ach4" alt="ach4" label="ach4" class="redach"loading="lazy"></td>