forked from detain/skyscraper
-
Notifications
You must be signed in to change notification settings - Fork 13
/
tgdb_developers.json
8389 lines (8389 loc) · 246 KB
/
tgdb_developers.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
{
"142": "?",
"9916": ".dat",
"2": ".theprodukkt",
"9898": "[adult swim] games",
"9899": "[bracket]games",
"9900": "[erka:es]",
"10472": "[RON]",
"9901": "][ Games Inc",
"145": "@nifty",
"10341": "~JV~",
"3": "07th Expansion",
"4": "1-Pup Games",
"5": "10 out of 10",
"7": "1001 Software Development",
"8": "10Ants Hill",
"6": "10Tacle Studios AG",
"9": "10tons",
"10": "10tons Ltd.",
"11": "11 Bit Studios",
"10470": "1337 Game Design AB",
"13": "13AM Games",
"10453": "14° East",
"15": "17-Bit",
"16": "1985 Alternativo",
"17": "1C Company",
"19": "1C Wireless",
"20": "1C-Avalon",
"21": "1C-Softclub",
"23": "1C: Ino-Co",
"22": "1C: Maddox Games",
"25": "1st Playable Productions",
"27": "1st Team Exit",
"28": "2 Dawn Games Inc",
"29": "2015, Inc.",
"30": "20th Century Fox",
"31": "21st Century Entertainment",
"33": "221B Software Development",
"32": "22Cans",
"37": "24 Caret Games",
"39": "2D Boy",
"40": "2D-Retroperspectives",
"41": "2DEngine",
"43": "2Dream",
"10068": "2K Australia",
"45": "2K Boston",
"46": "2K China",
"47": "2K Czech",
"44": "2K Games",
"49": "2K Marin",
"51": "2K Play",
"52": "2K Shanghai",
"54": "2K Sports",
"55": "2n Productions",
"56": "2Play",
"57": "2SD",
"58": "2WG Media, Inc.",
"59": "2XL Games",
"60": "3 Minute Games, LLC",
"61": "3 Sprockets",
"62": "3000AD, Inc.",
"63": "343 Industries",
"65": "34BigThings",
"68": "369 Interactive",
"9906": "38 Studios",
"70": "39 Steps",
"71": "3909 LLC",
"72": "3D Ages",
"73": "3D Lights",
"74": "3D Realms Entertainment",
"10620": "3D2 Entertainment",
"76": "3d6 Games, Inc.",
"10773": "3DClouds",
"10734": "3Division",
"77": "3DO",
"78": "3f Interactive",
"79": "3G Studios, Inc.",
"80": "3j",
"81": "3Romans LLC",
"82": "3T Games",
"83": "3Vision Games",
"84": "4 Dimension Games",
"87": "48h Studio",
"88": "49Games GmbH",
"90": "4A Games",
"91": "4A Games Limited",
"92": "4CLRC Soft",
"93": "4D Rulers Software, Inc.",
"85": "4HEAD Studios",
"95": "4HIT LTD",
"96": "4J Studios",
"99": "4Kids Technology, Inc.",
"100": "4mm Games",
"86": "4Play/Scatologic",
"102": "4sdk",
"10146": "4X Studios",
"103": "5 Ants",
"104": "5 Bits Games",
"105": "5 Lives Studios",
"106": "5000ft, Inc.",
"107": "505 Games",
"111": "576 KByte",
"112": "5pb.",
"115": "5th Cell Media",
"116": "64G",
"117": "7 Raven Studios",
"118": "7 Studios",
"119": "773",
"120": "7GAMES",
"122": "7Levels",
"127": "7th Chord",
"124": "7th Level Inc.",
"123": "7th Road",
"126": "7th Sense s.r.l.",
"10315": "8-4, Ltd.",
"128": "8bits Fanatics",
"129": "8ing/Raizing",
"131": "8monkey Labs",
"10428": "9003",
"133": "91Act Inc.",
"134": "93 Games Studio",
"137": "989 Sports",
"135": "989 Studios",
"140": "99Vidas",
"141": "9heads Game Studios",
"146": "A Sharp, LLC",
"147": "A Squared",
"151": "A-Max",
"152": "A-Wave",
"153": "A.C.G.",
"154": "A.C.R.O.N.Y.M. Games",
"155": "A.I Co., Ltd.",
"158": "A.I. Design",
"159": "A.R. Software",
"160": "A.R.E. System",
"148": "A&F Software Ltd.",
"161": "A1 Games",
"163": "A2M",
"165": "Aackosoft",
"166": "Aardman Animations",
"167": "Aardvark Software",
"169": "Aaron Curtis",
"170": "Aaronix",
"171": "Aatlantis",
"172": "Abalome",
"173": "Abbey Games",
"10687": "Abel",
"174": "Abersoft",
"175": "Able",
"176": "Able Corp. Ltd.",
"177": "ABM",
"178": "ABM Electronics",
"10473": "Abogado Powers",
"179": "Abrakam SA",
"180": "Abrasco Ltd.",
"181": "Absolute Entertainment",
"182": "Abstraction Games",
"183": "Abstrax",
"184": "Abylight",
"10015": "abylight S.L.",
"186": "ACA Soft, S.L.",
"187": "Academysoft-Elorg",
"188": "Accent Media Productions",
"189": "Access",
"190": "Access Co.",
"191": "Access Games",
"192": "Access Software, Inc.",
"194": "Acclaim",
"195": "Acclaim Cheltenham",
"196": "Acclaim Entertainment",
"197": "Acclaim Entertainment, Inc.",
"199": "Acclaim Studios Austin",
"200": "Acclaim Studios Cheltenham",
"201": "Acclaim Studios London",
"202": "Acclaim Studios Manchester",
"9908": "Acclaim Studios Teesside, Ltd.",
"203": "Accolade",
"204": "Accolade, Inc.",
"205": "Accursed Toys",
"206": "Ace International",
"207": "ACE Software",
"209": "ACE Team",
"9909": "Achim Volkers",
"213": "Acid Nerve",
"214": "Acid Software",
"10354": "Acid Wizard Studio",
"215": "Ackkstudios",
"10816": "Acme Gamestudio",
"216": "Acme Interactive",
"9911": "Acme Interactive, Inc.",
"218": "Acom",
"219": "ACONY Games",
"220": "Acornsoft",
"221": "ACQUIRE",
"223": "Acro Studio",
"224": "Act Japan",
"225": "Actalogic",
"226": "Action Forms",
"227": "Action Graphics",
"228": "Action Software",
"229": "Actionsoft",
"230": "Actionware Corporation",
"10474": "Active",
"231": "Active Enterprises",
"232": "Active Gaming Media",
"233": "Active Zone Group",
"234": "Activision",
"242": "AD Dinamic",
"243": "ad Games",
"10454": "Adam Atomic",
"10385": "Adam Oldham",
"245": "Adam Ryland",
"246": "Adam Saltsman",
"10783": "AdamVision Studios",
"247": "Adatek",
"248": "Addendum Games",
"249": "Addict",
"250": "Addictive Games Ltd",
"251": "Adeline Software International",
"253": "Adept Software",
"254": "Adhesive Games",
"256": "ADK",
"257": "Adrenalin Entertainment",
"260": "Adrenium Games",
"262": "Adrian Page",
"263": "Aduge Studio",
"264": "Advance Communication Company",
"266": "Advance Software",
"268": "Advanced Microcomputer Systems",
"269": "Advanced Productions",
"270": "Adventure International",
"271": "Adventure Soft Publishing Ltd.",
"273": "AEA",
"274": "Aegis Games",
"275": "Aegis Interactive Software",
"276": "Aeon Electronic Entertainment, Inc.",
"279": "Aeria Games & Entertainment",
"280": "Aesir Interactive",
"10729": "Aesir Interactive GmbH",
"281": "Aetherbyte",
"282": "Afega",
"10475": "Affect Boom",
"283": "Affect Co.,Ltd",
"10819": "Afterburner Studios",
"285": "AG Corp.",
"286": "Agatsuma Entertainment",
"288": "AGD Interactive",
"289": "Age",
"290": "Agenda",
"293": "Agetec",
"10826": "Aggro Crab Games",
"294": "Agharta Studio",
"295": "AHEARTFULOFGAMES",
"296": "AI",
"297": "AI Factory",
"298": "AIA",
"10437": "AIC",
"10476": "AIC Spirits",
"299": "Aicom",
"300": "Aiky",
"10477": "Ail-Soft",
"301": "AIM",
"302": "Airship Syndicate",
"303": "Airship Syndicate Entertainment",
"304": "Airtight Games",
"306": "Airwalk Studios",
"307": "Aisystem Tokyo",
"309": "Ajinomoto",
"310": "Akabei Soft2",
"10478": "AKAI",
"311": "Akaoni Studio",
"312": "Akella",
"9917": "AKI Corporation",
"314": "AKI USA, Inc.",
"319": "Aksys Games",
"323": "Al Alamiah",
"324": "Al Baker & Associates",
"9918": "Al Duffy",
"327": "Al Rubin",
"328": "Alain Savetier",
"10459": "Alan Hazelden",
"10732": "Alan Hazelden",
"330": "Alan Miller",
"331": "Alawar Entertainment Inc.",
"334": "Alaware Games",
"335": "Albert Hebert",
"336": "Alcachofa Soft",
"337": "Alcatraz",
"338": "Alchemist",
"339": "Alcom",
"340": "Alda Games",
"341": "Aldorlea Games",
"342": "Alec DeMeo",
"343": "Alekmaul",
"344": "Aleksi Eeben",
"345": "Alex Herbert",
"346": "Alexander Bruce",
"347": "Alexandr Oresco",
"348": "Alexandre Duret-Lutz",
"349": "Alexandria",
"350": "Alexey Bokulev",
"9919": "Alexey Davydov",
"352": "Alexey Pajitnov",
"353": "Alf Yngve",
"354": "Alfa System",
"10617": "ALICE IN DISSONANCE",
"358": "Alice Soft",
"359": "Alientrap",
"363": "Alim - Gumi",
"364": "Alkemi Games",
"365": "Alkterios Games",
"366": "All Seeing Eye Games",
"367": "Allgraf",
"10150": "Allied",
"368": "Allied Leisure",
"362": "Alligata Software Ltd.",
"372": "Allods Team",
"374": "Allumer, Ltd.",
"376": "Almanic Corp.",
"379": "Almost Human Games",
"380": "AlpesSoft",
"10479": "Alpha (accent)",
"381": "Alpha Denshi Co., Ltd.",
"10296": "Alpha Unit",
"10480": "Alpha-Beta",
"387": "Alpha-Unit",
"389": "AlphaDream",
"390": "Alphadream Corporation",
"391": "Alpine Studios",
"392": "Alta",
"393": "ALTAR Games",
"395": "Alten8",
"10651": "Alter Games",
"10702": "Altered Matter",
"10390": "Alternative Shift",
"396": "Alternative Software Ltd.",
"398": "Alti",
"9923": "Altron",
"399": "Altron Corporation",
"402": "ALU",
"403": "Alvaro Mateos Herrera",
"404": "Alvion Co., Ltd",
"10481": "AM Annex",
"406": "AM R&D",
"407": "AM R&D Dept. #2",
"409": "AM&M",
"412": "AM2R Team",
"414": "Amanita Design",
"416": "Amaranth Games",
"10710": "Amaterasu Software",
"9914": "Amaze Entertainment",
"417": "Amaze Entertainment, Inc.",
"419": "Amazing Media",
"420": "Amazing Studios",
"421": "Amble",
"422": "Ambo Computer Co",
"423": "Ambrella",
"424": "AMC",
"425": "Amccus",
"426": "Amedio",
"427": "Amenip",
"428": "American Eagle Software",
"429": "American Game Cartridges",
"9924": "American Game Cartridges (et. al)",
"431": "American Interactive Media",
"432": "American Laser Games, Inc.",
"434": "American Sammy",
"9959": "American Softworks",
"435": "American Softworks Corporation",
"436": "American Technos",
"437": "American Video Entertainment",
"438": "AmeriCorp",
"439": "Amiga",
"440": "Amnesty Design",
"10762": "Amoeba Software",
"441": "Ample Software",
"442": "Amplitude Studios",
"444": "Amsoft",
"446": "Amstar",
"447": "Amtex",
"448": "Amulware",
"449": "Amuse",
"450": "Amuse World Corp.",
"451": "Amusement Vision, Ltd.",
"453": "Amuze",
"454": "AMZY",
"455": "Analgesic Productions",
"456": "Analyrical",
"457": "Anarchy Enterprises",
"10736": "Anarteam",
"458": "Anchor, Inc.",
"460": "Ancient",
"463": "Anco Software Ltd.",
"468": "And Avoid Panic By",
"469": "Andamiro",
"470": "Andamiro Co., Ltd.",
"471": "AndNow Interactive",
"9925": "Andre Chagas Silva",
"473": "Andrea Mazzini",
"474": "Andreas Gustafsson",
"475": "Andreas Kemnitz",
"10139": "Andreas Pedersen",
"476": "Andreas Varga",
"9927": "Andres Roberto Samudio Monro",
"479": "Andrew Braybrook",
"480": "Andrew Carter",
"481": "Andrew Darovich",
"482": "Andrew Davie",
"483": "Andrew F Holdroyd",
"9935": "Andrew Gilmour",
"485": "Andrew Gosling",
"486": "Andrew Hutchings",
"487": "Andrew Kolesnyk",
"488": "Andrew Morrish",
"10236": "Andrew Oliver",
"10120": "Andrew P. Deakin",
"9936": "Andrew Rogers",
"490": "Andrew Spencer",
"491": "Andrew Spencer Studios",
"492": "AndrewWatt96",
"493": "Andrey 'Zed' Zaikin",
"494": "Andromeda Software",
"495": "Andy Finkel",
"9938": "Andy Green",
"497": "Andy Noble",
"498": "Andy Sum",
"499": "Andy Walker, Paul Hodgson",
"10230": "Andy Williams",
"500": "ANex",
"501": "Angel",
"503": "Angel Studios",
"504": "Angelsoft, Inc.",
"506": "Angry Mob Games",
"508": "Anima Project",
"509": "Animation Arts",
"510": "Animation F/X",
"511": "Animation Magic",
"512": "Animoca XL",
"513": "Anino Entertainment",
"514": "Anirog Software",
"517": "Anisoptera Games",
"518": "Ankama Games",
"521": "Anma",
"522": "Another",
"10772": "Another Axiom",
"523": "Anozor S.A.R.L.",
"524": "Answer Software",
"526": "Ant Software",
"527": "Antagonist",
"528": "Anthony Case",
"529": "Anthony Crowther",
"530": "Anthony J. Clarke",
"531": "Anthony Maro",
"9926": "Anthony Septim",
"9941": "Anthony Taglione",
"10670": "Anti Gravity Game Studio",
"533": "AntonioND",
"534": "Antony Crowther",
"536": "Anuman Interactive",
"10408": "Anvil Game Studios",
"537": "Any Channel",
"10707": "Aoga Tech",
"538": "Aorn",
"539": "Apache Software Limited",
"540": "Ape Studios",
"541": "Apex Computer Productions",
"544": "Apex Designs",
"545": "Apex Software",
"546": "APh Technological Consulting",
"10482": "Aplix Corporation",
"549": "APLUS Co., Ltd.",
"550": "Apogee Software, Ltd.",
"554": "Apollo, Inc.",
"556": "ApolloSoft",
"557": "app2fun",
"558": "Appaloosa Interactive",
"560": "Appeal S.A.",
"10355": "Application Systems Heidelberg",
"561": "Applied Systems Engineering Inc.",
"562": "Applied Systems Knowledge Ltd.",
"563": "Appmania",
"564": "Aprinet",
"565": "AQ Interactive",
"566": "Aqarius",
"567": "Aqua Pacific Ltd.",
"9945": "Aqua Style",
"570": "Aquaplus",
"573": "Aquaslash & Pals",
"574": "AquaSystem Co.",
"575": "Aquiris Game Studio",
"576": "Aquria",
"578": "Arc Developments",
"10332": "Arc Entertainment",
"10061": "ARC System Works",
"577": "Arc System Works Co., Ltd.",
"10262": "Arc SystemWorks",
"586": "Arcade Distillery",
"587": "Arcade Machine",
"588": "Arcade Moon",
"589": "Arcade Zone Ltd.",
"591": "Arcadia",
"592": "Arcadia Corporation",
"593": "Arcadia S.A.",
"594": "Arcadia Systems, Inc.",
"597": "Arcana Software Limited",
"598": "Arcane Entertainment Ltd.",
"599": "Arcane Kids",
"600": "Arcanum Computing",
"601": "Arcen Games",
"604": "Arch and The Blind Archer",
"605": "Archer MacLean",
"606": "Archive Entertainment",
"607": "Arctic Anteater",
"608": "Arena Graphics",
"609": "ArenaNet",
"610": "Argent",
"611": "Argo Games",
"612": "Argonaut Games",
"618": "Argus Designs",
"619": "Argus Press Software Ltd.",
"10483": "Ariadne",
"622": "Arika Co., Ltd.",
"625": "Ariolasoft",
"626": "Ariolasoft UK",
"627": "Aristocrat",
"10723": "ARKade Game",
"10722": "ARKage Game",
"628": "Arkane Studios SA",
"631": "Arkedo Studio",
"633": "ARKOS",
"634": "Armature Studio",
"635": "Armenia Ltd.",
"637": "Arnauld Chavallier",
"638": "Aroma",
"9949": "Aron Nieminen",
"640": "Arrowhead Game Studios",
"642": "Arsys Software",
"644": "Art & Magic",
"643": "ART Co., Ltd.",
"10397": "Art in Heart",
"10737": "Art of Dreams",
"10261": "Art SEDIC",
"650": "Art Skiles",
"651": "Artdink",
"657": "Artech Digital Entertainments, Inc.",
"653": "Artech Studios",
"660": "Artefacts Studio",
"661": "Artefacts Studios",
"662": "Artematica",
"663": "ArtePiazza",
"664": "Artery Studios",
"665": "ArtGame",
"666": "Artic",
"667": "Artifact Studio",
"668": "Artifex Mundi",
"671": "Artifice Studios",
"672": "Artificial Hair Bros.",
"670": "Artificial Mind & Movement",
"676": "Artificial Studios",
"677": "Artillery",
"10790": "Artisan Studios",
"678": "Artix Entertainment",
"679": "Artnumeris",
"680": "Artogon Games",
"681": "Artoon Co., Ltd.",
"683": "Artplant",
"684": "Artronic Limited",
"685": "ArturGames",
"686": "Artworx Software Company",
"687": "Aruze Corp.",
"689": "Arzest",
"690": "ASCARON Entertainment GmbH",
"694": "ASCII",
"695": "ASCII Corporation",
"10222": "ASCII Entertainment",
"696": "ASCII Entertainment Software, Inc.",
"10423": "ASCII Something Good",
"700": "Asciiware",
"701": "Ascon",
"702": "Asder",
"703": "Ashby Computers and Graphics Ltd.",
"705": "Asixa",
"706": "ASK Co. Ltd.",
"709": "ASK Kodansha",
"10387": "Askiisoft",
"713": "Asmik Ace Entertainment",
"712": "Asmik Corp. of America",
"720": "Asobo",
"721": "Asobo Studio",
"722": "Aspect Co. Ltd.",
"10339": "Aspyr",
"10314": "Aspyr Media",
"725": "Aspyr Media, Inc.",
"731": "Asteroid Base",
"733": "Astral Software",
"734": "ASTRO PORT",
"735": "Astrocade",
"736": "Astroll",
"737": "Astronomic Games",
"738": "Astrosaurus Games",
"739": "Astrovision",
"740": "Astrum Nival",
"741": "Asuka Technologies",
"742": "Asylum Entertainment Ltd.",
"744": "Asylum Studios",
"745": "Asymmetric",
"746": "ata Design Interactive",
"748": "Atari",
"1": "Atari Games",
"755": "AtariAge",
"756": "Atarisoft",
"757": "AtariVox",
"758": "Ateam Inc.",
"759": "Atelier 801",
"760": "Atelier Designs",
"747": "Atelier Double",
"762": "Atelier Double Co. Ltd.",
"763": "Atelier-Sai",
"764": "Athena Co., Ltd.",
"766": "Athletic Design AB",
"9947": "Atlus",
"767": "Atlus Co., Ltd.",
"770": "Atlus Company, Limited",
"771": "Atlus U.S.A., Inc.",
"778": "Atod AB",
"781": "Atomic Elbow",
"782": "Atomic Games",
"783": "Atomic Motion",
"784": "Atomic Planet Entertainment Limited",
"788": "Atomicom Limited",
"789": "AtomicTorch Studio",
"790": "AtomTeam",
"791": "Atooi",
"792": "Atreid Concept SA",
"9952": "Atsushi Taniguchi",
"795": "Attention to Detail Limited",
"798": "Attic Entertainment Software GmbH",
"800": "Attila Bird",
"801": "Attractive Games",
"802": "ATW USA",
"803": "Atwoods Studios",
"804": "Audio Visual Magic",
"805": "Audio Visuellen Medien",
"806": "Audiogenic Software Ltd.",
"810": "Auran",
"811": "Auran Games",
"812": "Aurelien Regard",
"813": "Auroch Digital",
"814": "Aurora44",
"815": "Automata U.K. Limited",
"9954": "Autumn Moon Entertainment",
"817": "AV artisan",
"818": "Avalanche",
"819": "Avalanche Software LLC",
"824": "Avalanche Studios",
"828": "Avallon Alliance Ltd.",
"829": "Avalon Hill",
"830": "Avalon Interactive",
"831": "Avalon Style Entertainment",
"832": "Avanquest",
"834": "Avantgardistic Arts",
"835": "Aventuras AD",
"836": "Avion",
"837": "Avit",
"838": "AVM",
"10835": "Awaceb",
"839": "AWE Games",
"842": "AWE Productions, Inc.",
"844": "Awesome Developments",
"845": "Awesome Games Studio",
"846": "Awesome Play Ltd",
"847": "Awesome Productions",
"843": "Awesome Studios",
"849": "AwesomeBlade",
"850": "Awfully Nice Studios",
"851": "Awkoker Games",
"852": "Axe Eel Games",
"853": "Axela",
"854": "Axelay",
"855": "Axes Art Amuse",
"856": "Axis Entertainment",
"857": "Axis Komputerkunst",
"858": "Axlon",
"859": "Axolot Games",
"860": "AXYOS GAMES TEAM",
"10053": "Ayyo Games",
"861": "Azeroth, Inc.",
"862": "Azuma",
"863": "Azure",
"864": "b-Alive",
"865": "B-Factory",
"10770": "B-Type",
"866": "B.B. Studio",
"868": "B.I.T.S., Ltd.",
"870": "B.U.G.",
"871": "BABYLON",
"872": "Babylon Software",
"873": "Backbone Charlottetown",
"874": "Backbone Emeryville",
"875": "Backbone Entertainment",
"878": "Backbone Vancouver",
"879": "Backs Electronic Publishing",
"10356": "Backwoods Entertainment",
"880": "Bacon Bandit Games",
"10404": "Bad Seahorse",
"881": "Bad2theBone Studio",
"882": "Badland Games",
"883": "Baggy Cat Ltd",
"10484": "Bahamut",
"10681": "Baked Games S.A.",
"10795": "Balan Company",
"884": "Balanced Alternative Techniques",
"885": "Ballistic",
"9957": "Bally",
"886": "Bally Mfg. Corp.",
"890": "Bally Midway Mfg.",
"891": "Bally Sente",
"895": "BAM! Entertainment, Inc.",
"898": "Bamtang",
"899": "Banana Development",
"903": "Bandai America, Inc.",
"900": "Bandai Co., Ltd.",
"902": "Bandai Namco Entertainment",
"911": "Bandai Shinsei",
"912": "Bandai Visual",
"916": "Bandit",
"9958": "Banpresto",
"917": "Banpresto Co., Ltd.",
"924": "Barking Dog Studios",
"925": "Barking Lizards Technologies",
"923": "Barko Corp",
"928": "Barnhouse Effect Co., Ltd",
"930": "Baroque Decay",
"931": "Baroque Gaming",
"932": "Bart van Velzen (Norakomi)",
"933": "Bartosz Bialek",
"934": "Basaltic Studio",
"10025": "Base Camp Films",
"935": "Basecamp Games",
"936": "BaseSon",
"937": "Basilisk Games",
"938": "Bastian Schick",
"939": "Batovi Games Studio",
"940": "Batterystaple Games",
"941": "BattleBorne Entertainment",
"943": "Battleborne Entertainment, 5000ft",
"944": "Battlegoat Studios",
"945": "Battlestate Games",
"946": "Baudville",
"947": "BBC Multimedia",
"948": "BC Verlags und Medien",
"949": "Be Rad Entertainment",
"10442": "Be Top",
"67": "Beam Software",
"955": "Beamdog",
"956": "BeamNG",
"957": "Bear's Corporation",
"958": "Beast",
"959": "Beast Games",
"10673": "Beat Games",
"960": "Beatnik Games",
"961": "Beatshapers",
"962": "BEATSHAPERS LTD.",
"963": "Beautiful Game Studios",
"964": "Beautiful Glitch",
"965": "Beavis-Soft",
"966": "BEC Co., Ltd.",
"970": "Beck-Tech",
"971": "Bedlam Games",
"972": "Bedtime Digital Games",
"973": "Bee Tribe",
"974": "Bee-Oh",
"975": "Beemov",
"976": "Beenox Studios",
"978": "Beep Games Inc.",
"979": "Beep Industries",
"980": "Beethoven & Dinosaur",
"981": "BeeWorks Co., Ltd.",
"984": "Behavior Interactive",
"986": "Behaviour Digital Inc.",
"985": "Behaviour Interactive",
"989": "Behind the Stone",
"990": "Behold Studios",
"10485": "Bell",
"10486": "Bell Corporation",
"991": "Bell-Fruit",
"992": "Bemani",
"9969": "Ben Daglish",
"10005": "Ben Ibach",
"993": "Ben Johnson",
"994": "Ben Larson",
"995": "Bend Studio",
"10733": "Benjamin Davis",
"996": "Benjamin Rivers",
"997": "Benjamin Rivers Inc",
"998": "Benny Schmidt",
"999": "Bergsala Lightweight",
"1000": "Berkeley Softworks",
"1001": "Berkeley Systems, Inc.",
"10133": "Bernie Drummond",
"1003": "Berserk Games",
"1004": "Best",
"1005": "Best Ever Games",
"1006": "Best Media",
"1007": "Best Way",
"1008": "Bethesda",
"1009": "Bethesda Game Studios",
"1010": "Bethesda Softworks",
"1012": "Betop",
"1013": "Bewesoft",
"10797": "BeXide Inc.",
"1014": "Beyond",
"1015": "Beyond Games",
"1016": "Beyond Reality Games",
"1018": "Beyond Software, Inc.",
"1020": "BFM",
"1021": "BGS Development",
"1022": "Biart Company LLC",
"1023": "Biart Studio",
"1024": "Big Ant Studios",
"1025": "Big Ape Productions",
"1027": "Big Bad Wolf",
"1028": "Big Bang",
"1029": "Big Blaze",
"1030": "Big Blue Bubble Inc.",
"1032": "Big Boat Interactive",
"1033": "Big Club",
"1034": "Big Deez Productions",
"1035": "Big Fat Alien",
"1036": "Big Finish Games",
"1037": "Big Fish Games",
"1040": "Big Five Software",
"1041": "Big Grub",
"1042": "Big Head Games Limited",
"1043": "Big Head Games Ltd.",
"1044": "Big Huge Games",
"1045": "Big John Games",
"1046": "Big Red",
"1047": "Big Red Button Entertainment",
"1048": "Big Red Software",
"1049": "Big Red Software Ltd.",
"1050": "Big Red Software, Jon Cartwright, Derek Leigh Gilchrist, Ian Gray",
"1051": "Big Sandwich Games",
"1052": "Big Sky Software",
"1053": "Big Splash Games LLC",
"1055": "Big West",
"1056": "Bigben Games",
"1057": "Bigben Interactive",
"1058": "BigBig Studios",
"1061": "bignic - Dolphin Barn",
"1062": "Bignonia",
"10391": "Bigosaur",
"1063": "BigPark",
"1064": "BigSky Interactive",
"1065": "Bigzur Games",
"1066": "Bildgarden",
"1067": "Bill Budge",
"1068": "Bill Dunlevy",
"1069": "Bill Hindorff",
"1070": "Bill Kendrick",
"1071": "Bimboosoft",
"1072": "Binary 9 Studios",
"1073": "Binary Asylum",
"1074": "Binary Design, Ltd.",
"1079": "Binary Emotions",
"1080": "Binary Systems",
"1081": "Binary Takeover",
"1082": "Binary Vision",
"1083": "Binary Zoo",
"1085": "Bionic Games",
"1086": "BioWare",
"1089": "Biox",
"1090": "Bip Games",
"1091": "Birthday",
"10605": "Bishop Games",
"1092": "Bit Blot",
"1094": "Bit Corporation",
"10411": "Bit Kid",
"1097": "Bit Managers",
"1099": "Bit Town Inc.",
"1101": "Bit²",
"1102": "Bitbox Ltd.",
"1093": "bitComposer Entertainment AG",
"1106": "Bite Studios",
"1107": "Bite the Chili Productions",
"1108": "Bitfield",
"1109": "Bitfield GmbH",
"1110": "Bitfighter Industries",
"10642": "BitFinity",
"1111": "Bitfusion",
"1112": "BitJag",
"1113": "Bitmap Brother, The",
"1115": "Bitmap Brothers, The",
"1116": "Bitmap Bureau",
"1117": "Bitmap Bureau Ltd.",
"10708": "Bitmap Soft",
"1118": "Bitmasters, Inc.",
"1119": "BitMonster, Inc",
"1120": "BITS",
"1121": "Bits Corporation Limited",
"1124": "Bits Laboratory",
"1125": "Bits of Magic",
"1126": "Bits Productions",
"1098": "Bits Studios",
"1129": "BitStep",
"1130": "Bizarre",
"1131": "Bizarre Creations, Ltd.",
"1133": "Bizarre Developments",
"1134": "BL-Logic",
"10326": "Black Box",
"1135": "Black Box Games",
"10730": "Black Cactus",
"1137": "Black Element Software",
"1138": "Black Forest Games",
"1139": "Black Hammer Games",
"1140": "Black Hole Entertainment",
"1143": "Black Isle Studio",
"1142": "Black Isle Studios",
"1145": "Black Jacket Studios",
"1146": "Black Lantern Studios, Inc.",
"1150": "Black Legend",
"1151": "Black Magic Software",
"1152": "Black Market Games",
"1153": "Black Mesa Modification Team",
"1154": "Black Ops Entertainment",
"1158": "Black Pants Game Studio",
"1160": "Black Pearl",
"1161": "Black Rock Studio",
"1162": "Black Sea Studios",
"1163": "Black Sheep Studio",
"1164": "Black Ship Games",
"10664": "Black Tower Studios",
"1165": "Black Tusk Studios",
"10086": "Black Wing Foundation",
"1166": "Blackbird Interactive",
"1167": "Blackbone Entertainment",
"1168": "Blackfire Games",
"1169": "Blackland Games",
"1170": "Blackpowder Games",
"1171": "BlackSpot Entertainment",
"1172": "Blade Interactive",
"1174": "Blade Software",
"1175": "Blah Blah Woof Woof",
"1176": "Blam!",
"1177": "BlankMediaGames",
"1178": "Blast! Entertainment Ltd",
"1179": "Blastar",
"1180": "Blaster",
"1181": "Blaze Epic",
"1182": "Blazer & Co.",
"1183": "Blazer and DH Ninja",
"1184": "Blazing Badger",
"1185": "Blazing Griffin",
"1186": "Blazing Lizard",
"10682": "Bleem Company",
"10357": "Blender Games",
"1187": "Blender Institute",
"1188": "Blendo Games",
"1189": "Blind Squirrel Games",
"10377": "Blindflug Studios",
"1190": "BlinkWorks Media",
"1191": "Blit",
"1192": "Blit Software",
"1193": "Blitter Animations",
"1194": "BlitWorks",
"1195": "Blitz",
"1196": "Blitz Arcade",
"1197": "Blitz Game Studios",
"1198": "Blitz Games",
"1199": "Blitz Games Limited",
"1200": "Blitz Games Studio, Ltd.",
"1201": "Blitz Interactive Studios",
"1202": "Blizzard",
"1203": "Blizzard Entertainment",
"1204": "Blizzard Entertainment Inc.",
"1205": "Bloober Team SA",
"1207": "Bloodhouse",
"1208": "Bloodhouse Ltd.",
"1210": "Bloodlust Software",
"1211": "Blooming Buds Studio",
"1212": "Blowfish Studios",
"1213": "BluBee Games",
"1214": "Blue 52",
"1215": "Blue Bottle Games",
"1216": "Blue Byte Software",
"1221": "Blue Castle Games",
"1223": "Blue Fang Games",
"1224": "Blue Isle Studios",
"1225": "Blue Mammoth Games",
"1226": "Blue Monkey Studios",
"1227": "Blue Moon",
"1228": "Blue Omega",
"1229": "Blue Planet Interactive",
"1230": "Blue Planet Software",
"1231": "Blue Ribbon",
"1232": "Blue Shift",
"10208": "Blue Sky Software",
"1235": "Blue Sphere",
"1236": "Blue Sphere Games",
"1237": "Blue Tea Games",