-
Notifications
You must be signed in to change notification settings - Fork 151
/
game_data.json
4267 lines (4267 loc) · 197 KB
/
game_data.json
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
{
"010057700FF7C000": "Billion Road",
"0100D210177C6000": "Oddworld: Soulstorm",
"010018F007786000": "BeeFense BeeMastered",
"0100A3D008C5C000": "Pokémon Scarlet",
"01008F6008C5E000": "Pokémon Violet",
"01009B901145C000": "B.ARK",
"0100C4A014766000": "Arkan: The dog adventurer",
"0100691013C46000": "ARIA CHRONICLE",
"0100EDC01990E000": "FOOTBALL MANAGER 2023 TOUCH",
"010099801870E000": "Atari 50 The Anniversary Celebration",
"0100717014938000": "Arcade Space Shooter 2 in 1",
"010025D01221A000": "Alex Kidd in Miracle World DX",
"0100D82015774000": "112 Operator",
"010042501329E000": "MONSTER HUNTER STORIES 2: WINGS OF RUIN Trial Version",
"0100E2F014F46000": "Ninja Gaiden Sigma",
"010031201307A000": "Warhammer Age of Sigmar: Storm Ground",
"010056901285A000": "Wardogs: Red's Return",
"0100D67013910000": "Wanna Survive",
"0100DC70174E0000": "Paradigm Paradox",
"0100D6F016676000": "Seven Pirates H",
"01002B20174EE000": "Piofiore: Episodio 1926",
"010075A016A3A000": "Persona 4 Arena ULTIMAX",
"0100379013A62000": "Very Very Valet",
"0100A64010D48000": "Total Arcade Racing",
"0100F3D0122C2000": "The Longing",
"01006F701507A000": "Tested on Humans: Escape Room",
"010028E013E0A000": "Taiwan Monster Fruit : Prologue",
"0100BFE014476000": "Sunblaze",
"01003D50126A4000": "Sumire",
"01003AD0123A2000": "Good Night, Knight",
"0100E12013C1A000": "Tactics Ogre Reborn",
"0100D4900E82C000": "Metro 2033 Redux",
"01004AD014BF0000": "Sonic Frontiers",
"0100A4E017372000": "Pyramid Quest",
"0100429011144000": "Subnautica",
"010014C011146000": "Subnautica Below Zero",
"01000A6013F86000": "Strange Field Football",
"010097C01336A000": "Spooky Chase",
"0100134011E32000": "Skate City",
"0100A75005E92000": "BALDO: THE GUARDIAN OWLS",
"01003B0012DC2000": "Shin Megami Tensei III Nocturne HD Remaster",
"01007130135E2000": "Savage Halloween",
"0100E21013908000": "RWBY: Grimm Eclipse",
"0100FDB0154E4000": "Teenage Mutant Ninja Turtles: The Cowabunga Collection",
"0100057011E50000": "Zengeon",
"010065A014024000": "Grand Theft Auto: San Andreas - The Definitive Edition",
"0100182014022000": "Grand Theft Auto: Vice City - The Definitive Edition",
"0100C3C012718000": "Grand Theft Auto III - The Definitive Edition",
"010020C012F48000": "Rising Hell",
"01000ED014A2C000": "Retro Machina",
"0100F930136B6000": "R-TYPE FINAL 2",
"010045101288A000": "Quantum Replica",
"01007EF013CA0000": "Port Royale 4",
"0100DC7013F14000": "Alfred Hitchcock - Vertigo",
"010025901432A000": "Picross S6",
"0100A0D013464000": "Outbreak: Endless Nightmares",
"01006F5013202000": "Off And On Again",
"01002E6014FC4000": "O---O",
"0100542012884000": "Nongunz: Doppelganger Edition",
"01002AF014F4C000": "NINJA GAIDEN 3: Razor's Edge",
"010045C00F274000": "Moorkuhn Kart 2",
"0100E3601495C000": "Missing Features 2D",
"0100AD701344C000": "Mighty Goose",
"010093D00CB22000": "Maneater",
"010069A01506E000": "Life of Fly 2",
"010031A0135CA000": "Leisure Suit Larry - Wet Dreams Dry Twice",
"01001730144DA000": "Layers of Fear 2",
"01008D80148C8000": "King of Seas",
"0100515014A94000": "King of Seas Demo",
"0100AC600CF0A000": "Just Die Already",
"010031B0145B8000": "Instant Sports Tennis",
"01004A4010FEA000": "Bayonetta 3",
"0100C2500FC20000": "Splatoon 3",
"010057101473A000": "Infinite Tanks World War 2",
"01009E6014F18000": "Haunted Dawn: The Zombie Apocalypse",
"010025C014798000": "Fire: Ungh's Quest",
"0100D02014048000": "Fighting EX Layer Another Dash",
"010033F0126F4000": "Famicom Detective Club: The Missing Heir",
"0100D670126F6000": "Famicom Detective Club: The Girl Who Stands Behind",
"0100A82013976000": "Exodemon",
"01000FA0149B6000": "EQI",
"0100298014030000": "Earth Defense Force: World Brothers",
"0100EC30140B6000": "Dunk Lords",
"010068D0141F2000": "Dull Grey",
"0100236011B4C000": "DreamWorks Spirit Lucky's Big Adventure",
"0100918014B02000": "Disgaea 6: Defiance of Destiny Demo",
"01003C900EFF6000": "Devil Slayer - Raksasi",
"0100F8F00C4F2000": "DC Super Hero Girls™: Teen Power",
"01009D6013CB0000": "Chess Knights: Shinobi",
"0100D1101445C000": "Castaway Paradise",
"0100C0B00D290000": "Buildings Have Feelings Too!",
"010068F00F444000": "Brawl Chess",
"010081501371E000": "BraveMatch",
"010092C013FB8000": "Boris The Rocket",
"0100DF0011A6A000": "Bladed Fury",
"01006B0014590000": "Beautiful Desolation",
"0100747011890000": "Battle Axe",
"01008D30128E0000": "Bamerang",
"01008260138C4000": "Bakumatsu Renka SHINSENGUMI",
"0100FEA014316000": "Backworlds",
"01001A5014220000": "Atelier Sophie: The Alchemist of the Mysterious Book DX",
"010023201421E000": "Atelier Firis: The Alchemist and the Mysterious Journey DX",
"010045201487C000": "Aluna: Sentinel of the Shards",
"0100E9B013D4A000": "Aerial Knight's Never Yield",
"010010C013F2A000": "3D Arcade Fishing",
"0100317013770000": "Mario + Rabbids® Sparks of Hope",
"0100F88012E34000": "eBaseball Professional Yakyuu Spirits 2021: Grand Slam",
"01009050133B4000": "Shing! (サムライフォース:斬!)",
"01005CA01580E000": "Persona 5 Royal",
"0100B450130FC000": "Outbreak: The New Nightmare",
"0100158011A08000": "My Universe - Cooking Star Restaurant",
"0100F61010F22800": "Radiant Silvergun",
"010078E012D80000": "Grim Legends 2: Song Of The Dark Swan",
"0100D2F00D5C0000": "Nintendo Switch Sports",
"0100926013600000": "Dungeon Nightmares 1 + 2 Collection",
"01009DF015776000": "Star Trek Prodigy: Supernova",
"01002CE017D26000": "Picross S8",
"0100F71011A0A000": "My Universe - Fashion Boutique",
"0100A2C01320E000": "Hyrule Warriors: Age of Calamity - Demo Version",
"0100DE501433A000": "Tetris® Effect: Connected",
"0100DFC018D86000": "Star Seeker in: the Secret of the Sorcerous Standoff",
"0100B8E016F76000": "NieR:Automata The End of YoRHa Edition",
"0100ADA012370000": "Shantae: Risky's Revenge - Director's Cut",
"0100DA4017FC2000": "Bullet Soul",
"0100ED400EEC2000": "Story of Seasons: Friends of Mineral Town",
"01000A1018DF4000": "Catmaze",
"0100CC9015360000": "XEL",
"0100F4D00D8BE000": "Jinrui no Ninasama he",
"01003B90136DA000": "Shadowverse: Champion’s Battle",
"0100E2E0152E4000": "Dragon Quest X Awakening Five Races Offline",
"01000E301107A000": "Couch Co-Op Bundle Vol. 2",
"0100B62017E68000": "Shovel Knight Dig",
"01001CC00FA1A000": "Hatsune Miku: Project DIVA Mega Mix",
"010008501186E000": "Life is Strange: Before the Storm Remastered",
"0100DC301186A000": "Life is Strange Remastered",
"01002460135A4000": "太鼓之達人 咚咚雷音祭",
"0100E9F011356000": "Moving Out Demo",
"01002D7010A54000": "Trinity Trigger",
"0100BCA0135A0000": "Taiko no Tatsujin: Rhythm Festival",
"0100E3C016D4E000": "OneShot: World Machine Edition",
"01008120128C2000": "JoJos Bizarre Adventure All-Star Battle R",
"0100E2D015DEA000": "River City Girls Zero",
"0100F5E019300000": "Paddles",
"010057F0195DE000": "Animal Drifters",
"0100C610154CA000": "Shadowrun: Hong Kong - Extended Edition",
"01008310154C4000": "Shadowrun: Dragonfall - Director's Cut",
"0100371013B3E000": "Shadowrun Returns",
"01008DB008C2C000": "Pokémon Shield",
"010068C00F324000": "Disgaea 4 Complete+ Demo",
"010077B00E046000": "Spyro Reignited Trilogy",
"010005800F46E000": "Ori and the Blind Forest: Definitive Edition Demo",
"010057C00D374000": "Oniken",
"0100C8B012DEA000": "Temtem",
"0100822012D76000": "HAAK",
"0100685015A1A000": "Alice Gear Aegis CS: Concerto of Simulatrix",
"01006350148DA000": "The Gardener and the Wild Vines",
"010026800EA0A000": "Dragon Quest XI S: Echoes of an Elusive Age - Definitive Edition [Demo version]",
"0100B8200ECA6000": "CONTRA: ROGUE CORPS Demo",
"0100F3500D05E000": "Angry Bunnies: Colossal Carrot Crusade",
"010026B006802000": "A Duel Hand Disaster: Trackher",
"01003370136EA000": "Cozy Grove",
"0100A73016576000": "Tinykin",
"0100535014D76000": "Little Noah: Scion of Paradise",
"0100DAF016D48000": "Firegirl: Hack 'n Splash Rescue DX",
"0100BCA016636000": "eBaseball Powerful Pro Yakyuu 2022",
"010009F004E66000": "Transcripted",
"0100BA0018500000": "Splatoon 3: Splatfest World Premiere",
"0100AA2018846000": "Taiko no Tatsujin Rhythm Festival Demo",
"010093A0108DC000": "Drive Buy",
"010028C003FD6000": "Syberia 2",
"0100DBD013C92000": "DOTORI",
"0100A8E016236000": "Kirby’s Dream Buffet",
"01001DA015650000": "Demon Throttle",
"010052100D1B4000": "Spot the Differences: Party!",
"0100E04009BD4000": "Spot The Difference",
"0100E74007EAC000": "Spellspire",
"0100D9B0041CE000": "Spacecats with Lasers",
"01001DC01486A000": "月姫 -A piece of blue glass moon-",
"010040B017830000": "Spidersaurs",
"0100BB100AF4C000": "Slain Back from Hell",
"0100F0000869C000": "Saturday Morning RPG",
"0100D37009B8A000": "Runbow Deluxe Edition",
"010051C0134F8000": "DRAGON BALL Z: KAKAROT + A NEW POWER AWAKENS SET",
"010086E00BCB2000": "Retimed",
"01009AD008C4C000": "Pokémon: Let's Go, Pikachu! demo",
"0100A9800A1B6000": "Professional Construction - The Simulation",
"01009D901624A000": "The DioField Chronicle Demo",
"0100A8A0174A4000": "Clumsy Rush Ultimate Guys",
"01004E90149AA000": "Azure Striker GUNVOLT 3",
"0100165003504000": "Nintendo Labo Toy-Con 04: VR Kit",
"01009AB0034E0000": "Nintendo Labo Toy-Con 02: Robot Kit",
"010002900294A000": "NBA Playgrounds",
"010028F00ABAE000": "My Riding Stables - Life with Horses",
"01003EF007ABA000": "Minecraft: Story Mode - Season Two",
"010026000F662800": "LA-MULANA",
"010059C002AC2000": "Minecraft: Story Mode - The Complete Adventure",
"0100464009294000": "Kona",
"01000CE00CBB8000": "Plague Inc: Evolved",
"01000BF0152FA000": "Zombie Army 4: Dead War",
"0100D2B00BC54000": "Heroes of Hammerwatch",
"01008AD013A86800": "Lost Ruins",
"0100B9C0148D0000": "Slime Rancher: Plortable Edition",
"010074F013262000": "Xenoblade Chronicles 3",
"010047500B7B2000": "Digimon Survive",
"0100814017CB6000": "Jackbox Party Starter",
"01000EC00AF98000": "Furi",
"010025400AECE000": "Fortnite",
"0100829018568000": "SD GUNDAM BATTLE ALLIANCE Demo",
"010048201891A000": "Trinity Trigger Demo",
"01002C8018554000": "Gurimugurimoa OnceMore Demo",
"0100CF801776C000": "LIVE A LIVE",
"0100DCE00B756000": "Earthworms",
"010059C00BED4000": "Darius Cozmic Collection Special Edition",
"0100F6400A77E000": "CAPCOM BELT ACTION COLLECTION",
"0100CE800B94A000": "Banner Saga Trilogy",
"010024400CAD6000": "Bomber Crew Complete Edition",
"010022C016DC8000": "Breakout: Recharged",
"01009BF00E7D2000": "SYNTHETIK: Ultimate",
"01001C400482C000": "Wunderling",
"0100EE40143B6000": "Fire Emblem Warriors: Three Hopes (Japan)",
"010020F014DBE000": "Sherlock Holmes: The Devil's Daughter",
"0100393016D7E000": "WAIFU IMPACT",
"010020500BD86000": "Colors Live",
"010071E0145F8000": "Rustler",
"0100BA5012E54000": "Quake",
"01008E100E416000": "PowerSlave Exhumed",
"01007BE0160D6000": "EVE ghost enemies",
"01007BB017812000": "Portal",
"0100ABD01785C000": "Portal 2",
"0000000000000000": "Super Mario World",
"01005E9016BDE000": "The movie The Quintessential Bride -Five Memories Spent with You-",
"010085301797E000": "Horgihugh And Friends",
"01000AF015596000": "Pocky & Rocky Reshrined",
"010042D00D900000": "LEGO Star Wars: The Skywalker Saga",
"010071F0143EA000": "Fire Emblem Warriors: Three Hopes",
"01009FB016286000": "索尼克:起源 / Sonic Origins",
"0100DAC013D0A000": "30 in 1 game collection vol. 2",
"010014E017B14000": "OMORI",
"0100B46017500000": "MOFUMOFU Sensen",
"0100FE701475A000": "Teenage Mutant Ninja Turtles: Shredder's Revenge",
"0100309016E7A000": "鬼滅之刃:火之神血風譚 / Demon Slayer -Kimetsu no Yaiba- The Hinokami Chronicles",
"010019401051C000": "Mario Strikers: Battle League Football",
"01008A30182F2000": "Mario Strikers Battle League Football First Kick",
"010095E01581C000": "even if TEMPEST",
"010032400E700000": "二ノ国 白き聖灰の女王",
"010062A0178A8000": "LOOPERS",
"0100957016B90000": "CHAOS;HEAD NOAH",
"010029300E5C4000": "The Stanley Parable: Ultra Deluxe",
"0100346017304000": "Taiko Risshiden V DX",
"010010C017B28000": "Demon Turf: Neon Splash",
"0100DA7017C9E000": "Marco & The Galaxy Dragon Demo",
"0100F47016F26000": "Yomawari 3",
"0100E4501677E000": "QuickSpot",
"0100BB800E0D2000": "Jigsaw Masterpieces",
"0100153014544000": "STAR WARS: The Force Unleashed",
"0100A6E01681C800": "Metal Dogs ",
"01003FC01670C000": "13 Sentinels Aegis Rim",
"0100876015D74000": "MLB® The Show™ 22",
"0100D0E01618C000": "Danganronpa Decadence - 0100A3301618E000 - 01003A3016190000 - 010083A016192000",
"01005AB015994000": "Miss Kobayashi's Dragonmaid Burst Forth!! Choro-gon☆Breath",
"010033100EE12000": "The Ryuo's Work is Never Done!",
"01002F7013224000": "Rune Factory 5",
"010092E016B26000": "Hatsune Miku JIGSAW PUZZLE",
"010015C017776000": "Love of Love Emperor of LOVE!",
"01004D300C5AE000": "Kirby and the Forgotten Land",
"0100C54015002000": "13 Sentinels Aegis Rim Demo",
"01006D90165A2000": "Neptunia X SENRAN KAGURA Ninja Wars",
"0100FA7017CA6000": "Miss Kobayashi's Dragonmaid Burst Forth!! Choro-gon☆Breath Demo",
"0100EBA01548E000": "The Cruel King and the Great Hero",
"01004810171EA000": "Cosmos Bit",
"01008CF014560000": "Monster World IV",
"0100BA9014A02000": ".hack//G.U. Last Recode",
"01006A30124CA000": "Chocobo GP",
"0100DD2017994000": "Pretty Girls Breakers!",
"0100CC80140F8000": "TRIANGLE STRATEGY",
"0100B3C014BDA000": "SEGA Genesis - Nintendo Switch Online",
"010082A01538E000": "Atelier Sophie 2: The Alchemist of the Mysterious Dream",
"01001DA016942000": "Super Zangyura",
"010091201605A000": "Kirby and the Forgotten Land (Demo version)",
"01001DC01486A800": "Tsukihime -A piece of blue glass moon-",
"0100F3A00FB78000": "Mononoke Slashdown",
"0100118016036000": "Hatsune Miku Connecting Puzzle TAMAGOTORI",
"01001D701375A000": "PUZZLE & DRAGONS Nintendo Switch Edition",
"0100C090153B4000": "Crunchyroll",
"0100670014482000": "Assassin's Creed® The Ezio Collection",
"0100B41013C82000": "Cruis'n Blast",
"0100A9F01776A000": "MLB The Show 22 Tech Test",
"01000EE017182000": "Nintendo Switch Sports Online Play Test",
"01009B2016104000": "Picross S7",
"0100E9701479E000": "Toree 3D",
"0100A6B012932000": "Horse Club Adventures",
"0100C5D01128E000": "OlliOlli World",
"0100BEB015604000": "Fatal Frame: Maiden of Black Water",
"0100FCC0168FC000": "Demon Gaze EXTRA",
"01001F5010DFA000": "Pokémon Legends: Arceus",
"010046601125A000": "Furaiki 4 - 風雨来記4",
"0100763015C2E000": "Gunvolt Chronicles: Luminous Avenger iX 2",
"0100854015868000": "Star Wars - Knights Of The Old Republic",
"0100C3A013840000": "Shadow Man Remastered",
"01005A001489A000": "DoDonPachi Resurrection - 怒首領蜂大復活",
"01005FF013DC2000": "Monopoly Madness",
"010040800FB54000": "Pokémon Mystery Dungeon Rescue Team DX (DEMO)",
"0100F38011CFE000": "Animal Crossing New Horizons Island Transfer Tool",
"0100E390124D8000": "Ys IX: Monstrum Nox",
"01006FF014152000": "Hamidashi Creative",
"0100EF0015A9A000": "Deedlit in Wonder Labyrinth",
"01009120119B4000": "Deathsmiles I・II",
"01001E50141BC000": "The Battle Cats Unite!",
"010004E01523C000": "Loop Hero",
"0100502007F54000": "Black The Fall",
"010095C016C14000": "Iridium",
"0100D12014FC2000": "Yuru Camp △ Have a nice day!",
"0100954014718000": "Ice Station Z",
"0100000011D90000": "Pokémon Brilliant Diamond",
"010074F014628000": "MARSUPILAMI-HOOBADVENTURE",
"01007EC013ABC000": "Spelunky 2",
"0100710013ABA000": "Spelunky",
"0100273013ECA000": "Summer Pockets REFLECTION BLUE",
"010031E01627E000": "Mercenaries Rebirth Call of the Wild Lynx",
"010063B012DC6000": "Shin Megami Tensei V",
"0100BB500EACA000": "STAR WARS Jedi Knight II Jedi Outcast",
"0100726014352000": "Diablo 2 Resurrected",
"01006F600FFC8000": "LEGO Marvel Super Heroes",
"0100EA6014BB8000": "Just Dance 2022",
"01003AD013BD2000": "Eight Dragons",
"010040E012A5A000": "Abarenbo Tengu & Zombie Nation",
"010071400f836000": "Voice of Cards: The Isle Dragon Roars",
"01006FE013472000": "Mario Party Superstars",
"0100C9A00ECE6000": "Nintendo 64 - Nintendo Switch Online",
"0100958015656000": "Monark",
"01008c8012920000": "Dying Light: Platinum Edition",
"0100582010AE0000": "Crysis 2 Remastered",
"0100A7A015E4C000": "Touhou Genso Wanderer -Lotus Labyrinth R-",
"010036E00FB20000": "The Great Ace Attorney Chronicles",
"010093801237C000": "Metroid Dread",
"01002FA01610A000": "Blue Reflection: Second Light [Demo] [JP]",
"0100D31013274000": "Memories Off 2nd",
"0100978013276000": "Memories Off",
"01004ED014160000": "Miyamoto Sansuu Kyoushitsu Kashikoku Naru Puzzle Daizen - 宮本算数教室 賢くなるパズル 大全",
"01005FE01291A000": "Lost in Random",
"0100CCF012E9A000": "ENDER LILIES: Quietus of the Knights",
"0100E94014792000": "SINce Memories Off the starry sky",
"0100563010E0C000": "WarioWare: Get It Together!",
"0100374015A2C000": "Luna's Fishing Garden",
"01005A6010A04000": "Darts",
"010052C00ABFA000": "Snakes & Ladders",
"01000D3013E8C000": "SpongeBob: Krusty Cook-Off",
"010040E0116B8000": "Sonic Colors Ultimate",
"0100E2B012056000": "KeyWe",
"010026F013B3A000": "King's Bounty II",
"01001B80124E4000": "Checkers",
"01002EC014BCA000": "Idol Days - 愛怒流でいす",
"01007C600EB42000": "No More Heroes 3",
"0100CB00125B6000": "Table Tennis",
"0100995013404000": "Fight",
"01000DE0125B8000": "Hunt",
"0100A2D00EFBE000": "Guitar",
"01004A4011CB4000": "Bubble",
"0100E2B00E064000": "ZOMB",
"01005EE0142F6000": "Rainbocorns",
"01000E6015350000": "Spy Alarm",
"01005110142A8000": "Demon Gaze Extra - デモンゲイズ エクストラ",
"0100E80013BB0000": "DogFight",
"010083B00B97A000": "World Soccer",
"01007D8010018000": "Golf",
"01007DD011608000": "Slot",
"01002FC010240000": "Axiom Verge 2",
"01005A2014362000": "World's End Club",
"01006B5014E2E000": "Kamisama no You na Kimi e - 神様のような君へ",
"0100D7E0110B2000": "Genkai Tokki Moero Crystal H- 極限凸起 萌情水晶 H - 한계돌파 모에로크리스탈 H",
"0100F3001472A000": "Susanoh -Nihon Shinwa RPG- - スサノオ ~日本神話RPG~",
"010096000B658000": "Rebellions: Secret Game 2nd Stage for Nintendo Switch - リベリオンズ: Secret Game 2nd Stage for Nintendo Switch",
"010022B00AD18000": "Secret Game: Killer Queen for Nintendo Switch - シークレットゲーム KILLER QUEEN for Nintendo Switch",
"0100B4101459A000": "Hatsune Miku Logic Paint S",
"010031B012254000": "Everyday Todays MENU for EMIYA Family",
"010033C014666000": "cooKing simulator pizza",
"010089701567A000": "Picross S GENESIS and Master System edition - ピクロスS MEGA DRIVE & MARKⅢ edition",
"01000A601139E000": "Astro Port Shmup Collection",
"0100F4300BF2C000": "New Pokémon Snap",
"0100D7F00FB1A000": "Dai Gyakuten Saiban 1 & 2 -Naruhodou Ryuunosuke no Bouken to Kakugo- - 大逆転裁判1&2 -成歩堂龍ノ介の冒險と覺悟-",
"0100142013cea000": "Ren'ai, Karichaimashita 恋愛、借りちゃいました",
"0100B0400EBC4000": "Cris Tales",
"0100BF9012AC6000": "Suguru Nature",
"01004E10142FE000": "Monster wo Taoshite Tsuyoi Ken ya Yoroi wo Te ni Shinasai. Yuusha Tai ga Maou wo Taosu Sono Hi wo Shinjiteimasu",
"01002DA013484000": "The Legend of Zelda: Skyward Sword HD",
"01005BA00F486000": "Crayon Shin-chan Ora to Hakase no Natsuyasumi Owaranai Nanokakan no Tabi",
"01003BD013E30000": "Kanda Alice mo Suiri Suru 神田アリス も 推理スル",
"0100509005AF2000": "The Legend of Zelda: Breath of the Wild Demo",
"0100C9100B06A000": "Puchikon 4 Smile BASIC (JP)",
"0100AD0014AB4000": "The Legend of Heroes: Sen no Kiseki I",
"0100CBA014014000": "Tantei bokumetsu 探偵撲滅",
"0100C52011460000": "Sky: Children of the Light",
"0100B1A00D8CE000": "DOOM Eternal",
"01003DA010E8A000": "Miitopia",
"0100FA5010788000": "Game Builder Garage",
"0100ABC013136000": "Disgaea 6: Defiance of Destiny",
"01001AB0141A8000": "Neo : The World Ends with You (DEMO)- 新すばらしきこのせかい (体験版)",
"0100C9C00E25C000": "Mario Golf: Super Rush",
"0100CC00102B4000": "TONY HAWK'S™ PRO SKATER™ 1 + 2",
"0100556011C10000": "Warui Ohsama to Rippana Yuusha - わるい王様とりっぱな勇者",
"0100BC501355A000": "Densha de go!! Hashirou Yamanote Sen",
"0100A0C00E0DE000": "Lonely Mountains Downhill",
"010000100C4B8000": "Jamestown+",
"0100DEC00A934000": "Trine 3: The Artifacts of Power",
"010064E00A932000": "Trine 2: Complete Story",
"01009EF00DDB4000": "Knockout City",
"0100946012446000": "Paint",
"01006A300BA2C000": "Umineko no Naku Koro ni Saku - うみねこのなく頃に咲 ~猫箱と夢想の交響曲~",
"010048100D51A000": "Dokapon Up! Mugen no Roulette",
"0100F8D0129F4000": "Himehibi 1 gakki - Princess Days",
"0100FE0014200000": "Little Mouse's Encyclopedia",
"01000F5013820000": "MotoGP 21",
"010076200CA16000": "Rolling Gunner",
"01007DB00A226000": "Travel Mosaics: A Paris Tour",
"0100A8D010BFA000": "Travel Mosaics 2: Roman Holiday",
"0100102010BFC000": "Travel Mosaics 3: Tokyo Animated",
"010096D010BFE000": "Travel Mosaics 4: Adventures in Rio",
"01004C4010C00000": "Travel Mosaics 5: Waltzing Vienna",
"0100D520119D6000": "Travel Mosaics 6: Christmas Around the World",
"01000BD0119DE000": "Travel Mosaics 7: Fantastic Berlin",
"01008F3013E4E000": "Under Leaves",
"01004FA01391A000": "War Of Stealth - assassin",
"010014D01216E000": "Rune Factory 5 (JP)",
"010004701504A000": "Calculator",
"0100E680149DC000": "Arcaea",
"0100DBC00BD5A000": "Dragon Audit",
"010042A00FBF0000": "My Riding Stables 2: A New Adventure",
"0100EB6012FD2000": "Poison Control",
"0100E400129EC000": "Commander Keen in Keen Dreams: Definitive Edition",
"0100ECF012414000": "Touhou Hyouibana ~ Antinomy of Common Flowers [ 東方憑依華 〜 Antinomy of Common Flowers ]",
"0100473013DFE000": "ASOBU TIGHTS PUZZLE LESSON [ あそぶタイツ パズルレッスン ]",
"01005E6010114000": "Mainichi mamoru miya sanchino kyou nogohan [ 毎日♪ 衛宮さんちの今日のごはん ]",
"0100A18011BE4000": "Tonarini kanojo noiru shiawase ~ Curious Queen ~ [ となりに彼女のいる幸せ~Curious Queen~]",
"0100013013f30000": "What Comes After",
"010024B00E1D6000": "Knight Squad 2",
"01007DA0140E8000": "Miitopia Demo",
"0100BE101453E000": "World's End Club Demo",
"0100BDD014232000": "Rain on Your Parade",
"01002AD013C52000": "Relicta",
"010001F0145A8000": "Isolomus",
"01000AA013A5E000": "Breathedge",
"010016D00A964000": "SilverStarChess",
"0100F06013710000": "ISLAND",
"0100156014C6A000": "Lost Lands 3: The Golden Curse",
"0100018013124000": "Lost Words: Beyond the Page",
"0100AA00128BA000": "Saviors of Sapphire Wings & Stranger of Sword City Revisited",
"01000A4014596000": "Potion Party",
"01001C3012912000": "Say No! More",
"01001E9003502000": "Nintendo Labo Toy-Con 03: Vehicle Kit",
"0100BC701417A000": "TY the Tasmanian Tiger 2: Bush Rescue HD",
"01006000040C2000": "Yoshi's Crafted World",
"01005E5013862000": "THE LEGEND OF HEROES: ZERO NO KISEKI KAI [英雄傳說 零之軌跡:改]",
"0100AEC013DDA000": "Death end re;Quest",
"01002550129F0000": "Effie",
"0100D3C010DE8000": "The Legend of Heroes: Trails of Cold Steel IV",
"0100430013120000": "Shantae",
"01001030136C6000": "Uno no Tatsujin Machigai Sagashi Museum for Nintendo Switch [ -右脳の達人- まちがいさがしミュージアム for Nintendo Switch ]",
"01005CD013116000": "Raiden IV x Mikado Remix [ 雷電Ⅳ×MIKADO remix ]",
"0100EB2012E36000": "Wonder Boy Asha in Monster World [ ワンダーボーイ アーシャ・イン・モンスターワールド ]",
"0100A51013530000": "SaGa Frontier Remastered",
"010077B014518000": "Stitchy in Tooki Trouble",
"0100A1F012948000": "Bomber Fox",
"010020A01209C000": "El Hijo - A Wild West Tale",
"010023E013244000": "Escape from Life Inc",
"01001860140B0000": "I Saw Black Clouds",
"010038B00F142000": "Kaze and the Wild Masks",
"0100B8B012ECA000": "S.N.I.P.E.R. Hunter Scope",
"010069A010606000": "Arkham Horror: Mother's Embrace",
"0100438012EC8000": "Balan Wonderworld",
"0100C3200E7E6000": "Black Legend",
"0100DD6014870000": "Cargo Crew Driver",
"010011900E720000": "Ougon musou kyoku CROSS [ 黄金夢想曲†CROSS]",
"01009C100A8AA000": "Pikachin-Kit – Game de Pirameki Daisakusen [ ピカちんキット ゲームでピラメキ大作戦!]",
"01000E9013CD4000": "Ai Kiss 2 [ アイキス2 ]",
"0100E45014338000": "Livestream Escape from Hotel Izanami",
"010045E0142A4000": "Clea 2",
"010035D0121EC000": "Digerati Presents: The Dungeon Crawl Vol. 1",
"01001E400FD58000": "Cooking Simulator",
"01002BF013F0C000": "Hellbreachers",
"0100EFA013E7C000": "Danger Scavenger",
"01008D900B984000": "FEZ",
"0100FA800A1F4000": "Exorder",
"010069800D292000": "Fishing Universe Simulator",
"0100AC40108D8000": "Fred3ric",
"010099A0145E8000": "Mahluk dark demon",
"0100E5000D3CA000": "Merchants of Kaidan",
"0100E4701373E000": "My Hidden Things",
"01003B900AE12000": "Oh My Godheads: Party Edition",
"01005D701264A000": "SpyHack",
"0100F28011892000": "Overcooked! All You Can Eat",
"0100073011382000": "Fitness Boxing 2: Rhythm & Exercise",
"0100E7300AAD4000": "Fitness Boxing",
"0100C2C0125FC000": "MAGLAM LORD",
"0100AD9012510000": "PAC-MAN 99",
"010088600C66E000": "Atelier Rorona - The Alchemist of Arland - DX",
"0100F2A013752000": "Barrage Fantasia",
"0100FA10115F8000": "Star Wars: Republic Commando",
"0100F0C011A68000": "Tales from the Borderlands",
"0100B27010436000": "Wanderlust Travel Stories",
"0100593008BDC000": "Can't Drive This",
"0100440012FFA000": "DARQ Complete Edition",
"0100A760129A0000": "In rays of the Light",
"0100133014510000": "Lost Lands: The Four Horsemen",
"0100C1E0135E0000": "Mighty Fight Federation",
"010006D0128B4000": "NEOGEO POCKET COLOR SELECTION Vol.1",
"0100B4A0115CA000": "R.B.I. Baseball 21",
"01009E700F448000": "Synergia",
"0100A3E010E56000": "A-Train: All Aboard! Tourism",
"01008330134DA000": "Jiffy",
"0100EF50132BE000": "Kingdoms of Amalur: Re-Reckoning",
"0100288012966000": "Woodsalt",
"01001A0011798000": "WRC 9 The Official Game",
"010062400E69C000": "Bibi & Tina at the horse farm",
"0100E29013818000": "Demon's Rise - Lords of Chaos",
"01004F9012FD8000": "Estranged: The Departure",
"0100BE801360E000": "Dungeons & Bombs",
"010054A013E0C000": "GraviFire",
"0100EBA004726000": "Huntdown",
"010051B0131F0000": "Monster Jam Steel Titans 2",
"0100EA2013BCC000": "Pixel Game Maker Series Puzzle Pedestrians",
"0100E9201410E000": "Sir Lovelot",
"0100DF8014056000": "Aery - A Journey Beyond Time",
"01000FD00DF78000": "AnShi",
"01006AF012FC8000": "Azur Lane: Crosswave",
"0100DF9013AD4000": "Clocker",
"0100D4A0118EA000": "Curse of the Dead Gods",
"010015800F93C000": "Dariusburst - Another Chronicle EX+",
"0100A12011CC8000": "Fire Emblem: Shadow Dragon and the Blade of Light",
"01007B0014300000": " R-TYPE FINAL 2 Demo",
"0100AA801258C000": "Fallen Legion Revenants",
"01009FA010848000": "Rogue Heroes: Ruins of Tasos",
"01008010118CC000": "Steam Prison",
"0100FB5013670000": "Gotobun no Hanayome Natsu no Omoide mo Gotobun [ 五等分の花嫁∬ ~夏の思い出も五等分~ ]",
"0100B04011742000": "Monster Hunter Rise",
"0100F52013A66000": "Charge Kid",
"0100B2300B932000": "Storm in a Teacup",
"0100492011A8A000": "Death's Hangover",
"010024600C794000": "Hellpoint",
"0100743013D56000": "Blizzard Arcade Collection",
"0100EE1013E12000": "Active Neurons 3",
"010021201296A000": "Escape First 2",
"0100E2600DBAA000": "Haven",
"010077D01094C000": "Hero-U: Rogue to Redemption",
"01008390136FC000": "Negative",
"0100BAD013B6E000": "Radio Commander",
"010017B012AFC000": "Soccer Club Life: Playing Manager",
"01002E6013ED8000": "Boom Blaster",
"01005C2013B00000": "Cresteaju",
"01005EB013FBA000": "Persephone",
"01007CC0130C6000": "Renzo Racer",
"0100A5A00DBB0000": "Dig Dog",
"01000540139F6000": "Speed Limit",
"01004990132AC000": "Hitman 3 - Cloud Version",
"0100964012528000": "Stubbs the Zombie in Rebel Without a Pulse",
"0100C3801458A000": "Night Vision",
"0100BEB01327A000": "Cathedral",
"0100C56010FD8000": "Plants vs. Zombies: Battle for Neighborville Complete Edition",
"0100E510143EC000": "Bloody Bunny : The Game",
"010073401175E000": "Crash Bandicoot 4: It's About Time",
"0100A0500348A000": "Just Dance 2018",
"0100A27013626000": "Code: Realize ~Wintertide Miracles~",
"0100AFE012BA2000": "Sea of Solitude The Director's Cut",
"0100965012E22000": "コープスパーティー ブラッドカバー リピーティッドフィアー (Corpse Party Blood Covered: Repeated Fear)",
"0100BCE000598000": "Just Dance 2017",
"010075600AE96000": "Just Dance 2019",
"0100DBA011136000": "Forward To The Sky",
"01006DC010326000": "Bravely Default II",
"010017301007E000": "STORY OF SEASONS Pioneers of Olive [ 牧場物語 オリーブタウンと希望の大地 ]",
"01003DD00F94A000": "COTTOn Reboot! [ コットン リブート! ]",
"0100B76011DAA000": "Taxi Chaos",
"0100D6200F2BA000": "Ghosts 'n Goblins Resurrection",
"0100599012F08000": "Steven Universe Unleash the Light",
"0100801011C3E000": "Persona 5: Strikers (US)",
"0100CAA01084A000": "Rebel Galaxy: Outlaw",
"01007A700A87C000": "The Long Dark",
"010054F014016000": "Urban Street Fighting",
"01001E0013208000": "Capcom Arcade Stadium",
"010045B00C496000": "Dungreed",
"0100A7F002830000": "VOEZ (Japan Version)",
"0100D61012270000": "Super Soccer Blast",
"010027D0137E0000": "SNK VS. CAPCOM: THE MATCH OF THE MILLENNIUM",
"01002980140F6000": "Project TRIANGLE STRATEGY Debut Demo",
"0100C0000CEEA000": "Yo kai watch 1 for Nintendo Switch",
"0100859013CE6000": "Pixel Game Maker Series Werewolf Princess Kaguya",
"0100393013A10000": "Timothy and the Mysterious Forest",
"0100729012D18000": "Rhythm Fighter",
"010097100EDD6000": "Little Nightmares II",
"0100CAC011C3A000": "Chickens Madness DEMO",
"010078700B2CC000": "Caveman Warriors Demo",
"0100E86010220000": "Cat Quest II Demo",
"0100F6D01060E000": "Castle Crashers Remastered Demo",
"01002320137CC000": "CAPTAIN TSUBASA: RISE OF NEW CHAMPIONS DEMO VERSION",
"01002C400B6B6000": "Captain Toad: Treasure Tracker Demo",
"0100699012F82000": "Cake Bash Demo",
"010060400D21C000": "Cafeteria Nipponica Demo",
"01005780106E8000": "BurgerTime Party! Demo",
"0100F1B010A90000": "Bucket Knight demo",
"0100F19011226000": "Brotherhood United Demo",
"0100703011258000": "Brigandine: The Legend of Runersia Demo",
"0100C1B00E1CA000": "Brawlout Demo",
"010028600EBDA000": "Super Mario 3D World + Bowser's Fury",
"0100B7200E02E000": "BOXBOY! + BOXGIRL! Demo",
"010069B00EAC8000": "Bot Vice Demo",
"010069F0135C4000": "Boomerang Fu Demo Version",
"01000EB01023E000": "Blossom Tales Demo",
"0100B410138C0000": "Unspottable",
"0100B5B00E77C000": "Get Over Here",
"0100E1C00DB6C000": "Block-a-Pix Deluxe Demo",
"010091700EA2A000": "Bleep Bloop DEMO",
"010025B002E92000": "Blaster Master Zero DEMO",
"0100302010338000": "Blasphemous Demo",
"01004BE00A682000": "Black Hole Demo",
"0100B6B012FF4000": "Birds and Blocks Demo",
"010024200E97E800": "Bear With Me - The Lost Robots Demo",
"0100CAC013776000": "Fallen Legion Revenants Demo",
"0100A790133FC000": "Mercenaries Blaze Dawn of the Twin Dragons",
"0100DBB00CAEE000": "Battle Chef Brigade Demo",
"0100D3000AEC2000": "Baobabs Mausoleum: DEMO",
"010075000D092000": "Bad North Demo",
"010075400DEC6000": "Ayakashi koi gikyoku Free Trial",
"010023800D3F2000": "Awesome Pea (Demo)",
"0100E100128BA000": "AVICII Invector Demo",
"01006B700EA6A000": "Automachef Demo",
"0100C5E00E540000": "Assault on Metaltron Demo",
"010062F00CAE2000": "Art of Balance DEMO",
"0100A5400AC86000": "ARMS Demo",
"01008CA00D71C000": "Aperion Cyberstorm Demo",
"01002B300EB86000": "Anime Studio Story Demo",
"010054500E6D4000": "APE OUT DEMO",
"0100A1900B5B8000": "Animated Jigsaws: Beautiful Japanese Scenery DEMO",
"0100A8A00D27E000": "Alternate Jake Hunter: DAEDALUS The Awakening of Golden Jazz Trial version",
"0100C1700FB34000": "AI: The Somnium Files Demo",
"01004510110C4000": "Alder's Blood Prologue",
"010010A00DB72000": "Airfield Mania Demo",
"01008E8012C02000": "Agent A: A puzzle in disguise (Demo)",
"01006E600F8D8000": "AeternoBlade II Demo Version",
"0100B1C00949A000": "AeternoBlade Demo Version",
"01006710122CE000": "Aeolis Tournament Demo",
"010064500AF72000": "Aegis Defenders Demo",
"0100A0A0136E8000": "Adventures of Chris Demo",
"010031C0122B0000": "Active Neurons 2 Demo",
"010054300D822000": "Aces of the Luftwaffe Squadron Demo",
"0100582012B90000": "A Duel Hand Disaster Trackher: DEMO",
"010023500C2F0000": "99Vidas Demo",
"0100C5F012E3E000": "9 Monkeys of Shaolin Demo",
"0100148012550000": "1993 Shenandoah Demo",
"0100B94013D28000": "16-Bit Soccer Demo",
"0100DC000A472000": "10 Second Run RETURNS Demo",
"01009A500E3DA000": "'n Verlore Verstand - Demo",
"0100D87012A14000": "#womenUp, Super Puzzles Dream Demo",
"0100DA7013792000": "Grey Skies: A War of the Worlds Story",
"01000B70122A2000": "Disjunction",
"0100419013A8A000": "Flying Hero X",
"0100EB501130E000": "Glyph",
"01008DA012EC0000": "Shakes on a Plane",
"010073B010F6E000": "Blue Fire",
"0100D9C012900000": "Citizens Unite!: Earth x Space",
"0100CD5011A02000": "My Universe - Pet Clinic Cats & Dogs",
"01007D701298A000": "Contraptions",
"0100FD901000C000": "Heaven's Vault",
"01009A9012022000": "Atelier Ryza 2: Lost Legends & the Secret Fairy",
"0100C1F0141AA000": "Cyber Shadow",
"0100CFA0111C8000": "Gods Will Fall",
"0100326010B98000": "Redout: Space Assault",
"0100B5E011920000": "TOHU",
"0100192010F5A000": "Tracks - Toybox Edition",
"010043A0132AA000": "Ubongo - Deluxe Edition",
"0100E2F0128B4000": "Colossus Down",
"0100D7B013DD0000": "Ziggy The Chaser",
"01009CC00E224000": "Blade II The Return of Evil",
"010030D012FF6000": "Bus Driver Simulator",
"0100CBD012FB6000": "All Walls Must Fall",
"01008C901266E000": "ADVERSE",
"010013A00E750000": "Calico",
"0100A8A013DA4000": "Dirt Bike Insanity",
"0100D24013466000": "Dreamo",
"0100CAF013AE6000": "GRISAIA PHANTOM TRIGGER 5.5",
"01002330123BC000": "GRISAIA PHANTOM TRIGGER 05",
"01005250123B8000": "GRISAIA PHANTOM TRIGGER 03",
"0100CFA0138C8000": "Missile Dancer",
"01006AF013A9E000": "Otti house keeper",
"0100BBF0122B4000": "Sally Face",
"01001E40136FE000": "Spinny's journey",
"0100449011506000": "The Last Campfire",
"0100B6B013B8A000": "War Truck Simulator",
"0100E48013A34000": "Balan Wonderworld Demo",
"010015801308E000": "CONARIUM",
"0100DB300B996000": "Buddy Mission BOND [ FG ] [ バディミッション BOND ]",
"0100307011D80000": "Disgaea 6: Defiance of Destiny [ FG ] [ 魔界戦記ディスガイア6 ]",
"0100047013378000": "Gal*Gun Returns [ ぎゃる☆がん りたーんず ]",
"01004CB01378A000": "Dirt Trackin Sprint Cars",
"0100945012168000": "Iris Fall",
"010093A0135D6000": "Little Nightmares II DEMO",
"0100B3A0135D6000": "Life of Fly",
"0100E53013E1C000": "Arcanoid Breakout",
"010061F013A0E000": "Speed Truck Racing",
"0100A5600FAC0000": "Construction Simulator 3 - Console Edition",
"0100351013A06000": "Red Colony",
"0100BE501382A000": "Shadow Gangs",
"0100950012F66000": "Tennis World Tour 2",
"010068E013450000": "Blacksmith of the Sand Kingdom",
"0100D7100FDDE000": "Down in Bermuda",
"01005EE013888000": "Disgaea 6: Defiance of Destiny Demo [ 魔界戦記ディスガイア6 ]",
"0100518013CBC000": "Buddy Mission BOND Demo [ バディミッション BOND ]",
"0100AAD011592000": "The Last Dead End",
"01002100137BA000": "Stardash",
"0100CE400E34E000": "Thief Simulator",
"0100CDE0136E6000": "Defentron",
"010055801134E000": "FUZE Player",
"01006C301199C000": "My Universe - School Teacher",
"0100D1F0132F6000": "Professor Lupo: Ocean",
"010043600B6A6000": "South Park: The Stick of Truth",
"0100C56012C96000": "Arkanoid vs Space Invaders",
"01001950137D8000": "The Hong Kong Massacre",
"0100721013510000": "Body of Evidence",
"0100F95013772000": "PBA Pro Bowling 2021",
"01006A800FA22000": "Evolution Board Game",
"0100EFE00A3C2000": "Eyes: The Horror Game",
"01007CF013152000": "Football Manager 2021 Touch",
"0100C3800049C000": "Monster Hunter XX Nintendo Switch Ver ( Double Cross )",
"01005C10136CA000": "Fantasy Tavern Sextet -Vol.2 Adventurer's Days",
"0100394011C30000": "Scott Pilgrim vs The World: The Game",
"0100F200049C8000": "InnerSpace",
"010093A01305C000": "Monster Hunter Rise Demo",
"0100A0F00DA68000": "Monster Sanctuary",
"01004AD00E094000": "The House of Da Vinci",
"0100B9E012992000": "Earth Defense Force World Brothers ( ま~るい地球が四角くなった!? デジボク地球防衛軍 )",
"010008C01010A000": "Traditional Tactics Ne+",
"010036A01342C000": "Hell Sports",
"0100BF00112C0000": "Catherine Full Body",
"01008B10132A2000": "DEEMO -Reborn-",
"010004901194A000": "Trail Boss BMX",
"01008E10130F8000": "Funimation",
"0100137010152000": "The Adventures of 00 Dilly",
"0100B77012266000": "COLLECTION of SaGA FINAL FANTASY LEGEND",
"010025200FC54000": "Croc's World 3",
"0100D9F013102000": "Outbreak: Lost Hope",
"0100E49013190000": "Unto The End",
"0100647012F62000": "Override 2 Super Mech League",
"01003D301357A000": "Dark Arcana: The Carnival",
"01000AD012D3A000": "BIT.TRIP VOID",
"0100E62012D3C000": "BIT.TRIP RUNNER",
"0100C5D01281E000": "Wagamama High Spec",
"0100383012DF2000": "Gems of Magic: Lost Family",
"01009C200D60E000": "Super Meat Boy Forever",
"010049F013656000": "Nekopara Vol.4",
"01005B10132B2000": "Double Dragon Neon",
"010028A0048A6000": "Peasant Knight",
"0100BDE012928000": "Strife: Veteran Edition",
"0100A66003384000": "Hulu",
"0100454012E32000": "Witch Spring 3 Re:Fine -The Story of the Marionette Witch Eirudy-",
"0100AC600EB4C000": "Gensou Rougoku no Kaleidscope",
"01006B9013672000": "Cybxus Heart",
"0100E0200B980000": "OlliOlli: Switch Stance",
"0100F3B00CF32000": "Death Coming",
"010095B00DBC8000": "Venture Kid",
"0100683011A2E000": "Rabbids Adventure Party Demo / 疯狂兔子:奇遇派对 - 试玩版",
"0100BBF011394000": "Dicey Dungeons",
"0100D8E00C874000": "Izneo",
"01006E900B6EC000": "Jack N' Jill DX",
"010071F00D65A000": "Wilmot's Warehouse",
"0100041013360000": "Control Ultimate Edition - Cloud Version",
"010074B00ED32000": "Polyroll",
"01001E700EB28000": "Idle Champions of the Forgotten Realms",
"0100DA400F624000": "PHOGS!",
"010068200C5BE000": "Roarr!",
"0100ABE00DB4E000": "Edna & Harvey: Harvey's New Eyes",
"010036C00D0D6000": "Gnomes Garden: Lost King",
"0100652012F58000": "Drums",
"010076B0101A0000": "YesterMorrow",
"01002D20129FC000": "Beat Me!",
"0100F5D00CD58000": "Flowlines VS",
"0100D94012FE8000": "Saboteur SiO",
"010029A00AEB0000": "Survive! Mr. Cube",
"0100343013248000": "Nubarron: The adventure of an unlucky gnome",
"0100C8200E942000": "Fin and the Ancient Mystery",
"0100EB8011B0C000": "Gnome More War",
"010076F0049A2000": "Bayonetta",
"0100E8B012FBC000": "Maze",
"0100B6F01227C000": "Glitch's Trip",
"010009F011F90000": "Grim Legends: The Forsaken Bride",
"010048300D5C2000": "BATTLLOON",
"01000BA0132EA000": "Choices That Matter: And The Sun Went Out",
"010044B00E70A000": "Foregone",
"010045D01273A000": "Reflection of Mine",
"01005EE00BC78000": "Dokuro",
"0100D2800EB40000": "Battle Planet - Judgement Day",
"0100E6D00E81C000": "Little Racer",
"0100650010DD4000": "Battleground",
"010090F012916000": "Ghostrunner",
"010035E00C1AE000": "Battle of Kings",
"01001740116EC000": "Zombie's Cool",
"0100FCF00F6CC000": "Day and Night",
"0100A3B011EDE000": "Battle Hunters",
"0100EDE012B58000": "Linelight",
"0100C850134A0000": "Vera Blanc: Full Moon",
"01006E700B702000": "Nightmares from the Deep 2: The Siren's Call",
"010047F012BE2000": "Abyss of The Sacrifice",
"01005F3012748000": "Batbarian: Testament of the Primordials",
"0100382011002000": "PixelJunk Eden 2",
"01000BF00B6BC000": "Deployment",
"010039C0106C6000": "Baron: Fur Is Gonna Fly",
"01006D300FFA6000": "Baobabs Mausoleum Ep.3: Un Pato en Muertoburgo",
"01003AB012F00000": "Life of Boris: Super Slav",
"010079300E976000": "Baobabs Mausoleum Ep2: 1313 Barnabas Dead Ends Drive",
"01006B400C178000": "Blacksea Odyssey",
"010023500B0BA000": "Nefarious",
"0100E060102AA000": "Blood will be Spilled",
"010007900FCE2000": "Crash Drive 2",
"010002100CDCC000": "Peaky Blinders: Mastermind",
"0100EAF00E32E000": "BaconMan",
"010044600FDF0000": "Marooners",
"010031D012BA4000": "Azurebreak Heroes",
"0100F4100AF16000": "Back to Bed",
"01006FB00990E000": "Azure Reflections",
"0100CC0010A46000": "Ego Protocol",
"01009DB00DE12000": "Croc's World 2",
"0100AA800DA42000": "Automachef",
"0100B9400FA38000": "ATOM RPG",
"010096B01179A000": "Ponpu",
"0100B1400D92A000": "Unit 4",
"010076B011EC8000": "Baila Latino",
"01003350102E2000": "Barbarous! Tavern of Emyr",
"01007B000C834000": "Asphalt 9: Legends",
"0100A51013550000": "Death Tales",
"0100D5800DECA000": "Asemblance",
"0100CDD00DA70000": "Artifact Adventure Gaiden DX",
"0100E0400E320000": "Warlocks 2: God Slayers",
"01007AB012102000": "Arrog",
"010029B00CC3E000": "Utopia 9 - A Volatile Vacation",
"01006AA013086000": "Art Sqool",
"01004DA012976000": "Area 86",
"010047000E9AA000": "AO Tennis 2",
"01006FE010438000": "Sin Slayers",
"010092A0102AE000": "Spider Solitaire",
"0100AFE00E882000": "Laraan",
"0100810012A1A000": "Carto",
"010076D0122A8000": "Spinch",
"0100B0C013912000": "Among Us",
"0100A19011EEE000": "Creepy Tale",
"010061D00FD26000": "Biz Builder Delux",
"0100C2700AEB8000": "Jenny LeClue - Detectivu",
"010092E00E7F4000": "Deleveled",
"01000D60126B6000": "Death and Taxes",
"010047B010260000": "Space Pioneer",
"0100FE1011400000": "Antventor",
"0100D2C013288000": "Lofi Ping Pong",
"01008B20129F2000": "Dream",
"0100D7F010B94000": "Welcome to Primrose Lake",
"010016E011EFA000": "Norman's Great Illusion",
"01007A601318C000": "Tanuki Justice",
"01003E700FD66000": "Alt-Frequencies",
"0100596011E20000": "Anti-Hero Bundle",
"010026800BB06000": "Brick Breaker",
"010062500EB84000": "Anime Studio Story",
"01005A700C954000": "Stellar Interface",
"0100451012492000": "Animals for Toddlers",
"010033C0121DC000": "Animal Pairs - Matching & Concentration Game for Toddlers & Kids",
"01009E600D78C000": "Anode",
"0100DD700F1F6000": "Amazing Brick Breaker",
"01002F4011A8E000": "Animal Fun for Toddlers and Kids",
"010058900F52E000": "Clea",
"01004230123E0000": "More Dark",
"010098600CF06000": "Animated Jigsaws Collection",
"0100F4E013AAE000": "Fire & Water",
"010040D00BCF4000": "Storm Boy",
"010053B0123DC000": "Alphaset by POWGI",
"0100DB300A026000": "Warp Shift",
"0100C7801232C000": "Alphadia Genesis",
"010059900BA3C000": "Windscape",
"010063000C3CE000": "Almightree the Last Dreamer",
"0100AC501122A000": "Alluris",
"0100D870102BC000": "Desire remaster ver.",
"0100B5B00EF38000": "Elden: Path of the Forgotten",
"01001B400D334000": "AFL Evolution 2",
"0100D7C01115E000": "Keen: One Girl Army",
"01006CF00DA8C000": "Zombie Driver",
"0100BD4011FFE000": "Witcheye",
"01009A800F0C8000": "Akash Path of the Five",
"0100F5400AB6C000": "Alchemic Jousts",
"010056000BA1C000": "Fobia",
"0100087012810000": "Aery - Broken Memories",
"0100C990102A0000": "Adventure Pinball Bundle",
"0100FAE010864000": "Minoria",
"010014B0130F2000": "Adventure Llama",
"0100FB500631E000": "ATOMINE",
"010079B00B3F4000": "Acthung! Cthulhu Tactics",
"0100CD40104DE000": "Actual Sunlight",
"0100F0901006C000": "A Sound Plan",
"010021D00D53E000": "A Dark Room",
"01006CE0134E6000": "A Frog Game",
"0100820013612000": "Shady Part of Me",
"01009A400A97C000": "ASSAULT GUNNERS HD Edition",
"0100DA3011174000": "Axes",
"0100085012D64000": "Awakening of Cthulhu",
"0100A1200F20C000": "Midnight Evil",
"0100184011B32000": "Arrest of a stone Buddha",
"01000D1006CEC000": "ATOMIK RunGunJumpGun",
"0100DF401249C000": "AstroWings SpaceWar",
"010039600E7AC000": "Attack of the Toy Tanks",
"0100BF8012A30000": "Assault Chainguns KM",
"01005BF00E4DE000": "Rabi-Ribi",
"0100AD30095A4000": "Atomicrops",
"010065A01158E000": "Commandos 2 HD Remaster",
"0100F9A012892000": "Ord.",
"0100C5B0113A0000": "Armed 7 DX",
"0100B69012EC6000": "Nexoria: Dungeon Rogue Heroes",
"01005FE00EC4E000": "Atomic Heist",
"0100FE0010886000": "Aqua Lungers",
"0100BD800DFA6000": "Greedroid",
"0100D58012FC2000": "Kagamihara/Justice",
"01006FA012FE0000": "Cthulhu Saves Christmas",
"010051C003A08000": "Aperion Cyberstorm",
"0100DF900FC52000": "Tiny Gladiators",
"01005F20116A0000": "Apparition",
"010045D009EFC000": "Apocryph",
"010079D00C8AE000": "Klondike Solitaire",
"0100E55012BE8000": "Police X Heroine Lovepatrina! Love na Rhythm de Taihoshimasu!",
"010055500CCD2000": "Ankh Guardian - Treasure of the Demon's Temple",
"0100F6600E4A4000": "Derby Stallion",
"0100A16010966000": "Animal Up",
"01007090104EC000": "John Wick Hex",
"01007F00128CC000": "Pretty Princess Party",
"010097600C322000": "ANIMUS",
"010093100DA04000": "Momotaro Dentetsu Showa, Heisei, Reiwa mo Teiban!",
"010019500E642000": "Animal Fight Club",
"010070C00FB56000": "TERROR SQUID",
"01001B7012214000": "Alwa's Legacy",
"0100E6B0115FC000": "Star99",
"010035500CA0E000": "Animal Hunter Z",
"0100CCE00DDB6000": "Shoot 1UP DX",
"01000A800B998000": "ALPHA",
"0100085012A0E000": "Squeakers",
"0100A5D012DAC000": "SENTRY",
"010084500C7DC000": "Angry Video Game Nerd I & II Deluxe",
"010001E00F75A000": "Alchemist's Castle",
"0100D4C00EE0C000": "Akuarium",
"010072601233C000": "Adventures of Chris",
"010029700EB76000": "Adrenaline Rush - Miami Drive",
"01006E8011C1E000": "Ailment",
"0100DB00117BA000": "9th Dawn III",
"01002B5012004000": "Adventures of Pip",
"010001C011354000": "Aeolis Tournament",
"01006890126E4000": "4x4 Dirt Track",
"0100EFE00E964000": "64.0",
"0100E20012886000": "2weistein – The Curse of the Red Dragon",
"01007550131EE000": "2urvive",
"0100325012C12000": "#NoLimitFantasy, Super Puzzles Dream",
"01003DB011AE8000": "#womenUp, Super Puzzles Dream",
"0100B1A010014000": "12 Labours of Hercules II: The Cretan Bull",
"010065B00B0EC000": "Rise and Shine",
"010000401313A000": "Demong Hunter",
"01000F300F082000": "Reaper: Tale of a Pale Swordsman",
"010096500EA94000": "2048 Battles",
"01007430122D0000": "Shiren the Wanderer: The Tower of Fortune and the Dice of Fate",
"01006BA013990000": "Girabox",
"0100E37012F9E000": "Empire of Sin",
"01003A90133A6000": "Liberated: Enhanced Edition",
"0100D30010C42000": "Monster Truck Championship",
"0100AF100EE76000": "Quiplash 2 InterLASHional",
"0100CD301354E000": "Sam & Max Save the World",
"010068F012880000": "Eldrador Creatures",
"010040E00F642000": "Morbid: The Seven Acolytes",
"010001300D14A000": "Castle Crashers Remastered",
"01004D501113C000": "Going Under",
"010076B01196C000": "Chronos: Before the Ashes",
"01001F90122B2000": "Super Punch Patrol",
"0100CD900FB24000": "Wartile Complete Edition",
"010011300F74C000": "MO:Astray",
"010017C012726000": "Fantasy Friends",
"0100B54012798000": "Flatland: Prologue",
"01002C6012334000": "My Aunt is a Witch",
"010027F0128EA000": "Who Wants to Be a Millionaire?",
"010051A00D716000": "Super Blood Hockey",
"010037A00F5E2000": "Wonder Blade",
"0100F18010BA0000": "Speed 3: Grand Prix",
"01002AD0126AE000": "Bridge Constructor: The Walking Dead",
"0100CB50107BA000": "Truck Driver",
"010056D00E234000": "30-in-1 Game Collection",
"01001F201121E000": "Paw Patrol: Might Pups Save Adventure Bay!",
"0100B950129DC000": "LUNA The Shadow Dust",
"010060200FC44000": "Family Feud 2021",
"01008E500BF62000": "MagiCat",
"0100C7E0134BE000": "Five Dates",
"0100E06012BB4000": "Tank Mechanic Simulator",
"010010D011E1C000": "Slide Stars",
"010007D00D43A000": "Serious Sam Collection",
"010007B010FCC000": "Sniper Elite 4",
"01005BC012C66000": "Duck Life Adventure",
"0100D95012C0A000": "Gibbous - A Cthulhu Adventure",
"01006550129C6000": "If Found...",
"01001C2010D08000": "They Bleed Pixels",
"0100F2B0123AE000": "L.O.L. Surprise! Remix: We Rule the World",
"0100F03011616000": "Re:Turn - One Way Trip",
"0100B1400E8FE000": "Sakuna: Of Rice and Ruin",
"0100A5601375C000": "Nordlicht",
"0100DE70131F4000": "Alpaca Ball: Allstars",
"010060D00F658000": "Star Renegades",
"0100FBE0113CC000": "Tropico 6",