forked from SerpentAI/ArchipelagoNewsLegacy
-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
778 lines (679 loc) · 66.1 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>Archipelago News</title>
<style type="text/css">
html,body{margin:0;padding:0}
h1,h2,h3{margin-top:0;line-height:1.2;padding-top:10px}
:root{--bg:white;--text:#444;--link:#0000EE;--link-visited:#0000EE;}
@media(prefers-color-scheme:dark){:root{--bg:#333;--text:#F0F0F0;--link:#7575FF;--link-visited:#7575FF;;}}
#color-mode:checked ~ * {--bg:#333;--text:#F0F0F0;--link:#7575FF;--link-visited:#7575FF;}
@media (prefers-color-scheme:dark) {#color-mode:checked ~ * {--bg:white;--text:#444;--link:#7575FF;--link-visited:#7575FF;}}
.color-scheme-wrapper {min-height: 100vh;background:var(--bg);color:var(--text);}
.color-scheme-wrapper a {color:var(--link);}
.color-scheme-wrapper a:visited {color:var(--link-visited);}
.color-scheme-wrapper div {margin:0 auto;max-width:650px;line-height:1.6;font-size:18px;padding:0 10px;overflow-y:hidden}
.light-mode-hide {display:none;}
@media (prefers-color-scheme:dark) {.dark-mode-hide {display:none;}}
@media (prefers-color-scheme:dark) {.light-mode-hide {display:initial;}}
</style>
<link rel="icon" type="image/gif" href="favicon.gif"/>
</head>
<body>
<input id="color-mode" type="checkbox" name="color-mode">
<label for="color-mode">
<span class="dark-mode-hide">Dark Mode</span>
<span class="light-mode-hide">Light Mode</span>
</label>
<div class="color-scheme-wrapper">
<div>
<header>
<h1 style="padding-top:20px">Archipelago News</h1>
<p>
<a href="index.html">News</a><br />
<a href="apworlds.html">APWorlds</a><br /><br />
News Archive <a href="archive2024.html">2024</a>
</p>
<p>
<strong>Archipelago Discord Server</strong> [<a href="https://discord.gg/8Z65BR2">Link</a>]<br />
</p>
</header>
<h2 id="W202448">Week of November 25 - December 1, 2024</h2>
<ul>
<li><strong>AP RELEASE</strong> 0.5.1 [<a href="https://github.com/ArchipelagoMW/Archipelago/releases/tag/0.5.1">Link</a>]</li>
</ul>
<ul>
<li><strong>APWorld Update</strong> Archipela-Go! [<a href="apworlds.html#Archipela-Go">Link</a>]</li>
<li><strong>APWorld Update</strong> Autopelago [<a href="apworlds.html#Autopelago">Link</a>]</li>
<li><strong>APWorld Update</strong> Banjo-Tooie [<a href="apworlds.html#BanjoTooie">Link</a>]</li>
<li><strong>APWorld Update</strong> Castlevania: Circle of the Moon [<a href="apworlds.html#CastlevaniaCircleOfTheMoon">Link</a>]</li>
<li><strong>APWorld Update</strong> Castlevania: Symphony of the Night [<a href="apworlds.html#CastlevaniaSymphonyOfTheNight">Link</a>]</li>
<li><strong>APWorld Update</strong> Crystalis [<a href="apworlds.html#Crystalis">Link</a>]</li>
<li><strong>APWorld Update</strong> Cuphead [<a href="apworlds.html#Cuphead">Link</a>]</li>
<li><strong>APWorld Update</strong> Dome Keeper [<a href="apworlds.html#DomeKeeper">Link</a>]</li>
<li><strong>APWorld Update</strong> Hammerwatch [<a href="apworlds.html#Hammerwatch">Link</a>]</li>
<li><strong>APWorld Update</strong> Kirby 64: The Crystal Shards [<a href="apworlds.html#Kirby64TheCrystalShards">Link</a>]</li>
<li><strong>APWorld Update</strong> Lunacid [<a href="apworlds.html#Lunacid">Link</a>]</li>
<li><strong>APWorld Update</strong> Metroid Prime [<a href="apworlds.html#MetroidPrime">Link</a>]</li>
<li><strong>APWorld Update</strong> Minishoot' Adventures [<a href="apworlds.html#MinishootAdventures">Link</a>]</li>
<li><strong>APWorld Update</strong> Minit [<a href="apworlds.html#Minit">Link</a>]</li>
<li><strong>APWorld Update</strong> Rabi-Ribi [<a href="apworlds.html#RabiRibi">Link</a>]</li>
<li><strong>APWorld Update</strong> Sonic Adventure DX [<a href="apworlds.html#SonicAdventureDX">Link</a>]</li>
<li><strong>APWorld Update</strong> SpongeBob SquarePants: Battle For Bikini Bottom [<a href="apworlds.html#SpongeBobSquarePantsBattleForBikiniBottom">Link</a>]</li>
<li><strong>APWorld Update</strong> The Legend of Zelda: A Link Between Worlds [<a href="apworlds.html#TheLegendOfZeldaALinkBetweenWorlds">Link</a>]</li>
<li><strong>APWorld Update</strong> Universal Tracker [<a href="apworlds.html#UniversalTracker">Link</a>]</li>
</ul>
<ul>
<li><strong>Beta APWorld Update</strong> Aquaria [<a href="apworlds.html#Aquaria">Link</a>]</li>
<li><strong>Beta APWorld Update</strong> The Legend of Zelda: Link's Awakening DX [<a href="apworlds.html#TheLegendOfZeldaLinksAwakeningDX">Link</a>]</li>
<li><strong>Beta APWorld Update</strong> Zork: Grand Inquisitor [<a href="apworlds.html#ZorkGrandInquisitor">Link</a>]</li>
</ul>
<ul>
<li><strong>Beta Game Mod Update</strong> Aquaria [<a href="apworlds.html#Aquaria">Link</a>]</li>
</ul>
<ul>
<li><strong>Game Mod Update</strong> Autopelago [<a href="apworlds.html#Autopelago">Link</a>]</li>
<li><strong>Game Mod Update</strong> Cuphead [<a href="apworlds.html#Cuphead">Link</a>]</li>
<li><strong>Game Mod Update</strong> Dark Souls III [<a href="apworlds.html#DarkSouls3">Link</a>]</li>
<li><strong>Game Mod Update</strong> Dome Keeper [<a href="apworlds.html#DomeKeeper">Link</a>]</li>
<li><strong>Game Mod Update</strong> Lunacid [<a href="apworlds.html#Lunacid">Link</a>]</li>
<li><strong>Game Mod Update</strong> Minishoot' Adventures [<a href="apworlds.html#MinishootAdventures">Link</a>]</li>
<li><strong>Game Mod Update</strong> Slay the Spire [<a href="apworlds.html#SlayTheSpire">Link</a>]</li>
<li><strong>Game Mod Update</strong> Sonic Adventure DX [<a href="apworlds.html#SonicAdventureDX">Link</a>]</li>
<li><strong>Game Mod Update</strong> Stardew Valley [<a href="apworlds.html#StardewValley">Link</a>]</li>
<li><strong>Game Mod Update</strong> The Witness [<a href="apworlds.html#TheWitness">Link</a>]</li>
</ul>
<ul>
<li><strong>New APWorld</strong> Golden Sun: The Lost Age [<a href="apworlds.html#GoldenSunTheLostAge">Link</a>]</li>
<li><strong>New APWorld</strong> Touhou Koumakyou: The Embodiment of Scarlet Devil [<a href="apworlds.html#TouhouKoumakyouTheEmbodimentOfScarletDevil">Link</a>]</li>
</ul>
<ul>
<li><strong>New Game Merged</strong> Faxanadu [<a href="https://github.com/ArchipelagoMW/Archipelago/pull/3059">Link</a>]</li>
</ul>
<ul>
<li><strong>New Game PR Opened</strong> Metroid Prime [<a href="https://github.com/ArchipelagoMW/Archipelago/pull/4248">Link</a>]</li>
</ul>
<ul>
<li><strong>New Tracker</strong> Yooka-Laylee [<a href="apworlds.html#YookaLaylee">Link</a>]</li>
</ul>
<h2 id="W202447">Week of November 18-24, 2024</h2>
<ul>
<li><strong>AP Release Candidate</strong> 0.5.1 RC3 [<a href="https://discord.com/channels/731205301247803413/731214280439103580/1309925708029624351">Link</a>]</li>
</ul>
<ul>
<li><strong>APWorld Update</strong> ActRaiser [<a href="apworlds.html#ActRaiser">Link</a>]</li>
<li><strong>APWorld Update</strong> Anodyne [<a href="apworlds.html#Anodyne">Link</a>]</li>
<li><strong>APWorld Update</strong> Autopelago [<a href="apworlds.html#Autopelago">Link</a>]</li>
<li><strong>APWorld Update</strong> Banjo-Tooie [<a href="apworlds.html#BanjoTooie">Link</a>]</li>
<li><strong>APWorld Update</strong> Cuphead [<a href="apworlds.html#Cuphead">Link</a>]</li>
<li><strong>APWorld Update</strong> Duke Nukem 3D: Atomic Edition [<a href="apworlds.html#DukeNukem3DAtomicEdition">Link</a>]</li>
<li><strong>APWorld Update</strong> EarthBound [<a href="apworlds.html#EarthBound">Link</a>]</li>
<li><strong>APWorld Update</strong> Final Fantasy Tactics A2: Grimoire of the Rift [<a href="apworlds.html#FinalFantasyTacticsA2GrimoireOfTheRift">Link</a>]</li>
<li><strong>APWorld Update</strong> Final Fantasy Tactics Advance [<a href="apworlds.html#FinalFantasyTacticsAdvance">Link</a>]</li>
<li><strong>APWorld Update</strong> Jak and Daxter: The Precursor Legacy [<a href="apworlds.html#JakAndDaxterThePrecursorLegacy">Link</a>]</li>
<li><strong>APWorld Update</strong> Metroid Prime [<a href="apworlds.html#MetroidPrime">Link</a>]</li>
<li><strong>APWorld Update</strong> Metroid: Zero Mission [<a href="apworlds.html#MetroidZeroMission">Link</a>]</li>
<li><strong>APWorld Update</strong> Minit [<a href="apworlds.html#Minit">Link</a>]</li>
<li><strong>APWorld Update</strong> Simon Tatham's Portable Puzzle Collection [<a href="apworlds.html#SimonTathamsPortablePuzzleCollection">Link</a>]</li>
<li><strong>APWorld Update</strong> XCOM 2: War of the Chosen [<a href="apworlds.html#XCOM2WarOfTheChosen">Link</a>]</li>
</ul>
<ul>
<li><strong>Beta APWorld Update</strong> Dark Souls III [<a href="apworlds.html#DarkSouls3">Link</a>]</li>
<li><strong>Beta APWorld Update</strong> Stardew Valley [<a href="apworlds.html#StardewValley">Link</a>]</li>
<li><strong>Beta APWorld Update</strong> Zork: Grand Inquisitor [<a href="apworlds.html#ZorkGrandInquisitor">Link</a>]</li>
</ul>
<ul>
<li><strong>Beta Game Mod Update</strong> Dark Souls III [<a href="apworlds.html#DarkSouls3">Link</a>]</li>
<li><strong>Beta Game Mod Update</strong> Stardew Valley [<a href="apworlds.html#StardewValley">Link</a>]</li>
</ul>
<ul>
<li><strong>Game Mod Update</strong> Autopelago [<a href="apworlds.html#Autopelago">Link</a>]</li>
<li><strong>Game Mod Update</strong> Brotato [<a href="apworlds.html#Brotato">Link</a>]</li>
<li><strong>Game Mod Update</strong> Duke Nukem 3D: Atomic Edition [<a href="apworlds.html#DukeNukem3DAtomicEdition">Link</a>]</li>
<li><strong>Game Mod Update</strong> HuniePop 2: Double Date [<a href="apworlds.html#HuniePop2DoubleDate">Link</a>]</li>
<li><strong>Game Mod Update</strong> Muse Dash [<a href="apworlds.html#MuseDash">Link</a>]</li>
<li><strong>Game Mod Update</strong> Noita [<a href="apworlds.html#Noita">Link</a>]</li>
<li><strong>Game Mod Update</strong> Ori and the Blind Forest [<a href="apworlds.html#OriAndTheBlindForest">Link</a>]</li>
<li><strong>Game Mod Update</strong> Shivers [<a href="apworlds.html#Shivers">Link</a>]</li>
<li><strong>Game Mod Update</strong> XCOM 2: War of the Chosen [<a href="apworlds.html#XCOM2WarOfTheChosen">Link</a>]</li>
</ul>
<ul>
<li><strong>New APWorld</strong> Archipela-Go! [<a href="apworlds.html#Archipela-Go">Link</a>]</li>
<li><strong>New APWorld</strong> Minishoot' Adventures [<a href="apworlds.html#MinishootAdventures">Link</a>]</li>
</ul>
<ul>
<li><strong>New Tracker</strong> Donkey Kong Country 2: Diddy's Kong Quest [<a href="apworlds.html#DonkeyKongCountry2DiddysKongQuest">Link</a>]</li>
</ul>
<h2 id="W202446">Week of November 11-17, 2024</h2>
<ul>
<li><strong>APWorld Update</strong> APBingo [<a href="apworlds.html#APBingo">Link</a>]</li>
<li><strong>APWorld Update</strong> Banjo-Tooie [<a href="apworlds.html#BanjoTooie">Link</a>]</li>
<li><strong>APWorld Update</strong> Diddy Kong Racing [<a href="apworlds.html#DiddyKongRacing">Link</a>]</li>
<li><strong>APWorld Update</strong> Donkey Kong Country 2: Diddy's Kong Quest [<a href="apworlds.html#DonkeyKongCountry2DiddysKongQuest">Link</a>]</li>
<li><strong>APWorld Update</strong> Final Fantasy Tactics Advance [<a href="apworlds.html#FinalFantasyTacticsAdvance">Link</a>]</li>
<li><strong>APWorld Update</strong> Outer Wilds [<a href="apworlds.html#OuterWilds">Link</a>]</li>
<li><strong>APWorld Update</strong> Shadow the Hedgehog [<a href="apworlds.html#ShadowTheHedgehog">Link</a>]</li>
<li><strong>APWorld Update</strong> Soul Blazer [<a href="apworlds.html#SoulBlazer">Link</a>]</li>
<li><strong>APWorld Update</strong> The Legend of Zelda: Majora's Mask [<a href="apworlds.html#TheLegendOfZeldaMajorasMask">Link</a>]</li>
<li><strong>APWorld Update</strong> Toejam & Earl [<a href="apworlds.html#ToejamAndEarl">Link</a>]</li>
<li><strong>APWorld Update</strong> Watery Words [<a href="apworlds.html#WateryWords">Link</a>]</li>
</ul>
<ul>
<li><strong>Beta APWorld Update</strong> Dark Souls III [<a href="apworlds.html#DarkSouls3">Link</a>]</li>
</ul>
<ul>
<li><strong>Beta Game Mod Update</strong> Dark Souls III [<a href="apworlds.html#DarkSouls3">Link</a>]</li>
<li><strong>Beta Game Mod Update</strong> The Witness [<a href="apworlds.html#TheWitness">Link</a>]</li>
</ul>
<ul>
<li><strong>Game Mod Update</strong> Cuphead [<a href="apworlds.html#Cuphead">Link</a>]</li>
<li><strong>Game Mod Update</strong> Outer Wilds [<a href="apworlds.html#OuterWilds">Link</a>]</li>
<li><strong>Game Mod Update</strong> The Legend of Zelda: Majora's Mask [<a href="apworlds.html#TheLegendOfZeldaMajorasMask">Link</a>]</li>
</ul>
<ul>
<li><strong>New APWorld</strong> Autopelago [<a href="apworlds.html#Autopelago">Link</a>]</li>
</ul>
<ul>
<li><strong>New Beta APWorld</strong> Zork: Grand Inquisitor [<a href="apworlds.html#ZorkGrandInquisitor">Link</a>]</li>
</ul>
<ul>
<li><strong>New Tracker</strong> Against the Storm [<a href="apworlds.html#AgainstTheStorm">Link</a>]</li>
<li><strong>New Tracker</strong> Flipwitch - Forbidden Sex Hex [<a href="apworlds.html#FlipWitchForbiddenSexHex">Link</a>]</li>
</ul>
<h2 id="W202445">Week of November 4-10, 2024</h2>
<ul>
<li><strong>AP Release Candidate</strong> 0.5.1 RC2 [<a href="https://discord.com/channels/731205301247803413/731214280439103580/1305486269769580545">Link</a>]</li>
</ul>
<ul>
<li><strong>APWorld Update</strong> Against the Storm [<a href="apworlds.html#AgainstTheStorm">Link</a>]</li>
<li><strong>APWorld Update</strong> ANIMAL WELL [<a href="apworlds.html#ANIMALWELL">Link</a>]</li>
<li><strong>APWorld Update</strong> APBingo [<a href="apworlds.html#APBingo">Link</a>]</li>
<li><strong>APWorld Update</strong> Ape Escape [<a href="apworlds.html#ApeEscape">Link</a>]</li>
<li><strong>APWorld Update</strong> Banjo-Tooie [<a href="apworlds.html#BanjoTooie">Link</a>]</li>
<li><strong>APWorld Update</strong> Cuphead [<a href="apworlds.html#Cuphead">Link</a>]</li>
<li><strong>APWorld Update</strong> EarthBound [<a href="apworlds.html#EarthBound">Link</a>]</li>
<li><strong>APWorld Update</strong> Final Fantasy Tactics A2: Grimoire of the Rift [<a href="apworlds.html#FinalFantasyTacticsA2GrimoireOfTheRift">Link</a>]</li>
<li><strong>APWorld Update</strong> FlipWitch - Forbidden Sex Hex [<a href="apworlds.html#FlipWitchForbiddenSexHex">Link</a>]</li>
<li><strong>APWorld Update</strong> Guild Wars 2 [<a href="apworlds.html#GuildWars2">Link</a>]</li>
<li><strong>APWorld Update</strong> Hatsune Miku: Project Diva Mega Mix+ [<a href="apworlds.html#HatsuneMikuProjectDivaMegaMix">Link</a>]</li>
<li><strong>APWorld Update</strong> Into the Breach [<a href="apworlds.html#IntoTheBreach">Link</a>]</li>
<li><strong>APWorld Update</strong> Metroid: Zero Mission [<a href="apworlds.html#MetroidZeroMission">Link</a>]</li>
<li><strong>APWorld Update</strong> Outer Wilds [<a href="apworlds.html#OuterWilds">Link</a>]</li>
<li><strong>APWorld Update</strong> Resident Evil 2 (Remake) [<a href="apworlds.html#ResidentEvil2">Link</a>]</li>
<li><strong>APWorld Update</strong> Sentinels of the Multiverse [<a href="apworlds.html#SentinelsOfTheMultiverse">Link</a>]</li>
<li><strong>APWorld Update</strong> Shapez [<a href="apworlds.html#Shapez">Link</a>]</li>
<li><strong>APWorld Update</strong> Simon Tatham's Portable Puzzle Collection [<a href="apworlds.html#SimonTathamsPortablePuzzleCollection">Link</a>]</li>
<li><strong>APWorld Update</strong> The Legend of Zelda: Majora's Mask [<a href="apworlds.html#TheLegendOfZeldaMajorasMask">Link</a>]</li>
<li><strong>APWorld Update</strong> Wario Land 4 [<a href="apworlds.html#WarioLand4">Link</a>]</li>
</ul>
<ul>
<li><strong>Game Mod Update</strong> Against the Storm [<a href="apworlds.html#AgainstTheStorm">Link</a>]</li>
<li><strong>Game Mod Update</strong> Brotato [<a href="apworlds.html#Brotato">Link</a>]</li>
<li><strong>Game Mod Update</strong> Cuphead [<a href="apworlds.html#Cuphead">Link</a>]</li>
<li><strong>Game Mod Update</strong> FlipWitch - Forbidden Sex Hex [<a href="apworlds.html#FlipWitchForbiddenSexHex">Link</a>]</li>
<li><strong>Game Mod Update</strong> Guild Wars 2 [<a href="apworlds.html#GuildWars2">Link</a>]</li>
<li><strong>Game Mod Update</strong> Hatsune Miku: Project Diva Mega Mix+ [<a href="apworlds.html#HatsuneMikuProjectDivaMegaMix">Link</a>]</li>
<li><strong>Game Mod Update</strong> Here Comes Niko! [<a href="apworlds.html#HereComesNiko">Link</a>]</li>
<li><strong>Game Mod Update</strong> Into the Breach [<a href="apworlds.html#IntoTheBreach">Link</a>]</li>
<li><strong>Game Mod Update</strong> MetroCUBEvania [<a href="apworlds.html#MetroCUBEvania">Link</a>]</li>
<li><strong>Game Mod Update</strong> Outer Wilds [<a href="apworlds.html#OuterWilds">Link</a>]</li>
<li><strong>Game Mod Update</strong> Resident Evil 2 (Remake) [<a href="apworlds.html#ResidentEvil2">Link</a>]</li>
<li><strong>Game Mod Update</strong> Shapez [<a href="apworlds.html#Shapez">Link</a>]</li>
<li><strong>Game Mod Update</strong> The Legend of Zelda: Majora's Mask [<a href="apworlds.html#TheLegendOfZeldaMajorasMask">Link</a>]</li>
</ul>
<ul>
<li><strong>New APWorld</strong> Donkey Kong Country 2: Diddy's Kong Quest [<a href="apworlds.html#DonkeyKongCountry2DiddysKongQuest">Link</a>]</li>
<li><strong>New APWorld</strong> TEVI [<a href="apworlds.html#TEVI">Link</a>]</li>
</ul>
<ul>
<li><strong>New Tracker</strong> Balatro [<a href="apworlds.html#Balatro">Link</a>]</li>
<li><strong>New Tracker</strong> Toejam & Earl [<a href="apworlds.html#ToejamAndEarl">Link</a>]</li>
</ul>
<h2 id="W202444">Week of October 28 - November 3, 2024</h2>
<ul>
<li><strong>APWorld Update</strong> Against the Storm [<a href="apworlds.html#AgainstTheStorm">Link</a>]</li>
<li><strong>APWorld Update</strong> Air Delivery [<a href="apworlds.html#AirDelivery">Link</a>]</li>
<li><strong>APWorld Update</strong> APBingo [<a href="apworlds.html#APBingo">Link</a>]</li>
<li><strong>APWorld Update</strong> Ape Escape [<a href="apworlds.html#ApeEscape">Link</a>]</li>
<li><strong>APWorld Update</strong> Banjo-Tooie [<a href="apworlds.html#BanjoTooie">Link</a>]</li>
<li><strong>APWorld Update</strong> Digimon World [<a href="apworlds.html#DigimonWorld">Link</a>]</li>
<li><strong>APWorld Update</strong> Don't Starve Together [<a href="apworlds.html#DontStarveTogether">Link</a>]</li>
<li><strong>APWorld Update</strong> FlipWitch - Forbidden Sex Hex [<a href="apworlds.html#FlipWitchForbiddenSexHex">Link</a>]</li>
<li><strong>APWorld Update</strong> Hatsune Miku: Project Diva Mega Mix+ [<a href="apworlds.html#HatsuneMikuProjectDivaMegaMix">Link</a>]</li>
<li><strong>APWorld Update</strong> Here Comes Niko! [<a href="apworlds.html#HereComesNiko">Link</a>]</li>
<li><strong>APWorld Update</strong> HuniePop 2: Double Date [<a href="apworlds.html#HuniePop2DoubleDate">Link</a>]</li>
<li><strong>APWorld Update</strong> Jak and Daxter: The Precursor Legacy [<a href="apworlds.html#JakAndDaxterThePrecursorLegacy">Link</a>]</li>
<li><strong>APWorld Update</strong> Mindustry [<a href="apworlds.html#Mindustry">Link</a>]</li>
<li><strong>APWorld Update</strong> Ori and the Blind Forest [<a href="apworlds.html#OriAndTheBlindForest">Link</a>]</li>
<li><strong>APWorld Update</strong> Outer Wilds [<a href="apworlds.html#OuterWilds">Link</a>]</li>
<li><strong>APWorld Update</strong> Shapez [<a href="apworlds.html#Shapez">Link</a>]</li>
<li><strong>APWorld Update</strong> Simon Tatham's Portable Puzzle Collection [<a href="apworlds.html#SimonTathamsPortablePuzzleCollection">Link</a>]</li>
<li><strong>APWorld Update</strong> Sonic Adventure DX [<a href="apworlds.html#SonicAdventureDX">Link</a>]</li>
<li><strong>APWorld Update</strong> Wario Land 4 [<a href="apworlds.html#WarioLand4">Link</a>]</li>
</ul>
<ul>
<li><strong>Beta APWorld Update</strong> The Legend of Zelda: Link's Awakening DX [<a href="apworlds.html#TheLegendOfZeldaLinksAwakeningDX">Link</a>]</li>
</ul>
<ul>
<li><strong>Game Mod Update</strong> Against the Storm [<a href="apworlds.html#AgainstTheStorm">Link</a>]</li>
<li><strong>Game Mod Update</strong> Air Delivery [<a href="apworlds.html#AirDelivery">Link</a>]</li>
<li><strong>Game Mod Update</strong> ChecksFinder [<a href="apworlds.html#ChecksFinder">Link</a>]</li>
<li><strong>Game Mod Update</strong> FlipWitch - Forbidden Sex Hex [<a href="apworlds.html#FlipWitchForbiddenSexHex">Link</a>]</li>
<li><strong>Game Mod Update</strong> Hatsune Miku: Project Diva Mega Mix+ [<a href="apworlds.html#HatsuneMikuProjectDivaMegaMix">Link</a>]</li>
<li><strong>Game Mod Update</strong> Here Comes Niko! [<a href="apworlds.html#HereComesNiko">Link</a>]</li>
<li><strong>Game Mod Update</strong> HuniePop 2: Double Date [<a href="apworlds.html#HuniePop2DoubleDate">Link</a>]</li>
<li><strong>Game Mod Update</strong> Mindustry [<a href="apworlds.html#Mindustry">Link</a>]</li>
<li><strong>Game Mod Update</strong> Ori and the Blind Forest [<a href="apworlds.html#OriAndTheBlindForest">Link</a>]</li>
<li><strong>Game Mod Update</strong> Outer Wilds [<a href="apworlds.html#OuterWilds">Link</a>]</li>
<li><strong>Game Mod Update</strong> Shapez [<a href="apworlds.html#Shapez">Link</a>]</li>
<li><strong>Game Mod Update</strong> Sonic Adventure DX [<a href="apworlds.html#SonicAdventureDX">Link</a>]</li>
</ul>
<ul>
<li><strong>New APWorld</strong> Watery Words [<a href="apworlds.html#WateryWords">Link</a>]</li>
<li><strong>New APWorld</strong> XCOM 2: War of the Chosen [<a href="apworlds.html#XCOM2WarOfTheChosen">Link</a>]</li>
</ul>
<h2 id="W202443">Week of October 21-27, 2024</h2>
<ul>
<li><strong>APWorld Update</strong> ActRaiser [<a href="apworlds.html#ActRaiser">Link</a>]</li>
<li><strong>APWorld Update</strong> Against the Storm [<a href="apworlds.html#AgainstTheStorm">Link</a>]</li>
<li><strong>APWorld Update</strong> Another Crab's Treasure [<a href="apworlds.html#AnotherCrabsTreasure">Link</a>]</li>
<li><strong>APWorld Update</strong> Banjo-Tooie [<a href="apworlds.html#BanjoTooie">Link</a>]</li>
<li><strong>APWorld Update</strong> Brotato [<a href="apworlds.html#Brotato">Link</a>]</li>
<li><strong>APWorld Update</strong> Final Fantasy Tactics A2: Grimoire of the Rift [<a href="apworlds.html#FinalFantasyTacticsA2GrimoireOfTheRift">Link</a>]</li>
<li><strong>APWorld Update</strong> Final Fantasy Tactics Advance [<a href="apworlds.html#FinalFantasyTacticsAdvance">Link</a>]</li>
<li><strong>APWorld Update</strong> FlipWitch - Forbidden Sex Hex [<a href="apworlds.html#FlipWitchForbiddenSexHex">Link</a>]</li>
<li><strong>APWorld Update</strong> Hatsune Miku: Project Diva Mega Mix+ [<a href="apworlds.html#HatsuneMikuProjectDivaMegaMix">Link</a>]</li>
<li><strong>APWorld Update</strong> KINGDOM HEARTS FINAL MIX [<a href="apworlds.html#KINGDOMHEARTSFINALMIX">Link</a>]</li>
<li><strong>APWorld Update</strong> Metroid Prime [<a href="apworlds.html#MetroidPrime">Link</a>]</li>
<li><strong>APWorld Update</strong> Osu! [<a href="apworlds.html#Osu">Link</a>]</li>
<li><strong>APWorld Update</strong> Outer Wilds [<a href="apworlds.html#OuterWilds">Link</a>]</li>
<li><strong>APWorld Update</strong> Shapez [<a href="apworlds.html#Shapez">Link</a>]</li>
<li><strong>APWorld Update</strong> Toejam & Earl [<a href="apworlds.html#ToejamAndEarl">Link</a>]</li>
</ul>
<ul>
<li><strong>Beta APWorld Update</strong> TUNIC [<a href="apworlds.html#TUNIC">Link</a>]</li>
</ul>
<ul>
<li><strong>Beta Game Mod Update</strong> Stardew Valley [<a href="apworlds.html#StardewValley">Link</a>]</li>
<li><strong>Beta Game Mod Update</strong> TUNIC [<a href="apworlds.html#TUNIC">Link</a>]</li>
</ul>
<ul>
<li><strong>Game Mod Update</strong> Against the Storm [<a href="apworlds.html#AgainstTheStorm">Link</a>]</li>
<li><strong>Game Mod Update</strong> Another Crab's Treasure [<a href="apworlds.html#AnotherCrabsTreasure">Link</a>]</li>
<li><strong>Game Mod Update</strong> Brotato [<a href="apworlds.html#Brotato">Link</a>]</li>
<li><strong>Game Mod Update</strong> FlipWitch - Forbidden Sex Hex [<a href="apworlds.html#FlipWitchForbiddenSexHex">Link</a>]</li>
<li><strong>Game Mod Update</strong> Here Comes Niko! [<a href="apworlds.html#HereComesNiko">Link</a>]</li>
<li><strong>Game Mod Update</strong> Lethal Company [<a href="apworlds.html#LethalCompany">Link</a>]</li>
<li><strong>Game Mod Update</strong> Muse Dash [<a href="apworlds.html#MuseDash">Link</a>]</li>
<li><strong>Game Mod Update</strong> Ori and the Blind Forest [<a href="apworlds.html#OriAndTheBlindForest">Link</a>]</li>
<li><strong>Game Mod Update</strong> Outer Wilds [<a href="apworlds.html#OuterWilds">Link</a>]</li>
<li><strong>Game Mod Update</strong> Shapez [<a href="apworlds.html#Shapez">Link</a>]</li>
</ul>
<ul>
<li><strong>New Beta Game Mod</strong> DOOM 1993 [<a href="apworlds.html#DOOM1993">Link</a>]</li>
<li><strong>New Beta Game Mod</strong> DOOM II [<a href="apworlds.html#DOOM2">Link</a>]</li>
<li><strong>New Beta Game Mod</strong> Heretic [<a href="apworlds.html#Heretic">Link</a>]</li>
<li><strong>New Beta Game Mod</strong> Noita [<a href="apworlds.html#Noita">Link</a>]</li>
</ul>
<ul>
<li><strong>New APWorld</strong> APBingo [<a href="apworlds.html#APBingo">Link</a>]</li>
<li><strong>New APWorld</strong> Dark Souls: Remastered [<a href="apworlds.html#DarkSoulsRemastered">Link</a>]</li>
<li><strong>New APWorld</strong> Yu-Gi-Oh! Dungeon Dice Monsters [<a href="apworlds.html#YuGiOhDungeonDiceMonsters">Link</a>]</li>
</ul>
<ul>
<li><strong>New Tracker</strong> Adventure [<a href="apworlds.html#Adventure">Link</a>]</li>
<li><strong>New Tracker</strong> Shadow the Hedgehog [<a href="apworlds.html#ShadowTheHedgehog">Link</a>]</li>
</ul>
<h2 id="W202442">Week of October 14-20, 2024</h2>
<ul>
<li><strong>APWorld Update</strong> Air Delivery [<a href="apworlds.html#AirDelivery">Link</a>]</li>
<li><strong>APWorld Update</strong> Another Crab's Treasure [<a href="apworlds.html#AnotherCrabsTreasure">Link</a>]</li>
<li><strong>APWorld Update</strong> Banjo-Tooie [<a href="apworlds.html#BanjoTooie">Link</a>]</li>
<li><strong>APWorld Update</strong> EarthBound [<a href="apworlds.html#EarthBound">Link</a>]</li>
<li><strong>APWorld Update</strong> Final Fantasy IV [<a href="apworlds.html#FinalFantasy4">Link</a>]</li>
<li><strong>APWorld Update</strong> Here Comes Niko! [<a href="apworlds.html#HereComesNiko">Link</a>]</li>
<li><strong>APWorld Update</strong> Jak and Daxter: The Precursor Legacy [<a href="apworlds.html#JakAndDaxterThePrecursorLegacy">Link</a>]</li>
<li><strong>APWorld Update</strong> Lethal Company [<a href="apworlds.html#LethalCompany">Link</a>]</li>
<li><strong>APWorld Update</strong> Osu! [<a href="apworlds.html#Osu">Link</a>]</li>
<li><strong>APWorld Update</strong> Outer Wilds [<a href="apworlds.html#OuterWilds">Link</a>]</li>
<li><strong>APWorld Update</strong> Pokémon FireRed and LeafGreen [<a href="apworlds.html#PokemonFireRedAndLeafGreen">Link</a>]</li>
<li><strong>APWorld Update</strong> The Legend of Zelda: Majora's Mask [<a href="apworlds.html#TheLegendOfZeldaMajorasMask">Link</a>]</li>
<li><strong>APWorld Update</strong> Toejam & Earl [<a href="apworlds.html#ToejamAndEarl">Link</a>]</li>
<li><strong>APWorld Update</strong> Wargroove 2 [<a href="apworlds.html#Wargroove2">Link</a>]</li>
<li><strong>APWorld Update</strong> Yacht Dice [<a href="apworlds.html#YachtDice">Link</a>]</li>
</ul>
<ul>
<li><strong>Beta APWorld Update</strong> The Witness [<a href="apworlds.html#TheWitness">Link</a>]</li>
</ul>
<ul>
<li><strong>Beta Game Mod Update</strong> Stardew Valley [<a href="apworlds.html#StardewValley">Link</a>]</li>
<li><strong>Beta Game Mod Update</strong> The Witness [<a href="apworlds.html#TheWitness">Link</a>]</li>
</ul>
<ul>
<li><strong>Game Mod Update</strong> Against the Storm [<a href="apworlds.html#AgainstTheStorm">Link</a>]</li>
<li><strong>Game Mod Update</strong> Air Delivery [<a href="apworlds.html#AirDelivery">Link</a>]</li>
<li><strong>Game Mod Update</strong> Another Crab's Treasure [<a href="apworlds.html#AnotherCrabsTreasure">Link</a>]</li>
<li><strong>Game Mod Update</strong> Hammerwatch [<a href="apworlds.html#Hammerwatch">Link</a>]</li>
<li><strong>Game Mod Update</strong> Here Comes Niko! [<a href="apworlds.html#HereComesNiko">Link</a>]</li>
<li><strong>Game Mod Update</strong> HuniePop 2: Double Date [<a href="apworlds.html#HuniePop2DoubleDate">Link</a>]</li>
<li><strong>Game Mod Update</strong> Lethal Company [<a href="apworlds.html#LethalCompany">Link</a>]</li>
<li><strong>Game Mod Update</strong> Outer Wilds [<a href="apworlds.html#OuterWilds">Link</a>]</li>
<li><strong>Game Mod Update</strong> The Legend of Zelda: Majora's Mask [<a href="apworlds.html#TheLegendOfZeldaMajorasMask">Link</a>]</li>
<li><strong>Game Mod Update</strong> TUNIC [<a href="apworlds.html#TUNIC">Link</a>]</li>
<li><strong>Game Mod Update</strong> Yacht Dice [<a href="apworlds.html#YachtDice">Link</a>]</li>
</ul>
<ul>
<li><strong>New APWorld</strong> ActRaiser [<a href="apworlds.html#ActRaiser">Link</a>]</li>
<li><strong>New APWorld</strong> Final Fantasy Tactics A2: Grimoire of the Rift [<a href="apworlds.html#FinalFantasyTacticsA2GrimoireOfTheRift">Link</a>]</li>
<li><strong>New APWorld</strong> FlipWitch - Forbidden Sex Hex [<a href="apworlds.html#FlipWitchForbiddenSexHex">Link</a>]</li>
</ul>
<ul>
<li><strong>New Tracker</strong> HuniePop 2: Double Date [<a href="apworlds.html#HuniePop2DoubleDate">Link</a>]</li>
</ul>
<h2 id="W202441">Week of October 7-13, 2024</h2>
<ul>
<li><strong>APWorld Update</strong> Astalon: Tears of the Earth [<a href="apworlds.html#AstalonTearsOfTheEarth">Link</a>]</li>
<li><strong>APWorld Update</strong> Balatro [<a href="apworlds.html#Balatro">Link</a>]</li>
<li><strong>APWorld Update</strong> Banjo-Tooie [<a href="apworlds.html#BanjoTooie">Link</a>]</li>
<li><strong>APWorld Update</strong> Crystalis [<a href="apworlds.html#Crystalis">Link</a>]</li>
<li><strong>APWorld Update</strong> Don't Starve Together [<a href="apworlds.html#DontStarveTogether">Link</a>]</li>
<li><strong>APWorld Update</strong> Grim Dawn [<a href="apworlds.html#GrimDawn">Link</a>]</li>
<li><strong>APWorld Update</strong> Hades [<a href="apworlds.html#Hades">Link</a>]</li>
<li><strong>APWorld Update</strong> Hatsune Miku: Project Diva Mega Mix+ [<a href="apworlds.html#HatsuneMikuProjectDivaMegaMix">Link</a>]</li>
<li><strong>APWorld Update</strong> Here Comes Niko! [<a href="apworlds.html#HereComesNiko">Link</a>]</li>
<li><strong>APWorld Update</strong> HuniePop 2: Double Date [<a href="apworlds.html#HuniePop2DoubleDate">Link</a>]</li>
<li><strong>APWorld Update</strong> Lunacid [<a href="apworlds.html#Lunacid">Link</a>]</li>
<li><strong>APWorld Update</strong> Metroid Prime [<a href="apworlds.html#MetroidPrime">Link</a>]</li>
<li><strong>APWorld Update</strong> Ori and the Blind Forest [<a href="apworlds.html#OriAndTheBlindForest">Link</a>]</li>
<li><strong>APWorld Update</strong> Outer Wilds [<a href="apworlds.html#OuterWilds">Link</a>]</li>
<li><strong>APWorld Update</strong> Risk of Rain [<a href="apworlds.html#RiskOfRain">Link</a>]</li>
<li><strong>APWorld Update</strong> Shadow the Hedgehog [<a href="apworlds.html#ShadowTheHedgehog">Link</a>]</li>
<li><strong>APWorld Update</strong> Sonic Adventure DX [<a href="apworlds.html#SonicAdventureDX">Link</a>]</li>
<li><strong>APWorld Update</strong> Star Wars: Episode I - Racer [<a href="apworlds.html#StarWarsEpisode1Racer">Link</a>]</li>
<li><strong>APWorld Update</strong> Toejam & Earl [<a href="apworlds.html#ToejamAndEarl">Link</a>]</li>
</ul>
<ul>
<li><strong>Beta Game Mod Update</strong> Stardew Valley [<a href="apworlds.html#StardewValley">Link</a>]</li>
<li><strong>Beta Game Mod Update</strong> The Witness [<a href="apworlds.html#TheWitness">Link</a>]</li>
</ul>
<ul>
<li><strong>Game Mod Update</strong> Astalon: Tears of the Earth [<a href="apworlds.html#AstalonTearsOfTheEarth">Link</a>]</li>
<li><strong>Game Mod Update</strong> Balatro [<a href="apworlds.html#Balatro">Link</a>]</li>
<li><strong>Game Mod Update</strong> Don't Starve Together [<a href="apworlds.html#DontStarveTogether">Link</a>]</li>
<li><strong>Game Mod Update</strong> Grim Dawn [<a href="apworlds.html#GrimDawn">Link</a>]</li>
<li><strong>Game Mod Update</strong> Hades [<a href="apworlds.html#Hades">Link</a>]</li>
<li><strong>Game Mod Update</strong> Here Comes Niko! [<a href="apworlds.html#HereComesNiko">Link</a>]</li>
<li><strong>Game Mod Update</strong> HuniePop 2: Double Date [<a href="apworlds.html#HuniePop2DoubleDate">Link</a>]</li>
<li><strong>Game Mod Update</strong> Lunacid [<a href="apworlds.html#Lunacid">Link</a>]</li>
<li><strong>Game Mod Update</strong> Outer Wilds [<a href="apworlds.html#OuterWilds">Link</a>]</li>
<li><strong>Game Mod Update</strong> Risk of Rain [<a href="apworlds.html#RiskOfRain">Link</a>]</li>
<li><strong>Game Mod Update</strong> Sonic Adventure DX [<a href="apworlds.html#SonicAdventureDX">Link</a>]</li>
<li><strong>Game Mod Update</strong> Star Wars: Episode I - Racer [<a href="apworlds.html#StarWarsEpisode1Racer">Link</a>]</li>
</ul>
<ul>
<li><strong>New APWorld</strong> Enter the Gungeon [<a href="apworlds.html#EnterTheGungeon">Link</a>]</li>
<li><strong>New APWorld</strong> Void Stranger [<a href="apworlds.html#VoidStranger">Link</a>]</li>
</ul>
<ul>
<li><strong>New Tracker</strong> Aquaria [<a href="apworlds.html#Aquaria">Link</a>]</li>
<li><strong>New Tracker</strong> KINGDOM HEARTS II FINAL MIX [<a href="apworlds.html#KINGDOMHEARTS2FINALMIX">Link</a>]</li>
<li><strong>New Tracker</strong> Kirby 64: The Crystal Shards [<a href="apworlds.html#Kirby64TheCrystalShards">Link</a>]</li>
<li><strong>New Tracker</strong> Ori and the Blind Forest [<a href="apworlds.html#OriAndTheBlindForest">Link</a>]</li>
</ul>
<h2 id="W202440">Week of September 30 - October 6, 2024</h2>
<ul>
<li><strong>APWorld Update</strong> A Robot Named Fight! [<a href="apworlds.html#ARobotNamedFight">Link</a>]</li>
<li><strong>APWorld Update</strong> Against the Storm [<a href="apworlds.html#AgainstTheStorm">Link</a>]</li>
<li><strong>APWorld Update</strong> Ape Escape [<a href="apworlds.html#ApeEscape">Link</a>]</li>
<li><strong>APWorld Update</strong> Banjo-Tooie [<a href="apworlds.html#BanjoTooie">Link</a>]</li>
<li><strong>APWorld Update</strong> Diddy Kong Racing [<a href="apworlds.html#DiddyKongRacing">Link</a>]</li>
<li><strong>APWorld Update</strong> Don't Starve Together [<a href="apworlds.html#DontStarveTogether">Link</a>]</li>
<li><strong>APWorld Update</strong> Here Comes Niko! [<a href="apworlds.html#HereComesNiko">Link</a>]</li>
<li><strong>APWorld Update</strong> Jak and Daxter: The Precursor Legacy [<a href="apworlds.html#JakAndDaxterThePrecursorLegacy">Link</a>]</li>
<li><strong>APWorld Update</strong> Lunacid [<a href="apworlds.html#Lunacid">Link</a>]</li>
<li><strong>APWorld Update</strong> Manual [<a href="apworlds.html#Manual">Link</a>]</li>
<li><strong>APWorld Update</strong> Outer Wilds [<a href="apworlds.html#OuterWilds">Link</a>]</li>
<li><strong>APWorld Update</strong> Pokémon FireRed and LeafGreen [<a href="apworlds.html#PokemonFireRedAndLeafGreen">Link</a>]</li>
<li><strong>APWorld Update</strong> Resident Evil 3 (Remake) [<a href="apworlds.html#ResidentEvil3">Link</a>]</li>
<li><strong>APWorld Update</strong> Reventure [<a href="apworlds.html#Reventure">Link</a>]</li>
<li><strong>APWorld Update</strong> Risk of Rain [<a href="apworlds.html#RiskOfRain">Link</a>]</li>
<li><strong>APWorld Update</strong> Shapez [<a href="apworlds.html#Shapez">Link</a>]</li>
<li><strong>APWorld Update</strong> Super Junkoid [<a href="apworlds.html#SuperJunkoid">Link</a>]</li>
<li><strong>APWorld Update</strong> Toejam & Earl [<a href="apworlds.html#ToejamAndEarl">Link</a>]</li>
</ul>
<ul>
<li><strong>Game Mod Update</strong> A Robot Named Fight! [<a href="apworlds.html#ARobotNamedFight">Link</a>]</li>
<li><strong>Game Mod Update</strong> Against the Storm [<a href="apworlds.html#AgainstTheStorm">Link</a>]</li>
<li><strong>Game Mod Update</strong> ChecksFinder [<a href="apworlds.html#ChecksFinder">Link</a>]</li>
<li><strong>Game Mod Update</strong> Here Comes Niko! [<a href="apworlds.html#HereComesNiko">Link</a>]</li>
<li><strong>Game Mod Update</strong> Lunacid [<a href="apworlds.html#Lunacid">Link</a>]</li>
<li><strong>Game Mod Update</strong> Ori and the Blind Forest [<a href="apworlds.html#OriAndTheBlindForest">Link</a>]</li>
<li><strong>Game Mod Update</strong> Outer Wilds [<a href="apworlds.html#OuterWilds">Link</a>]</li>
<li><strong>Game Mod Update</strong> Resident Evil 3 (Remake) [<a href="apworlds.html#ResidentEvil3">Link</a>]</li>
<li><strong>Game Mod Update</strong> Reventure [<a href="apworlds.html#Reventure">Link</a>]</li>
<li><strong>Game Mod Update</strong> Risk of Rain [<a href="apworlds.html#RiskOfRain">Link</a>]</li>
<li><strong>Game Mod Update</strong> Shapez [<a href="apworlds.html#Shapez">Link</a>]</li>
<li><strong>Game Mod Update</strong> Shivers [<a href="apworlds.html#Shivers">Link</a>]</li>
</ul>
<ul>
<li><strong>New APWorld</strong> Crystalis [<a href="apworlds.html#Crystalis">Link</a>]</li>
<li><strong>New APWorld</strong> HuniePop [<a href="apworlds.html#HuniePop">Link</a>]</li>
<li><strong>New APWorld</strong> Kirby 64: The Crystal Shards [<a href="apworlds.html#Kirby64TheCrystalShards">Link</a>]</li>
<li><strong>New APWorld</strong> Shadow the Hedgehog [<a href="apworlds.html#ShadowTheHedgehog">Link</a>]</li>
</ul>
<h2 id="W202439">Week of September 23-29, 2024</h2>
<ul>
<li><strong>APWorld Update</strong> Ape Escape [<a href="apworlds.html#ApeEscape">Link</a>]</li>
<li><strong>APWorld Update</strong> Balatro [<a href="apworlds.html#Balatro">Link</a>]</li>
<li><strong>APWorld Update</strong> Banjo-Tooie [<a href="apworlds.html#BanjoTooie">Link</a>]</li>
<li><strong>APWorld Update</strong> Cuphead [<a href="apworlds.html#Cuphead">Link</a>]</li>
<li><strong>APWorld Update</strong> Diddy Kong Racing [<a href="apworlds.html#DiddyKongRacing">Link</a>]</li>
<li><strong>APWorld Update</strong> Final Fantasy Tactics Advance [<a href="apworlds.html#FinalFantasyTacticsAdvance">Link</a>]</li>
<li><strong>APWorld Update</strong> Gauntlet Legends [<a href="apworlds.html#GauntletLegends">Link</a>]</li>
<li><strong>APWorld Update</strong> Hatsune Miku: Project Diva Mega Mix+ [<a href="apworlds.html#HatsuneMikuProjectDivaMegaMix">Link</a>]</li>
<li><strong>APWorld Update</strong> HuniePop 2: Double Date [<a href="apworlds.html#HuniePop2DoubleDate">Link</a>]</li>
<li><strong>APWorld Update</strong> Lunacid [<a href="apworlds.html#Lunacid">Link</a>]</li>
<li><strong>APWorld Update</strong> Metroid Prime [<a href="apworlds.html#MetroidPrime">Link</a>]</li>
<li><strong>APWorld Update</strong> OpenRCT2 [<a href="apworlds.html#OpenRCT2">Link</a>]</li>
<li><strong>APWorld Update</strong> Outer Wilds [<a href="apworlds.html#OuterWilds">Link</a>]</li>
</ul>
<ul>
<li><strong>Game Mod Update</strong> Balatro [<a href="apworlds.html#Balatro">Link</a>]</li>
<li><strong>Game Mod Update</strong> DLC Quest [<a href="apworlds.html#DLCQuest">Link</a>]</li>
<li><strong>Game Mod Update</strong> HuniePop 2: Double Date [<a href="apworlds.html#HuniePop2DoubleDate">Link</a>]</li>
<li><strong>Game Mod Update</strong> Landstalker: The Treasures of King Nole [<a href="apworlds.html#LandstalkerTheTreasuresOfKingNole">Link</a>]</li>
<li><strong>Game Mod Update</strong> Lingo [<a href="apworlds.html#Lingo">Link</a>]</li>
<li><strong>Game Mod Update</strong> Lunacid [<a href="apworlds.html#Lunacid">Link</a>]</li>
<li><strong>Game Mod Update</strong> Muse Dash [<a href="apworlds.html#MuseDash">Link</a>]</li>
<li><strong>Game Mod Update</strong> OpenRCT2 [<a href="apworlds.html#OpenRCT2">Link</a>]</li>
<li><strong>Game Mod Update</strong> Outer Wilds [<a href="apworlds.html#OuterWilds">Link</a>]</li>
<li><strong>Game Mod Update</strong> The Witness [<a href="apworlds.html#TheWitness">Link</a>]</li>
<li><strong>Game Mod Update</strong> TUNIC [<a href="apworlds.html#TUNIC">Link</a>]</li>
</ul>
<ul>
<li><strong>New APWorld</strong> Here Comes Niko! [<a href="apworlds.html#HereComesNiko">Link</a>]</li>
</ul>
<ul>
<li><strong>New Beta APWorld</strong> The Legend of Zelda: Link's Awakening DX [<a href="apworlds.html#TheLegendOfZeldaLinksAwakeningDX">Link</a>]</li>
</ul>
<ul>
<li><strong>New Tracker</strong> Resident Evil 3 (Remake) [<a href="apworlds.html#ResidentEvil3">Link</a>]</li>
</ul>
<h2 id="W202438">Week of September 16-22, 2024</h2>
<ul>
<li><strong>APWorld Update</strong> Another Crab's Treasure [<a href="apworlds.html#AnotherCrabsTreasure">Link</a>]</li>
<li><strong>APWorld Update</strong> Ape Escape [<a href="apworlds.html#ApeEscape">Link</a>]</li>
<li><strong>APWorld Update</strong> Banjo-Tooie [<a href="apworlds.html#BanjoTooie">Link</a>]</li>
<li><strong>APWorld Update</strong> Digimon World [<a href="apworlds.html#DigimonWorld">Link</a>]</li>
<li><strong>APWorld Update</strong> EarthBound [<a href="apworlds.html#EarthBound">Link</a>]</li>
<li><strong>APWorld Update</strong> Final Fantasy XII: Open World [<a href="apworlds.html#FinalFantasy12OpenWorld">Link</a>]</li>
<li><strong>APWorld Update</strong> Hammerwatch [<a href="apworlds.html#Hammerwatch">Link</a>]</li>
<li><strong>APWorld Update</strong> Hatsune Miku: Project Diva Mega Mix+ [<a href="apworlds.html#HatsuneMikuProjectDivaMegaMix">Link</a>]</li>
<li><strong>APWorld Update</strong> HuniePop 2: Double Date [<a href="apworlds.html#HuniePop2DoubleDate">Link</a>]</li>
<li><strong>APWorld Update</strong> Jak and Daxter: The Precursor Legacy [<a href="apworlds.html#JakAndDaxterThePrecursorLegacy">Link</a>]</li>
<li><strong>APWorld Update</strong> KINGDOM HEARTS Birth by Sleep FINAL MIX [<a href="apworlds.html#KINGDOMHEARTSBirthBySleepFINALMIX">Link</a>]</li>
<li><strong>APWorld Update</strong> Lunacid [<a href="apworlds.html#Lunacid">Link</a>]</li>
<li><strong>APWorld Update</strong> Mega Man X2 [<a href="apworlds.html#MegaManX2">Link</a>]</li>
<li><strong>APWorld Update</strong> Mindustry [<a href="apworlds.html#Mindustry">Link</a>]</li>
<li><strong>APWorld Update</strong> Outer Wilds [<a href="apworlds.html#OuterWilds">Link</a>]</li>
<li><strong>APWorld Update</strong> Scooby-Doo! Night of 100 Frights [<a href="apworlds.html#ScoobyDooNightOf100Frights">Link</a>]</li>
<li><strong>APWorld Update</strong> Shapez [<a href="apworlds.html#Shapez">Link</a>]</li>
<li><strong>APWorld Update</strong> Toejam & Earl [<a href="apworlds.html#ToejamAndEarl">Link</a>]</li>
</ul>
<ul>
<li><strong>Beta APWorld Update</strong> Stardew Valley [<a href="apworlds.html#StardewValley">Link</a>]</li>
<li><strong>Beta APWorld Update</strong> TUNIC [<a href="apworlds.html#TUNIC">Link</a>]</li>
<li><strong>Beta APWorld Update</strong> Undertale [<a href="apworlds.html#Undertale">Link</a>]</li>
</ul>
<ul>
<li><strong>Beta Game Mod Update</strong> Stardew Valley [<a href="apworlds.html#StardewValley">Link</a>]</li>
<li><strong>Beta Game Mod Update</strong> TUNIC [<a href="apworlds.html#TUNIC">Link</a>]</li>
</ul>
<ul>
<li><strong>Game Mod Update</strong> Another Crab's Treasure [<a href="apworlds.html#AnotherCrabsTreasure">Link</a>]</li>
<li><strong>Game Mod Update</strong> DLC Quest [<a href="apworlds.html#DLCQuest">Link</a>]</li>
<li><strong>Game Mod Update</strong> Final Fantasy XII: Open World [<a href="apworlds.html#FinalFantasy12OpenWorld">Link</a>]</li>
<li><strong>Game Mod Update</strong> Guild Wars 2 [<a href="apworlds.html#GuildWars2">Link</a>]</li>
<li><strong>Game Mod Update</strong> Hammerwatch [<a href="apworlds.html#Hammerwatch">Link</a>]</li>
<li><strong>Game Mod Update</strong> HuniePop 2: Double Date [<a href="apworlds.html#HuniePop2DoubleDate">Link</a>]</li>
<li><strong>Game Mod Update</strong> Lunacid [<a href="apworlds.html#Lunacid">Link</a>]</li>
<li><strong>Game Mod Update</strong> Mindustry [<a href="apworlds.html#Mindustry">Link</a>]</li>
<li><strong>Game Mod Update</strong> Outer Wilds [<a href="apworlds.html#OuterWilds">Link</a>]</li>
<li><strong>Game Mod Update</strong> Shapez [<a href="apworlds.html#Shapez">Link</a>]</li>
</ul>
<ul>
<li><strong>New APWorld</strong> Cuphead [<a href="apworlds.html#Cuphead">Link</a>]</li>
</ul>
<ul>
<li><strong>New Game PR Opened</strong> Shapez [<a href="https://github.com/ArchipelagoMW/Archipelago/pull/3960">Link</a>]</li>
</ul>
<h2 id="W202437">Week of September 9-15, 2024</h2>
<ul>
<li><strong>AP Release Candidate</strong> 0.5.1 RC1 [<a href="https://discord.com/channels/731205301247803413/731214280439103580/1285001183508824135">Link</a>]</li>
</ul>
<ul>
<li><strong>APWorld Update</strong> Against the Storm [<a href="apworlds.html#AgainstTheStorm">Link</a>]</li>
<li><strong>APWorld Update</strong> ANIMAL WELL [<a href="apworlds.html#ANIMALWELL">Link</a>]</li>
<li><strong>APWorld Update</strong> Ape Escape [<a href="apworlds.html#ApeEscape">Link</a>]</li>
<li><strong>APWorld Update</strong> Banjo-Tooie [<a href="apworlds.html#BanjoTooie">Link</a>]</li>
<li><strong>APWorld Update</strong> Castlevania: Circle of the Moon [<a href="apworlds.html#CastlevaniaCircleOfTheMoon">Link</a>]</li>
<li><strong>APWorld Update</strong> Gauntlet Legends [<a href="apworlds.html#GauntletLegends">Link</a>]</li>
<li><strong>APWorld Update</strong> HuniePop 2: Double Date [<a href="apworlds.html#HuniePop2DoubleDate">Link</a>]</li>
<li><strong>APWorld Update</strong> Ittle Dew 2+ [<a href="apworlds.html#IttleDew2">Link</a>]</li>
<li><strong>APWorld Update</strong> Jak and Daxter: The Precursor Legacy [<a href="apworlds.html#JakAndDaxterThePrecursorLegacy">Link</a>]</li>
<li><strong>APWorld Update</strong> KINGDOM HEARTS Birth by Sleep FINAL MIX [<a href="apworlds.html#KINGDOMHEARTSBirthBySleepFINALMIX">Link</a>]</li>
<li><strong>APWorld Update</strong> Metroid Prime [<a href="apworlds.html#MetroidPrime">Link</a>]</li>
<li><strong>APWorld Update</strong> Outer Wilds [<a href="apworlds.html#OuterWilds">Link</a>]</li>
<li><strong>APWorld Update</strong> Pokémon FireRed and LeafGreen [<a href="apworlds.html#PokemonFireRedAndLeafGreen">Link</a>]</li>
<li><strong>APWorld Update</strong> Shapez [<a href="apworlds.html#Shapez">Link</a>]</li>
<li><strong>APWorld Update</strong> Sonic Adventure DX [<a href="apworlds.html#SonicAdventureDX">Link</a>]</li>
<li><strong>APWorld Update</strong> Sly Cooper and the Thievius Raccoonus [<a href="apworlds.html#SlyCooperAndTheThieviusRaccoonus">Link</a>]</li>
<li><strong>APWorld Update</strong> The Legend of Zelda: Oracle of Ages [<a href="apworlds.html#TheLegendOfZeldaOracleOfAges">Link</a>]</li>
<li><strong>APWorld Update</strong> Universal Tracker [<a href="apworlds.html#UniversalTracker">Link</a>]</li>
<li><strong>APWorld Update</strong> Yacht Dice [<a href="apworlds.html#YachtDice">Link</a>]</li>
</ul>
<ul>
<li><strong>Beta APWorld Update</strong> Aquaria [<a href="apworlds.html#Aquaria">Link</a>]</li>
<li><strong>Beta APWorld Update</strong> Dark Souls III [<a href="apworlds.html#DarkSouls3">Link</a>]</li>
<li><strong>Beta APWorld Update</strong> Terraria [<a href="apworlds.html#Terraria">Link</a>]</li>
</ul>
<ul>
<li><strong>Beta Game Mod Update</strong> Aquaria [<a href="apworlds.html#Aquaria">Link</a>]</li>
<li><strong>Beta Game Mod Update</strong> Dark Souls III [<a href="apworlds.html#DarkSouls3">Link</a>]</li>
<li><strong>Beta Game Mod Update</strong> Subnautica [<a href="apworlds.html#Subnautica">Link</a>]</li>
<li><strong>Beta Game Mod Update</strong> Terraria [<a href="apworlds.html#Terraria">Link</a>]</li>
</ul>
<ul>
<li><strong>Game Mod Update</strong> Against the Storm [<a href="apworlds.html#AgainstTheStorm">Link</a>]</li>
<li><strong>Game Mod Update</strong> HuniePop 2: Double Date [<a href="apworlds.html#HuniePop2DoubleDate">Link</a>]</li>
<li><strong>Game Mod Update</strong> Ittle Dew 2+ [<a href="apworlds.html#IttleDew2">Link</a>]</li>
<li><strong>Game Mod Update</strong> Ori and the Blind Forest [<a href="apworlds.html#OriAndTheBlindForest">Link</a>]</li>
<li><strong>Game Mod Update</strong> Outer Wilds [<a href="apworlds.html#OuterWilds">Link</a>]</li>
<li><strong>Game Mod Update</strong> Shapez [<a href="apworlds.html#Shapez">Link</a>]</li>
<li><strong>Game Mod Update</strong> Sly Cooper and the Thievius Raccoonus [<a href="apworlds.html#SlyCooperAndTheThieviusRaccoonus">Link</a>]</li>
<li><strong>Game Mod Update</strong> Sonic Adventure DX [<a href="apworlds.html#SonicAdventureDX">Link</a>]</li>
<li><strong>Game Mod Update</strong> The Messenger [<a href="apworlds.html#TheMessenger">Link</a>]</li>
<li><strong>Game Mod Update</strong> Yacht Dice [<a href="apworlds.html#YachtDice">Link</a>]</li>
</ul>
<ul>
<li><strong>New APWorld</strong> Another Crab's Treasure [<a href="apworlds.html#AnotherCrabsTreasure">Link</a>]</li>
<li><strong>New APWorld</strong> Increlution [<a href="apworlds.html#Increlution">Link</a>]</li>
</ul>
<ul>
<li><strong>New Tracker</strong> Jak and Daxter: The Precursor Legacy [<a href="apworlds.html#JakAndDaxterThePrecursorLegacy">Link</a>]</li>
<li><strong>New Tracker</strong> Metroid Prime [<a href="apworlds.html#MetroidPrime">Link</a>]</li>
</ul>
<h2 id="W202436">Week of September 2-8, 2024</h2>
<ul>
<li><strong>APWorld Update</strong> Ape Escape [<a href="apworlds.html#ApeEscape">Link</a>]</li>
<li><strong>APWorld Update</strong> Astalon: Tears of the Earth [<a href="apworlds.html#AstalonTearsOfTheEarth">Link</a>]</li>
<li><strong>APWorld Update</strong> Banjo-Tooie [<a href="apworlds.html#BanjoTooie">Link</a>]</li>
<li><strong>APWorld Update</strong> Brotato [<a href="apworlds.html#Brotato">Link</a>]</li>
<li><strong>APWorld Update</strong> Castlevania: Circle of the Moon [<a href="apworlds.html#CastlevaniaCircleOfTheMoon">Link</a>]</li>
<li><strong>APWorld Update</strong> Final Fantasy IV [<a href="apworlds.html#FinalFantasy4">Link</a>]</li>
<li><strong>APWorld Update</strong> Final Fantasy XII: Open World [<a href="apworlds.html#FinalFantasy12OpenWorld">Link</a>]</li>
<li><strong>APWorld Update</strong> FNaF World [<a href="apworlds.html#FNaFWorld">Link</a>]</li>
<li><strong>APWorld Update</strong> Hatsune Miku: Project Diva Mega Mix+ [<a href="apworlds.html#HatsuneMikuProjectDivaMegaMix">Link</a>]</li>
<li><strong>APWorld Update</strong> HuniePop 2: Double Date [<a href="apworlds.html#HuniePop2DoubleDate">Link</a>]</li>
<li><strong>APWorld Update</strong> Inscryption [<a href="apworlds.html#Inscryption">Link</a>]</li>
<li><strong>APWorld Update</strong> Ittle Dew 2+ [<a href="apworlds.html#IttleDew2">Link</a>]</li>
<li><strong>APWorld Update</strong> Jak and Daxter: The Precursor Legacy [<a href="apworlds.html#JakAndDaxterThePrecursorLegacy">Link</a>]</li>
<li><strong>APWorld Update</strong> Keep Talking and Nobody Explodes [<a href="apworlds.html#KeepTalkingAndNobodyExplodes">Link</a>]</li>
<li><strong>APWorld Update</strong> KINGDOM HEARTS Birth by Sleep FINAL MIX [<a href="apworlds.html#KINGDOMHEARTSBirthBySleepFINALMIX">Link</a>]</li>
<li><strong>APWorld Update</strong> KINGDOM HEARTS FINAL MIX [<a href="apworlds.html#KINGDOMHEARTSFINALMIX">Link</a>]</li>
<li><strong>APWorld Update</strong> Metroid: Zero Mission [<a href="apworlds.html#MetroidZeroMission">Link</a>]</li>
<li><strong>APWorld Update</strong> Metroid Prime [<a href="apworlds.html#MetroidPrime">Link</a>]</li>
<li><strong>APWorld Update</strong> Resident Evil 3 (Remake) [<a href="apworlds.html#ResidentEvil3">Link</a>]</li>
<li><strong>APWorld Update</strong> Shapez [<a href="apworlds.html#Shapez">Link</a>]</li>
<li><strong>APWorld Update</strong> Sonic Adventure DX [<a href="apworlds.html#SonicAdventureDX">Link</a>]</li>
<li><strong>APWorld Update</strong> Super Mario Land 2: 6 Golden Coins [<a href="apworlds.html#SuperMarioLand26GoldenCoins">Link</a>]</li>
<li><strong>APWorld Update</strong> The Legend of Zelda: Majora's Mask [<a href="apworlds.html#TheLegendOfZeldaMajorasMask">Link</a>]</li>
<li><strong>APWorld Update</strong> Toejam & Earl [<a href="apworlds.html#ToejamAndEarl">Link</a>]</li>
<li><strong>APWorld Update</strong> Wargroove 2 [<a href="apworlds.html#Wargroove2">Link</a>]</li>
<li><strong>APWorld Update</strong> Wario Land 4 [<a href="apworlds.html#WarioLand4">Link</a>]</li>
</ul>
<ul>
<li><strong>Beta APWorld Update</strong> Dark Souls III [<a href="apworlds.html#DarkSouls3">Link</a>]</li>
<li><strong>Beta APWorld Update</strong> Stardew Valley [<a href="apworlds.html#StardewValley">Link</a>]</li>
<li><strong>Beta APWorld Update</strong> TUNIC [<a href="apworlds.html#TUNIC">Link</a>]</li>
</ul>
<ul>
<li><strong>Beta Game Mod Update</strong> Dark Souls III [<a href="apworlds.html#DarkSouls3">Link</a>]</li>
<li><strong>Beta Game Mod Update</strong> Stardew Valley [<a href="apworlds.html#StardewValley">Link</a>]</li>
<li><strong>Beta Game Mod Update</strong> The Witness [<a href="apworlds.html#TheWitness">Link</a>]</li>
<li><strong>Beta Game Mod Update</strong> TUNIC [<a href="apworlds.html#TUNIC">Link</a>]</li>
</ul>
<ul>
<li><strong>Game Mod Update</strong> Astalon: Tears of the Earth [<a href="apworlds.html#AstalonTearsOfTheEarth">Link</a>]</li>
<li><strong>Game Mod Update</strong> Brotato [<a href="apworlds.html#Brotato">Link</a>]</li>
<li><strong>Game Mod Update</strong> Final Fantasy XII: Open World [<a href="apworlds.html#FinalFantasy12OpenWorld">Link</a>]</li>
<li><strong>Game Mod Update</strong> HuniePop 2: Double Date [<a href="apworlds.html#HuniePop2DoubleDate">Link</a>]</li>
<li><strong>Game Mod Update</strong> Inscryption [<a href="apworlds.html#Inscryption">Link</a>]</li>
<li><strong>Game Mod Update</strong> Ittle Dew 2+ [<a href="apworlds.html#IttleDew2">Link</a>]</li>
<li><strong>Game Mod Update</strong> Keep Talking and Nobody Explodes [<a href="apworlds.html#KeepTalkingAndNobodyExplodes">Link</a>]</li>
<li><strong>Game Mod Update</strong> Lingo [<a href="apworlds.html#Lingo">Link</a>]</li>
<li><strong>Game Mod Update</strong> Mindustry [<a href="apworlds.html#Mindustry">Link</a>]</li>
<li><strong>Game Mod Update</strong> Muse Dash [<a href="apworlds.html#MuseDash">Link</a>]</li>
<li><strong>Game Mod Update</strong> Resident Evil 3 (Remake) [<a href="apworlds.html#ResidentEvil3">Link</a>]</li>
<li><strong>Game Mod Update</strong> Rogue Legacy [<a href="apworlds.html#RogueLegacy">Link</a>]</li>
<li><strong>Game Mod Update</strong> Shapez [<a href="apworlds.html#Shapez">Link</a>]</li>
<li><strong>Game Mod Update</strong> Shivers [<a href="apworlds.html#Shivers">Link</a>]</li>
<li><strong>Game Mod Update</strong> Sonic Adventure DX [<a href="apworlds.html#SonicAdventureDX">Link</a>]</li>
<li><strong>Game Mod Update</strong> The Legend of Zelda: Majora's Mask [<a href="apworlds.html#TheLegendOfZeldaMajorasMask">Link</a>]</li>
<li><strong>Game Mod Update</strong> The Messenger [<a href="apworlds.html#TheMessenger">Link</a>]</li>
</ul>
<ul>
<li><strong>New APWorld</strong> Simon Tatham's Portable Puzzle Collection [<a href="apworlds.html#SimonTathamsPortablePuzzleCollection">Link</a>]</li>
<li><strong>New APWorld</strong> Sly Cooper and the Thievius Raccoonus [<a href="apworlds.html#SlyCooperAndTheThieviusRaccoonus">Link</a>]</li>
<li><strong>New APWorld</strong> Spoiler-Free Text Client [<a href="apworlds.html#SpoilerFreeTextClient">Link</a>]</li>
</ul>
<ul>
<li><strong>New Tracker</strong> Hylics 2 [<a href="apworlds.html#Hylics2">Link</a>]</li>
</ul>
<h2>View older 2024 news in the <a href="archive2024.html">archives</a></h2>
</div>
</div>
</body>
</html>