-
Notifications
You must be signed in to change notification settings - Fork 1
/
launchbox.json
1813 lines (1813 loc) · 46.7 KB
/
launchbox.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
{
"3DO Interactive Multiplayer": {
"id": "3DO Interactive Multiplayer",
"name": "3DO Interactive Multiplayer",
"altNames": [
"3DO",
"Panasonic 3DO",
"Panasonic 3DO Interactive Multiplayer"
],
"developer": "The 3DO Company",
"manufacturer": "Panasonic Corporation, Sanyo Electric Co., Ltd., GoldStar"
},
"Commodore Amiga": {
"id": "Commodore Amiga",
"name": "Commodore Amiga",
"altNames": [
"Amiga"
],
"developer": "Commodore International",
"manufacturer": "Commodore International"
},
"Amstrad CPC": {
"id": "Amstrad CPC",
"name": "Amstrad CPC",
"altNames": [
"Amstrad",
"CPC",
"Amstrad Colour Personal Computer",
"Amstrad Color Personal Computer",
"Colour Personal Computer",
"Color Personal Computer"
],
"developer": "Amstrad",
"manufacturer": "Amstrad"
},
"Android": {
"id": "Android",
"name": "Android",
"altNames": [
"Droid"
],
"developer": "Google",
"manufacturer": "Various"
},
"Arcade": {
"id": "Arcade",
"name": "Arcade",
"altNames": [
"MAME"
],
"manufacturer": "Various"
},
"Atari 2600": {
"id": "Atari 2600",
"name": "Atari 2600",
"altNames": [
"Atari",
"2600"
],
"developer": "Atari, Inc.",
"manufacturer": "Atari, Inc."
},
"Atari 5200": {
"id": "Atari 5200",
"name": "Atari 5200",
"altNames": [
"5200",
"Atari 5200 SuperSystem",
"5200 SuperSystem",
"Atari SuperSystem",
"SuperSystem"
],
"developer": "Atari, Inc.",
"manufacturer": "Atari, Inc."
},
"Atari 7800": {
"id": "Atari 7800",
"name": "Atari 7800",
"altNames": [
"7800",
"Atari 7800 ProSystem",
"7800 ProSystem",
"Atari ProSystem",
"ProSystem"
],
"developer": "Atari Corporation",
"manufacturer": "Atari Corporation"
},
"Atari Jaguar": {
"id": "Atari Jaguar",
"name": "Atari Jaguar",
"altNames": [
"Jaguar"
],
"developer": "Atari Corporation",
"manufacturer": "IBM"
},
"Atari Jaguar CD": {
"id": "Atari Jaguar CD",
"name": "Atari Jaguar CD",
"altNames": [
"Jaguar CD",
"Jag CD"
],
"developer": "Atari Corporation",
"manufacturer": "Atari Corporation"
},
"Atari Lynx": {
"id": "Atari Lynx",
"name": "Atari Lynx",
"altNames": [
"Lynx"
],
"developer": "Atari Corporation, Epyx, Inc.",
"manufacturer": "Atari Corporation"
},
"Atari XEGS": {
"id": "Atari XEGS",
"name": "Atari XEGS",
"altNames": [],
"developer": "Atari",
"manufacturer": "Atari"
},
"ColecoVision": {
"id": "ColecoVision",
"name": "ColecoVision",
"altNames": [
"Coleco",
"Coleco Vision"
],
"developer": "Coleco Industries, Inc.",
"manufacturer": "Coleco Industries, Inc."
},
"Commodore 64": {
"id": "Commodore 64",
"name": "Commodore 64",
"altNames": [
"C64",
"C=64",
"CBM 64",
"VIC-64",
"C 64",
"CBM64",
"VIC 64",
"VIC64",
"Comm 64",
"Comm. 64",
"Comm64",
"Comodore 64",
"Commodore"
],
"developer": "Commodore Business Machines",
"manufacturer": "Commodore Business Machines"
},
"Mattel Intellivision": {
"id": "Mattel Intellivision",
"name": "Mattel Intellivision",
"altNames": [
"Intellivision"
],
"developer": "Mattel Electronics",
"manufacturer": "Mattel Electronics"
},
"Apple iOS": {
"id": "Apple iOS",
"name": "Apple iOS",
"altNames": [
"iOS",
"iPhone",
"iPad",
"iPod",
"iPod Touch"
],
"developer": "Apple",
"manufacturer": "Apple"
},
"Apple Mac OS": {
"id": "Apple Mac OS",
"name": "Apple Mac OS",
"altNames": [
"OSX",
"Mac OS X",
"Mac OSX",
"Mac",
"Mac OS"
],
"developer": "Apple",
"manufacturer": "Apple"
},
"Microsoft Xbox": {
"id": "Microsoft Xbox",
"name": "Microsoft Xbox",
"altNames": [
"X-box",
"MS Xbox",
"Microsoft X-box",
"MS X-box",
"Xbox"
],
"developer": "Microsoft Corporation",
"manufacturer": "Flextronics International Ltd."
},
"Microsoft Xbox 360": {
"id": "Microsoft Xbox 360",
"name": "Microsoft Xbox 360",
"altNames": [
"Xbox 360",
"360",
"MS Xbox 360"
],
"developer": "Microsoft Corporation",
"manufacturer": "Flextronics International Ltd., Foxconn Technology Group, Celestica Inc., Wistron Corporation"
},
"Microsoft Xbox One": {
"id": "Microsoft Xbox One",
"name": "Microsoft Xbox One",
"altNames": [
"Xbox One"
],
"developer": "Microsoft",
"manufacturer": "Microsoft"
},
"SNK Neo Geo Pocket": {
"id": "SNK Neo Geo Pocket",
"name": "SNK Neo Geo Pocket",
"altNames": [
"NeoGeo Pocket",
"NGP",
"Neo Geo Pocket",
"SNK Neo-Geo Pocket"
],
"developer": "SNK",
"manufacturer": "SNK"
},
"SNK Neo Geo Pocket Color": {
"id": "SNK Neo Geo Pocket Color",
"name": "SNK Neo Geo Pocket Color",
"altNames": [
"SNK Neo-Geo Pocket Color",
"Neo Geo Pocket Color",
"NeoGeo Pocket Color",
"NeoGeo Color",
"NGPC"
],
"developer": "SNK",
"manufacturer": "SNK"
},
"SNK Neo Geo AES": {
"id": "SNK Neo Geo AES",
"name": "SNK Neo Geo AES",
"altNames": [
"Neo Geo",
"Neo Geo Multi Video System",
"Neo Geo Advanced Entertainment System",
"MVS",
"AES",
"Multi Video System",
"Advanced Entertainment System",
"Neo Geo MVS",
"Neo Geo AES",
"NeoGeo MVS",
"NeoGeo AES",
"NeoGeo Multi Video System",
"NeoGeo Advanced Entertainment System",
"SNK Neo-Geo AES",
"SNK Neo-Geo MVS",
"SNK Neo Geo AES",
"SNK NeoGeo",
"NeoGeo"
],
"developer": "SNK",
"manufacturer": "SNK"
},
"Nintendo 3DS": {
"id": "Nintendo 3DS",
"name": "Nintendo 3DS",
"altNames": [
"3DS"
],
"developer": "Nintendo RED",
"manufacturer": "Nintendo, Foxconn"
},
"Nintendo 64": {
"id": "Nintendo 64",
"name": "Nintendo 64",
"altNames": [
"N64",
"Nintendo N64"
],
"developer": "Nintendo IRD",
"manufacturer": "Nintendo, Foxconn"
},
"Nintendo DS": {
"id": "Nintendo DS",
"name": "Nintendo DS",
"altNames": [
"Nintendo DSi",
"NDS",
"NDSi",
"DSi",
"DS"
],
"developer": "Nintendo",
"manufacturer": "Foxconn"
},
"Nintendo Entertainment System": {
"id": "Nintendo Entertainment System",
"name": "Nintendo Entertainment System",
"altNames": [
"NES",
"Nintendo",
"Famicom",
"FC",
"Nintendo NES",
"Nintendo Entertainment System (NES)"
],
"developer": "Nintendo R&D2",
"manufacturer": "Nintendo Co., Ltd."
},
"Nintendo Game Boy": {
"id": "Nintendo Game Boy",
"name": "Nintendo Game Boy",
"altNames": [
"Super Game Boy",
"Super GameBoy",
"Nintendo Super Gameboy",
"Game Boy",
"GameBoy",
"NGB",
"GB",
"Nintendo GameBoy",
"Nintendo GB",
"Nintendo Super Game Boy"
],
"developer": "Nintendo",
"manufacturer": "Nintendo"
},
"Nintendo Game Boy Advance": {
"id": "Nintendo Game Boy Advance",
"name": "Nintendo Game Boy Advance",
"altNames": [
"Game Boy Advance",
"GameBoy Advance",
"GBA",
"Nintendo GameBoy Advance",
"Nintendo GBA"
],
"developer": "Nintendo",
"manufacturer": "Nintendo"
},
"Nintendo Game Boy Color": {
"id": "Nintendo Game Boy Color",
"name": "Nintendo Game Boy Color",
"altNames": [
"Game Boy Color",
"GameBoy Color",
"GBC",
"Nintendo GameBoy Color",
"Nintendo GBC"
],
"developer": "Nintendo",
"manufacturer": "Nintendo"
},
"Nintendo GameCube": {
"id": "Nintendo GameCube",
"name": "Nintendo GameCube",
"altNames": [
"Nintendo Game Cube",
"NGC",
"GameCube",
"Game Cube",
"GCN"
],
"developer": "Nintendo",
"manufacturer": "Nintendo / Foxconn"
},
"Nintendo Virtual Boy": {
"id": "Nintendo Virtual Boy",
"name": "Nintendo Virtual Boy",
"altNames": [
"Virtual Boy",
"VirtualBoy",
"Nintendo VirtualBoy",
"NVB"
],
"developer": "Nintendo",
"manufacturer": "Nintendo"
},
"Nintendo Wii": {
"id": "Nintendo Wii",
"name": "Nintendo Wii",
"altNames": [
"Wii"
],
"developer": "Nintendo",
"manufacturer": "Foxconn"
},
"Nintendo Wii U": {
"id": "Nintendo Wii U",
"name": "Nintendo Wii U",
"altNames": [
"Wii U",
"WiiU"
],
"developer": "Nintendo",
"manufacturer": "Nintendo, Foxconn, Mitsumi"
},
"Ouya": {
"id": "Ouya",
"name": "Ouya",
"altNames": [],
"developer": "Ouya, Inc.",
"manufacturer": "Ouya, Inc."
},
"Philips CD-i": {
"id": "Philips CD-i",
"name": "Philips CD-i",
"altNames": [
"Philips CD-i (Compact Disc Interactive)",
"Compact Disc Interactive",
"Philips Compact Disc Interactive",
"Philips",
"CD-i"
],
"developer": "Philips",
"manufacturer": "Philips"
},
"Sega 32X": {
"id": "Sega 32X",
"name": "Sega 32X",
"altNames": [
"32X"
],
"developer": "Sega",
"manufacturer": "Sega"
},
"Sega CD": {
"id": "Sega CD",
"name": "Sega CD",
"altNames": [
"CD"
],
"developer": "Sega",
"manufacturer": "Sega"
},
"Sega Dreamcast": {
"id": "Sega Dreamcast",
"name": "Sega Dreamcast",
"altNames": [
"Dreamcast"
],
"developer": "Sega",
"manufacturer": "Sega"
},
"Sega Game Gear": {
"id": "Sega Game Gear",
"name": "Sega Game Gear",
"altNames": [
"Game Gear",
"GameGear"
],
"developer": "Sega",
"manufacturer": "Sega"
},
"Sega Genesis": {
"id": "Sega Genesis",
"name": "Sega Genesis",
"altNames": [
"Genesis",
"Mega Drive",
"MegaDrive",
"Sega MegaDrive",
"Sega Mega Drive"
],
"developer": "Sega Enterprises",
"manufacturer": "Sega Enterprises"
},
"Sega Master System": {
"id": "Sega Master System",
"name": "Sega Master System",
"altNames": [
"Master System",
"SMS"
],
"developer": "SEGA Enterprises Ltd.",
"manufacturer": "SEGA Enterprises Ltd."
},
"Sega Saturn": {
"id": "Sega Saturn",
"name": "Sega Saturn",
"altNames": [
"Saturn"
],
"developer": "Sega",
"manufacturer": "Sega, Victor, Samsung, Hitachi"
},
"Sinclair ZX Spectrum": {
"id": "Sinclair ZX Spectrum",
"name": "Sinclair ZX Spectrum",
"altNames": [
"ZX Spectrum",
"Spectrum",
"ZX"
],
"developer": "Sinclair Research",
"manufacturer": "Sinclair Research"
},
"Sony Playstation": {
"id": "Sony Playstation",
"name": "Sony Playstation",
"altNames": [
"Playstation",
"Play Station",
"Sony Play Station",
"PS1",
"PSX",
"PS",
"Sony PS1",
"Sony PSX",
"Sony PS"
],
"developer": "Sony Computer Entertainment",
"manufacturer": "Sony Computer Entertainment"
},
"Sony Playstation 2": {
"id": "Sony Playstation 2",
"name": "Sony Playstation 2",
"altNames": [
"Playstation 2",
"Play Station 2",
"Sony Play Station 2",
"PS2"
],
"developer": "Sony",
"manufacturer": "Sony"
},
"Sony Playstation 3": {
"id": "Sony Playstation 3",
"name": "Sony Playstation 3",
"altNames": [
"Playstation 3",
"Play Station 3",
"Sony Play Station 3",
"PS3"
],
"developer": "SCEI",
"manufacturer": "Sony EMCS, Foxconn, ASUSTeK"
},
"Sony Playstation 4": {
"id": "Sony Playstation 4",
"name": "Sony Playstation 4",
"altNames": [
"Playstation 4",
"Play Station 4",
"Sony Play Station 4",
"PS4"
],
"developer": "Sony",
"manufacturer": "Sony, Foxconn"
},
"Sony Playstation Vita": {
"id": "Sony Playstation Vita",
"name": "Sony Playstation Vita",
"altNames": [
"Playstation Vita",
"PS Vita",
"PSVita",
"Vita"
],
"developer": "Sony",
"manufacturer": "Sony"
},
"Sony PSP": {
"id": "Sony PSP",
"name": "Sony PSP",
"altNames": [
"PSP",
"Sony Playstation Portable",
"PlayStation Portable"
],
"developer": "Sony",
"manufacturer": "Sony"
},
"Super Nintendo Entertainment System": {
"id": "Super Nintendo Entertainment System",
"name": "Super Nintendo Entertainment System",
"altNames": [
"Super Nintendo",
"SNES",
"Super Nintendo (SNES)",
"Super NES",
"Super Famicom",
"SFC",
"Super Comboy",
"Comboy",
"Super Famicom",
"Nintendo SNES",
"Nintendo Super Famicom"
],
"developer": "Nintendo",
"manufacturer": "Nintendo"
},
"NEC TurboGrafx-16": {
"id": "NEC TurboGrafx-16",
"name": "NEC TurboGrafx-16",
"altNames": [
"NEC TurboGrafx-16",
"NEC PC Engine",
"PC Engine",
"NEC TurboGrafx 16",
"TurboGrafx 16 Entertainment SuperSystem",
"NEC TurboGrafx",
"TurboGrafx-16 Entertainment SuperSystem",
"TurboGrafx 16",
"TurboGrafx",
"TESS"
],
"developer": "NEC Corporation, Hudson Soft",
"manufacturer": "NEC Corporation, Hudson Soft"
},
"WonderSwan": {
"id": "WonderSwan",
"name": "WonderSwan",
"altNames": [
"Wonder Swan",
"Bandai WonderSwan"
],
"developer": "Bandai Co., Ltd.",
"manufacturer": "Bandai Co., Ltd."
},
"WonderSwan Color": {
"id": "WonderSwan Color",
"name": "WonderSwan Color",
"altNames": [
"Bandai WonderSwan Color",
"Wonder Swan Color"
],
"developer": "Bandai Co., Ltd.",
"manufacturer": "Bandai Co., Ltd."
},
"Magnavox Odyssey 2": {
"id": "Magnavox Odyssey 2",
"name": "Magnavox Odyssey 2",
"altNames": [
"Magnavox Odyssey²",
"Magnavox Odyssey ²",
"Odyssey 2",
"Odyssey²",
"Odyssey ²"
],
"developer": "Magnavox / Philips",
"manufacturer": "Magnavox / Philips"
},
"Fairchild Channel F": {
"id": "Fairchild Channel F",
"name": "Fairchild Channel F",
"altNames": [
"Channel F",
"Video Entertainment System",
"VES"
],
"developer": "Fairchild Semiconductor",
"manufacturer": "Fairchild Semiconductor"
},
"BBC Microcomputer System": {
"id": "BBC Microcomputer System",
"name": "BBC Microcomputer System",
"altNames": [
"Acorn BBC Micro",
"BBC Micro",
"BBC"
],
"developer": "Acorn Computers",
"manufacturer": "Acorn Computers"
},
"Memotech MTX512": {
"id": "Memotech MTX512",
"name": "Memotech MTX512",
"altNames": [
"MTX512"
],
"developer": "Memotech",
"manufacturer": "Memotech"
},
"Camputers Lynx": {
"id": "Camputers Lynx",
"name": "Camputers Lynx",
"altNames": [
"Camputers"
],
"developer": "Camputers",
"manufacturer": "Camputers"
},
"Tiger Game.com": {
"id": "Tiger Game.com",
"name": "Tiger Game.com",
"altNames": [
"Game.com",
"Tiger Game com",
"TGame com"
],
"developer": "Tiger Electronics",
"manufacturer": "Tiger Electronics"
},
"Oric Atmos": {
"id": "Oric Atmos",
"name": "Oric Atmos",
"altNames": [
"Atmos",
"Tangerine Oric"
],
"developer": "Tangerine Computer Systems",
"manufacturer": "Tangerine Computer Systems"
},
"Acorn Electron": {
"id": "Acorn Electron",
"name": "Acorn Electron",
"altNames": [
"Acorn Computers Electron",
"Electron"
],
"developer": "Acorn Computers",
"manufacturer": "Acorn Computers"
},
"Dragon 32/64": {
"id": "Dragon 32/64",
"name": "Dragon 32/64",
"altNames": [
"Dragon",
"Dragon 32",
"Dragon 64",
"Dragon 32-64",
"Dragon Data Dragon"
],
"developer": "Dragon Data",
"manufacturer": "Dragon Data"
},
"Entex Adventure Vision": {
"id": "Entex Adventure Vision",
"name": "Entex Adventure Vision",
"altNames": [
"Adventure Vision"
],
"developer": "Entex Industries",
"manufacturer": "Entex Industries"
},
"APF Imagination Machine": {
"id": "APF Imagination Machine",
"name": "APF Imagination Machine",
"altNames": [
"Imagination Machine",
"APF",
"APF-M1000"
],
"developer": "APF Electronics",
"manufacturer": "APF Electronics"
},
"Mattel Aquarius": {
"id": "Mattel Aquarius",
"name": "Mattel Aquarius",
"altNames": [
"Aquarius"
],
"developer": "Radofin",
"manufacturer": "Radofin"
},
"Jupiter Ace": {
"id": "Jupiter Ace",
"name": "Jupiter Ace",
"altNames": [
"Ace",
"Jupiter"
],
"developer": "Jupiter Cantab",
"manufacturer": "Jupiter Cantab"
},
"SAM Coupé": {
"id": "SAM Coupé",
"name": "SAM Coupé",
"altNames": [
"Coupé",
"SAM Coupe",
"Coupe",
"MGT SAM Coupe"
],
"developer": "MGT",
"manufacturer": "MGT"
},
"Enterprise": {
"id": "Enterprise",
"name": "Enterprise",
"altNames": [
"Enterprise 64",
"Enterprise 128",
"Flan",
"Elan"
],
"developer": "Intelligent Software",
"manufacturer": "Enterprise Computers"
},
"EACA EG2000 Colour Genie": {
"id": "EACA EG2000 Colour Genie",
"name": "EACA EG2000 Colour Genie",
"altNames": [
"EACA",
"Colour Genie",
"EG2000",
"EACA EG2000",
"EG2000 Colour Genie",
"EG2000 Color Genie",
"Color Genie"
],
"developer": "EACA",
"manufacturer": "EACA"
},
"Acorn Archimedes": {
"id": "Acorn Archimedes",
"name": "Acorn Archimedes",
"altNames": [
"Archimedes",
"Acorn Computers Archimedes"
],
"developer": "Acorn Computers",
"manufacturer": "Acorn Computers"
},
"Tapwave Zodiac": {
"id": "Tapwave Zodiac",
"name": "Tapwave Zodiac",
"altNames": [
"Zodiac",
"Zodiac 1",
"Zodiac 2",
"Tapwave Zodiac 1",
"Tapwave Zodiac 2"
],
"developer": "Tapwave",
"manufacturer": "Tapwave"
},
"Atari ST": {
"id": "Atari ST",
"name": "Atari ST",
"altNames": [],
"developer": "Atari",
"manufacturer": "Atari"
},
"Bally Astrocade": {
"id": "Bally Astrocade",
"name": "Bally Astrocade",
"altNames": [
"Astrocade",
"Bally Home Library Computer",
"Bally Professional Arcade",
"Professional Arcade"
],
"developer": "Midway",
"manufacturer": "Bally, Astrovision"
},
"Magnavox Odyssey": {
"id": "Magnavox Odyssey",
"name": "Magnavox Odyssey",
"altNames": [
"Odyssey"
],
"developer": "Magnavox",
"manufacturer": "Magnavox"
},
"Emerson Arcadia 2001": {
"id": "Emerson Arcadia 2001",
"name": "Emerson Arcadia 2001",
"altNames": [
"Emerson Arcadia",
"Arcadia",
"Arcadia 2001"
],
"developer": "Emerson Radio",
"manufacturer": "Emerson Radio"
},
"Sega SG-1000": {
"id": "Sega SG-1000",
"name": "Sega SG-1000",
"altNames": [
"SG-1000",
"Sega Game 1000",
"SG1000",
"Sega SG1000"
],
"developer": "Sega",
"manufacturer": "Sega"
},
"Epoch Super Cassette Vision": {
"id": "Epoch Super Cassette Vision",
"name": "Epoch Super Cassette Vision",
"altNames": [
"Super Cassette Vision",
"SCV"
],
"developer": "Epoch",
"manufacturer": "Epoch"
},
"Microsoft MSX": {
"id": "Microsoft MSX",
"name": "Microsoft MSX",
"altNames": [
"MSX 2",
"MSX 2+",
"MSX Laserdisc",
"MSX"
],
"developer": "Microsoft",
"manufacturer": "Various"
},
"MS-DOS": {
"id": "MS-DOS",
"name": "MS-DOS",
"altNames": [
"DOS",
"Microsoft MS-DOS",
"Microsoft DOS",
"PC DOS",
"PC-DOS",
"IBM DOS"
],
"developer": "Microsoft",
"manufacturer": "IBM"
},
"Windows": {
"id": "Windows",
"name": "Windows",
"altNames": [
"Microsoft Windows",
"Win32",
"Win16",
"Win64",
"Windows 95",
"Windows 98",
"Windows XP",
"Windows 2000",
"Windows ME",
"Windows Vista",
"Windows 7",
"Windows 8",
"Windows 8.1",
"Windows 10",
"Windows 3.1",
"Windows 3.11",
"Windows 3.0",
"Microsoft Windows 95",
"Microsoft Windows 98",
"Microsoft Windows XP",
"Microsoft Windows 2000",
"Microsoft Windows ME",
"Microsoft Windows Vista",
"Microsoft Windows 7",
"Microsoft Windows 8",
"Microsoft Windows 8.1",
"Microsoft Windows 10",
"Microsoft Windows 3.1",
"Microsoft Windows 3.11",
"Microsoft Windows 3.0",
"PC"
],
"developer": "Microsoft"
},
"Web Browser": {
"id": "Web Browser",
"name": "Web Browser",
"altNames": [
"Web",
"Browser",
"Web Games",
"Browser Games",
"Internet",
"Internet Games",
"Chrome",
"Firefox",
"Internet Explorer"
]
},
"Sega Model 2": {
"id": "Sega Model 2",
"name": "Sega Model 2",
"altNames": [
"Model 2"
],
"developer": "Sega",
"manufacturer": "Sega"
},
"Namco System 22": {
"id": "Namco System 22",
"name": "Namco System 22",
"altNames": [
"System 22"
],
"developer": "Evans & Sutherland",
"manufacturer": "Namco"
},
"Sega Model 3": {
"id": "Sega Model 3",
"name": "Sega Model 3",
"altNames": [