From 9f839b6205e8fc91527230fbf2f5a1e9eb307867 Mon Sep 17 00:00:00 2001 From: Mahmood - Zer0xFF <5013823+Zer0xFF@users.noreply.github.com> Date: Sun, 4 Nov 2018 12:57:09 +0000 Subject: [PATCH 01/76] during search, take into account alts names --- include/TGDB.API.php | 121 ++++++++++++++++--------------------------- 1 file changed, 44 insertions(+), 77 deletions(-) diff --git a/include/TGDB.API.php b/include/TGDB.API.php index 1c08166..12a6146 100644 --- a/include/TGDB.API.php +++ b/include/TGDB.API.php @@ -186,55 +186,7 @@ function GetGameByID($IDs, $offset = 0, $limit = 20, $fields = array()) function SearchGamesByName($searchTerm, $offset = 0, $limit = 20, $fields = array()) { - $dbh = $this->database->dbh; - - $qry = "Select id, game_title, release_date, platform "; - - if(!empty($fields)) - { - foreach($fields as $key => $enabled) - { - if($enabled && $this->is_valid_games_col($key)) - { - $qry .= ", $key "; - } - } - } - - $qry .= " FROM games WHERE game_title LIKE :name OR game_title=:name2 OR soundex(game_title) LIKE soundex(:name3) OR soundex(game_title) LIKE soundex(:name4) - GROUP BY id ORDER BY CASE - WHEN game_title like :name5 THEN 3 - WHEN game_title like :name6 THEN 0 - WHEN game_title like :name7 THEN 1 - WHEN game_title like :name8 THEN 2 - ELSE 4 - END, game_title LIMIT :limit OFFSET :offset"; - - $sth = $dbh->prepare($qry); - - $sth->bindValue(':name', "%$searchTerm%"); - $sth->bindValue(':name2', $searchTerm); - $sth->bindValue(':name3', "$searchTerm%"); - $sth->bindValue(':name4', "% %$searchTerm% %"); - - $sth->bindValue(':name5', "%$searchTerm"); - $sth->bindValue(':name6', $searchTerm); - $sth->bindValue(':name7', "$searchTerm%"); - $sth->bindValue(':name8', "% %$searchTerm% %"); - - - $sth->bindValue(':offset', $offset, PDO::PARAM_INT); - $sth->bindValue(':limit', $limit, PDO::PARAM_INT); - - if($sth->execute()) - { - $res = $sth->fetchAll(PDO::FETCH_OBJ); - if(!empty($res)) - { - $this->PopulateOtherData($res, $fields); - } - return $res; - } + return $this->SearchGamesByNameByPlatformID($searchTerm, '', $offset, $limit, $fields); } function SearchGamesByExactName($searchTerm, $offset = 0, $limit = 20, $fields = array()) @@ -278,19 +230,6 @@ function SearchGamesByNameByPlatformID($searchTerm, $IDs, $offset = 0, $limit = { $dbh = $this->database->dbh; - $qry = "Select id, game_title, release_date, platform "; - - if(!empty($fields)) - { - foreach($fields as $key => $enabled) - { - if($enabled && $this->is_valid_games_col($key)) - { - $qry .= ", $key "; - } - } - } - $PlatformIDs = array(); if(is_array($IDs)) { @@ -307,21 +246,45 @@ function SearchGamesByNameByPlatformID($searchTerm, $IDs, $offset = 0, $limit = $PlatformIDs = $IDs; } - $qry .= " FROM games WHERE "; + $qry = "Select games.id, games.game_title, games.release_date, games.platform "; + if(!empty($fields)) + { + foreach($fields as $key => $enabled) + { + if($enabled && $this->is_valid_games_col($key)) + { + $qry .= ", games.$key "; + } + } + } + $qry .= " FROM games, + ( + SELECT games_names_merged.id, @rank := @rank + 1 AS rank FROM + ( + ( + SELECT games_id as id, name as game_title, SOUNDEX from games_alts + WHERE name LIKE :name OR name=:name2 OR SOUNDEX LIKE soundex(:name3) OR SOUNDEX LIKE soundex(:name4) + ) + UNION + ( + SELECT id, game_title, SOUNDEX from games + WHERE game_title LIKE :name_2 OR game_title=:name_2_2 OR SOUNDEX LIKE soundex(:name_2_3) OR SOUNDEX LIKE soundex(:name_2_4) + ) + ) games_names_merged, (SELECT @rank := 0) t1 + ORDER BY CASE + WHEN game_title like :name_3_2 THEN 0 + WHEN game_title like :name_3_3 THEN 1 + WHEN game_title like :name_3_4 THEN 2 + WHEN game_title like :name_3 THEN 3 + ELSE 4 + END, game_title + ) games_ordered where games.id = games_ordered.id "; if(!empty($PlatformIDs)) { - $qry .= " platform IN ($PlatformIDs) AND "; + $qry .= " AND games.platform IN ($PlatformIDs) "; } - - $qry .= " (game_title LIKE :name OR game_title=:name2 OR soundex(game_title) LIKE soundex(:name3) OR soundex(game_title) LIKE soundex(:name4)) - GROUP BY id ORDER BY CASE - WHEN game_title like :name5 THEN 3 - WHEN game_title like :name6 THEN 0 - WHEN game_title like :name7 THEN 1 - WHEN game_title like :name8 THEN 2 - ELSE 4 - END, game_title LIMIT :limit OFFSET :offset"; + $qry .= "GROUP BY games.id ORDER BY MIN(games_ordered.rank) LIMIT :limit OFFSET :offset"; $sth = $dbh->prepare($qry); @@ -330,11 +293,15 @@ function SearchGamesByNameByPlatformID($searchTerm, $IDs, $offset = 0, $limit = $sth->bindValue(':name3', "$searchTerm%"); $sth->bindValue(':name4', "% %$searchTerm% %"); - $sth->bindValue(':name5', "%$searchTerm"); - $sth->bindValue(':name6', $searchTerm); - $sth->bindValue(':name7', "$searchTerm%"); - $sth->bindValue(':name8', "% %$searchTerm% %"); + $sth->bindValue(':name_2', "%$searchTerm%"); + $sth->bindValue(':name_2_2', $searchTerm); + $sth->bindValue(':name_2_3', "$searchTerm%"); + $sth->bindValue(':name_2_4', "% %$searchTerm% %"); + $sth->bindValue(':name_3', "%$searchTerm"); + $sth->bindValue(':name_3_2', $searchTerm); + $sth->bindValue(':name_3_3', "$searchTerm%"); + $sth->bindValue(':name_3_4', "% %$searchTerm% %"); $sth->bindValue(':offset', $offset, PDO::PARAM_INT); $sth->bindValue(':limit', $limit, PDO::PARAM_INT); From 95d1b11cbcaa0a53944006f4fc36dc57866c3a1d Mon Sep 17 00:00:00 2001 From: Mahmood - Zer0xFF <5013823+Zer0xFF@users.noreply.github.com> Date: Sun, 4 Nov 2018 13:10:49 +0000 Subject: [PATCH 02/76] cleanup --- website/list_games.php | 14 ++++++++++++++ 1 file changed, 14 insertions(+) diff --git a/website/list_games.php b/website/list_games.php index 9986512..45031b6 100644 --- a/website/list_games.php +++ b/website/list_games.php @@ -34,6 +34,13 @@ { $DevInfo = $DevInfo[$_REQUEST['dev_id']]; } + else + { + $errorPage = new ErrorPage(); + $errorPage->SetHeader(ErrorPage::$HEADER_OOPS_ERROR); + $errorPage->SetMSG(ErrorPage::$MSG_INVALID_PARAM_ERROR); + $errorPage->print_die(); + } } else if(isset($_REQUEST['pub_id']) && is_numeric($_REQUEST['pub_id'])) { @@ -44,6 +51,13 @@ { $DevInfo = $DevInfo[$_REQUEST['pub_id']]; } + else + { + $errorPage = new ErrorPage(); + $errorPage->SetHeader(ErrorPage::$HEADER_OOPS_ERROR); + $errorPage->SetMSG(ErrorPage::$MSG_INVALID_PARAM_ERROR); + $errorPage->print_die(); + } } else if(isset($_REQUEST['platform_id']) && is_numeric($_REQUEST['platform_id'])) { From 970f1892a09f8fa9c4601e16ca982d44ac845db9 Mon Sep 17 00:00:00 2001 From: Mahmood - Zer0xFF <5013823+Zer0xFF@users.noreply.github.com> Date: Sun, 4 Nov 2018 18:55:59 +0000 Subject: [PATCH 03/76] Fix: missing image for my_games.php --- website/images/if_recent-time-search-reload-time_2075824.svg | 1 + 1 file changed, 1 insertion(+) create mode 100644 website/images/if_recent-time-search-reload-time_2075824.svg diff --git a/website/images/if_recent-time-search-reload-time_2075824.svg b/website/images/if_recent-time-search-reload-time_2075824.svg new file mode 100644 index 0000000..d611694 --- /dev/null +++ b/website/images/if_recent-time-search-reload-time_2075824.svg @@ -0,0 +1 @@ + \ No newline at end of file From 27507e942c1bdccaa7f6e47a9ff14cc1cfd75f48 Mon Sep 17 00:00:00 2001 From: Mahmood - Zer0xFF <5013823+Zer0xFF@users.noreply.github.com> Date: Sun, 4 Nov 2018 19:14:27 +0000 Subject: [PATCH 04/76] New Swagger API documentation --- API/favicon-16x16.png | Bin 0 -> 445 bytes API/favicon-32x32.png | Bin 0 -> 1141 bytes API/oauth2-redirect.html | 67 + API/spec.json | 179809 +++++++++++++++++++++ API/swagger-ui-bundle.js | 93 + API/swagger-ui-bundle.js.map | 1 + API/swagger-ui-standalone-preset.js | 14 + API/swagger-ui-standalone-preset.js.map | 1 + API/swagger-ui.css | 3 + API/swagger-ui.css.map | 1 + API/swagger-ui.js | 9 + API/swagger-ui.js.map | 1 + API/templates/doc.html | 261 +- 13 files changed, 180056 insertions(+), 204 deletions(-) create mode 100644 API/favicon-16x16.png create mode 100644 API/favicon-32x32.png create mode 100644 API/oauth2-redirect.html create mode 100644 API/spec.json create mode 100644 API/swagger-ui-bundle.js create mode 100644 API/swagger-ui-bundle.js.map create mode 100644 API/swagger-ui-standalone-preset.js create mode 100644 API/swagger-ui-standalone-preset.js.map create mode 100644 API/swagger-ui.css create mode 100644 API/swagger-ui.css.map create mode 100644 API/swagger-ui.js create mode 100644 API/swagger-ui.js.map diff --git a/API/favicon-16x16.png b/API/favicon-16x16.png new file mode 100644 index 0000000000000000000000000000000000000000..0f7e13b0d9903d27a9129950b1dad362361504e4 GIT binary patch literal 445 zcmV;u0Yd(XP)rNm2=6wQ7&2F}_`h_PI>(9Fx!5<0%l6W{u0OQ#*rglqx3__&vD?|#%fhn*Mn&YY1i+JQHqPvZ34FR@_E%P@x zzTL;Bw#nJXWY}D7^bC>-bx{t|^|R6Oci&MKvov8Op~S=}R=h^p-=vZ0uqG@LE6tP7 n92{cY$^db6>&z__iT?Z#Z8BG|DVcT0DjiaEd>Z!7_`J}8! zKk_$1lGm$vJOY&DjT-(&VGn0;R`iN9=1aOuG`H}BlY>&R3KbGER zB2$7euhH;y1C_LTQex%L6khZpkjFn!ajOUK)f3JLz+I;CE@(N)T)CM4AWjfl-(04= zrsMQ)#NG6nr^Y7!6LA;iHXh?UOFE%hhy>7dl=;I$J>g0BH_r|_4ctEsXx z2sDIQnwa*rcK=*3XUC$D{I@}DTNs@GCb7dB2%%nV%jR){xktt;Ah09op7x@l5D6B2 z0uBdt0YmcN!o?lMpu9Io(1&B1s{TUu*a>2&>Iycx__fbDRM8PYtLt+#G*xSt(cn}K zt!~W2{`9r)xkh^xodLS&FbYw`x$t&Vhl?)#f&k-lZIs<`$gTj{^#^HewuJz(WnUZZ z{Ty_aE;^93bhc-^^k6ZM!^e~$q5!Zz`XPta{a@651gPzaFx$&%IHL6hx$mSeAa#n6 zLkyc-M zs$qhBZhCNE^aIEV)H_~^IeqSRnvo!21Qc`Z;S9!IqXl4K(RUImejotzuG65LVuGS# zcqp@OA8~ln^4c^VihUew)IOX^E9KMtvSvnZ| zC@rl{f(B*PA26aFR`|X!!I(7x_|kq{rlqwhCia+CfNbOg_yYt0bDCc4g#h#`3jpCd zNAhr%4#Ye{i>ni$fzY%r0IS%l3HHZ4tTjOi=JW-t_iG~)oC!2C!52Cc|TAPaH zJ}l%m9yPmA-4#lJea@uf$a`(1;={rL2f*8;7%icbF}e^_`X#ndU=SI0nIn8hXPXHS zSN4rbF}jl0HWx(_`q`-SRa9jP8Ab!}sThNkQ634k=qXBVM4`o{M>qrLJD ze*%D)S;wpxG$d%FcDf-6%zMqWA+gw!C1~T5+|ys$G3Ksm&x59Lyd?0l+LWSk6hc4~ z+yC>|4f;X3#cq3!)>#Mvb-^co7LMrzqWeKB$21I>tJgaGFwu6eB%&j?@d*8GAx~In zI1p-lXVKtcvY7;$TX~wjYw|QhB%q!npQES%F~%Aqz~pJB%rNu!xAj;>xZt75!VHju zfFy%B-`3;Qf<{h94~I62zcHv}D5pS-QCN`M8K1>jN9mpbrFk=5no8j!00000NkvXX Hu0mjfOavUK literal 0 HcmV?d00001 diff --git a/API/oauth2-redirect.html b/API/oauth2-redirect.html new file mode 100644 index 0000000..fb68399 --- /dev/null +++ b/API/oauth2-redirect.html @@ -0,0 +1,67 @@ + + + + + + diff --git a/API/spec.json b/API/spec.json new file mode 100644 index 0000000..2b42e5e --- /dev/null +++ b/API/spec.json @@ -0,0 +1,179809 @@ +swagger: '2.0' +info: + description: API Documentations + version: 1.0.0 + title: TheGamesDB API + # put the contact info for your development or API team +# contact: +# email: you@your-company.com + + license: + name: GNU General Public License v3.0 + url: https://github.com/TheGamesDB/TheGamesDBv2/blob/master/LICENSE + +# tags are used for organizing operations +tags: +- name: Games +- name: Platforms +- name: Genres +- name: Developers +- name: Publishers + +paths: + /Games/ByGameID: + get: + tags: + - Games + operationId: GamesByGameID + summary: "Fetch game(s) by id" + description: "can request additional information can be requestes through `fields` and `include` params" + produces: + - application/json + parameters: + - in: query + name: apikey + description: "(Required)" + required: true + type: string + - in: query + name: id + description: "(Required) - supports `,` delimited list" + required: true + type: string + - in: query + name: fields + description: "(Optional) - valid `,` delimited options: `players`, `publishers`, `genres`, `overview`, `last_updated`, `rating`, `platform`, `coop`, `youtube`, `os`, `processor`, `ram`, `hdd`, `video`, `sound`, `alternates`" + required: false + type: string + - in: query + name: include + description: "(Optional) - valid `,` delimited options: `boxart`, `platform`" + required: false + type: string + responses: + 200: + description: result + schema: + type: array + items: + $ref: '#/definitions/GamesByGameID' + 400: + description: bad input parameter + /Games/ByGameName: + get: + tags: + - Games + operationId: GamesByGameName + summary: "Fetch game(s) by name" + description: "can request additional information can be requestes through `fields` and `include` params" + produces: + - application/json + parameters: + - in: query + name: apikey + description: "(Required)" + required: true + type: string + - in: query + name: name + description: "(Required) - Search term" + required: true + type: string + - in: query + name: fields + description: "(Optional) - valid `,` delimited options: `players`, `publishers`, `genres`, `overview`, `last_updated`, `rating`, `platform`, `coop`, `youtube`, `os`, `processor`, `ram`, `hdd`, `video`, `sound`, `alternates`" + required: false + type: string + - in: query + name: "filter[platform]" + description: "(Optional) - platform `id` can be obtain from the platforms api below, supports `,` delimited list" + required: false + type: string + - in: query + name: include + description: "(Optional) - valid `,` delimited options: `boxart`, `platform`" + required: false + type: string + responses: + 200: + description: result + schema: + type: array + items: + $ref: '#/definitions/GamesByGameName' + 400: + description: bad input parameter + /Games/ByPlatformID: + get: + tags: + - Games + operationId: GamesByPlatformID + summary: "Fetch game(s) by platform id" + description: "can request additional information can be requestes through `fields` and `include` params" + produces: + - application/json + parameters: + - in: query + name: apikey + description: "(Required)" + required: true + type: string + - in: query + name: id + description: "(Required) - platform `id` can be obtain from the platforms api below, supports `,` delimited list" + required: true + type: string + - in: query + name: fields + description: "(Optional) - valid `,` delimited options: `players`, `publishers`, `genres`, `overview`, `last_updated`, `rating`, `platform`, `coop`, `youtube`, `os`, `processor`, `ram`, `hdd`, `video`, `sound`, `alternates`" + required: false + type: string + - in: query + name: include + description: "(Optional) - valid `,` delimited options: `boxart`, `platform`" + required: false + type: string + responses: + 200: + description: result + schema: + type: array + items: + $ref: '#/definitions/GamesByPlatformID' + 400: + description: bad input parameter + /Games/Images: + get: + tags: + - Games + operationId: GamesImages + summary: "Fetch game(s) images by game(s) id" + description: "results can be filtered with `filter[type]` param" + produces: + - application/json + parameters: + - in: query + name: apikey + description: "(Required)" + required: true + type: string + - in: query + name: games_id + description: "(Required) - game(s) `id` can be obtain from the above games api, supports `,` delimited list" + required: true + type: string + - in: query + name: filter[type] + description: "(Optional) - valid `,` delimited options: `fanart`, `banner`, `boxart`, `screenshot`, `clearlogo`" + required: false + type: string + responses: + 200: + description: result + schema: + type: array + items: + $ref: '#/definitions/GamesImages' + 400: + description: bad input parameter + /Games/Updates: + get: + tags: + - Games + operationId: GamesUpdates + summary: "Fetch games update" + produces: + - application/json + parameters: + - in: query + name: apikey + description: "(Required)" + required: true + type: string + - in: query + name: last_edit_id + description: "(Required)" + required: true + type: integer + - in: query + name: time + description: "(Optional)" + required: false + type: integer + responses: + 200: + description: result + schema: + type: array + items: + $ref: '#/definitions/GamesUpdates' + 400: + description: bad input parameter + /Platforms: + get: + tags: + - Platforms + operationId: Platforms + summary: "Fetch platforms list" + produces: + - application/json + parameters: + - in: query + name: apikey + description: "(Required)" + required: true + type: string + - in: query + name: fields + description: "(Optional) - valid `,` delimited options: `icon`, `console`, `controller`, `developer`, `manufacturer`, `media`, `cpu`, `memory`, `graphics`, `sound`, `maxcontrollers`, `display`, `overview`, `youtube`" + required: false + type: string + responses: + 200: + description: result + schema: + type: array + items: + $ref: '#/definitions/Platforms' + 400: + description: bad input parameter + /Platforms/ByPlatformID: + get: + tags: + - Platforms + operationId: PlatformsByPlatformID + summary: "Fetch platforms list by id" + produces: + - application/json + parameters: + - in: query + name: apikey + description: "(Required)" + required: true + type: string + - in: query + name: id + description: "(Required) - supports `,` delimited list" + required: true + type: integer + - in: query + name: fields + description: "(Optional) - valid `,` delimited options: `icon`, `console`, `controller`, `developer`, `manufacturer`, `media`, `cpu`, `memory`, `graphics`, `sound`, `maxcontrollers`, `display`, `overview`, `youtube`" + required: false + type: string + responses: + 200: + description: result + schema: + type: array + items: + $ref: '#/definitions/PlatformsByPlatformID' + 400: + description: bad input parameter + /Platforms/ByPlatformName: + get: + tags: + - Platforms + operationId: PlatformsByPlatformName + summary: "Fetch platforms by name" + produces: + - application/json + parameters: + - in: query + name: apikey + description: "(Required)" + required: true + type: string + - in: query + name: name + description: "(Required)" + required: true + type: string + - in: query + name: fields + description: "(Optional) - valid `,` delimited options: `icon`, `console`, `controller`, `developer`, `manufacturer`, `media`, `cpu`, `memory`, `graphics`, `sound`, `maxcontrollers`, `display`, `overview`, `youtube`" + required: false + type: string + responses: + 200: + description: result + schema: + type: array + items: + $ref: '#/definitions/PlatformsByPlatformName' + 400: + description: bad input parameter + /Platforms/Images: + get: + tags: + - Platforms + operationId: PlatformsImages + summary: "Fetch platform(s) images by platform(s) id" + description: "results can be filtered with `filter[type]` param" + produces: + - application/json + parameters: + - in: query + name: apikey + description: "(Required)" + required: true + type: string + - in: query + name: platforms_id + description: "(Required) - platform(s) `id` can be obtain from the above platforms api, supports `,` delimited list" + required: true + type: string + - in: query + name: filter[type] + description: "(Optional) - valid `,` delimited options: `fanart`, `banner`, `boxart`" + required: false + type: string + responses: + 200: + description: result + schema: + type: array + items: + $ref: '#/definitions/PlatformsImages' + 400: + description: bad input parameter + /Genres: + get: + tags: + - Genres + operationId: Genres + summary: "Fetch Genres list" + produces: + - application/json + parameters: + - in: query + name: apikey + description: "(Required)" + required: true + type: string + responses: + 200: + description: result + schema: + type: array + items: + $ref: '#/definitions/Genres' + 400: + description: bad input parameter + /Developers: + get: + tags: + - Developers + operationId: Developers + summary: "Fetch Developers list" + produces: + - application/json + parameters: + - in: query + name: apikey + description: "(Required)" + required: true + type: string + responses: + 200: + description: result + schema: + type: array + items: + $ref: '#/definitions/Developers' + 400: + description: bad input parameter + /Publishers: + get: + tags: + - Publishers + operationId: Publishers + summary: "Fetch Publishers list" + produces: + - application/json + parameters: + - in: query + name: apikey + description: "(Required)" + required: true + type: string + responses: + 200: + description: result + schema: + type: array + items: + $ref: '#/definitions/Publishers' + 400: + description: bad input parameter +definitions: + GamesByGameID: + type: object + required: + - code + - status + - data + - include + - pages + - remaining_monthly_allowance + - extra_allowance + properties: + code: + type: integer + minimum: 0 + example: 200 + status: + type: string + example: 'Success' + data: + type: object + required: + - count + - games + properties: + count: + type: integer + minimum: 0 + example: 3 + games: + type: array + items: + type: object + properties: + id: + type: integer + minimum: 0 + game_title: + type: string + release_date: + type: string + platform: + type: integer + minimum: 0 + players: + type: integer + minimum: 0 + overview: + type: string + last_updated: + type: string + rating: + type: string + coop: + type: string + youtube: + type: string + os: + type: string + processor: + type: string + ram: + type: string + hdd: + type: string + video: + type: string + sound: + type: string + developers: + type: array + items: + type: integer + minimum: 0 + genres: + type: array + items: + type: integer + minimum: 0 + publishers: + type: array + items: + type: integer + minimum: 0 + alternates: + type: array + items: + type: string + example: + - id: 1 + game_title: 'Halo: Combat Evolved' + release_date: '2001-11-15' + platform: 1 + players: 1 + overview: 'In Halo''s twenty-sixth century setting, the player assumes the role of the Master Chief, a cybernetically enhanced super-soldier. The player is accompanied by Cortana, an artificial intelligence who occupies the Master Chief''s neural interface. Players battle various aliens on foot and in vehicles as they attempt to uncover the secrets of the eponymous Halo, a ring-shaped artificial planet.' + last_updated: '2018-07-11 21:05:01' + rating: 'M - Mature' + coop: 'No' + youtube: 'dR3Hm8scbEw' + os: '98SE/ME/2000/XP' + processor: '733mhz' + ram: '128 MB' + hdd: '1.2GB' + video: '32 MB / 3D T&L capable' + sound: null + developers: [1389] + genres: [8] + publishers: [1] + alternates: null + - id: 2 + game_title: 'Crysis' + release_date: '2007-11-13' + platform: 1 + players: 4 + overview: 'From the makers of Far Cry, Crysis offers FPS fans the best-looking, most highly-evolving gameplay, requiring the player to use adaptive tactics and total customization of weapons and armor to survive in dynamic, hostile environments including Zero-G. + +Earth, 2019. A team of US scientists makes a frightening discovery on an island in the South China Sea. All contact with the team is lost when the North Korean Government quickly seals off the area. The United States responds by dispatching an elite team of Delta Force Operators to recon the situation. As tension rises between the two nations, a massive alien ship reveals itself in the middle of the island. The ship generates an immense force sphere that freezes a vast portion of the island and drastically alters the global weather system. Now the US and North Korea must join forces to battle the alien menace. With hope rapidly fading, you must fight epic battles through tropical jungle, frozen landscapes, and finally into the heart of the alien ship itself for the ultimate Zero G showdown.' + last_updated: '2018-07-11 21:05:01' + rating: 'M - Mature' + coop: 'No' + youtube: 'i3vO01xQ-DM' + os: 'Windows XP/Vista' + processor: '2.8GHz (XP), 3.2GHz (Vista)' + ram: '1GB (XP), 1.5GB (Vista)' + hdd: '12GB' + video: '256MB, DirectX 9.0c' + sound: 'DirectX 9.0c compatible' + developers: [1970] + genres: [8] + publishers: [2] + alternates: null + - id: 4 + game_title: 'Star Fox 64' + release_date: '1997-06-30' + platform: 3 + players: 4 + overview: 'The Lylat system has been invaded! Join Fox McCloud and his Star Fox team as they fight to save the galaxy from the clutches of the evil Andross. Travel to many different 3-D worlds. Battle the enemy in the air and on the ground and listen in as Fox McCloud interacts with a cast of characters. + +See how it feels to feel what you see! The N64 Rumble Pak controller accessory instantly transmits all the bumps and blasts during the action. It’s a new jolt to your game play experience! + +* Four Players compete simultaneously in Vs. mode! +* Game Pak memory saves the top 10 scores! +* Outstanding cinema scenes tell the Star Fox saga!' + last_updated: '2018-08-11 15:01:11' + rating: 'E - Everyone' + coop: 'No' + youtube: 'jsEcmfPwnHo' + os: null + processor: null + ram: null + hdd: null + video: null + sound: null + developers: [6037] + genres: [1, 8] + publishers: [3] + alternates: [Lylat Wars (EU), Lylat Wars] + include: + type: object + required: + - boxart + - platform + properties: + boxart: + type: object + required: + - base_url + - data + properties: + base_url: + type: object + required: + - original + - small + - thumb + - cropped_center_thumb + - medium + - large + properties: + original: + type: string + example: 'https://cdn.thegamesdb.net/images/original/' + small: + type: string + example: 'https://cdn.thegamesdb.net/images/small/' + thumb: + type: string + example: 'https://cdn.thegamesdb.net/images/thumb/' + cropped_center_thumb: + type: string + example: 'https://cdn.thegamesdb.net/images/cropped_center_thumb/' + medium: + type: string + example: 'https://cdn.thegamesdb.net/images/medium/' + large: + type: string + example: 'https://cdn.thegamesdb.net/images/large/' + data: + type: object + required: + - "1" + - "2" + - "4" + properties: + 1: + type: array + items: + type: object + properties: + id: + type: integer + minimum: 0 + type: + type: string + side: + type: string + filename: + type: string + resolution: + type: string + example: + - id: 23413 + type: 'boxart' + side: 'front' + filename: 'boxart/front/1-1.jpg' + resolution: '1529x2156' + - id: 23414 + type: 'boxart' + side: 'back' + filename: 'boxart/back/1-1.jpg' + resolution: '1527x2156' + 2: + type: array + items: + type: object + properties: + id: + type: integer + minimum: 0 + type: + type: string + side: + type: string + filename: + type: string + resolution: + type: string + example: + - id: 1549 + type: 'boxart' + side: 'front' + filename: 'boxart/front/2-1.jpg' + resolution: '1525x2160' + - id: 15336 + type: 'boxart' + side: 'back' + filename: 'boxart/back/2-1.jpg' + resolution: '1525x2162' + 4: + type: array + items: + type: object + properties: + id: + type: integer + minimum: 0 + type: + type: string + side: + type: string + filename: + type: string + resolution: + type: string + example: + - id: 846 + type: 'boxart' + side: 'front' + filename: 'boxart/front/4-1.jpg' + resolution: '1000x705' + - id: 847 + type: 'boxart' + side: 'back' + filename: 'boxart/back/4-1.jpg' + resolution: '1000x705' + platform: + type: object + required: + - data + properties: + data: + type: object + required: + - "3" + - "1" + properties: + 3: + type: object + required: + - id + - name + - alias + properties: + id: + type: integer + minimum: 0 + example: 3 + name: + type: string + example: 'Nintendo 64' + alias: + type: string + example: 'nintendo-64' + 1: + type: object + required: + - id + - name + - alias + properties: + id: + type: integer + minimum: 0 + example: 1 + name: + type: string + example: 'PC' + alias: + type: string + example: 'pc' + pages: + type: object + required: + - previous + - current + - next + properties: + previous: + type: string + example: '' + current: + type: string + example: 'https://api.thegamesdb.net/Games/ByGameID?apikey=APIKEY&id=1%2C2%2C3%2C4&fields=players%2Cpublishers%2Cgenres%2Coverview%2Clast_updated%2Crating%2Cplatform%2Ccoop%2Cyoutube%2Cos%2Cprocessor%2Cram%2Chdd%2Cvideo%2Csound%2Calternates&include=boxart%2Cplatform&page=1' + next: + type: string + example: '' + remaining_monthly_allowance: + type: integer + minimum: 0 + example: 268 + extra_allowance: + type: integer + minimum: 0 + example: 0 + GamesByGameName: + type: object + required: + - code + - status + - data + - include + - pages + - remaining_monthly_allowance + - extra_allowance + properties: + code: + type: integer + minimum: 0 + example: 200 + status: + type: string + example: 'Success' + data: + type: object + required: + - count + - games + properties: + count: + type: integer + minimum: 0 + example: 20 + games: + type: array + items: + type: object + properties: + id: + type: integer + minimum: 0 + game_title: + type: string + release_date: + type: string + platform: + type: integer + minimum: 0 + players: + type: integer + minimum: 0 + overview: + type: string + last_updated: + type: string + rating: + type: string + coop: + type: string + youtube: + type: string + os: + type: string + processor: + type: string + ram: + type: string + hdd: + type: string + video: + type: string + sound: + type: string + developers: + type: array + items: + type: integer + minimum: 0 + genres: + type: array + items: + type: integer + minimum: 0 + publishers: + type: string + alternates: + type: array + items: + type: string + example: + - id: 22729 + game_title: 'Halo - Gallant Girl' + release_date: '2008-12-18' + platform: 1 + players: 1 + overview: 'You play as Kelly, one of the surviving Spartan Super Soldiers. + +After stumbling on a Covenant operation, Kelly must stop what could be the biggest threat to earth yet. With the help of Dr. Catherine Halsey she will explore an alien world with hidden Forerunner technology as deadly as any ring world. + +This Game Gear version is in full 8-Bit color. Small touches like the screen lines of the Game Gear help date the game and make it feel more like you''re playing on a real Sega Game Gear' + last_updated: '2018-07-11 21:05:32' + rating: null + coop: 'No' + youtube: 'DhUQx_Tamww' + os: 'Windows XP' + processor: null + ram: null + hdd: null + video: null + sound: null + developers: [4654] + genres: [1, 2, 8, 15] + publishers: null + alternates: null + - id: 9 + game_title: 'Halo 2' + release_date: '2007-05-31' + platform: 1 + players: 2 + overview: 'Halo 2 is the sequel to the highly successful and critically acclaimed Halo®: Combat Evolved. In Halo 2, the saga continues as Master Chief—a genetically enhanced super-soldier—is the only thing standing between the relentless Covenant and the destruction of all humankind.' + last_updated: '2018-08-11 15:01:11' + rating: 'M - Mature' + coop: 'No' + youtube: 'Zz6FNKawJBc' + os: 'Windows 7 or Windows Vista' + processor: '2.0 gigahertz (GHz)' + ram: '1 GB RAM' + hdd: '7 GB of available hard disk space. The dedicated server and the map editor require more hard disk space.' + video: 'ATI X700 or Nvidia 6100 display adapter with 128 megabytes (MB) of RAM and the following features: Pixel shader: 2 or greater; Vertex shader: 2 or greater' + sound: 'Sound card, speakers, or headset' + developers: [1389] + genres: [1, 8] + publishers: [1] + alternates: null + - id: 6079 + game_title: 'Halo 2' + release_date: '2004-11-09' + platform: 14 + players: 4 + overview: 'Halo 2 is the sequel to the highly successful and critically acclaimed Halo®: Combat Evolved. In Halo 2, the saga continues as Master Chief—a genetically enhanced super-soldier—is the only thing standing between the relentless Covenant and the destruction of all humankind. + +Also Available +Halo 2 Limited Collector''s Edition +This limited edition comes in a special tin box and includes commentaries, a "making of" feature, art galleries and more.' + last_updated: '2018-08-11 15:01:11' + rating: 'M - Mature' + coop: 'Yes' + youtube: 'fp_U8R-IDhA' + os: null + processor: null + ram: null + hdd: null + video: null + sound: null + developers: [1389] + genres: [8] + publishers: [1] + alternates: null + - id: 18226 + game_title: 'Halo 2 Multiplayer Map Pack' + release_date: '2005-07-05' + platform: 14 + players: 4 + overview: null + last_updated: '2018-07-11 21:05:30' + rating: 'M - Mature' + coop: 'No' + youtube: null + os: null + processor: null + ram: null + hdd: null + video: null + sound: null + developers: [1389] + genres: [1, 8] + publishers: [1] + alternates: null + - id: 24954 + game_title: 'Halo 2600' + release_date: '2010-07-01' + platform: 22 + players: 1 + overview: 'The year is 2552. Planet Earth still exists, but overpopulation has forced many of her former residents to colonize other worlds. After contact with an outer colony was lost, a battlegroup was sent to investigate and was almost completely destroyed; only one badly damaged ship returned to tell of a seemingly unstoppable alien warship that had effortlessly annihilated their forces. + +This was humankind''s first encounter with a group of aliens they eventually came to know as the Covenant, a collective of alien races bent on wiping out humanity. A desperate plan is set in motion: board a Covenant vessel and
learn the location of the Covenant home world. But before the mission begins, Covenant forces strike
and annihilate the attack force. + +
 +The Covenant are now on Earth''s doorstep. One ship escapes and makes a blind jump into deep space, hoping to lead the Covenant away from Earth. The ship crashes on Halo--an artificial ring world that is actually a weapon capable of destroying all life in the galaxy should it fall into the hands of the Covenant. + +You are the Master Chief--all that remains of a classified military project to build a series of genetically enhanced super- soldiers. You are humanity''s last and best hope against the Covenant--but you''re woefully out-matched, and survival is not guaranteed. Can you battle your way through the massive world that is Halo, defeat the Covenant, and save humanity? + +Halo 2600 is an original homebrew game created by Ed Fries for the Atari 2600. Ed Fries once worked as the VP of Game Publishing for Microsoft''s Xbox division and was instrumental in bringing Bungie Studios into the Microsoft studio family). AtariAge worked with Ed Fries to produce Halo 2600 in physical cartridge form, and a limited run was produced for the 2010 Classic Gaming Expo. After the Classic Gaming Expo, additional cartridges were produced using a different label to differentiate the two releases. + +In the game, Halo players control Master Chief in a non-scrolling exploration game with rooms to explore and a variety of enemies to shoot. The Chief faces a variety of enemies across 64 playfields, and must find hidden keys to unlock the game''s force-fields in order to reach the final boss encounter. But first, he needs a weapon...' + last_updated: '2018-07-17 03:58:28' + rating: null + coop: 'No' + youtube: null + os: null + processor: null + ram: null + hdd: null + video: null + sound: null + developers: [2644] + genres: [1, 2, 8] + publishers: [593] + alternates: null + - id: 90 + game_title: 'Halo 3' + release_date: '2007-09-25' + platform: 15 + players: 2 + overview: 'Master Chief returns to a Covenant Dominated Earth on a mission to kill the final alien leader. Meanwhile, the Arbiter, Johnson, and Keyes form a loose alliance and escape from Delta Halo. The Covenant is ripped in civil war, and the Elites along with a handful of other alien races become sympathetic to the human cause. Delta Halo''s impromptu dis-activation has brought all of the Halos to a "remote activation phase". They can be activated from a facility called the ark, which happens to be on Earth.' + last_updated: '2018-07-11 21:05:01' + rating: 'M - Mature' + coop: 'Yes' + youtube: 'xhzJumt6264' + os: null + processor: null + ram: null + hdd: null + video: null + sound: null + developers: [1389] + genres: [8] + publishers: [1] + alternates: null + - id: 55490 + game_title: 'Halo 3: Essentials' + release_date: null + platform: 15 + players: null + overview: 'Included with the Legendary edition of Halo 3' + last_updated: '2018-07-11 21:05:44' + rating: null + coop: 'No' + youtube: null + os: null + processor: null + ram: null + hdd: null + video: null + sound: null + developers: null + genres: null + publishers: null + alternates: null + - id: 30838 + game_title: 'Halo 3: ODST' + release_date: '2015-05-30' + platform: 4920 + players: null + overview: null + last_updated: '2018-07-11 21:05:36' + rating: null + coop: 'No' + youtube: null + os: null + processor: null + ram: null + hdd: null + video: null + sound: null + developers: [1389] + genres: [8] + publishers: [1] + alternates: null + - id: 193 + game_title: 'Halo 3: ODST' + release_date: '2009-09-22' + platform: 15 + players: null + overview: 'A UNSC Orbital Drop Shock Trooper must locate his missing squad members in New Mombasa following a devastating slip space rupture caused by a Covenant cruiser.' + last_updated: '2018-07-11 21:05:01' + rating: 'M - Mature' + coop: 'No' + youtube: 'https://www.youtube.com/watch?v=oyZHajCu8GU' + os: null + processor: null + ram: null + hdd: null + video: null + sound: null + developers: [1389] + genres: [1] + publishers: [1] + alternates: null + - id: 3597 + game_title: 'Halo 4' + release_date: '2012-11-06' + platform: 15 + players: 2 + overview: 'Halo 4 is the start of a new saga in the Master Chief''s story. This saga is known as the Reclaimer Saga. At the end of the legendary mode of Halo 3 we see Master Chief Petty Officer John-117 orbiting a planet and hear him say to Cortana "Wake me when you need me". Well now is the time to be needed. The game starts where you last left off in a torn in half ship orbiting a planet around four years after the events of Halo 3. John wakes up to Cortana screaming "John I need you!" This creates the beginning of a new saga. In Halo 4 we see a new breed of enemies called the Prometheans. The Prometheans are AIs created by the Forerunners to protect a planet. Unfortunately you''re seen as a threat. However despite being made by the Forerunners the Prometheans have a much darker and more sinister plot. Also aside from the Prometheans, Cortana is turning rampant and has begun to turn on the Master Chief. As a new twist, the Master Chief will be working together with the Spartan IV''s the replacements to the Master Chief.' + last_updated: '2018-07-11 21:05:03' + rating: 'M - Mature' + coop: 'Yes' + youtube: 'oBk3c4UIcGw' + os: null + processor: null + ram: null + hdd: null + video: null + sound: null + developers: [63] + genres: [8] + publishers: [1] + alternates: null + - id: 21335 + game_title: 'Halo 5: Guardians' + release_date: '2015-10-27' + platform: 4920 + players: 4 + overview: '343 Industries continues the legendary first-person shooter series with Halo 5: Guardians -- the first Halo title for the Xbox One gaming platform. Halo 5 featuresthe most ambitious campaign and multiplayer experience in franchise history, all running at 60 frames per second on dedicated servers. + +A mysterious and unstoppable force threatens the galaxy, the Master Chief is missing and his loyalty questioned. Experience the most dramatic Halo story to date through the eyes of the Master Chief and Blue Team, and Spartan Locke and Fireteam Osiris – in a 4-player cooperative epic that spans three worlds. Challenge friends and rivals in new multiplayer modes: Warzone (massive 24-player battles featuring AI enemies and allies,) and Arena (pure 4-vs-4 competitive combat.) + +Also Available +Halo 5: Guardians Limited Edition +Halo 5: Guardians Limited Collector''s Edition +A premium edition of Halo 5: Guardians for collectors and Halo fans alike. The Limited Collector''s Edition is the ultimate expression of Halo 5: Guardians with a commemorative statue designed by 343 Industries.1 The Master Chief and Spartan Locke appear as a team - but there''s another story... the statue splits and they separate, ready to face-off. Which scene tells the true story?' + last_updated: '2018-08-11 15:01:11' + rating: null + coop: 'Yes' + youtube: 'HnOX28WaRrE' + os: null + processor: null + ram: null + hdd: null + video: null + sound: null + developers: [63] + genres: [1, 8] + publishers: [1] + alternates: null + - id: 60180 + game_title: 'Halo Infinite' + release_date: '1970-01-01' + platform: 4920 + players: 1 + overview: null + last_updated: null + rating: 'Not Rated' + coop: 'No' + youtube: null + os: null + processor: null + ram: null + hdd: null + video: null + sound: null + developers: [63] + genres: [1, 8] + publishers: [1] + alternates: null + - id: 35122 + game_title: 'Halo Online' + release_date: null + platform: 1 + players: null + overview: null + last_updated: '2018-07-11 21:05:37' + rating: null + coop: 'No' + youtube: '612_qzVHRQg' + os: 'Windows 7 64' + processor: 'Core 2 Duo E6600/Athlon X2 7450' + ram: '4GB' + hdd: '4GB' + video: 'GeForce 9600 GT/Radeon HD 4750' + sound: null + developers: [7374] + genres: [8] + publishers: [3737] + alternates: null + - id: 847 + game_title: 'Halo Wars' + release_date: '2009-03-03' + platform: 15 + players: null + overview: 'The year is 2531, twenty years prior to the events in Halo: Combat Evolved and the Covenant have found something on the planet Garvest. The UNSC ship "Spirit of Fire" is sent to investigate and stop whatever the enemy is up to. What the crew finds could be the only thing that stands between humanity and certain annihilation by the Covenant. Command large armies, lead them into battle, control their every move and use their abilities to gain the upper hand in combat.' + last_updated: '2018-07-11 21:05:01' + rating: 'T - Teen' + coop: 'Yes' + youtube: 'G5y61mxFBDE' + os: null + processor: null + ram: null + hdd: null + video: null + sound: null + developers: [2817] + genres: [6] + publishers: [1] + alternates: null + - id: 43323 + game_title: 'Halo Wars 2' + release_date: '2017-02-17' + platform: 1 + players: 1 + overview: 'Real-time strategy makes an explosive return to the Halo universe in Halo Wars 2. Lead Spartans, Warthogs and other classic Halo fighting forces in a brutal war against a terrifying new enemy on the biggest Halo battlefield ever.' + last_updated: '2018-07-11 21:05:40' + rating: 'T - Teen' + coop: 'No' + youtube: 'kjN1eWhzPeA' + os: null + processor: null + ram: null + hdd: null + video: null + sound: null + developers: [1891] + genres: [6] + publishers: [1279] + alternates: null + - id: 43184 + game_title: 'Halo Wars 2' + release_date: '2017-02-21' + platform: 4920 + players: 4 + overview: 'Real-time strategy makes an explosive return to the Halo universe in Halo Wars 2. Lead Spartans, Warthogs and other classic Halo fighting forces in a brutal war against a terrifying new enemy on the biggest Halo battlefield ever. + +Also Available +Halo Wars 2: Ultimate Edition' + last_updated: '2018-07-11 21:05:40' + rating: null + coop: 'Yes' + youtube: '6RHzU9r0t2c' + os: null + processor: null + ram: null + hdd: null + video: null + sound: null + developers: [1891] + genres: [6] + publishers: [1] + alternates: null + - id: 47678 + game_title: 'Halo Wars: Definitive Edition' + release_date: null + platform: 1 + players: 4 + overview: 'Set early in the iconic war between the Covenant and UNSC - made famous by the Halo FPS games - Halo Wars: Definitive Edition provides a unique angle on the war while bringing new heroes to the battlefield. Control large Halo armies and direct them in action-packed warfare.' + last_updated: '2018-07-11 21:05:40' + rating: null + coop: 'Yes' + youtube: null + os: null + processor: null + ram: null + hdd: null + video: null + sound: null + developers: null + genres: [6] + publishers: [1] + alternates: null + - id: 43186 + game_title: 'Halo Wars: Definitive Edition' + release_date: '2016-12-20' + platform: 4920 + players: null + overview: 'Set early in the iconic war between the Covenant and UNSC - made famous by the Halo FPS games - Halo Wars: Definitive Edition provides a unique angle on the war while bringing new heroes to the battlefield. Control large Halo armies and direct them in action-packed warfare.' + last_updated: '2018-07-11 21:05:40' + rating: null + coop: 'No' + youtube: null + os: null + processor: null + ram: null + hdd: null + video: null + sound: null + developers: [985] + genres: [4, 6] + publishers: [1] + alternates: null + - id: 1 + game_title: 'Halo: Combat Evolved' + release_date: '2001-11-15' + platform: 1 + players: 1 + overview: 'In Halo''s twenty-sixth century setting, the player assumes the role of the Master Chief, a cybernetically enhanced super-soldier. The player is accompanied by Cortana, an artificial intelligence who occupies the Master Chief''s neural interface. Players battle various aliens on foot and in vehicles as they attempt to uncover the secrets of the eponymous Halo, a ring-shaped artificial planet.' + last_updated: '2018-07-11 21:05:01' + rating: 'M - Mature' + coop: 'No' + youtube: 'dR3Hm8scbEw' + os: '98SE/ME/2000/XP' + processor: '733mhz' + ram: '128 MB' + hdd: '1.2GB' + video: '32 MB / 3D T&L capable' + sound: null + developers: [1389] + genres: [8] + publishers: [1] + alternates: null + - id: 3996 + game_title: 'Halo: Combat Evolved' + release_date: '2001-11-15' + platform: 14 + players: null + overview: 'In Halo''s twenty-sixth century setting, the player assumes the role of the Master Chief, a cybernetically enhanced super-soldier. The player is accompanied by Cortana, an artificial intelligence who occupies the Master Chief''s neural interface. Players battle various aliens on foot and in vehicles as they attempt to uncover the secrets of the eponymous Halo, a ring-shaped artificial planet.' + last_updated: '2018-07-11 21:05:03' + rating: 'M - Mature' + coop: 'No' + youtube: null + os: null + processor: null + ram: null + hdd: null + video: null + sound: null + developers: [1389] + genres: [8] + publishers: [1] + alternates: null + include: + type: object + required: + - boxart + - platform + properties: + boxart: + type: object + required: + - base_url + - data + properties: + base_url: + type: object + required: + - original + - small + - thumb + - cropped_center_thumb + - medium + - large + properties: + original: + type: string + example: 'https://cdn.thegamesdb.net/images/original/' + small: + type: string + example: 'https://cdn.thegamesdb.net/images/small/' + thumb: + type: string + example: 'https://cdn.thegamesdb.net/images/thumb/' + cropped_center_thumb: + type: string + example: 'https://cdn.thegamesdb.net/images/cropped_center_thumb/' + medium: + type: string + example: 'https://cdn.thegamesdb.net/images/medium/' + large: + type: string + example: 'https://cdn.thegamesdb.net/images/large/' + data: + type: object + required: + - "1" + - "9" + - "90" + - "193" + - "847" + - "3597" + - "3996" + - "6079" + - "18226" + - "21335" + - "22729" + - "24954" + - "30838" + - "35122" + - "43184" + - "43186" + - "43323" + - "47678" + - "55490" + - "60180" + properties: + 1: + type: array + items: + type: object + properties: + id: + type: integer + minimum: 0 + type: + type: string + side: + type: string + filename: + type: string + resolution: + type: string + example: + - id: 23413 + type: 'boxart' + side: 'front' + filename: 'boxart/front/1-1.jpg' + resolution: '1529x2156' + - id: 23414 + type: 'boxart' + side: 'back' + filename: 'boxart/back/1-1.jpg' + resolution: '1527x2156' + 9: + type: array + items: + type: object + properties: + id: + type: integer + minimum: 0 + type: + type: string + side: + type: string + filename: + type: string + resolution: + type: string + example: + - id: 10033 + type: 'boxart' + side: 'back' + filename: 'boxart/back/9-1.jpg' + resolution: '1520x2156' + - id: 10034 + type: 'boxart' + side: 'front' + filename: 'boxart/front/9-2.jpg' + resolution: '1527x2156' + 90: + type: array + items: + type: object + properties: + id: + type: integer + minimum: 0 + type: + type: string + side: + type: string + filename: + type: string + resolution: + type: string + example: + - id: 19321 + type: 'boxart' + side: 'front' + filename: 'boxart/front/90-1.jpg' + resolution: '1530x2148' + - id: 19322 + type: 'boxart' + side: 'back' + filename: 'boxart/back/90-1.jpg' + resolution: '1518x2148' + 193: + type: array + items: + type: object + properties: + id: + type: integer + minimum: 0 + type: + type: string + side: + type: string + filename: + type: string + resolution: + type: string + example: + - id: 21520 + type: 'boxart' + side: 'front' + filename: 'boxart/front/193-1.jpg' + resolution: '640x903' + - id: 21521 + type: 'boxart' + side: 'back' + filename: 'boxart/back/193-1.jpg' + resolution: '640x906' + 847: + type: array + items: + type: object + properties: + id: + type: integer + minimum: 0 + type: + type: string + side: + type: string + filename: + type: string + resolution: + type: string + example: + - id: 21522 + type: 'boxart' + side: 'front' + filename: 'boxart/front/847-1.jpg' + resolution: '640x893' + - id: 21523 + type: 'boxart' + side: 'back' + filename: 'boxart/back/847-1.jpg' + resolution: '640x896' + 3597: + type: array + items: + type: object + properties: + id: + type: integer + minimum: 0 + type: + type: string + side: + type: string + filename: + type: string + resolution: + type: string + example: + - id: 34350 + type: 'boxart' + side: 'front' + filename: 'boxart/front/3597-1.jpg' + resolution: '1685x2430' + 3996: + type: array + items: + type: object + properties: + id: + type: integer + minimum: 0 + type: + type: string + side: + type: string + filename: + type: string + resolution: + type: string + example: + - id: 9872 + type: 'boxart' + side: 'front' + filename: 'boxart/front/3996-1.jpg' + resolution: '1502x2144' + - id: 15598 + type: 'boxart' + side: 'back' + filename: 'boxart/back/3996-1.jpg' + resolution: '1536x2156' + 6079: + type: array + items: + type: object + properties: + id: + type: integer + minimum: 0 + type: + type: string + side: + type: string + filename: + type: string + resolution: + type: string + example: + - id: 15599 + type: 'boxart' + side: 'front' + filename: 'boxart/front/6079-1.jpg' + resolution: '1521x2156' + - id: 15600 + type: 'boxart' + side: 'back' + filename: 'boxart/back/6079-1.jpg' + resolution: '1536x2156' + 18226: + type: array + items: + type: object + properties: + id: + type: integer + minimum: 0 + type: + type: string + side: + type: string + filename: + type: string + resolution: + type: string + example: + - id: 50995 + type: 'boxart' + side: 'front' + filename: 'boxart/front/18226-1.jpg' + resolution: '402x558' + 21335: + type: array + items: + type: object + properties: + id: + type: integer + minimum: 0 + type: + type: string + side: + type: string + filename: + type: string + resolution: + type: string + example: + - id: 126706 + type: 'boxart' + side: 'front' + filename: 'boxart/front/21335-1.jpg' + resolution: '393x500' + 22729: + type: array + items: + type: object + properties: + id: + type: integer + minimum: 0 + type: + type: string + side: + type: string + filename: + type: string + resolution: + type: string + example: + - id: 67246 + type: 'boxart' + side: 'front' + filename: 'boxart/front/22729-1.jpg' + resolution: '2000x2000' + 24954: + type: array + items: + type: object + properties: + id: + type: integer + minimum: 0 + type: + type: string + side: + type: string + filename: + type: string + resolution: + type: string + example: + - id: 71783 + type: 'boxart' + side: 'front' + filename: 'boxart/front/24954-1.png' + resolution: '300x411' + 30838: + type: array + items: + type: object + properties: + id: + type: integer + minimum: 0 + type: + type: string + side: + type: string + filename: + type: string + resolution: + type: string + example: + - id: 81220 + type: 'boxart' + side: 'front' + filename: 'boxart/front/30838-1.jpg' + resolution: '584x800' + 35122: + type: array + items: + type: object + properties: + id: + type: integer + minimum: 0 + type: + type: string + side: + type: string + filename: + type: string + resolution: + type: string + example: + - id: 100081 + type: 'boxart' + side: 'front' + filename: 'boxart/front/35122-1.png' + resolution: '339x250' + 43184: + type: array + items: + type: object + properties: + id: + type: integer + minimum: 0 + type: + type: string + side: + type: string + filename: + type: string + resolution: + type: string + example: + - id: 115813 + type: 'boxart' + side: 'front' + filename: 'boxart/front/43184-1.png' + resolution: '300x381' + 43186: + type: array + items: + type: object + properties: + id: + type: integer + minimum: 0 + type: + type: string + side: + type: string + filename: + type: string + resolution: + type: string + example: + - id: 117786 + type: 'boxart' + side: 'front' + filename: 'boxart/front/43186-1.jpg' + resolution: '584x800' + 43323: + type: array + items: + type: object + properties: + id: + type: integer + minimum: 0 + type: + type: string + side: + type: string + filename: + type: string + resolution: + type: string + example: + - id: 115872 + type: 'boxart' + side: 'front' + filename: 'boxart/front/43323-1.jpg' + resolution: '768x768' + 47678: + type: array + items: + type: object + properties: + id: + type: integer + minimum: 0 + type: + type: string + side: + type: string + filename: + type: string + resolution: + type: string + example: + - id: 122024 + type: 'boxart' + side: 'front' + filename: 'boxart/front/47678-1.jpg' + resolution: '392x542' + 55490: + type: array + items: + type: object + properties: + id: + type: integer + minimum: 0 + type: + type: string + side: + type: string + filename: + type: string + resolution: + type: string + example: + - id: 137627 + type: 'boxart' + side: 'front' + filename: 'boxart/front/55490-1.jpg' + resolution: '359x500' + 60180: + type: array + items: + type: object + properties: + id: + type: integer + minimum: 0 + type: + type: string + side: + type: string + filename: + type: string + resolution: + type: string + example: + - id: 200297 + type: 'boxart' + side: 'front' + filename: 'boxart/front/60180-1.jpg' + resolution: null + platform: + type: object + required: + - "22" + - "14" + - "15" + - "4920" + - "1" + properties: + 22: + type: object + required: + - id + - name + - alias + properties: + id: + type: integer + minimum: 0 + example: 22 + name: + type: string + example: 'Atari 2600' + alias: + type: string + example: 'atari-2600' + 14: + type: object + required: + - id + - name + - alias + properties: + id: + type: integer + minimum: 0 + example: 14 + name: + type: string + example: 'Microsoft Xbox' + alias: + type: string + example: 'microsoft-xbox' + 15: + type: object + required: + - id + - name + - alias + properties: + id: + type: integer + minimum: 0 + example: 15 + name: + type: string + example: 'Microsoft Xbox 360' + alias: + type: string + example: 'microsoft-xbox-360' + 4920: + type: object + required: + - id + - name + - alias + properties: + id: + type: integer + minimum: 0 + example: 4920 + name: + type: string + example: 'Microsoft Xbox One' + alias: + type: string + example: 'microsoft-xbox-one' + 1: + type: object + required: + - id + - name + - alias + properties: + id: + type: integer + minimum: 0 + example: 1 + name: + type: string + example: 'PC' + alias: + type: string + example: 'pc' + pages: + type: object + required: + - previous + - current + - next + properties: + previous: + type: string + example: '' + current: + type: string + example: 'https://api.thegamesdb.net/Games/ByGameName?apikey=APIKEY&name=Halo&fields=players%2Cpublishers%2Cgenres%2Coverview%2Clast_updated%2Crating%2Cplatform%2Ccoop%2Cyoutube%2Cos%2Cprocessor%2Cram%2Chdd%2Cvideo%2Csound%2Calternates&include=boxart%2Cplatform&page=1' + next: + type: string + example: 'https://api.thegamesdb.net/Games/ByGameName?apikey=APIKEY&name=Halo&fields=players%2Cpublishers%2Cgenres%2Coverview%2Clast_updated%2Crating%2Cplatform%2Ccoop%2Cyoutube%2Cos%2Cprocessor%2Cram%2Chdd%2Cvideo%2Csound%2Calternates&include=boxart%2Cplatform&page=2' + remaining_monthly_allowance: + type: integer + minimum: 0 + example: 267 + extra_allowance: + type: integer + minimum: 0 + example: 0 + GamesByPlatformID: + type: object + required: + - code + - status + - data + - include + - pages + - remaining_monthly_allowance + - extra_allowance + properties: + code: + type: integer + minimum: 0 + example: 200 + status: + type: string + example: 'Success' + data: + type: object + required: + - count + - games + properties: + count: + type: integer + minimum: 0 + example: 20 + games: + type: array + items: + type: object + properties: + id: + type: integer + minimum: 0 + game_title: + type: string + release_date: + type: string + platform: + type: integer + minimum: 0 + players: + type: integer + minimum: 0 + overview: + type: string + last_updated: + type: string + rating: + type: string + coop: + type: string + youtube: + type: string + os: + type: string + processor: + type: string + ram: + type: string + hdd: + type: string + video: + type: string + sound: + type: string + developers: + type: array + items: + type: integer + minimum: 0 + genres: + type: array + items: + type: integer + minimum: 0 + publishers: + type: array + items: + type: integer + minimum: 0 + alternates: + type: array + items: + type: string + example: + - id: 17 + game_title: 'Devil May Cry 4' + release_date: '2008-02-05' + platform: 12 + players: 1 + overview: 'In the game, the player controls both Nero and Dante, and fights enemies in close combat using firearms, swords, and other weapons. The characters Lady and Trish from previous games in the series make appearances, along with new characters Nero, Kyrie, Credo, Gloria, and Agnus. The game is set after Devil May Cry but before Devil May Cry 2.' + last_updated: '2018-07-11 21:05:01' + rating: 'M - Mature' + coop: 'No' + youtube: 'Dp5fobWucds' + os: null + processor: null + ram: null + hdd: null + video: null + sound: null + developers: [1436] + genres: [1, 4, 18] + publishers: [9] + alternates: null + - id: 21 + game_title: 'Final Fantasy XIII' + release_date: '2010-03-09' + platform: 12 + players: 1 + overview: 'Final Fantasy XIII is a console role-playing video game developed and published by Square Enix for the PlayStation 3 and Xbox 360. Released in 2009 in Japan and North America and PAL regions in March 2010, it is the thirteenth major installment in the Final Fantasy series. The game includes fast-paced combat, a new system for the series for determining which abilities are developed for the characters called "Crystarium", and a customizable "Paradigm" system to control which abilities are used by the characters. Final Fantasy XIII includes elements from the previous games in the series, such as summoned monsters, chocobos, and airships.' + last_updated: '2018-07-11 21:05:01' + rating: 'T - Teen' + coop: 'No' + youtube: 'hDjkGUM7skk' + os: null + processor: null + ram: null + hdd: null + video: null + sound: null + developers: [2808] + genres: [4] + publishers: [12] + alternates: null + - id: 31 + game_title: 'Heavenly Sword' + release_date: '2007-09-12' + platform: 12 + players: 1 + overview: 'The gameplay of Heavenly Sword resembles a martial arts title focused on melee combat while featuring opportunities for ranged attacks. The main character, Nariko, uses a weapon called the "Heavenly Sword" which changes into one of three forms depending on what attack stance the player uses as part of a unique fighting style. Speed Stance, the default, provides an even balance between damage and speed, where the sword takes the form of two separate blades. Range Stance allows fast, long-ranging, but weaker attacks, with the sword resembling two blades, chained together. Power Stance is the most powerful, but slowest style, where attacks are made with the Sword in the shape of one large, two-handed blade. +For exploration and certain battles, the game also makes use of "Quick Time Events" (QTE). During a QTE, a symbol for a certain button or for an action such as moving the analog stick to the right or left appears on screen and the player must match what is shown to successfully complete the scene.' + last_updated: '2018-07-11 21:05:01' + rating: 'T - Teen' + coop: 'No' + youtube: 'djY3_E2Z41M' + os: null + processor: null + ram: null + hdd: null + video: null + sound: null + developers: [6032] + genres: [1, 2, 10] + publishers: [19] + alternates: null + - id: 36 + game_title: 'Killzone 2' + release_date: '2009-02-27' + platform: 12 + players: null + overview: 'Killzone 2 is the third game in the Killzone franchise and continues the story two years after the events of the first two games. The game takes place on Helghan, the home-world of the Helghast who assaulted the Interplanetary Strategic Alliance''s colony on Vekta. The ISA retaliates on the Helghan''s own ground with the aim to secure the Helghast leader, Emperor Visari, and bring the Helghast war machine to a halt. Assuming the role of Sergeant Tomas "Sev" Sevchenko, a battle-hardened veteran and a member of the special forces unit known as the Legion. Under his command, players lead a group of highly trained soldiers on a mission to take out the Helghast threat. + +The gameplay consists of what the developers describe as Hollywood Realism, focusing on scripted, cinematic gameplay. The game is played entirely from the first-person perspective, except for the portions with vehicular combat with a tank and an exoskeleton. A large portion is dedicated to seeking cover and peeking from behind objects to open fire. Next to the single-player campaign, there is squad-based multiplayer called Warzone with five different kinds of missions (Assassination, Search & Retrieve, Search & Destroy, Bodycount and Capture & Hold) based on seven kinds of classes. There is support for up to 32 players, with the addition of bots to fill the remaining spots.' + last_updated: '2018-07-11 21:05:01' + rating: 'M - Mature' + coop: 'No' + youtube: 'b-4HNmuEAKg' + os: null + processor: null + ram: null + hdd: null + video: null + sound: null + developers: [3657] + genres: [1, 8] + publishers: [21] + alternates: null + - id: 37 + game_title: 'Lair' + release_date: '2007-08-30' + platform: 12 + players: null + overview: 'In a world ravaged by endless conflict and natural disaster, a call for peace turns into a bloodbath of betrayal and deceit. Playing as a warrior riding a voracious dragon trained for deadly aerial and ground combat, and capable of scorching, clawing and smashing thousands of enemies, gamers must defeat countless armies to save a civilization. Together, the gamer and the beast will attempt to change the destiny of a world on the brink of extinction.' + last_updated: '2018-07-11 21:05:01' + rating: 'T - Teen' + coop: 'No' + youtube: '467zs7pt0wE' + os: null + processor: null + ram: null + hdd: null + video: null + sound: null + developers: [2976] + genres: [1] + publishers: [14] + alternates: null + - id: 45 + game_title: 'Metal Gear Solid 4: Guns of the Patriots' + release_date: '2008-06-12' + platform: 12 + players: 1 + overview: 'Metal Gear Solid 4 is set in 2014, five years after the Big Shell incident and nine years after Shadow Moses incident. The world economy relies on continuous war, fought by PMCs, which outnumber government military forces. PMC soldiers are outfitted with nanomachines to enhance their abilities and control the stress on the battlefield. The control network created through these nanomachines is called Sons of the Patriots (SOP), and Liquid Ocelot is preparing to hijack the system. Snake accepts a request from Roy Campbell to terminate Liquid, with Otacon and Sunny providing mission support from the Nomad aircraft.' + last_updated: '2018-07-11 21:05:01' + rating: 'M - Mature' + coop: 'No' + youtube: 'pjYE7GkZg-A' + os: null + processor: null + ram: null + hdd: null + video: null + sound: null + developers: [4760] + genres: [1, 2] + publishers: [23] + alternates: null + - id: 46 + game_title: 'Mirror''s Edge' + release_date: '2009-01-13' + platform: 12 + players: null + overview: 'Mirror''s Edge introduces players to Faith, a "runner" in a world where communication channels are highly monitored and the movement of human traffic is closely watched. When Faith''s sister gets framed for a murder she did not commit, Faith finds herself on the edge of the city, on the wrong side of the law. + + Mirror''s Edge delivers players straight into the shoes of this modern day heroine as she traverses the vertigo-inducing cityscape, engaging in intense combat, fast-paced chases and challenging puzzles. With a never-before-seen sense of movement and perspective, players are drawn into Faith''s world.' + last_updated: '2018-07-11 21:05:01' + rating: 'T - Teen' + coop: 'No' + youtube: '2N1TJP1cxmo' + os: null + processor: null + ram: null + hdd: null + video: null + sound: null + developers: [2576] + genres: [1, 2] + publishers: [2] + alternates: null + - id: 70 + game_title: 'Uncharted: Drake''s Fortune' + release_date: '2007-11-19' + platform: 12 + players: 1 + overview: 'A 400-year-old clue in the coffin of Sir Francis Drake sets a modern-day fortune hunter on an exploration for the fabled treasure of El Dorado, leading to the discovery of a forgotten island in the middle of the Pacific Ocean. The search turns deadly when Nathan Drake becomes stranded on the island and hunted by mercenaries. Outnumbered and outgunned, Drake and his companions must fight to survive as they begin to unravel the terrible secrets hidden on the Island. +Taking full advantage of the power of PS3, Uncharted: Drake’s Fortune is developed using proprietary technology that promises to impress players with incredibly realistic characters and lifelike environments. Building on its legacy of extraordinary storytelling, developer Naughty Dog has created an elaborate plot that will have players guessing at every turn. Uncharted: Drake''s Fortune, brings players into a world ripe with realism and unexpected juxtapositions.' + last_updated: '2018-08-11 15:01:11' + rating: 'T - Teen' + coop: 'No' + youtube: '8TxYmAKCXSE' + os: null + processor: null + ram: null + hdd: null + video: null + sound: null + developers: [5839] + genres: [1, 2] + publishers: [14] + alternates: null + - id: 94 + game_title: 'MotorStorm: Pacific Rift' + release_date: '2008-10-28' + platform: 12 + players: null + overview: 'The game moves away from the desert environments of the original title and relocates itself in "a lush island environment, full of interactive vegetation"; and also includes monster trucks and four-player split-screen capability. Monster trucks are able to ride over cars (except big rigs), break most vegetation, and destroy structures. Bikes also have new capabilities so they can bunny hop and the driver can duck. Custom music tracks using a player''s own music stored on their PS3 hard drive are available as are trophies (to unlock more Drivers and Vehicles) and camera angles are improved for crashes; vehicle damage is also improved. Users can now select drivers from the Garage menu, thus not having to rely on picking the vehicles, depending on the Driver''s gender. "Speed" events are firstly introduced in the game, which consists numerous checkpoints in each tracks that users must pass through to achieve extra times before the timer runs out. Any class that isn''t the ATV or Bikes can ram their vehicles left or right. The ATV and Bike ram by their driver throwing punches at the other drivers.' + last_updated: '2018-07-11 21:05:01' + rating: 'T - Teen' + coop: 'No' + youtube: 'DZyXHESAC5U' + os: null + processor: null + ram: null + hdd: null + video: null + sound: null + developers: [2911] + genres: [7] + publishers: [14] + alternates: null + - id: 97 + game_title: 'Resistance: Fall of Man' + release_date: '2006-11-17' + platform: 12 + players: null + overview: 'By 1949 an alien race known as the Chimera spread throughout Europe. Originating in Russia, the creatures propagate by infecting humans virally; mutating them into fellow Chimeran breeds. Their rapid infection and warfare overwhelm the continent as nations fall. Within months, the Chimera cross the English Channel by digging tunnels underneath and invade the United Kingdom, which quickly loses the war and has its troops scattered. +In 1951, the game begins with the protagonist Sgt. Nathan Hale, on his way with a large United States task force, to retrieve a secret weapon that the British claim can be used against the Chimera in exchange for supplies. However, soon after landing in York, the forces are ambushed by the Chimera and the remnants are quickly wiped out by a Chimeran spire attack, which unleashes insect like creatures that infects all of the soldiers. Hale, the only survivor, resists the full effects of infection and does not go into a coma. Instead, he possesses increased strength, health regeneration and gold-coloured irises, somewhat like the Chimera.' + last_updated: '2018-07-11 21:05:01' + rating: null + coop: 'No' + youtube: 'nJ8Yuq8qpbM' + os: null + processor: null + ram: null + hdd: null + video: null + sound: null + developers: [4232] + genres: [8] + publishers: [14] + alternates: null + - id: 98 + game_title: 'SOCOM: U.S. Navy SEALs Confrontation' + release_date: '2008-10-14' + platform: 12 + players: 4 + overview: 'SOCOM: Confrontation focuses on online play and the global community and clans that support it. With support for Tournaments, Clan Ladders, Leader Boards, this latest title in the multi-million unit selling franchise is exactly what SOCOM fans have been clamoring for. Additionally, players will be able to modify their appearance through facial and physical customization. A global-scale experience, SOCOM Confrontation gives players the opportunity to battle against the best and brightest from the U.S., Europe and Asia. SOCOM Confrontation deploys with five new North African themed maps, including a 32-player version of "Crossroads." Additional themed packs for SOCOM Confrontation will be made available for download via the Playstation Store.' + last_updated: '2018-07-11 21:05:01' + rating: 'M - Mature' + coop: 'Yes' + youtube: 'GVWQzvfDY18' + os: null + processor: null + ram: null + hdd: null + video: null + sound: null + developers: [7837] + genres: [8] + publishers: [21] + alternates: null + - id: 100 + game_title: 'Spider-Man 3' + release_date: '2007-05-04' + platform: 12 + players: 1 + overview: 'The game''s plot expands on the film by including additional characters and elements from the Spider-Man comics and the Marvel Universe. Depending on the platform, different villains from the comics are featured, but all versions of the game feature the film''s main villains: Venom, New Goblin, and Sandman.' + last_updated: '2018-07-11 21:05:01' + rating: 'T - Teen' + coop: 'No' + youtube: 'O4JB4B4RXpg' + os: null + processor: null + ram: null + hdd: null + video: null + sound: null + developers: [9025] + genres: [1] + publishers: [33] + alternates: null + - id: 104 + game_title: 'The Eye of Judgment' + release_date: '2007-10-24' + platform: 12 + players: 3 + overview: 'Sony Computer Entertainment introduces a new concept in trading card games with THE EYE OF JUDGMENT™ developed exclusively for PLAYSTATION®3 computer entertainment system. Utilizing Hasbro® and its Wizards of the Coast subsidiary''s trading card expertise, the immense power of the PS3® system, and the PLAYSTATION®Eye, Sony''s groundbreaking next-generation USB camera for PS3, THE EYE OF JUDGMENT provides a visually stunning experience that adds a third dimension to the trading card game genre. +Developed by Sony Computer Entertainment Worldwide Studios, JAPAN Studio, THE EYE OF JUDGMENT presents a new style of gameplay where collectable trading cards, embedded with a CyberCode, are brought to life in the 3D game through use of the innovative PLAYSTATION Eye. Players compete by selecting a card and placing the coded card in front of the PLAYSTATION Eye for their respective creatures to come to life and battle on screen. Players take turns placing cards as they jostle for control; the winner is the first player to conquer five of the nine squares of the "9 Fields" battle mat. The gamers task is to conquer the board by deploying their cards more skillfully than their opponent. +Players have four ways to play THE EYE OF JUDGMENT, single player against their PS3, against an opponent in two-player mode, against an opponent online, or letting the PS3 play out a round with the cards the player owns. THE EYE OF JUDGMENT comes with a starter deck of 30 character and spell cards manufactured by Hasbro.' + last_updated: '2018-08-11 15:01:11' + rating: 'T - Teen' + coop: 'No' + youtube: '1OTdOjSfiSs' + os: null + processor: null + ram: null + hdd: null + video: null + sound: null + developers: [4441] + genres: [6] + publishers: [38] + alternates: null + - id: 201 + game_title: 'Uncharted 2: Among Thieves' + release_date: '2009-10-13' + platform: 12 + players: null + overview: 'Uncharted 2: Among Thieves is the story of Nathan Drake, a fortune-hunter with a shady reputation and an even shadier past who is lured back into the treacherous world of thieves and mercenary treasure-seekers. The tenth game by premier PlayStation 3 developer Naughty Dog, Uncharted 2: Among Thieves allows players to take control of Drake and embark on a journey that will push him to his physical, emotional and intellectual limits to discover the real truth behind the lost fleet of Marco Polo and the legendary Himalayan valley of Shambhala' + last_updated: '2018-07-11 21:05:01' + rating: 'T - Teen' + coop: 'No' + youtube: 'tlkkceDkT88' + os: null + processor: null + ram: null + hdd: null + video: null + sound: null + developers: [5839] + genres: [1, 2] + publishers: [14] + alternates: null + - id: 319 + game_title: 'Heavy Rain' + release_date: '2010-02-23' + platform: 12 + players: 1 + overview: 'Experience a gripping psychological crime thriller filled with innumerable twists and turns, where even the smallest actions and choices can cause dramatic consequences. The hunt is on for the Origami Killer, named after his calling card of leaving folded paper shapes on victims. Four characters, each with their own motives, take part in a desperate attempt to stop the killer from claiming a new victim.' + last_updated: '2018-07-11 21:05:01' + rating: 'M - Mature' + coop: 'No' + youtube: 'XsGJOmATjKM' + os: null + processor: null + ram: null + hdd: null + video: null + sound: null + developers: [6898] + genres: [2] + publishers: [14] + alternates: null + - id: 552 + game_title: 'Ninja Gaiden Sigma' + release_date: '2007-07-03' + platform: 12 + players: null + overview: 'Ninja Gaiden Sigma, stylized as Ninja Gaiden ?, is an action-adventure game developed by Team Ninja for the PlayStation 3. It is an enhanced port of Ninja Gaiden, originally released on Xbox in 2004, and is the second expansion to the game after Ninja Gaiden Black. The game was released in the summer of 2007 to very positive reviews. In 2012, a port for the PlayStation Vita, titled Ninja Gaiden Sigma Plus was released on the same day the console launched in Europe and North America.[1' + last_updated: '2018-07-11 21:05:01' + rating: null + coop: 'No' + youtube: null + os: null + processor: null + ram: null + hdd: null + video: null + sound: null + developers: null + genres: null + publishers: null + alternates: null + - id: 641 + game_title: 'Bayonetta' + release_date: '2010-01-05' + platform: 12 + players: null + overview: 'Bayonetta is a stylish and cinematic action game, directed by Hideki Kamiya. + +A witch with powers beyond the comprehension of mere mortals, Bayonetta faces-off against countless angelic enemies, many reaching epic proportions, in a game of 100% pure, unadulterated all-out action. Outlandish finishing moves are performed with balletic grace as Bayonetta flows from one fight to another. With magnificent over-the-top action taking place in stages that are a veritable theme park of exciting attractions, Bayonetta pushes the limits of the action genre, bringing to life its fast-paced, dynamic climax combat.' + last_updated: '2018-07-11 21:05:01' + rating: 'M - Mature' + coop: 'No' + youtube: 'qD62SZwhP1M' + os: null + processor: null + ram: null + hdd: null + video: null + sound: null + developers: [1829, 7549] + genres: [1] + publishers: [15] + alternates: null + - id: 650 + game_title: 'Final Fantasy XIV' + release_date: '2010-09-21' + platform: 12 + players: null + overview: 'The game takes place in a land called Hydaelyn, mainly in a region named Eorzea, which will have a contemporaneously aesthetic blend of science fiction and classic fantasy elements.' + last_updated: '2018-07-11 21:05:01' + rating: 'T - Teen' + coop: 'No' + youtube: null + os: null + processor: null + ram: null + hdd: null + video: null + sound: null + developers: [2808] + genres: [4] + publishers: [12] + alternates: null + - id: 809 + game_title: 'LittleBigPlanet' + release_date: '2008-10-27' + platform: 12 + players: 4 + overview: 'If you were to stand on LittleBigPlanet and try to imagine a more astounding, fantastic, and creative place, full of enthralling adventure, uncanny characters, and brilliant things to do... you couldn’t. All imagination is here, and what you do with it all is entirely up to you. + +Build new levels and expand the environment, collect the many and varied tools and objects to make your mark on this world, or just simply enjoy the people and puzzles they’ve set. + +LittleBigPlanet is the manifested embodiment of your perfect dream world...' + last_updated: '2018-08-11 15:01:11' + rating: 'E - Everyone' + coop: 'Yes' + youtube: 'QlRNggZoInE' + os: null + processor: null + ram: null + hdd: null + video: null + sound: null + developers: [5352] + genres: [5, 12, 15] + publishers: [19] + alternates: [Little Big Planet, LBP, LittleBIGPlanet, Little BIG Planet] + - id: 810 + game_title: 'Gran Turismo 5' + release_date: '2010-11-24' + platform: 12 + players: 1 + overview: 'Gran Turismo 5 is the fifth edition of the Gran Turismo sim racing video game series. It is the first game in the franchise to provide a damage model, with variations of damage depending on whether a vehicle is a "Standard" or "Premium" car. The game also features weather effects, however they are only available on certain circuits. Optional Stereoscopic-3D resolution and Karting found a place in the game.Furthermore, new visual effects have been introduced, including dynamic skid marks, dust and the ability for drivers to flash their headlights. A course editor which allows the player to create new circuits by using tools that randomly generate track-parts according to certain player-selected specifications, including the number of corners, the time of day and the number of sectors. There are a variety of themes the player can choose from to act as a base for each circuit design. Themes also have an effect on track length and highest elevation.' + last_updated: '2018-07-11 21:05:01' + rating: null + coop: 'No' + youtube: 'l2uQ2ayvvWY' + os: null + processor: null + ram: null + hdd: null + video: null + sound: null + developers: [6739] + genres: [7] + publishers: [14] + alternates: null + include: + type: object + required: + - boxart + - platform + properties: + boxart: + type: object + required: + - base_url + - data + properties: + base_url: + type: object + required: + - original + - small + - thumb + - cropped_center_thumb + - medium + - large + properties: + original: + type: string + example: 'https://cdn.thegamesdb.net/images/original/' + small: + type: string + example: 'https://cdn.thegamesdb.net/images/small/' + thumb: + type: string + example: 'https://cdn.thegamesdb.net/images/thumb/' + cropped_center_thumb: + type: string + example: 'https://cdn.thegamesdb.net/images/cropped_center_thumb/' + medium: + type: string + example: 'https://cdn.thegamesdb.net/images/medium/' + large: + type: string + example: 'https://cdn.thegamesdb.net/images/large/' + data: + type: object + required: + - "17" + - "21" + - "31" + - "36" + - "37" + - "45" + - "46" + - "70" + - "94" + - "97" + - "98" + - "100" + - "104" + - "201" + - "319" + - "552" + - "641" + - "650" + - "809" + - "810" + properties: + 17: + type: array + items: + type: object + properties: + id: + type: integer + minimum: 0 + type: + type: string + side: + type: string + filename: + type: string + resolution: + type: string + example: + - id: 9287 + type: 'boxart' + side: 'front' + filename: 'boxart/front/17-2.jpg' + resolution: '668x768' + 21: + type: array + items: + type: object + properties: + id: + type: integer + minimum: 0 + type: + type: string + side: + type: string + filename: + type: string + resolution: + type: string + example: + - id: 21714 + type: 'boxart' + side: 'front' + filename: 'boxart/front/21-1.jpg' + resolution: '640x739' + - id: 21715 + type: 'boxart' + side: 'back' + filename: 'boxart/back/21-1.jpg' + resolution: '640x731' + 31: + type: array + items: + type: object + properties: + id: + type: integer + minimum: 0 + type: + type: string + side: + type: string + filename: + type: string + resolution: + type: string + example: + - id: 17001 + type: 'boxart' + side: 'front' + filename: 'boxart/front/31-1.jpg' + resolution: '1494x1775' + - id: 17002 + type: 'boxart' + side: 'back' + filename: 'boxart/back/31-1.jpg' + resolution: '1521x1775' + 36: + type: array + items: + type: object + properties: + id: + type: integer + minimum: 0 + type: + type: string + side: + type: string + filename: + type: string + resolution: + type: string + example: + - id: 17011 + type: 'boxart' + side: 'front' + filename: 'boxart/front/36-1.jpg' + resolution: '1536x1758' + - id: 17012 + type: 'boxart' + side: 'back' + filename: 'boxart/back/36-1.jpg' + resolution: '1521x1758' + 37: + type: array + items: + type: object + properties: + id: + type: integer + minimum: 0 + type: + type: string + side: + type: string + filename: + type: string + resolution: + type: string + example: + - id: 17015 + type: 'boxart' + side: 'front' + filename: 'boxart/front/37-1.jpg' + resolution: '1536x1758' + - id: 17016 + type: 'boxart' + side: 'back' + filename: 'boxart/back/37-1.jpg' + resolution: '1527x1758' + 45: + type: array + items: + type: object + properties: + id: + type: integer + minimum: 0 + type: + type: string + side: + type: string + filename: + type: string + resolution: + type: string + example: + - id: 17027 + type: 'boxart' + side: 'front' + filename: 'boxart/front/45-1.jpg' + resolution: '1536x1758' + - id: 17028 + type: 'boxart' + side: 'back' + filename: 'boxart/back/45-1.jpg' + resolution: '1521x1758' + 46: + type: array + items: + type: object + properties: + id: + type: integer + minimum: 0 + type: + type: string + side: + type: string + filename: + type: string + resolution: + type: string + example: + - id: 17029 + type: 'boxart' + side: 'front' + filename: 'boxart/front/46-1.jpg' + resolution: '1539x1758' + - id: 17030 + type: 'boxart' + side: 'back' + filename: 'boxart/back/46-1.jpg' + resolution: '1524x1758' + 70: + type: array + items: + type: object + properties: + id: + type: integer + minimum: 0 + type: + type: string + side: + type: string + filename: + type: string + resolution: + type: string + example: + - id: 5049 + type: 'boxart' + side: 'back' + filename: 'boxart/back/70-1.jpg' + resolution: '640x742' + - id: 86416 + type: 'boxart' + side: 'front' + filename: 'boxart/front/70-1.jpg' + resolution: '640x738' + 94: + type: array + items: + type: object + properties: + id: + type: integer + minimum: 0 + type: + type: string + side: + type: string + filename: + type: string + resolution: + type: string + example: + - id: 21726 + type: 'boxart' + side: 'front' + filename: 'boxart/front/94-1.jpg' + resolution: '640x734' + - id: 21727 + type: 'boxart' + side: 'back' + filename: 'boxart/back/94-1.jpg' + resolution: '640x741' + 97: + type: array + items: + type: object + properties: + id: + type: integer + minimum: 0 + type: + type: string + side: + type: string + filename: + type: string + resolution: + type: string + example: + - id: 17053 + type: 'boxart' + side: 'front' + filename: 'boxart/front/97-1.jpg' + resolution: '1515x1760' + - id: 17054 + type: 'boxart' + side: 'back' + filename: 'boxart/back/97-1.jpg' + resolution: '1512x1760' + 98: + type: array + items: + type: object + properties: + id: + type: integer + minimum: 0 + type: + type: string + side: + type: string + filename: + type: string + resolution: + type: string + example: + - id: 21734 + type: 'boxart' + side: 'front' + filename: 'boxart/front/98-1.jpg' + resolution: '640x836' + - id: 21735 + type: 'boxart' + side: 'back' + filename: 'boxart/back/98-1.jpg' + resolution: '640x738' + 100: + type: array + items: + type: object + properties: + id: + type: integer + minimum: 0 + type: + type: string + side: + type: string + filename: + type: string + resolution: + type: string + example: + - id: 12332 + type: 'boxart' + side: 'front' + filename: 'boxart/front/100-1.jpg' + resolution: '1021x1176' + 104: + type: array + items: + type: object + properties: + id: + type: integer + minimum: 0 + type: + type: string + side: + type: string + filename: + type: string + resolution: + type: string + example: + - id: 16980 + type: 'boxart' + side: 'back' + filename: 'boxart/back/104-1.jpg' + resolution: '1521x1758' + - id: 66672 + type: 'boxart' + side: 'front' + filename: 'boxart/front/104-1.jpg' + resolution: '433x500' + 201: + type: array + items: + type: object + properties: + id: + type: integer + minimum: 0 + type: + type: string + side: + type: string + filename: + type: string + resolution: + type: string + example: + - id: 17079 + type: 'boxart' + side: 'front' + filename: 'boxart/front/201-1.jpg' + resolution: '1533x1758' + - id: 17080 + type: 'boxart' + side: 'back' + filename: 'boxart/back/201-1.jpg' + resolution: '1521x1758' + 319: + type: array + items: + type: object + properties: + id: + type: integer + minimum: 0 + type: + type: string + side: + type: string + filename: + type: string + resolution: + type: string + example: + - id: 9677 + type: 'boxart' + side: 'front' + filename: 'boxart/front/319-1.jpg' + resolution: '1390x1600' + 552: + type: array + items: + type: object + properties: + id: + type: integer + minimum: 0 + type: + type: string + side: + type: string + filename: + type: string + resolution: + type: string + example: + - id: 17041 + type: 'boxart' + side: 'front' + filename: 'boxart/front/552-1.jpg' + resolution: '1539x1758' + - id: 17042 + type: 'boxart' + side: 'back' + filename: 'boxart/back/552-1.jpg' + resolution: '1527x1758' + 641: + type: array + items: + type: object + properties: + id: + type: integer + minimum: 0 + type: + type: string + side: + type: string + filename: + type: string + resolution: + type: string + example: + - id: 53636 + type: 'boxart' + side: 'back' + filename: 'boxart/back/641-1.jpg' + resolution: '1524x1762' + - id: 61147 + type: 'boxart' + side: 'front' + filename: 'boxart/front/641-1.jpg' + resolution: '1301x1500' + 650: + type: array + items: + type: object + properties: + id: + type: integer + minimum: 0 + type: + type: string + side: + type: string + filename: + type: string + resolution: + type: string + example: + - id: 10806 + type: 'boxart' + side: 'front' + filename: 'boxart/front/650-1.jpg' + resolution: '1280x1452' + 809: + type: array + items: + type: object + properties: + id: + type: integer + minimum: 0 + type: + type: string + side: + type: string + filename: + type: string + resolution: + type: string + example: + - id: 17021 + type: 'boxart' + side: 'front' + filename: 'boxart/front/809-1.jpg' + resolution: '1533x1758' + - id: 17022 + type: 'boxart' + side: 'back' + filename: 'boxart/back/809-1.jpg' + resolution: '1518x1758' + 810: + type: array + items: + type: object + properties: + id: + type: integer + minimum: 0 + type: + type: string + side: + type: string + filename: + type: string + resolution: + type: string + example: + - id: 11772 + type: 'boxart' + side: 'front' + filename: 'boxart/front/810-1.jpg' + resolution: '1043x1200' + platform: + type: object + required: + - data + properties: + data: + type: object + required: + - "14" + - "12" + - "13" + properties: + 14: + type: object + required: + - id + - name + - alias + properties: + id: + type: integer + minimum: 0 + example: 14 + name: + type: string + example: 'Microsoft Xbox' + alias: + type: string + example: 'microsoft-xbox' + 12: + type: object + required: + - id + - name + - alias + properties: + id: + type: integer + minimum: 0 + example: 12 + name: + type: string + example: 'Sony Playstation 3' + alias: + type: string + example: 'sony-playstation-3' + 13: + type: object + required: + - id + - name + - alias + properties: + id: + type: integer + minimum: 0 + example: 13 + name: + type: string + example: 'Sony Playstation Portable' + alias: + type: string + example: 'sony-psp' + pages: + type: object + required: + - previous + - current + - next + properties: + previous: + type: string + example: '' + current: + type: string + example: 'https://api.thegamesdb.net/Games/ByPlatformID?apikey=APIKEY&id=12%2C13%2C14&fields=players%2Cpublishers%2Cgenres%2Coverview%2Clast_updated%2Crating%2Cplatform%2Ccoop%2Cyoutube%2Cos%2Cprocessor%2Cram%2Chdd%2Cvideo%2Csound%2Calternates&include=boxart%2Cplatform&page=1' + next: + type: string + example: 'https://api.thegamesdb.net/Games/ByPlatformID?apikey=APIKEY&id=12%2C13%2C14&fields=players%2Cpublishers%2Cgenres%2Coverview%2Clast_updated%2Crating%2Cplatform%2Ccoop%2Cyoutube%2Cos%2Cprocessor%2Cram%2Chdd%2Cvideo%2Csound%2Calternates&include=boxart%2Cplatform&page=2' + remaining_monthly_allowance: + type: integer + minimum: 0 + example: 266 + extra_allowance: + type: integer + minimum: 0 + example: 0 + GamesImages: + type: object + required: + - code + - status + - data + - pages + - remaining_monthly_allowance + - extra_allowance + properties: + code: + type: integer + minimum: 0 + example: 200 + status: + type: string + example: 'Success' + data: + type: object + required: + - count + - base_url + - images + properties: + count: + type: integer + minimum: 0 + example: 3 + base_url: + type: object + required: + - original + - small + - thumb + - cropped_center_thumb + - medium + - large + properties: + original: + type: string + example: 'https://cdn.thegamesdb.net/images/original/' + small: + type: string + example: 'https://cdn.thegamesdb.net/images/small/' + thumb: + type: string + example: 'https://cdn.thegamesdb.net/images/thumb/' + cropped_center_thumb: + type: string + example: 'https://cdn.thegamesdb.net/images/cropped_center_thumb/' + medium: + type: string + example: 'https://cdn.thegamesdb.net/images/medium/' + large: + type: string + example: 'https://cdn.thegamesdb.net/images/large/' + images: + type: object + required: + - "12" + - "13" + - "14" + properties: + 12: + type: array + items: + type: object + properties: + id: + type: integer + minimum: 0 + type: + type: string + side: + type: string + filename: + type: string + resolution: + type: string + example: + - id: 21 + type: 'fanart' + side: null + filename: 'fanart/12-1.jpg' + resolution: '1920x1080' + - id: 117 + type: 'fanart' + side: null + filename: 'fanart/12-2.jpg' + resolution: '1920x1080' + - id: 118 + type: 'fanart' + side: null + filename: 'fanart/12-3.jpg' + resolution: '1920x1080' + - id: 119 + type: 'fanart' + side: null + filename: 'fanart/12-4.jpg' + resolution: '1920x1080' + - id: 120 + type: 'fanart' + side: null + filename: 'fanart/12-5.jpg' + resolution: '1920x1080' + - id: 121 + type: 'fanart' + side: null + filename: 'fanart/12-6.jpg' + resolution: '1920x1080' + - id: 1551 + type: 'boxart' + side: 'front' + filename: 'boxart/front/12-1.jpg' + resolution: '1532x2176' + 13: + type: array + items: + type: object + properties: + id: + type: integer + minimum: 0 + type: + type: string + side: + type: string + filename: + type: string + resolution: + type: string + example: + - id: 22 + type: 'fanart' + side: null + filename: 'fanart/13-1.jpg' + resolution: '1920x1080' + - id: 500 + type: 'fanart' + side: null + filename: 'fanart/13-2.jpg' + resolution: '1920x1080' + - id: 661 + type: 'fanart' + side: null + filename: 'fanart/13-3.jpg' + resolution: '1920x1080' + - id: 1349 + type: 'fanart' + side: null + filename: 'fanart/13-4.jpg' + resolution: '1920x1080' + - id: 1350 + type: 'fanart' + side: null + filename: 'fanart/13-5.jpg' + resolution: '1920x1080' + - id: 1351 + type: 'fanart' + side: null + filename: 'fanart/13-6.jpg' + resolution: '1920x1080' + - id: 1352 + type: 'fanart' + side: null + filename: 'fanart/13-7.jpg' + resolution: '1920x1080' + - id: 1353 + type: 'fanart' + side: null + filename: 'fanart/13-8.jpg' + resolution: '1920x1080' + - id: 1552 + type: 'boxart' + side: 'front' + filename: 'boxart/front/13-1.jpg' + resolution: '800x1135' + - id: 13880 + type: 'boxart' + side: 'back' + filename: 'boxart/back/13-1.jpg' + resolution: '1487x2106' + - id: 15957 + type: 'fanart' + side: null + filename: 'fanart/13-9.jpg' + resolution: '1920x1080' + - id: 15958 + type: 'fanart' + side: null + filename: 'fanart/13-10.jpg' + resolution: '1920x1080' + - id: 15959 + type: 'fanart' + side: null + filename: 'fanart/13-11.jpg' + resolution: '1920x1080' + - id: 15960 + type: 'fanart' + side: null + filename: 'fanart/13-12.jpg' + resolution: '1920x1080' + - id: 19246 + type: 'fanart' + side: null + filename: 'fanart/13-13.jpg' + resolution: '1920x1080' + 14: + type: array + items: + type: object + properties: + id: + type: integer + minimum: 0 + type: + type: string + side: + type: string + filename: + type: string + resolution: + type: string + example: + - id: 23 + type: 'fanart' + side: null + filename: 'fanart/14-1.jpg' + resolution: '1920x1080' + - id: 417 + type: 'fanart' + side: null + filename: 'fanart/14-2.jpg' + resolution: '1920x1080' + - id: 918 + type: 'fanart' + side: null + filename: 'fanart/14-3.jpg' + resolution: '1920x1080' + - id: 1315 + type: 'fanart' + side: null + filename: 'fanart/14-4.jpg' + resolution: '1920x1080' + - id: 1545 + type: 'fanart' + side: null + filename: 'fanart/14-5.jpg' + resolution: '1920x1080' + - id: 1773 + type: 'fanart' + side: null + filename: 'fanart/14-6.jpg' + resolution: '1920x1080' + - id: 1774 + type: 'fanart' + side: null + filename: 'fanart/14-7.jpg' + resolution: '1920x1080' + - id: 1961 + type: 'fanart' + side: null + filename: 'fanart/14-8.jpg' + resolution: '1920x1080' + - id: 13300 + type: 'boxart' + side: 'back' + filename: 'boxart/back/14-1.jpg' + resolution: '1524x2147' + - id: 13301 + type: 'boxart' + side: 'front' + filename: 'boxart/front/14-2.jpg' + resolution: '1527x2150' + - id: 20494 + type: 'fanart' + side: null + filename: 'fanart/14-9.jpg' + resolution: '1920x1080' + pages: + type: object + required: + - previous + - current + - next + properties: + previous: + type: string + example: '' + current: + type: string + example: 'https://api.thegamesdb.net/Games/Images?apikey=APIKEY&games_id=12%2C13%2C14&filter%5Btype%5D=boxart%2Cfanart&page=1' + next: + type: string + example: '' + remaining_monthly_allowance: + type: integer + minimum: 0 + example: 265 + extra_allowance: + type: integer + minimum: 0 + example: 0 + GamesUpdates: + type: object + required: + - code + - status + - data + - pages + - remaining_monthly_allowance + - extra_allowance + properties: + code: + type: integer + minimum: 0 + example: 200 + status: + type: string + example: 'Success' + data: + type: object + required: + - count + - updates + properties: + count: + type: integer + minimum: 0 + example: 66 + updates: + type: array + items: + type: object + properties: + edit_id: + type: integer + minimum: 0 + game_id: + type: integer + minimum: 0 + timestamp: + type: string + type: + type: string + value: + type: string + example: + - edit_id: 23159 + game_id: 60901 + timestamp: '2018-09-05 21:21:27' + type: 'boxart' + value: 'boxart/front/60901-1.jpg' + - edit_id: 23158 + game_id: 60901 + timestamp: '2018-09-05 21:15:04' + type: 'rating' + value: 'E10+ - Everyone 10+' + - edit_id: 23157 + game_id: 60901 + timestamp: '2018-09-05 21:15:04' + type: 'platform' + value: 9 + - edit_id: 23156 + game_id: 60901 + timestamp: '2018-09-05 21:15:04' + type: 'youtube' + value: null + - edit_id: 23155 + game_id: 60901 + timestamp: '2018-09-05 21:15:04' + type: 'coop' + value: 'No' + - edit_id: 23154 + game_id: 60901 + timestamp: '2018-09-05 21:15:04' + type: 'players' + value: 4 + - edit_id: 23153 + game_id: 60901 + timestamp: '2018-09-05 21:15:04' + type: 'release_date' + value: '2008-11-16' + - edit_id: 23152 + game_id: 60901 + timestamp: '2018-09-05 21:15:04' + type: 'overview' + value: null + - edit_id: 23151 + game_id: 60901 + timestamp: '2018-09-05 21:15:04' + type: 'game_title' + value: 'Shaun White Snowboarding Road Trip (Target Limited Edition' + - edit_id: 23150 + game_id: 60901 + timestamp: '2018-09-05 21:15:04' + type: 'developers' + value: [9150] + - edit_id: 23149 + game_id: 60901 + timestamp: '2018-09-05 21:15:04' + type: 'genres' + value: [1] + - edit_id: 23148 + game_id: 60901 + timestamp: '2018-09-05 21:15:04' + type: 'game' + value: '[NEW]' + - edit_id: 23147 + game_id: 37562 + timestamp: '2018-09-05 20:08:02' + type: 'boxart' + value: 'boxart/front/37562-1.jpg' + - edit_id: 23146 + game_id: 37562 + timestamp: '2018-09-05 20:08:02' + type: 'boxart' + value: '[REMOVED]' + - edit_id: 23145 + game_id: 60890 + timestamp: '2018-09-05 18:47:33' + type: 'developers' + value: [10378] + - edit_id: 23144 + game_id: 7094 + timestamp: '2018-09-05 18:39:00' + type: 'release_date' + value: '2006-09-05' + - edit_id: 23143 + game_id: 7094 + timestamp: '2018-09-05 18:39:00' + type: 'genres' + value: [1, 15] + - edit_id: 23142 + game_id: 32249 + timestamp: '2018-09-05 18:38:26' + type: 'game_title' + value: 'Trine 2: Goblin Menace' + - edit_id: 23141 + game_id: 44012 + timestamp: '2018-09-05 18:37:34' + type: 'game_title' + value: 'The Penguins of Madagascar: Dr. Blowhole Returns - Again!' + - edit_id: 23140 + game_id: 44012 + timestamp: '2018-09-05 18:37:34' + type: 'developers' + value: [3635] + - edit_id: 23139 + game_id: 44012 + timestamp: '2018-09-05 18:37:34' + type: 'genres' + value: [1, 5] + - edit_id: 23138 + game_id: 19304 + timestamp: '2018-09-05 18:36:41' + type: 'release_date' + value: '2006-10-02' + - edit_id: 23137 + game_id: 19304 + timestamp: '2018-09-05 18:36:41' + type: 'game_title' + value: 'Disney''s The Little Mermaid: Ariel''s Undersea Adventure' + - edit_id: 23136 + game_id: 3494 + timestamp: '2018-09-05 18:32:37' + type: 'game_title' + value: 'Rayman: 10th Anniversary' + - edit_id: 23135 + game_id: 3494 + timestamp: '2018-09-05 18:32:37' + type: 'genres' + value: [1, 2, 15] + - edit_id: 23134 + game_id: 42667 + timestamp: '2018-09-05 18:31:55' + type: 'rating' + value: 'Not Rated' + - edit_id: 23133 + game_id: 42667 + timestamp: '2018-09-05 18:31:55' + type: 'game_title' + value: 'Playstation Underground Vol. 3 Issue 3' + - edit_id: 23132 + game_id: 42667 + timestamp: '2018-09-05 18:31:55' + type: 'genres' + value: [1] + - edit_id: 23131 + game_id: 43622 + timestamp: '2018-09-05 18:29:30' + type: 'game_title' + value: 'Glacier 3: The Meltdown' + - edit_id: 23130 + game_id: 6806 + timestamp: '2018-09-05 18:28:25' + type: 'release_date' + value: '2011-02-22' + - edit_id: 23129 + game_id: 6806 + timestamp: '2018-09-05 18:28:25' + type: 'game_title' + value: 'Giana Sisters DS' + - edit_id: 23128 + game_id: 6806 + timestamp: '2018-09-05 18:28:25' + type: 'developers' + value: [1108] + - edit_id: 23127 + game_id: 6806 + timestamp: '2018-09-05 18:28:25' + type: 'genres' + value: [1, 15] + - edit_id: 23126 + game_id: 53494 + timestamp: '2018-09-05 18:27:32' + type: 'rating' + value: 'Not Rated' + - edit_id: 23125 + game_id: 53494 + timestamp: '2018-09-05 18:27:32' + type: 'game_title' + value: 'Dungeon Rushers' + - edit_id: 23124 + game_id: 53494 + timestamp: '2018-09-05 18:27:32' + type: 'genres' + value: [4, 6] + - edit_id: 23123 + game_id: 19440 + timestamp: '2018-09-05 18:25:43' + type: 'boxart' + value: 'boxart/back/19440-1.jpg' + - edit_id: 23122 + game_id: 19440 + timestamp: '2018-09-05 18:25:20' + type: 'genres' + value: [1, 15] + - edit_id: 23121 + game_id: 19440 + timestamp: '2018-09-05 18:25:16' + type: 'rating' + value: 'Not Rated' + - edit_id: 23120 + game_id: 19440 + timestamp: '2018-09-05 18:25:16' + type: 'game_title' + value: 'Densetsu no Starfy' + - edit_id: 23119 + game_id: 14446 + timestamp: '2018-09-05 18:23:56' + type: 'game_title' + value: 'American McGee Presents Bad Day LA' + - edit_id: 23118 + game_id: 14446 + timestamp: '2018-09-05 18:23:56' + type: 'publishers' + value: [698] + - edit_id: 23117 + game_id: 14446 + timestamp: '2018-09-05 18:23:55' + type: 'developers' + value: [2813] + - edit_id: 23116 + game_id: 14446 + timestamp: '2018-09-05 18:23:51' + type: 'boxart' + value: 'boxart/back/14446-1.jpg' + - edit_id: 23115 + game_id: 60900 + timestamp: '2018-09-05 18:15:05' + type: 'game_title' + value: 'Prison Architect' + - edit_id: 23114 + game_id: 60900 + timestamp: '2018-09-05 09:39:26' + type: 'boxart' + value: 'boxart/front/60900-1.jpg' + - edit_id: 23113 + game_id: 60900 + timestamp: '2018-09-05 09:38:30' + type: 'rating' + value: 'M - Mature' + - edit_id: 23112 + game_id: 60900 + timestamp: '2018-09-05 09:38:30' + type: 'platform' + value: 4920 + - edit_id: 23111 + game_id: 60900 + timestamp: '2018-09-05 09:38:30' + type: 'youtube' + value: 'https://www.youtube.com/watch?v=lASb8niHpdM' + - edit_id: 23110 + game_id: 60900 + timestamp: '2018-09-05 09:38:30' + type: 'coop' + value: 'No' + - edit_id: 23109 + game_id: 60900 + timestamp: '2018-09-05 09:38:30' + type: 'players' + value: 1 + - edit_id: 23108 + game_id: 60900 + timestamp: '2018-09-05 09:38:30' + type: 'release_date' + value: '2016-07-01' + - edit_id: 23107 + game_id: 60900 + timestamp: '2018-09-05 09:38:30' + type: 'overview' + value: 'Build and manage a Maximum Security Prison. As the sun casts its early morning rays on a beautiful patch of countryside the clock starts ticking. You''ve got to crack on and build a holding cell to detain the job lot of maximum security prisoners that are trundling to your future prison on their yellow bus. As your workmen lay the last brick you don''t have a moment to let them rest as they need to get started on the first proper cell block so you can make room for the next prisoner intake. Once they''ve all got a place to lay their weary heads the fun can really start. You''ll need a canteen, infirmary and a guard room, oh, and don''t forget to plumb in a toilet, or things will get messy, but what about a workout area? Or solitary confinement cells? Or an execution chamber? Inspired by Dungeon Keeper, Dwarf Fortress and Theme Hospital and with over 1 million players having spent time inside, Prison Architect is the worlds best lock-em-up.' + - edit_id: 23106 + game_id: 60900 + timestamp: '2018-09-05 09:38:30' + type: 'game_title' + value: 'PRISON ARCHITECT' + - edit_id: 23105 + game_id: 60900 + timestamp: '2018-09-05 09:38:30' + type: 'publishers' + value: [868] + - edit_id: 23104 + game_id: 60900 + timestamp: '2018-09-05 09:38:30' + type: 'developers' + value: [10117, 4304] + - edit_id: 23103 + game_id: 60900 + timestamp: '2018-09-05 09:38:30' + type: 'genres' + value: [6] + - edit_id: 23102 + game_id: 60900 + timestamp: '2018-09-05 09:38:30' + type: 'game' + value: '[NEW]' + - edit_id: 23101 + game_id: 60899 + timestamp: '2018-09-05 08:29:04' + type: 'youtube' + value: 'kPLugtCvgrY' + - edit_id: 23100 + game_id: 43004 + timestamp: '2018-09-05 08:02:08' + type: 'overview' + value: 'Take a wild adventure around the Roman Empire to free the villagers held captive by Caesar''s vast army. You''ll join two heroes, Asterix and Obelix, as they use powerful combinations and attack moves to battle hordes of enemies. Your attacks include twister fusion, power hammer, earthquake, atomic magic potion, and more. In addition to fighting, you can race and ride vehicles, solve puzzles, and use different devices. You''ll need all the resources you can find to rescue your friends, who are triple locked to carts and guarded by legions of Romans.' + - edit_id: 23099 + game_id: 43004 + timestamp: '2018-09-05 08:02:08' + type: 'game_title' + value: 'Asterix & Obelix: Kick Buttix' + - edit_id: 23098 + game_id: 43004 + timestamp: '2018-09-05 08:02:08' + type: 'developers' + value: [2880] + - edit_id: 23097 + game_id: 43004 + timestamp: '2018-09-05 08:02:05' + type: 'boxart' + value: 'boxart/back/43004-1.jpg' + - edit_id: 23096 + game_id: 43004 + timestamp: '2018-09-05 08:02:05' + type: 'boxart' + value: '[REMOVED]' + - edit_id: 23095 + game_id: 43004 + timestamp: '2018-09-05 08:01:59' + type: 'boxart' + value: 'boxart/front/43004-1.jpg' + - edit_id: 23094 + game_id: 43004 + timestamp: '2018-09-05 08:01:59' + type: 'boxart' + value: '[REMOVED]' + pages: + type: object + required: + - previous + - current + - next + properties: + previous: + type: string + example: '' + current: + type: string + example: 'https://api.thegamesdb.net/Games/Updates?apikey=APIKEY&page=1' + next: + type: string + example: '' + remaining_monthly_allowance: + type: integer + minimum: 0 + example: 264 + extra_allowance: + type: integer + minimum: 0 + example: 0 + Platforms: + type: object + required: + - code + - status + - data + - remaining_monthly_allowance + - extra_allowance + properties: + code: + type: integer + minimum: 0 + example: 200 + status: + type: string + example: 'Success' + data: + type: object + required: + - count + - platforms + properties: + count: + type: integer + minimum: 0 + example: 109 + platforms: + type: object + required: + - "25" + - "4944" + - "4954" + - "4976" + - "4911" + - "4947" + - "4914" + - "4916" + - "4969" + - "4942" + - "23" + - "22" + - "26" + - "27" + - "4943" + - "28" + - "29" + - "4924" + - "4937" + - "30" + - "4968" + - "4964" + - "4970" + - "31" + - "4946" + - "40" + - "4945" + - "4952" + - "4963" + - "4974" + - "4973" + - "4965" + - "4966" + - "4928" + - "4936" + - "4932" + - "4978" + - "4962" + - "4950" + - "4940" + - "4951" + - "32" + - "4915" + - "37" + - "4961" + - "4927" + - "4948" + - "14" + - "15" + - "4920" + - "4972" + - "4929" + - "4938" + - "24" + - "4956" + - "4922" + - "4923" + - "4912" + - "3" + - "8" + - "7" + - "4" + - "5" + - "41" + - "2" + - "4957" + - "4971" + - "4918" + - "9" + - "38" + - "4935" + - "4921" + - "1" + - "4933" + - "4934" + - "4930" + - "4917" + - "4975" + - "4967" + - "4979" + - "33" + - "21" + - "16" + - "20" + - "18" + - "35" + - "36" + - "4958" + - "17" + - "4949" + - "4977" + - "4931" + - "4913" + - "10" + - "11" + - "12" + - "4919" + - "13" + - "39" + - "6" + - "4953" + - "4960" + - "4941" + - "34" + - "4955" + - "4939" + - "4959" + - "4925" + - "4926" + properties: + 25: + type: object + required: + - id + - name + - alias + - icon + - console + - controller + - developer + properties: + id: + type: integer + minimum: 0 + example: 25 + name: + type: string + example: '3DO' + alias: + type: string + example: '3do' + icon: + type: string + example: '3do-1336524121.png' + console: + type: string + example: '25.png' + controller: + type: string + example: '' + developer: + type: string + example: 'The 3DO Company' + 4944: + type: object + required: + - id + - name + - alias + - icon + - console + - controller + - developer + properties: + id: + type: integer + minimum: 0 + example: 4944 + name: + type: string + example: 'Acorn Archimedes' + alias: + type: string + example: 'acorn-archimedes' + icon: + type: string + example: 'acorn-archimedes-1446690349.png' + console: + type: string + example: '4944.png' + controller: + type: string + example: '' + developer: + type: string + example: 'Acorn Computers' + 4954: + type: object + required: + - id + - name + - alias + - icon + - console + - controller + - developer + properties: + id: + type: integer + minimum: 0 + example: 4954 + name: + type: string + example: 'Acorn Electron' + alias: + type: string + example: 'acorn-electron' + icon: + type: string + example: 'acorn-electron-1468269141.png' + console: + type: string + example: '4954.png' + controller: + type: string + example: '' + developer: + type: string + example: 'Acorn Computers' + 4976: + type: object + required: + - id + - name + - alias + - icon + - console + - controller + - developer + properties: + id: + type: integer + minimum: 0 + example: 4976 + name: + type: string + example: 'Action Max' + alias: + type: string + example: 'action-max' + icon: + type: string + example: 'console_default.png' + console: + type: string + example: '4976.png' + controller: + type: string + example: '' + developer: + type: string + example: '' + 4911: + type: object + required: + - id + - name + - alias + - icon + - console + - controller + - developer + properties: + id: + type: integer + minimum: 0 + example: 4911 + name: + type: string + example: 'Amiga' + alias: + type: string + example: 'amiga' + icon: + type: string + example: 'amiga-1336524133.png' + console: + type: string + example: '4911.png' + controller: + type: string + example: '' + developer: + type: string + example: 'Commodore' + 4947: + type: object + required: + - id + - name + - alias + - icon + - console + - controller + - developer + properties: + id: + type: integer + minimum: 0 + example: 4947 + name: + type: string + example: 'Amiga CD32' + alias: + type: string + example: 'amiga-cd32' + icon: + type: string + example: 'amiga-cd32-1447024303.png' + console: + type: string + example: '4947.png' + controller: + type: string + example: '' + developer: + type: string + example: 'Commodore' + 4914: + type: object + required: + - id + - name + - alias + - icon + - console + - controller + - developer + properties: + id: + type: integer + minimum: 0 + example: 4914 + name: + type: string + example: 'Amstrad CPC' + alias: + type: string + example: 'amstrad-cpc' + icon: + type: string + example: 'amstrad-cpc-1393097665.png' + console: + type: string + example: '4914.png' + controller: + type: string + example: '' + developer: + type: string + example: 'Amstrad' + 4916: + type: object + required: + - id + - name + - alias + - icon + - console + - controller + - developer + properties: + id: + type: integer + minimum: 0 + example: 4916 + name: + type: string + example: 'Android' + alias: + type: string + example: 'android' + icon: + type: string + example: '4916-1393096477.png' + console: + type: string + example: '' + controller: + type: string + example: '' + developer: + type: string + example: 'Google, Android Inc.' + 4969: + type: object + required: + - id + - name + - alias + - icon + - console + - controller + - developer + properties: + id: + type: integer + minimum: 0 + example: 4969 + name: + type: string + example: 'APF MP-1000' + alias: + type: string + example: 'apf-mp-1000' + icon: + type: string + example: 'console_default.png' + console: + type: string + example: '4969.png' + controller: + type: string + example: '' + developer: + type: string + example: 'APF Electronics Inc' + 4942: + type: object + required: + - id + - name + - alias + - icon + - console + - controller + - developer + properties: + id: + type: integer + minimum: 0 + example: 4942 + name: + type: string + example: 'Apple II' + alias: + type: string + example: 'apple2' + icon: + type: string + example: 'apple2-1446583849.png' + console: + type: string + example: '4942.png' + controller: + type: string + example: '' + developer: + type: string + example: 'Apple' + 23: + type: object + required: + - id + - name + - alias + - icon + - console + - controller + - developer + properties: + id: + type: integer + minimum: 0 + example: 23 + name: + type: string + example: 'Arcade' + alias: + type: string + example: 'arcade' + icon: + type: string + example: 'arcade-1336524196.png' + console: + type: string + example: '23.png' + controller: + type: string + example: '' + developer: + type: string + example: '' + 22: + type: object + required: + - id + - name + - alias + - icon + - console + - controller + - developer + properties: + id: + type: integer + minimum: 0 + example: 22 + name: + type: string + example: 'Atari 2600' + alias: + type: string + example: 'atari-2600' + icon: + type: string + example: 'atari-2600-1336524261.png' + console: + type: string + example: '22.png' + controller: + type: string + example: '' + developer: + type: string + example: 'Atari' + 26: + type: object + required: + - id + - name + - alias + - icon + - console + - controller + - developer + properties: + id: + type: integer + minimum: 0 + example: 26 + name: + type: string + example: 'Atari 5200' + alias: + type: string + example: 'atari-5200' + icon: + type: string + example: 'atari-5200-1393096687.png' + console: + type: string + example: '26.png' + controller: + type: string + example: '' + developer: + type: string + example: 'Atari' + 27: + type: object + required: + - id + - name + - alias + - icon + - console + - controller + - developer + properties: + id: + type: integer + minimum: 0 + example: 27 + name: + type: string + example: 'Atari 7800' + alias: + type: string + example: 'atari-7800' + icon: + type: string + example: 'atari-7800-1393096747.png' + console: + type: string + example: '27.png' + controller: + type: string + example: '' + developer: + type: string + example: 'Atari' + 4943: + type: object + required: + - id + - name + - alias + - icon + - console + - controller + - developer + properties: + id: + type: integer + minimum: 0 + example: 4943 + name: + type: string + example: 'Atari 800' + alias: + type: string + example: 'atari800' + icon: + type: string + example: 'atari800-1446587367.png' + console: + type: string + example: '4943.png' + controller: + type: string + example: '' + developer: + type: string + example: 'Atari Corporation' + 28: + type: object + required: + - id + - name + - alias + - icon + - console + - controller + - developer + properties: + id: + type: integer + minimum: 0 + example: 28 + name: + type: string + example: 'Atari Jaguar' + alias: + type: string + example: 'atari-jaguar' + icon: + type: string + example: 'atari-jaguar-1336524288.png' + console: + type: string + example: '28.png' + controller: + type: string + example: '' + developer: + type: string + example: 'Atari' + 29: + type: object + required: + - id + - name + - alias + - icon + - console + - controller + - developer + properties: + id: + type: integer + minimum: 0 + example: 29 + name: + type: string + example: 'Atari Jaguar CD' + alias: + type: string + example: 'atari-jaguar-cd' + icon: + type: string + example: 'atari-jaguar-cd-1336524356.png' + console: + type: string + example: '29.png' + controller: + type: string + example: '' + developer: + type: string + example: 'Atari' + 4924: + type: object + required: + - id + - name + - alias + - icon + - console + - controller + - developer + properties: + id: + type: integer + minimum: 0 + example: 4924 + name: + type: string + example: 'Atari Lynx' + alias: + type: string + example: 'atari-lynx' + icon: + type: string + example: 'atari-lynx-1393097977.png' + console: + type: string + example: '4924.png' + controller: + type: string + example: '' + developer: + type: string + example: 'Epyx / Atari' + 4937: + type: object + required: + - id + - name + - alias + - icon + - console + - controller + - developer + properties: + id: + type: integer + minimum: 0 + example: 4937 + name: + type: string + example: 'Atari ST' + alias: + type: string + example: 'atari-st' + icon: + type: string + example: 'atari-st-1445259571.png' + console: + type: string + example: '4937.png' + controller: + type: string + example: '' + developer: + type: string + example: 'Atari Corporation' + 30: + type: object + required: + - id + - name + - alias + - icon + - console + - controller + - developer + properties: + id: + type: integer + minimum: 0 + example: 30 + name: + type: string + example: 'Atari XE' + alias: + type: string + example: 'atari-xe' + icon: + type: string + example: 'atari-xe-1393098372.png' + console: + type: string + example: '30.png' + controller: + type: string + example: '' + developer: + type: string + example: 'Atari' + 4968: + type: object + required: + - id + - name + - alias + - icon + - console + - controller + - developer + properties: + id: + type: integer + minimum: 0 + example: 4968 + name: + type: string + example: 'Bally Astrocade' + alias: + type: string + example: 'bally-astrocade' + icon: + type: string + example: 'console_default.png' + console: + type: string + example: '4968.png' + controller: + type: string + example: '' + developer: + type: string + example: 'Bally Manufacturing' + 4964: + type: object + required: + - id + - name + - alias + - icon + - console + - controller + - developer + properties: + id: + type: integer + minimum: 0 + example: 4964 + name: + type: string + example: 'Casio PV-1000' + alias: + type: string + example: 'casio-pv-1000' + icon: + type: string + example: 'console_default.png' + console: + type: string + example: '4964.png' + controller: + type: string + example: '' + developer: + type: string + example: 'Casio' + 4970: + type: object + required: + - id + - name + - alias + - icon + - console + - controller + - developer + properties: + id: + type: integer + minimum: 0 + example: 4970 + name: + type: string + example: 'Coleco Telstar Arcade' + alias: + type: string + example: 'coleco-telstar-arcade' + icon: + type: string + example: 'console_default.png' + console: + type: string + example: '4970.png' + controller: + type: string + example: '' + developer: + type: string + example: 'Coleco' + 31: + type: object + required: + - id + - name + - alias + - icon + - console + - controller + - developer + properties: + id: + type: integer + minimum: 0 + example: 31 + name: + type: string + example: 'Colecovision' + alias: + type: string + example: 'colecovision' + icon: + type: string + example: 'colecovision-1393096902.png' + console: + type: string + example: '31.png' + controller: + type: string + example: '' + developer: + type: string + example: 'Coleco' + 4946: + type: object + required: + - id + - name + - alias + - icon + - console + - controller + - developer + properties: + id: + type: integer + minimum: 0 + example: 4946 + name: + type: string + example: 'Commodore 128' + alias: + type: string + example: 'c128' + icon: + type: string + example: 'c128-1446691445.png' + console: + type: string + example: '4946.png' + controller: + type: string + example: '' + developer: + type: string + example: 'Commodore International' + 40: + type: object + required: + - id + - name + - alias + - icon + - console + - controller + - developer + properties: + id: + type: integer + minimum: 0 + example: 40 + name: + type: string + example: 'Commodore 64' + alias: + type: string + example: 'commodore-64' + icon: + type: string + example: 'commodore-64-1393096937.png' + console: + type: string + example: '40.png' + controller: + type: string + example: '' + developer: + type: string + example: 'Commodore International' + 4945: + type: object + required: + - id + - name + - alias + - icon + - console + - controller + - developer + properties: + id: + type: integer + minimum: 0 + example: 4945 + name: + type: string + example: 'Commodore VIC-20' + alias: + type: string + example: 'commodore-vic20' + icon: + type: string + example: 'commodore-vic20-1446691509.png' + console: + type: string + example: '4945.png' + controller: + type: string + example: '' + developer: + type: string + example: 'Commodore International' + 4952: + type: object + required: + - id + - name + - alias + - icon + - console + - controller + - developer + properties: + id: + type: integer + minimum: 0 + example: 4952 + name: + type: string + example: 'Dragon 32/64' + alias: + type: string + example: 'dragon32-64' + icon: + type: string + example: 'dragon32-64-1449254358.png' + console: + type: string + example: '4952.png' + controller: + type: string + example: '' + developer: + type: string + example: 'Dragon Data' + 4963: + type: object + required: + - id + - name + - alias + - icon + - console + - controller + - developer + properties: + id: + type: integer + minimum: 0 + example: 4963 + name: + type: string + example: 'Emerson Arcadia 2001' + alias: + type: string + example: 'emerson-arcadia-2001' + icon: + type: string + example: 'console_default.png' + console: + type: string + example: '4963.png' + controller: + type: string + example: '' + developer: + type: string + example: 'Emerson Radio' + 4974: + type: object + required: + - id + - name + - alias + - icon + - console + - controller + - developer + properties: + id: + type: integer + minimum: 0 + example: 4974 + name: + type: string + example: 'Entex Adventure Vision' + alias: + type: string + example: 'entex-adventure-vision' + icon: + type: string + example: 'console_default.png' + console: + type: string + example: '' + controller: + type: string + example: '' + developer: + type: string + example: 'Entex Industries' + 4973: + type: object + required: + - id + - name + - alias + - icon + - console + - controller + - developer + properties: + id: + type: integer + minimum: 0 + example: 4973 + name: + type: string + example: 'Entex Select-a-Game' + alias: + type: string + example: 'entex-select-a-game' + icon: + type: string + example: 'console_default.png' + console: + type: string + example: '' + controller: + type: string + example: '' + developer: + type: string + example: 'Entex Industries' + 4965: + type: object + required: + - id + - name + - alias + - icon + - console + - controller + - developer + properties: + id: + type: integer + minimum: 0 + example: 4965 + name: + type: string + example: 'Epoch Cassette Vision' + alias: + type: string + example: 'epoch-cassette-vision' + icon: + type: string + example: 'console_default.png' + console: + type: string + example: '4965.png' + controller: + type: string + example: '' + developer: + type: string + example: 'Epoch Co.' + 4966: + type: object + required: + - id + - name + - alias + - icon + - console + - controller + - developer + properties: + id: + type: integer + minimum: 0 + example: 4966 + name: + type: string + example: 'Epoch Super Cassette Vision' + alias: + type: string + example: 'epoch-super-cassette-vision' + icon: + type: string + example: 'console_default.png' + console: + type: string + example: '4966.png' + controller: + type: string + example: '' + developer: + type: string + example: 'Epoch Co.' + 4928: + type: object + required: + - id + - name + - alias + - icon + - console + - controller + - developer + properties: + id: + type: integer + minimum: 0 + example: 4928 + name: + type: string + example: 'Fairchild Channel F' + alias: + type: string + example: 'fairchild' + icon: + type: string + example: 'fairchild-1445261469.png' + console: + type: string + example: '4928.png' + controller: + type: string + example: '' + developer: + type: string + example: '' + 4936: + type: object + required: + - id + - name + - alias + - icon + - console + - controller + - developer + properties: + id: + type: integer + minimum: 0 + example: 4936 + name: + type: string + example: 'Famicom Disk System' + alias: + type: string + example: 'fds' + icon: + type: string + example: 'fds-1445251188.png' + console: + type: string + example: '4936.png' + controller: + type: string + example: '' + developer: + type: string + example: 'Nintendo' + 4932: + type: object + required: + - id + - name + - alias + - icon + - console + - controller + - developer + properties: + id: + type: integer + minimum: 0 + example: 4932 + name: + type: string + example: 'FM Towns Marty' + alias: + type: string + example: 'fmtowns' + icon: + type: string + example: 'fmtowns-1444085037.png' + console: + type: string + example: '4932.png' + controller: + type: string + example: '' + developer: + type: string + example: 'Fujitsu' + 4978: + type: object + required: + - id + - name + - alias + - icon + - console + - controller + - developer + properties: + id: + type: integer + minimum: 0 + example: 4978 + name: + type: string + example: 'Fujitsu FM-7' + alias: + type: string + example: 'fujitsu-fm-7' + icon: + type: string + example: 'console_default.png' + console: + type: string + example: '' + controller: + type: string + example: '' + developer: + type: string + example: 'Fujitsu' + 4962: + type: object + required: + - id + - name + - alias + - icon + - console + - controller + - developer + properties: + id: + type: integer + minimum: 0 + example: 4962 + name: + type: string + example: 'Gakken Compact Vision' + alias: + type: string + example: 'gakken-compact-vision' + icon: + type: string + example: 'console_default.png' + console: + type: string + example: '4962.png' + controller: + type: string + example: '' + developer: + type: string + example: 'Gakken Co., Ltd' + 4950: + type: object + required: + - id + - name + - alias + - icon + - console + - controller + - developer + properties: + id: + type: integer + minimum: 0 + example: 4950 + name: + type: string + example: 'Game & Watch' + alias: + type: string + example: 'game-and-watch' + icon: + type: string + example: 'game-and-watch-1448906321.png' + console: + type: string + example: '4950.png' + controller: + type: string + example: '' + developer: + type: string + example: 'Nintendo' + 4940: + type: object + required: + - id + - name + - alias + - icon + - console + - controller + - developer + properties: + id: + type: integer + minimum: 0 + example: 4940 + name: + type: string + example: 'Game.com' + alias: + type: string + example: 'game-com' + icon: + type: string + example: 'game-com-1445286056.png' + console: + type: string + example: '4940.png' + controller: + type: string + example: '' + developer: + type: string + example: 'Tiger Electronics' + 4951: + type: object + required: + - id + - name + - alias + - icon + - console + - controller + - developer + properties: + id: + type: integer + minimum: 0 + example: 4951 + name: + type: string + example: 'Handheld Electronic Games (LCD)' + alias: + type: string + example: 'lcd' + icon: + type: string + example: 'lcd-1448986915.png' + console: + type: string + example: '' + controller: + type: string + example: '' + developer: + type: string + example: 'Tiger Electronics, V-Tech, Coleco, Bandai, Konami' + 32: + type: object + required: + - id + - name + - alias + - icon + - console + - controller + - developer + properties: + id: + type: integer + minimum: 0 + example: 32 + name: + type: string + example: 'Intellivision' + alias: + type: string + example: 'intellivision' + icon: + type: string + example: 'intellivision-1336524468.png' + console: + type: string + example: '32.png' + controller: + type: string + example: '' + developer: + type: string + example: 'Mattel' + 4915: + type: object + required: + - id + - name + - alias + - icon + - console + - controller + - developer + properties: + id: + type: integer + minimum: 0 + example: 4915 + name: + type: string + example: 'iOS' + alias: + type: string + example: 'ios' + icon: + type: string + example: '4915-1393096970.png' + console: + type: string + example: '' + controller: + type: string + example: '' + developer: + type: string + example: 'Apple' + 37: + type: object + required: + - id + - name + - alias + - icon + - console + - controller + - developer + properties: + id: + type: integer + minimum: 0 + example: 37 + name: + type: string + example: 'Mac OS' + alias: + type: string + example: 'mac-os' + icon: + type: string + example: 'mac-os-1340244009.png' + console: + type: string + example: '37.png' + controller: + type: string + example: '' + developer: + type: string + example: 'Apple' + 4961: + type: object + required: + - id + - name + - alias + - icon + - console + - controller + - developer + properties: + id: + type: integer + minimum: 0 + example: 4961 + name: + type: string + example: 'Magnavox Odyssey 1' + alias: + type: string + example: 'magnavox-odyssey' + icon: + type: string + example: 'console_default.png' + console: + type: string + example: '4961.png' + controller: + type: string + example: '' + developer: + type: string + example: 'Magnavox' + 4927: + type: object + required: + - id + - name + - alias + - icon + - console + - controller + - developer + properties: + id: + type: integer + minimum: 0 + example: 4927 + name: + type: string + example: 'Magnavox Odyssey 2' + alias: + type: string + example: 'magnavox-odyssey-2' + icon: + type: string + example: 'magnavox-odyssey-2-1447143561.png' + console: + type: string + example: '4927.png' + controller: + type: string + example: '4927.png' + developer: + type: string + example: 'Magnavox / Philips' + 4948: + type: object + required: + - id + - name + - alias + - icon + - console + - controller + - developer + properties: + id: + type: integer + minimum: 0 + example: 4948 + name: + type: string + example: 'Mega Duck' + alias: + type: string + example: 'megaduck' + icon: + type: string + example: 'megaduck-1447489202.png' + console: + type: string + example: '4948.png' + controller: + type: string + example: '' + developer: + type: string + example: 'Welback Holdings' + 14: + type: object + required: + - id + - name + - alias + - icon + - console + - controller + - developer + properties: + id: + type: integer + minimum: 0 + example: 14 + name: + type: string + example: 'Microsoft Xbox' + alias: + type: string + example: 'microsoft-xbox' + icon: + type: string + example: 'microsoft-xbox-1336524486.png' + console: + type: string + example: '14.png' + controller: + type: string + example: '14.png' + developer: + type: string + example: 'Microsoft' + 15: + type: object + required: + - id + - name + - alias + - icon + - console + - controller + - developer + properties: + id: + type: integer + minimum: 0 + example: 15 + name: + type: string + example: 'Microsoft Xbox 360' + alias: + type: string + example: 'microsoft-xbox-360' + icon: + type: string + example: 'microsoft-xbox-360-1336524497.png' + console: + type: string + example: '15.png' + controller: + type: string + example: '15.png' + developer: + type: string + example: 'Microsoft' + 4920: + type: object + required: + - id + - name + - alias + - icon + - console + - controller + - developer + properties: + id: + type: integer + minimum: 0 + example: 4920 + name: + type: string + example: 'Microsoft Xbox One' + alias: + type: string + example: 'microsoft-xbox-one' + icon: + type: string + example: 'microsoft-xbox-one-1393097041.png' + console: + type: string + example: '4920.png' + controller: + type: string + example: '' + developer: + type: string + example: 'Microsoft' + 4972: + type: object + required: + - id + - name + - alias + - icon + - console + - controller + - developer + properties: + id: + type: integer + minimum: 0 + example: 4972 + name: + type: string + example: 'Milton Bradley Microvision' + alias: + type: string + example: 'milton-bradley-microvision' + icon: + type: string + example: 'console_default.png' + console: + type: string + example: '' + controller: + type: string + example: '' + developer: + type: string + example: 'Milton Bradley' + 4929: + type: object + required: + - id + - name + - alias + - icon + - console + - controller + - developer + properties: + id: + type: integer + minimum: 0 + example: 4929 + name: + type: string + example: 'MSX' + alias: + type: string + example: 'msx' + icon: + type: string + example: 'msx-1444085603.png' + console: + type: string + example: '4929.png' + controller: + type: string + example: '' + developer: + type: string + example: 'ASCII Corporation' + 4938: + type: object + required: + - id + - name + - alias + - icon + - console + - controller + - developer + properties: + id: + type: integer + minimum: 0 + example: 4938 + name: + type: string + example: 'N-Gage' + alias: + type: string + example: 'ngage' + icon: + type: string + example: '4938-1445259918.png' + console: + type: string + example: '4938.png' + controller: + type: string + example: '' + developer: + type: string + example: 'Nokia' + 24: + type: object + required: + - id + - name + - alias + - icon + - console + - controller + - developer + properties: + id: + type: integer + minimum: 0 + example: 24 + name: + type: string + example: 'Neo Geo' + alias: + type: string + example: 'neogeo' + icon: + type: string + example: 'neogeo-1336524621.png' + console: + type: string + example: '24.png' + controller: + type: string + example: '24.png' + developer: + type: string + example: 'SNK' + 4956: + type: object + required: + - id + - name + - alias + - icon + - console + - controller + - developer + properties: + id: + type: integer + minimum: 0 + example: 4956 + name: + type: string + example: 'Neo Geo CD' + alias: + type: string + example: 'neo-geo-cd' + icon: + type: string + example: 'neo-geo-cd-1468269031.png' + console: + type: string + example: '4956.png' + controller: + type: string + example: '' + developer: + type: string + example: 'SNK' + 4922: + type: object + required: + - id + - name + - alias + - icon + - console + - controller + - developer + properties: + id: + type: integer + minimum: 0 + example: 4922 + name: + type: string + example: 'Neo Geo Pocket' + alias: + type: string + example: 'neo-geo-pocket' + icon: + type: string + example: 'neo-geo-pocket-1393097137.png' + console: + type: string + example: '4922.png' + controller: + type: string + example: '' + developer: + type: string + example: 'SNK' + 4923: + type: object + required: + - id + - name + - alias + - icon + - console + - controller + - developer + properties: + id: + type: integer + minimum: 0 + example: 4923 + name: + type: string + example: 'Neo Geo Pocket Color' + alias: + type: string + example: 'neo-geo-pocket-color' + icon: + type: string + example: 'neo-geo-pocket-color-1393097242.png' + console: + type: string + example: '4923.png' + controller: + type: string + example: '' + developer: + type: string + example: 'SNK' + 4912: + type: object + required: + - id + - name + - alias + - icon + - console + - controller + - developer + properties: + id: + type: integer + minimum: 0 + example: 4912 + name: + type: string + example: 'Nintendo 3DS' + alias: + type: string + example: 'nintendo-3ds' + icon: + type: string + example: 'nintendo-3ds-1344286647.png' + console: + type: string + example: '4912.png' + controller: + type: string + example: '' + developer: + type: string + example: 'Nintendo' + 3: + type: object + required: + - id + - name + - alias + - icon + - console + - controller + - developer + properties: + id: + type: integer + minimum: 0 + example: 3 + name: + type: string + example: 'Nintendo 64' + alias: + type: string + example: 'nintendo-64' + icon: + type: string + example: 'nintendo-64-1336524631.png' + console: + type: string + example: '3.png' + controller: + type: string + example: '3.png' + developer: + type: string + example: 'Nintendo' + 8: + type: object + required: + - id + - name + - alias + - icon + - console + - controller + - developer + properties: + id: + type: integer + minimum: 0 + example: 8 + name: + type: string + example: 'Nintendo DS' + alias: + type: string + example: 'nintendo-ds' + icon: + type: string + example: 'nintendo-ds-1336524642.png' + console: + type: string + example: '8.png' + controller: + type: string + example: '' + developer: + type: string + example: 'Nintendo' + 7: + type: object + required: + - id + - name + - alias + - icon + - console + - controller + - developer + properties: + id: + type: integer + minimum: 0 + example: 7 + name: + type: string + example: 'Nintendo Entertainment System (NES)' + alias: + type: string + example: 'nintendo-entertainment-system-nes' + icon: + type: string + example: 'nintendo-entertainment-system-nes-1336524652.png' + console: + type: string + example: '7.png' + controller: + type: string + example: '7.png' + developer: + type: string + example: 'Nintendo' + 4: + type: object + required: + - id + - name + - alias + - icon + - console + - controller + - developer + properties: + id: + type: integer + minimum: 0 + example: 4 + name: + type: string + example: 'Nintendo Game Boy' + alias: + type: string + example: 'nintendo-gameboy' + icon: + type: string + example: 'nintendo-gameboy-1336524703.png' + console: + type: string + example: '4.png' + controller: + type: string + example: '' + developer: + type: string + example: 'Nintendo' + 5: + type: object + required: + - id + - name + - alias + - icon + - console + - controller + - developer + properties: + id: + type: integer + minimum: 0 + example: 5 + name: + type: string + example: 'Nintendo Game Boy Advance' + alias: + type: string + example: 'nintendo-gameboy-advance' + icon: + type: string + example: 'nintendo-gameboy-advance-1336524672.png' + console: + type: string + example: '5.png' + controller: + type: string + example: '' + developer: + type: string + example: 'Nintendo' + 41: + type: object + required: + - id + - name + - alias + - icon + - console + - controller + - developer + properties: + id: + type: integer + minimum: 0 + example: 41 + name: + type: string + example: 'Nintendo Game Boy Color' + alias: + type: string + example: 'nintendo-gameboy-color' + icon: + type: string + example: 'nintendo-gameboy-color-1336524685.png' + console: + type: string + example: '41.png' + controller: + type: string + example: '' + developer: + type: string + example: 'Nintendo' + 2: + type: object + required: + - id + - name + - alias + - icon + - console + - controller + - developer + properties: + id: + type: integer + minimum: 0 + example: 2 + name: + type: string + example: 'Nintendo GameCube' + alias: + type: string + example: 'nintendo-gamecube' + icon: + type: string + example: 'nintendo-gamecube-1336524714.png' + console: + type: string + example: '2.png' + controller: + type: string + example: '2.png' + developer: + type: string + example: 'Nintendo' + 4957: + type: object + required: + - id + - name + - alias + - icon + - console + - controller + - developer + properties: + id: + type: integer + minimum: 0 + example: 4957 + name: + type: string + example: 'Nintendo Pokémon Mini' + alias: + type: string + example: 'nintendo-pokmon-mini' + icon: + type: string + example: '4957-1468268912.png' + console: + type: string + example: '4957.png' + controller: + type: string + example: '' + developer: + type: string + example: 'Nintendo' + 4971: + type: object + required: + - id + - name + - alias + - icon + - console + - controller + - developer + properties: + id: + type: integer + minimum: 0 + example: 4971 + name: + type: string + example: 'Nintendo Switch' + alias: + type: string + example: 'nintendo-switch' + icon: + type: string + example: 'nintendo-switch-1489508941.png' + console: + type: string + example: '4971.png' + controller: + type: string + example: '' + developer: + type: string + example: 'Nintendo' + 4918: + type: object + required: + - id + - name + - alias + - icon + - console + - controller + - developer + properties: + id: + type: integer + minimum: 0 + example: 4918 + name: + type: string + example: 'Nintendo Virtual Boy' + alias: + type: string + example: 'nintendo-virtual-boy' + icon: + type: string + example: 'nintendo-virtual-boy-1447139594.png' + console: + type: string + example: '4918.png' + controller: + type: string + example: '4918.png' + developer: + type: string + example: 'Nintendo' + 9: + type: object + required: + - id + - name + - alias + - icon + - console + - controller + - developer + properties: + id: + type: integer + minimum: 0 + example: 9 + name: + type: string + example: 'Nintendo Wii' + alias: + type: string + example: 'nintendo-wii' + icon: + type: string + example: 'nintendo-wii-1336524734.png' + console: + type: string + example: '9.png' + controller: + type: string + example: '9.png' + developer: + type: string + example: 'Nintendo' + 38: + type: object + required: + - id + - name + - alias + - icon + - console + - controller + - developer + properties: + id: + type: integer + minimum: 0 + example: 38 + name: + type: string + example: 'Nintendo Wii U' + alias: + type: string + example: 'nintendo-wii-u' + icon: + type: string + example: 'nintendo-wii-u-1336524744.png' + console: + type: string + example: '38.png' + controller: + type: string + example: '' + developer: + type: string + example: 'Nintendo' + 4935: + type: object + required: + - id + - name + - alias + - icon + - console + - controller + - developer + properties: + id: + type: integer + minimum: 0 + example: 4935 + name: + type: string + example: 'Nuon' + alias: + type: string + example: 'nuon' + icon: + type: string + example: 'nuon-1445250489.png' + console: + type: string + example: '4935.png' + controller: + type: string + example: '' + developer: + type: string + example: 'VM Labs' + 4921: + type: object + required: + - id + - name + - alias + - icon + - console + - controller + - developer + properties: + id: + type: integer + minimum: 0 + example: 4921 + name: + type: string + example: 'Ouya' + alias: + type: string + example: 'ouya' + icon: + type: string + example: 'ouya-1393097891.png' + console: + type: string + example: '' + controller: + type: string + example: '' + developer: + type: string + example: 'Ouya, Inc.' + 1: + type: object + required: + - id + - name + - alias + - icon + - console + - controller + - developer + properties: + id: + type: integer + minimum: 0 + example: 1 + name: + type: string + example: 'PC' + alias: + type: string + example: 'pc' + icon: + type: string + example: 'pc-1336524756.png' + console: + type: string + example: '1.png' + controller: + type: string + example: '' + developer: + type: string + example: 'IBM' + 4933: + type: object + required: + - id + - name + - alias + - icon + - console + - controller + - developer + properties: + id: + type: integer + minimum: 0 + example: 4933 + name: + type: string + example: 'PC-88' + alias: + type: string + example: 'pc88' + icon: + type: string + example: 'pc88-1444092490.png' + console: + type: string + example: '4933.png' + controller: + type: string + example: '' + developer: + type: string + example: 'NEC' + 4934: + type: object + required: + - id + - name + - alias + - icon + - console + - controller + - developer + properties: + id: + type: integer + minimum: 0 + example: 4934 + name: + type: string + example: 'PC-98' + alias: + type: string + example: 'pc98' + icon: + type: string + example: '4934-1444591291.png' + console: + type: string + example: '4934.png' + controller: + type: string + example: '' + developer: + type: string + example: 'NEC' + 4930: + type: object + required: + - id + - name + - alias + - icon + - console + - controller + - developer + properties: + id: + type: integer + minimum: 0 + example: 4930 + name: + type: string + example: 'PC-FX' + alias: + type: string + example: 'pcfx' + icon: + type: string + example: 'pcfx-1444080539.png' + console: + type: string + example: '4930.png' + controller: + type: string + example: '' + developer: + type: string + example: 'NEC' + 4917: + type: object + required: + - id + - name + - alias + - icon + - console + - controller + - developer + properties: + id: + type: integer + minimum: 0 + example: 4917 + name: + type: string + example: 'Philips CD-i' + alias: + type: string + example: 'philips-cd-i' + icon: + type: string + example: 'philips-cd-i-1393098199.png' + console: + type: string + example: '4917.png' + controller: + type: string + example: '' + developer: + type: string + example: 'Philips' + 4975: + type: object + required: + - id + - name + - alias + - icon + - console + - controller + - developer + properties: + id: + type: integer + minimum: 0 + example: 4975 + name: + type: string + example: 'Pioneer LaserActive' + alias: + type: string + example: '' + icon: + type: string + example: 'console_default.png' + console: + type: string + example: '4975.png' + controller: + type: string + example: '' + developer: + type: string + example: 'Pioneer' + 4967: + type: object + required: + - id + - name + - alias + - icon + - console + - controller + - developer + properties: + id: + type: integer + minimum: 0 + example: 4967 + name: + type: string + example: 'RCA Studio II' + alias: + type: string + example: 'rca-studio-ii' + icon: + type: string + example: 'console_default.png' + console: + type: string + example: '4967.png' + controller: + type: string + example: '' + developer: + type: string + example: 'RCA' + 4979: + type: object + required: + - id + - name + - alias + - icon + - console + - controller + - developer + properties: + id: + type: integer + minimum: 0 + example: 4979 + name: + type: string + example: 'SAM Coupé' + alias: + type: string + example: '' + icon: + type: string + example: 'console_default.png' + console: + type: string + example: '' + controller: + type: string + example: '' + developer: + type: string + example: 'Miles Gordon Technology' + 33: + type: object + required: + - id + - name + - alias + - icon + - console + - controller + - developer + properties: + id: + type: integer + minimum: 0 + example: 33 + name: + type: string + example: 'Sega 32X' + alias: + type: string + example: 'sega-32x' + icon: + type: string + example: 'sega-32x-1336524764.png' + console: + type: string + example: '33.png' + controller: + type: string + example: '' + developer: + type: string + example: 'Sega' + 21: + type: object + required: + - id + - name + - alias + - icon + - console + - controller + - developer + properties: + id: + type: integer + minimum: 0 + example: 21 + name: + type: string + example: 'Sega CD' + alias: + type: string + example: 'sega-cd' + icon: + type: string + example: 'sega-cd-1336524786.png' + console: + type: string + example: '21.png' + controller: + type: string + example: '' + developer: + type: string + example: 'Sega' + 16: + type: object + required: + - id + - name + - alias + - icon + - console + - controller + - developer + properties: + id: + type: integer + minimum: 0 + example: 16 + name: + type: string + example: 'Sega Dreamcast' + alias: + type: string + example: 'sega-dreamcast' + icon: + type: string + example: 'sega-dreamcast-1336524794.png' + console: + type: string + example: '16.png' + controller: + type: string + example: '16.png' + developer: + type: string + example: 'Sega' + 20: + type: object + required: + - id + - name + - alias + - icon + - console + - controller + - developer + properties: + id: + type: integer + minimum: 0 + example: 20 + name: + type: string + example: 'Sega Game Gear' + alias: + type: string + example: 'sega-game-gear' + icon: + type: string + example: 'sega-game-gear-1336524808.png' + console: + type: string + example: '20.png' + controller: + type: string + example: '' + developer: + type: string + example: 'Sega' + 18: + type: object + required: + - id + - name + - alias + - icon + - console + - controller + - developer + properties: + id: + type: integer + minimum: 0 + example: 18 + name: + type: string + example: 'Sega Genesis' + alias: + type: string + example: 'sega-genesis' + icon: + type: string + example: 'sega-genesis-1336524897.png' + console: + type: string + example: '18.png' + controller: + type: string + example: '18.png' + developer: + type: string + example: 'Sega' + 35: + type: object + required: + - id + - name + - alias + - icon + - console + - controller + - developer + properties: + id: + type: integer + minimum: 0 + example: 35 + name: + type: string + example: 'Sega Master System' + alias: + type: string + example: 'sega-master-system' + icon: + type: string + example: 'sega-master-system-1336524915.png' + console: + type: string + example: '35.png' + controller: + type: string + example: '35.png' + developer: + type: string + example: 'Sega' + 36: + type: object + required: + - id + - name + - alias + - icon + - console + - controller + - developer + properties: + id: + type: integer + minimum: 0 + example: 36 + name: + type: string + example: 'Sega Mega Drive' + alias: + type: string + example: 'sega-mega-drive' + icon: + type: string + example: 'sega-mega-drive-1336524932.png' + console: + type: string + example: '' + controller: + type: string + example: '36.png' + developer: + type: string + example: 'Sega' + 4958: + type: object + required: + - id + - name + - alias + - icon + - console + - controller + - developer + properties: + id: + type: integer + minimum: 0 + example: 4958 + name: + type: string + example: 'Sega Pico' + alias: + type: string + example: 'sega-pico' + icon: + type: string + example: '4958-1468268712.png' + console: + type: string + example: '4958.png' + controller: + type: string + example: '' + developer: + type: string + example: 'Sega' + 17: + type: object + required: + - id + - name + - alias + - icon + - console + - controller + - developer + properties: + id: + type: integer + minimum: 0 + example: 17 + name: + type: string + example: 'Sega Saturn' + alias: + type: string + example: 'sega-saturn' + icon: + type: string + example: 'sega-saturn-1336524946.png' + console: + type: string + example: '17.png' + controller: + type: string + example: '17.png' + developer: + type: string + example: 'Sega' + 4949: + type: object + required: + - id + - name + - alias + - icon + - console + - controller + - developer + properties: + id: + type: integer + minimum: 0 + example: 4949 + name: + type: string + example: 'SEGA SG-1000' + alias: + type: string + example: 'sg1000' + icon: + type: string + example: 'sg1000-1448530019.png' + console: + type: string + example: '4949.png' + controller: + type: string + example: '' + developer: + type: string + example: 'SEGA' + 4977: + type: object + required: + - id + - name + - alias + - icon + - console + - controller + - developer + properties: + id: + type: integer + minimum: 0 + example: 4977 + name: + type: string + example: 'Sharp X1' + alias: + type: string + example: 'sharp-x1' + icon: + type: string + example: 'console_default.png' + console: + type: string + example: '' + controller: + type: string + example: '' + developer: + type: string + example: 'Sharp' + 4931: + type: object + required: + - id + - name + - alias + - icon + - console + - controller + - developer + properties: + id: + type: integer + minimum: 0 + example: 4931 + name: + type: string + example: 'Sharp X68000' + alias: + type: string + example: 'x68' + icon: + type: string + example: 'x68000-1444590873.png' + console: + type: string + example: '4931.png' + controller: + type: string + example: '' + developer: + type: string + example: 'Sharp Corporation' + 4913: + type: object + required: + - id + - name + - alias + - icon + - console + - controller + - developer + properties: + id: + type: integer + minimum: 0 + example: 4913 + name: + type: string + example: 'Sinclair ZX Spectrum' + alias: + type: string + example: 'sinclair-zx-spectrum' + icon: + type: string + example: 'sinclair-zx-spectrum-1393098451.png' + console: + type: string + example: '4913.png' + controller: + type: string + example: '' + developer: + type: string + example: 'Sinclair Research Ltd.' + 10: + type: object + required: + - id + - name + - alias + - icon + - console + - controller + - developer + properties: + id: + type: integer + minimum: 0 + example: 10 + name: + type: string + example: 'Sony Playstation' + alias: + type: string + example: 'sony-playstation' + icon: + type: string + example: 'sony-playstation-1336524956.png' + console: + type: string + example: '10.png' + controller: + type: string + example: '10.png' + developer: + type: string + example: 'Sony' + 11: + type: object + required: + - id + - name + - alias + - icon + - console + - controller + - developer + properties: + id: + type: integer + minimum: 0 + example: 11 + name: + type: string + example: 'Sony Playstation 2' + alias: + type: string + example: 'sony-playstation-2' + icon: + type: string + example: 'sony-playstation-2-1336524968.png' + console: + type: string + example: '11.png' + controller: + type: string + example: '11.png' + developer: + type: string + example: 'Sony' + 12: + type: object + required: + - id + - name + - alias + - icon + - console + - controller + - developer + properties: + id: + type: integer + minimum: 0 + example: 12 + name: + type: string + example: 'Sony Playstation 3' + alias: + type: string + example: 'sony-playstation-3' + icon: + type: string + example: 'sony-playstation-3-1336524977.png' + console: + type: string + example: '12.png' + controller: + type: string + example: '12.png' + developer: + type: string + example: 'Sony' + 4919: + type: object + required: + - id + - name + - alias + - icon + - console + - controller + - developer + properties: + id: + type: integer + minimum: 0 + example: 4919 + name: + type: string + example: 'Sony Playstation 4' + alias: + type: string + example: 'sony-playstation-4' + icon: + type: string + example: 'sony-playstation-4-1393097424.png' + console: + type: string + example: '4919.png' + controller: + type: string + example: '' + developer: + type: string + example: 'Sony' + 13: + type: object + required: + - id + - name + - alias + - icon + - console + - controller + - developer + properties: + id: + type: integer + minimum: 0 + example: 13 + name: + type: string + example: 'Sony Playstation Portable' + alias: + type: string + example: 'sony-psp' + icon: + type: string + example: 'sony-psp-1336525006.png' + console: + type: string + example: '13.png' + controller: + type: string + example: '13.png' + developer: + type: string + example: 'Sony' + 39: + type: object + required: + - id + - name + - alias + - icon + - console + - controller + - developer + properties: + id: + type: integer + minimum: 0 + example: 39 + name: + type: string + example: 'Sony Playstation Vita' + alias: + type: string + example: 'sony-playstation-vita' + icon: + type: string + example: 'sony-playstation-vita-1336524991.png' + console: + type: string + example: '39.png' + controller: + type: string + example: '' + developer: + type: string + example: 'Sony' + 6: + type: object + required: + - id + - name + - alias + - icon + - console + - controller + - developer + properties: + id: + type: integer + minimum: 0 + example: 6 + name: + type: string + example: 'Super Nintendo (SNES)' + alias: + type: string + example: 'super-nintendo-snes' + icon: + type: string + example: 'super-nintendo-snes-1448530937.png' + console: + type: string + example: '6.png' + controller: + type: string + example: '6.png' + developer: + type: string + example: 'Nintendo' + 4953: + type: object + required: + - id + - name + - alias + - icon + - console + - controller + - developer + properties: + id: + type: integer + minimum: 0 + example: 4953 + name: + type: string + example: 'Texas Instruments TI-99/4A' + alias: + type: string + example: 'texas-instruments-ti-99-4a' + icon: + type: string + example: 'texas-instruments-ti-99-4a-1468138361.png' + console: + type: string + example: '4953.png' + controller: + type: string + example: '' + developer: + type: string + example: 'Texas Instruments' + 4960: + type: object + required: + - id + - name + - alias + - icon + - console + - controller + - developer + properties: + id: + type: integer + minimum: 0 + example: 4960 + name: + type: string + example: 'Tomy Tutor' + alias: + type: string + example: 'tomy-pyta' + icon: + type: string + example: 'console_default.png' + console: + type: string + example: '4960.png' + controller: + type: string + example: '' + developer: + type: string + example: 'Tomy' + 4941: + type: object + required: + - id + - name + - alias + - icon + - console + - controller + - developer + properties: + id: + type: integer + minimum: 0 + example: 4941 + name: + type: string + example: 'TRS-80 Color Computer' + alias: + type: string + example: 'trs80-color' + icon: + type: string + example: 'trs80-color-1446589658.png' + console: + type: string + example: '4941.png' + controller: + type: string + example: '' + developer: + type: string + example: 'Tandy Corporation' + 34: + type: object + required: + - id + - name + - alias + - icon + - console + - controller + - developer + properties: + id: + type: integer + minimum: 0 + example: 34 + name: + type: string + example: 'TurboGrafx 16' + alias: + type: string + example: 'turbografx-16' + icon: + type: string + example: 'turbografx-16-1336525037.png' + console: + type: string + example: '34.png' + controller: + type: string + example: '34.png' + developer: + type: string + example: 'Hudson Soft' + 4955: + type: object + required: + - id + - name + - alias + - icon + - console + - controller + - developer + properties: + id: + type: integer + minimum: 0 + example: 4955 + name: + type: string + example: 'TurboGrafx CD' + alias: + type: string + example: 'turbo-grafx-cd' + icon: + type: string + example: '4955-1455648164.png' + console: + type: string + example: '4955.png' + controller: + type: string + example: '' + developer: + type: string + example: 'Nec' + 4939: + type: object + required: + - id + - name + - alias + - icon + - console + - controller + - developer + properties: + id: + type: integer + minimum: 0 + example: 4939 + name: + type: string + example: 'Vectrex' + alias: + type: string + example: 'vectrex' + icon: + type: string + example: 'vectrex-1445285621.png' + console: + type: string + example: '4939.png' + controller: + type: string + example: '' + developer: + type: string + example: 'Western Technologies / Smith Engineering' + 4959: + type: object + required: + - id + - name + - alias + - icon + - console + - controller + - developer + properties: + id: + type: integer + minimum: 0 + example: 4959 + name: + type: string + example: 'Watara Supervision' + alias: + type: string + example: 'watara-supervision' + icon: + type: string + example: 'console_default.png' + console: + type: string + example: '4959.png' + controller: + type: string + example: '' + developer: + type: string + example: '' + 4925: + type: object + required: + - id + - name + - alias + - icon + - console + - controller + - developer + properties: + id: + type: integer + minimum: 0 + example: 4925 + name: + type: string + example: 'WonderSwan' + alias: + type: string + example: 'wonderswan' + icon: + type: string + example: 'wonderswan-1393097485.png' + console: + type: string + example: '4925.png' + controller: + type: string + example: '' + developer: + type: string + example: 'Bandai' + 4926: + type: object + required: + - id + - name + - alias + - icon + - console + - controller + - developer + properties: + id: + type: integer + minimum: 0 + example: 4926 + name: + type: string + example: 'WonderSwan Color' + alias: + type: string + example: 'wonderswan-color' + icon: + type: string + example: 'wonderswan-color-1393097500.png' + console: + type: string + example: '4926.png' + controller: + type: string + example: '' + developer: + type: string + example: 'Bandai' + remaining_monthly_allowance: + type: integer + minimum: 0 + example: 263 + extra_allowance: + type: integer + minimum: 0 + example: 0 + PlatformsByPlatformID: + type: object + required: + - code + - status + - data + - remaining_monthly_allowance + - extra_allowance + properties: + code: + type: integer + minimum: 0 + example: 200 + status: + type: string + example: 'Success' + data: + type: object + required: + - count + - platforms + properties: + count: + type: integer + minimum: 0 + example: 3 + platforms: + type: object + required: + - "14" + - "12" + - "13" + properties: + 14: + type: object + required: + - id + - name + - alias + - icon + - console + - controller + - developer + properties: + id: + type: integer + minimum: 0 + example: 14 + name: + type: string + example: 'Microsoft Xbox' + alias: + type: string + example: 'microsoft-xbox' + icon: + type: string + example: 'microsoft-xbox-1336524486.png' + console: + type: string + example: '14.png' + controller: + type: string + example: '14.png' + developer: + type: string + example: 'Microsoft' + 12: + type: object + required: + - id + - name + - alias + - icon + - console + - controller + - developer + properties: + id: + type: integer + minimum: 0 + example: 12 + name: + type: string + example: 'Sony Playstation 3' + alias: + type: string + example: 'sony-playstation-3' + icon: + type: string + example: 'sony-playstation-3-1336524977.png' + console: + type: string + example: '12.png' + controller: + type: string + example: '12.png' + developer: + type: string + example: 'Sony' + 13: + type: object + required: + - id + - name + - alias + - icon + - console + - controller + - developer + properties: + id: + type: integer + minimum: 0 + example: 13 + name: + type: string + example: 'Sony Playstation Portable' + alias: + type: string + example: 'sony-psp' + icon: + type: string + example: 'sony-psp-1336525006.png' + console: + type: string + example: '13.png' + controller: + type: string + example: '13.png' + developer: + type: string + example: 'Sony' + remaining_monthly_allowance: + type: integer + minimum: 0 + example: 262 + extra_allowance: + type: integer + minimum: 0 + example: 0 + PlatformsByPlatformName: + type: object + required: + - code + - status + - data + - remaining_monthly_allowance + - extra_allowance + properties: + code: + type: integer + minimum: 0 + example: 200 + status: + type: string + example: 'Success' + data: + type: object + required: + - count + - platforms + properties: + count: + type: integer + minimum: 0 + example: 6 + platforms: + type: array + items: + type: object + properties: + id: + type: integer + minimum: 0 + name: + type: string + alias: + type: string + icon: + type: string + console: + type: string + controller: + type: string + developer: + type: string + example: + - id: 10 + name: 'Sony Playstation' + alias: 'sony-playstation' + icon: 'sony-playstation-1336524956.png' + console: '10.png' + controller: '10.png' + developer: 'Sony' + - id: 11 + name: 'Sony Playstation 2' + alias: 'sony-playstation-2' + icon: 'sony-playstation-2-1336524968.png' + console: '11.png' + controller: '11.png' + developer: 'Sony' + - id: 12 + name: 'Sony Playstation 3' + alias: 'sony-playstation-3' + icon: 'sony-playstation-3-1336524977.png' + console: '12.png' + controller: '12.png' + developer: 'Sony' + - id: 4919 + name: 'Sony Playstation 4' + alias: 'sony-playstation-4' + icon: 'sony-playstation-4-1393097424.png' + console: '4919.png' + controller: null + developer: 'Sony' + - id: 13 + name: 'Sony Playstation Portable' + alias: 'sony-psp' + icon: 'sony-psp-1336525006.png' + console: '13.png' + controller: '13.png' + developer: 'Sony' + - id: 39 + name: 'Sony Playstation Vita' + alias: 'sony-playstation-vita' + icon: 'sony-playstation-vita-1336524991.png' + console: '39.png' + controller: null + developer: 'Sony' + remaining_monthly_allowance: + type: integer + minimum: 0 + example: 261 + extra_allowance: + type: integer + minimum: 0 + example: 0 + PlatformsImages: + type: object + required: + - code + - status + - data + - pages + - remaining_monthly_allowance + - extra_allowance + properties: + code: + type: integer + minimum: 0 + example: 200 + status: + type: string + example: 'Success' + data: + type: object + required: + - count + - base_url + - images + properties: + count: + type: integer + minimum: 0 + example: 3 + base_url: + type: object + required: + - original + - small + - thumb + - cropped_center_thumb + - medium + - large + properties: + original: + type: string + example: 'https://cdn.thegamesdb.net/images/original/' + small: + type: string + example: 'https://cdn.thegamesdb.net/images/small/' + thumb: + type: string + example: 'https://cdn.thegamesdb.net/images/thumb/' + cropped_center_thumb: + type: string + example: 'https://cdn.thegamesdb.net/images/cropped_center_thumb/' + medium: + type: string + example: 'https://cdn.thegamesdb.net/images/medium/' + large: + type: string + example: 'https://cdn.thegamesdb.net/images/large/' + images: + type: object + required: + - "12" + - "13" + - "14" + properties: + 12: + type: array + items: + type: object + properties: + id: + type: integer + minimum: 0 + type: + type: string + filename: + type: string + example: + - id: 72 + type: 'fanart' + filename: 'platform/fanart/12-1.jpg' + - id: 73 + type: 'fanart' + filename: 'platform/fanart/12-2.jpg' + - id: 253 + type: 'boxart' + filename: 'platform/boxart/12-3.jpg' + 13: + type: array + items: + type: object + properties: + id: + type: integer + minimum: 0 + type: + type: string + filename: + type: string + example: + - id: 32 + type: 'boxart' + filename: 'platform/boxart/13-1.jpg' + - id: 51 + type: 'fanart' + filename: 'platform/fanart/13-1.jpg' + - id: 64 + type: 'fanart' + filename: 'platform/fanart/13-2.jpg' + - id: 140 + type: 'fanart' + filename: 'platform/fanart/13-3.jpg' + 14: + type: array + items: + type: object + properties: + id: + type: integer + minimum: 0 + type: + type: string + filename: + type: string + example: + - id: 70 + type: 'fanart' + filename: 'platform/fanart/14-1.jpg' + - id: 146 + type: 'fanart' + filename: 'platform/fanart/14-2.jpg' + - id: 147 + type: 'fanart' + filename: 'platform/fanart/14-3.jpg' + - id: 176 + type: 'fanart' + filename: 'platform/fanart/14-4.jpg' + - id: 240 + type: 'boxart' + filename: 'platform/boxart/14-2.jpg' + pages: + type: object + required: + - previous + - current + - next + properties: + previous: + type: string + example: '' + current: + type: string + example: 'https://api.thegamesdb.net/Platforms/Images?apikey=APIKEY&platforms_id=12%2C13%2C14&filter%5Btype%5D=boxart%2Cfanart&page=1' + next: + type: string + example: '' + remaining_monthly_allowance: + type: integer + minimum: 0 + example: 260 + extra_allowance: + type: integer + minimum: 0 + example: 0 + Genres: + type: object + required: + - code + - status + - data + - remaining_monthly_allowance + - extra_allowance + properties: + code: + type: integer + minimum: 0 + example: 200 + status: + type: string + example: 'Success' + data: + type: object + required: + - count + - genres + properties: + count: + type: integer + minimum: 0 + example: 19 + genres: + type: object + required: + - "1" + - "2" + - "3" + - "4" + - "5" + - "6" + - "7" + - "8" + - "9" + - "10" + - "11" + - "12" + - "13" + - "14" + - "15" + - "16" + - "17" + - "18" + - "19" + properties: + 1: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 1 + name: + type: string + example: 'Action' + 2: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 2 + name: + type: string + example: 'Adventure' + 3: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 3 + name: + type: string + example: 'Construction and Management Simulation' + 4: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 4 + name: + type: string + example: 'Role-Playing' + 5: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 5 + name: + type: string + example: 'Puzzle' + 6: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 6 + name: + type: string + example: 'Strategy' + 7: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 7 + name: + type: string + example: 'Racing' + 8: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 8 + name: + type: string + example: 'Shooter' + 9: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 9 + name: + type: string + example: 'Life Simulation' + 10: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 10 + name: + type: string + example: 'Fighting' + 11: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 11 + name: + type: string + example: 'Sports' + 12: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 12 + name: + type: string + example: 'Sandbox' + 13: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 13 + name: + type: string + example: 'Flight Simulator' + 14: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 14 + name: + type: string + example: 'MMO' + 15: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 15 + name: + type: string + example: 'Platform' + 16: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 16 + name: + type: string + example: 'Stealth' + 17: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 17 + name: + type: string + example: 'Music' + 18: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 18 + name: + type: string + example: 'Horror' + 19: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 19 + name: + type: string + example: 'Vehicle Simulation' + remaining_monthly_allowance: + type: integer + minimum: 0 + example: 259 + extra_allowance: + type: integer + minimum: 0 + example: 0 + Developers: + type: object + required: + - code + - status + - data + - remaining_monthly_allowance + - extra_allowance + properties: + code: + type: integer + minimum: 0 + example: 200 + status: + type: string + example: 'Success' + data: + type: object + required: + - count + - developers + properties: + count: + type: integer + minimum: 0 + example: 7977 + developers: + type: object + required: + - "142" + - "9916" + - "2" + - "9898" + - "9899" + - "9900" + - "9901" + - "145" + - "10341" + - "3" + - "4" + - "5" + - "7" + - "8" + - "6" + - "9" + - "10" + - "11" + - "12" + - "13" + - "14" + - "15" + - "16" + - "17" + - "19" + - "20" + - "21" + - "23" + - "24" + - "22" + - "25" + - "27" + - "28" + - "29" + - "30" + - "31" + - "33" + - "32" + - "37" + - "39" + - "40" + - "41" + - "43" + - "10068" + - "45" + - "46" + - "47" + - "44" + - "49" + - "51" + - "52" + - "54" + - "55" + - "56" + - "57" + - "58" + - "59" + - "60" + - "61" + - "62" + - "63" + - "65" + - "68" + - "9906" + - "70" + - "71" + - "72" + - "73" + - "74" + - "76" + - "77" + - "78" + - "79" + - "80" + - "81" + - "82" + - "83" + - "84" + - "87" + - "88" + - "90" + - "91" + - "92" + - "93" + - "85" + - "95" + - "96" + - "99" + - "100" + - "86" + - "102" + - "10146" + - "103" + - "104" + - "105" + - "106" + - "107" + - "111" + - "10300" + - "112" + - "115" + - "116" + - "117" + - "118" + - "119" + - "120" + - "122" + - "127" + - "124" + - "125" + - "123" + - "126" + - "10315" + - "128" + - "129" + - "131" + - "133" + - "134" + - "137" + - "135" + - "140" + - "141" + - "146" + - "147" + - "151" + - "152" + - "153" + - "154" + - "155" + - "158" + - "159" + - "160" + - "148" + - "161" + - "163" + - "165" + - "166" + - "167" + - "169" + - "170" + - "171" + - "172" + - "173" + - "174" + - "175" + - "176" + - "177" + - "178" + - "179" + - "180" + - "181" + - "182" + - "183" + - "184" + - "10015" + - "186" + - "187" + - "188" + - "189" + - "190" + - "191" + - "192" + - "194" + - "195" + - "196" + - "197" + - "199" + - "200" + - "201" + - "202" + - "9908" + - "203" + - "204" + - "205" + - "206" + - "207" + - "209" + - "210" + - "9909" + - "213" + - "214" + - "10354" + - "215" + - "216" + - "9911" + - "218" + - "219" + - "220" + - "221" + - "223" + - "224" + - "225" + - "226" + - "227" + - "228" + - "229" + - "230" + - "231" + - "232" + - "233" + - "234" + - "242" + - "243" + - "244" + - "245" + - "246" + - "247" + - "248" + - "249" + - "250" + - "251" + - "253" + - "254" + - "256" + - "257" + - "260" + - "262" + - "263" + - "264" + - "266" + - "268" + - "269" + - "270" + - "271" + - "273" + - "274" + - "275" + - "276" + - "279" + - "280" + - "281" + - "282" + - "283" + - "285" + - "286" + - "288" + - "289" + - "290" + - "293" + - "294" + - "295" + - "296" + - "297" + - "298" + - "299" + - "300" + - "301" + - "302" + - "303" + - "304" + - "306" + - "307" + - "309" + - "310" + - "311" + - "312" + - "9917" + - "314" + - "319" + - "323" + - "324" + - "325" + - "9918" + - "327" + - "328" + - "329" + - "330" + - "331" + - "332" + - "333" + - "334" + - "335" + - "336" + - "337" + - "338" + - "339" + - "340" + - "341" + - "342" + - "343" + - "344" + - "345" + - "346" + - "347" + - "348" + - "349" + - "350" + - "9919" + - "352" + - "353" + - "354" + - "358" + - "359" + - "363" + - "364" + - "365" + - "366" + - "367" + - "10150" + - "368" + - "362" + - "372" + - "374" + - "376" + - "379" + - "380" + - "381" + - "10296" + - "387" + - "389" + - "390" + - "391" + - "392" + - "393" + - "395" + - "396" + - "398" + - "9923" + - "399" + - "402" + - "403" + - "404" + - "406" + - "407" + - "409" + - "412" + - "414" + - "416" + - "9914" + - "417" + - "419" + - "420" + - "421" + - "422" + - "423" + - "424" + - "425" + - "426" + - "427" + - "428" + - "429" + - "9924" + - "431" + - "432" + - "434" + - "9959" + - "435" + - "436" + - "437" + - "438" + - "439" + - "440" + - "441" + - "442" + - "444" + - "446" + - "447" + - "448" + - "449" + - "450" + - "451" + - "453" + - "454" + - "455" + - "456" + - "457" + - "458" + - "460" + - "463" + - "468" + - "469" + - "470" + - "471" + - "9925" + - "473" + - "474" + - "475" + - "10139" + - "476" + - "9927" + - "479" + - "480" + - "481" + - "482" + - "483" + - "9935" + - "485" + - "486" + - "487" + - "488" + - "10236" + - "10120" + - "9936" + - "490" + - "491" + - "492" + - "493" + - "494" + - "495" + - "9938" + - "497" + - "498" + - "499" + - "10230" + - "500" + - "501" + - "503" + - "504" + - "506" + - "508" + - "509" + - "510" + - "511" + - "512" + - "513" + - "514" + - "517" + - "518" + - "521" + - "522" + - "523" + - "524" + - "526" + - "527" + - "528" + - "529" + - "530" + - "531" + - "9926" + - "9941" + - "533" + - "534" + - "536" + - "537" + - "538" + - "539" + - "540" + - "541" + - "544" + - "545" + - "546" + - "549" + - "550" + - "554" + - "556" + - "557" + - "558" + - "560" + - "10355" + - "561" + - "562" + - "563" + - "564" + - "565" + - "566" + - "567" + - "9945" + - "570" + - "573" + - "574" + - "575" + - "576" + - "578" + - "10332" + - "10061" + - "577" + - "580" + - "584" + - "10262" + - "586" + - "587" + - "588" + - "589" + - "591" + - "592" + - "593" + - "594" + - "597" + - "598" + - "599" + - "600" + - "601" + - "604" + - "605" + - "606" + - "607" + - "608" + - "609" + - "610" + - "611" + - "612" + - "618" + - "619" + - "622" + - "625" + - "626" + - "627" + - "628" + - "631" + - "633" + - "634" + - "635" + - "637" + - "638" + - "9949" + - "640" + - "642" + - "644" + - "643" + - "10261" + - "650" + - "651" + - "657" + - "653" + - "660" + - "661" + - "662" + - "663" + - "664" + - "665" + - "666" + - "667" + - "668" + - "671" + - "672" + - "670" + - "674" + - "676" + - "677" + - "678" + - "679" + - "680" + - "681" + - "683" + - "684" + - "685" + - "686" + - "687" + - "689" + - "690" + - "694" + - "695" + - "10222" + - "696" + - "700" + - "701" + - "702" + - "703" + - "705" + - "706" + - "709" + - "713" + - "712" + - "720" + - "721" + - "722" + - "10339" + - "10314" + - "725" + - "731" + - "733" + - "734" + - "735" + - "736" + - "737" + - "738" + - "739" + - "740" + - "741" + - "742" + - "744" + - "745" + - "746" + - "748" + - "1" + - "755" + - "756" + - "757" + - "758" + - "759" + - "760" + - "747" + - "762" + - "763" + - "764" + - "766" + - "9947" + - "767" + - "770" + - "771" + - "778" + - "781" + - "782" + - "783" + - "784" + - "788" + - "789" + - "790" + - "791" + - "792" + - "9952" + - "795" + - "798" + - "800" + - "801" + - "802" + - "803" + - "804" + - "805" + - "806" + - "810" + - "811" + - "812" + - "813" + - "814" + - "815" + - "9954" + - "817" + - "818" + - "819" + - "824" + - "828" + - "829" + - "830" + - "831" + - "832" + - "834" + - "835" + - "836" + - "837" + - "838" + - "839" + - "842" + - "844" + - "845" + - "846" + - "847" + - "843" + - "849" + - "850" + - "851" + - "852" + - "853" + - "854" + - "855" + - "856" + - "857" + - "858" + - "859" + - "860" + - "10053" + - "861" + - "862" + - "863" + - "864" + - "865" + - "866" + - "868" + - "870" + - "871" + - "872" + - "873" + - "874" + - "875" + - "878" + - "879" + - "10356" + - "880" + - "881" + - "882" + - "883" + - "884" + - "885" + - "9957" + - "886" + - "890" + - "891" + - "895" + - "898" + - "899" + - "903" + - "900" + - "902" + - "905" + - "911" + - "912" + - "916" + - "9958" + - "917" + - "924" + - "925" + - "923" + - "928" + - "930" + - "931" + - "932" + - "933" + - "934" + - "10025" + - "935" + - "936" + - "937" + - "938" + - "939" + - "940" + - "941" + - "943" + - "944" + - "945" + - "946" + - "947" + - "948" + - "949" + - "67" + - "955" + - "956" + - "957" + - "958" + - "959" + - "960" + - "961" + - "962" + - "963" + - "964" + - "965" + - "966" + - "970" + - "971" + - "972" + - "973" + - "974" + - "975" + - "976" + - "978" + - "979" + - "980" + - "981" + - "984" + - "986" + - "985" + - "989" + - "990" + - "991" + - "992" + - "9969" + - "10005" + - "993" + - "994" + - "995" + - "996" + - "997" + - "998" + - "999" + - "1000" + - "1001" + - "10133" + - "1003" + - "1004" + - "1005" + - "1006" + - "1007" + - "1008" + - "1009" + - "1010" + - "1012" + - "1013" + - "1014" + - "1015" + - "1016" + - "1018" + - "1020" + - "1021" + - "1022" + - "1023" + - "1024" + - "1025" + - "1027" + - "1028" + - "1029" + - "1030" + - "1032" + - "1033" + - "1034" + - "1035" + - "1036" + - "1037" + - "1040" + - "1041" + - "1042" + - "1043" + - "1044" + - "1045" + - "1046" + - "1047" + - "1048" + - "1049" + - "1050" + - "1051" + - "1052" + - "1053" + - "1055" + - "1056" + - "1057" + - "1058" + - "1061" + - "1062" + - "1063" + - "1064" + - "1065" + - "1066" + - "1067" + - "1068" + - "1069" + - "1070" + - "1071" + - "1072" + - "1073" + - "1074" + - "1079" + - "1080" + - "1081" + - "1082" + - "1083" + - "1085" + - "1086" + - "1089" + - "1090" + - "1091" + - "1092" + - "1094" + - "1097" + - "1099" + - "1101" + - "1102" + - "1093" + - "1106" + - "1107" + - "1108" + - "1109" + - "1110" + - "1111" + - "1112" + - "1113" + - "1115" + - "1116" + - "1117" + - "1118" + - "1119" + - "1120" + - "1121" + - "1124" + - "1125" + - "1126" + - "1098" + - "1129" + - "1130" + - "1131" + - "1133" + - "1134" + - "10326" + - "1135" + - "1137" + - "1138" + - "1139" + - "1140" + - "1143" + - "1142" + - "1145" + - "1146" + - "1150" + - "1151" + - "1152" + - "1153" + - "1154" + - "1158" + - "1160" + - "1161" + - "1162" + - "1163" + - "1164" + - "1165" + - "10086" + - "1166" + - "1167" + - "1168" + - "1169" + - "1170" + - "1171" + - "1172" + - "1174" + - "1175" + - "1176" + - "1177" + - "1178" + - "1179" + - "1180" + - "1181" + - "1182" + - "1183" + - "1184" + - "1185" + - "1186" + - "10357" + - "1187" + - "1188" + - "1189" + - "10377" + - "1190" + - "1191" + - "1192" + - "1193" + - "1194" + - "1195" + - "1196" + - "1197" + - "1198" + - "1199" + - "1200" + - "1201" + - "1202" + - "1203" + - "1204" + - "1205" + - "1207" + - "1208" + - "1210" + - "1211" + - "1212" + - "1213" + - "1214" + - "1215" + - "1216" + - "1221" + - "1223" + - "1224" + - "1225" + - "1226" + - "1227" + - "1228" + - "1229" + - "1230" + - "1231" + - "1232" + - "10208" + - "1235" + - "1236" + - "1237" + - "1238" + - "1242" + - "1244" + - "1246" + - "1245" + - "1248" + - "1249" + - "1250" + - "1251" + - "1233" + - "9962" + - "1258" + - "1259" + - "1260" + - "1261" + - "1262" + - "9965" + - "1264" + - "1265" + - "1267" + - "1268" + - "1269" + - "1270" + - "1271" + - "1272" + - "1273" + - "1274" + - "1275" + - "1276" + - "1278" + - "1280" + - "1281" + - "1282" + - "1283" + - "1284" + - "1285" + - "1286" + - "1287" + - "1288" + - "1289" + - "1290" + - "1291" + - "1292" + - "1293" + - "1294" + - "1295" + - "1298" + - "1299" + - "1300" + - "1301" + - "1302" + - "1303" + - "1304" + - "1305" + - "1306" + - "1344" + - "1342" + - "1309" + - "1310" + - "1311" + - "1312" + - "1313" + - "1314" + - "1315" + - "1316" + - "1317" + - "1318" + - "1319" + - "1320" + - "1321" + - "1322" + - "1323" + - "1324" + - "1325" + - "1326" + - "1327" + - "1328" + - "1329" + - "1330" + - "1331" + - "1332" + - "1334" + - "1335" + - "1336" + - "1337" + - "1338" + - "1339" + - "1346" + - "1347" + - "1348" + - "1349" + - "1350" + - "1351" + - "1352" + - "1353" + - "9970" + - "1355" + - "1356" + - "1357" + - "1358" + - "1359" + - "1360" + - "1361" + - "1364" + - "1366" + - "1367" + - "1370" + - "1371" + - "1373" + - "1375" + - "1376" + - "1377" + - "1378" + - "1308" + - "1382" + - "10095" + - "1383" + - "1385" + - "1386" + - "1387" + - "1388" + - "1389" + - "1392" + - "1393" + - "1394" + - "1395" + - "1396" + - "1397" + - "1398" + - "1399" + - "1400" + - "1405" + - "1408" + - "1406" + - "1403" + - "1404" + - "1401" + - "1402" + - "1411" + - "1412" + - "1413" + - "1414" + - "1415" + - "1416" + - "1417" + - "1418" + - "1420" + - "1421" + - "1424" + - "10154" + - "1425" + - "1426" + - "1427" + - "1428" + - "1430" + - "1431" + - "1432" + - "1433" + - "1434" + - "1435" + - "1436" + - "1441" + - "1442" + - "1443" + - "1439" + - "1446" + - "1447" + - "1449" + - "1451" + - "1457" + - "1458" + - "1407" + - "1461" + - "1463" + - "1464" + - "1465" + - "10358" + - "1467" + - "1468" + - "1470" + - "1471" + - "1472" + - "1473" + - "1474" + - "1475" + - "1476" + - "1478" + - "1479" + - "10219" + - "1480" + - "9931" + - "9933" + - "1481" + - "9973" + - "1483" + - "1484" + - "1485" + - "1486" + - "1487" + - "1488" + - "1489" + - "1490" + - "1491" + - "1492" + - "1493" + - "1494" + - "1495" + - "1496" + - "1497" + - "1500" + - "1501" + - "1502" + - "1503" + - "1504" + - "1505" + - "1508" + - "1509" + - "1511" + - "1510" + - "1513" + - "1515" + - "1516" + - "1521" + - "9974" + - "1522" + - "1524" + - "1525" + - "1527" + - "1528" + - "1529" + - "1530" + - "1531" + - "1532" + - "1535" + - "1534" + - "1536" + - "1538" + - "1539" + - "1540" + - "1541" + - "1543" + - "1544" + - "1545" + - "1546" + - "1547" + - "1548" + - "144" + - "1549" + - "1550" + - "1551" + - "1552" + - "1553" + - "1554" + - "1556" + - "1557" + - "1558" + - "10054" + - "1559" + - "1537" + - "1560" + - "1561" + - "9976" + - "1563" + - "1564" + - "1565" + - "1566" + - "1568" + - "1569" + - "1570" + - "1571" + - "1572" + - "1573" + - "1574" + - "10242" + - "1575" + - "1576" + - "1577" + - "1578" + - "1579" + - "1580" + - "1581" + - "1582" + - "1583" + - "10290" + - "1584" + - "1586" + - "1587" + - "1588" + - "1589" + - "9978" + - "1591" + - "1592" + - "1595" + - "1596" + - "1597" + - "1598" + - "1599" + - "1601" + - "1600" + - "1603" + - "1604" + - "1605" + - "1606" + - "1607" + - "1608" + - "1609" + - "10282" + - "9980" + - "1612" + - "1613" + - "1614" + - "9988" + - "1615" + - "1617" + - "1618" + - "1619" + - "1620" + - "1621" + - "1622" + - "1623" + - "1624" + - "1625" + - "1626" + - "1627" + - "1628" + - "1629" + - "1630" + - "1631" + - "1633" + - "1634" + - "1635" + - "1636" + - "1637" + - "1638" + - "1639" + - "1640" + - "1641" + - "1642" + - "1644" + - "1643" + - "1646" + - "9912" + - "1648" + - "1650" + - "9985" + - "1652" + - "1654" + - "1655" + - "10084" + - "1656" + - "1657" + - "1659" + - "1661" + - "1662" + - "1663" + - "1664" + - "1665" + - "1666" + - "1667" + - "9995" + - "1668" + - "1671" + - "9987" + - "1673" + - "1674" + - "1675" + - "1677" + - "1676" + - "1678" + - "1679" + - "1680" + - "1681" + - "1682" + - "1685" + - "1688" + - "1683" + - "1691" + - "1692" + - "9989" + - "1694" + - "1695" + - "1697" + - "1699" + - "1700" + - "1701" + - "1702" + - "1703" + - "1704" + - "1705" + - "1706" + - "1707" + - "1709" + - "1710" + - "1711" + - "1712" + - "1713" + - "1714" + - "1715" + - "1716" + - "1718" + - "1719" + - "1721" + - "1722" + - "1724" + - "1725" + - "1726" + - "1728" + - "1729" + - "1731" + - "1733" + - "1734" + - "1735" + - "1736" + - "1737" + - "1738" + - "1739" + - "1740" + - "1741" + - "1742" + - "1743" + - "1744" + - "1745" + - "1746" + - "1747" + - "1749" + - "1750" + - "1751" + - "1752" + - "1753" + - "1754" + - "1755" + - "9981" + - "1756" + - "1757" + - "1758" + - "1759" + - "1761" + - "1763" + - "9993" + - "1764" + - "1765" + - "1766" + - "1767" + - "1769" + - "1770" + - "1771" + - "1772" + - "1773" + - "1774" + - "1775" + - "1777" + - "1778" + - "1779" + - "1780" + - "1781" + - "1782" + - "1783" + - "1784" + - "1785" + - "10112" + - "1788" + - "1787" + - "1795" + - "1796" + - "1797" + - "1798" + - "1799" + - "9991" + - "1801" + - "1802" + - "1803" + - "1804" + - "1805" + - "9992" + - "1807" + - "1808" + - "1809" + - "1810" + - "10129" + - "1811" + - "1812" + - "1813" + - "1814" + - "1815" + - "1816" + - "1817" + - "1818" + - "1820" + - "1821" + - "1822" + - "1823" + - "1825" + - "1826" + - "10247" + - "1827" + - "1831" + - "1832" + - "1833" + - "1835" + - "1837" + - "1838" + - "1839" + - "1840" + - "1841" + - "1842" + - "1843" + - "1845" + - "1846" + - "1847" + - "1848" + - "1849" + - "1850" + - "1851" + - "1852" + - "1853" + - "1854" + - "1855" + - "1858" + - "1859" + - "1860" + - "1861" + - "1862" + - "1863" + - "1864" + - "1865" + - "1866" + - "1867" + - "1869" + - "1870" + - "1872" + - "1873" + - "1875" + - "1876" + - "1878" + - "1879" + - "1881" + - "1882" + - "1883" + - "1884" + - "1885" + - "10306" + - "1886" + - "1889" + - "1890" + - "1893" + - "1892" + - "1896" + - "1897" + - "1898" + - "1899" + - "1900" + - "1901" + - "1902" + - "1903" + - "1904" + - "1905" + - "1906" + - "1907" + - "1908" + - "1909" + - "9996" + - "1912" + - "1917" + - "1918" + - "1919" + - "10080" + - "1920" + - "1921" + - "1922" + - "1923" + - "1924" + - "1925" + - "1926" + - "1927" + - "1928" + - "1929" + - "9997" + - "1931" + - "1932" + - "1934" + - "1936" + - "1937" + - "1938" + - "1940" + - "1942" + - "1941" + - "1944" + - "1945" + - "1947" + - "1948" + - "1949" + - "1950" + - "1951" + - "1952" + - "1953" + - "1954" + - "1957" + - "1958" + - "1959" + - "1960" + - "1961" + - "1962" + - "9999" + - "1963" + - "1968" + - "1969" + - "1971" + - "1970" + - "1973" + - "1974" + - "1976" + - "1977" + - "1978" + - "1979" + - "1980" + - "10175" + - "1981" + - "1983" + - "1985" + - "1987" + - "1988" + - "1989" + - "1990" + - "1991" + - "10249" + - "1999" + - "2000" + - "2001" + - "2002" + - "2004" + - "2005" + - "2008" + - "2011" + - "2012" + - "2013" + - "2009" + - "2010" + - "2017" + - "2018" + - "2019" + - "2020" + - "2021" + - "2022" + - "2026" + - "2027" + - "2028" + - "2029" + - "2030" + - "2031" + - "2033" + - "2034" + - "2035" + - "2036" + - "2037" + - "2038" + - "2040" + - "2041" + - "2042" + - "2043" + - "2044" + - "2045" + - "2049" + - "2050" + - "2051" + - "2052" + - "2053" + - "10223" + - "2054" + - "2055" + - "2056" + - "2048" + - "2046" + - "2047" + - "2057" + - "2061" + - "2063" + - "2064" + - "2065" + - "2069" + - "2070" + - "2072" + - "2071" + - "2074" + - "2075" + - "10088" + - "2076" + - "2077" + - "2078" + - "2079" + - "2080" + - "2081" + - "2082" + - "2083" + - "2086" + - "2087" + - "2088" + - "2089" + - "2090" + - "2091" + - "2092" + - "2093" + - "2094" + - "2095" + - "2096" + - "10348" + - "2097" + - "2099" + - "2100" + - "9950" + - "2102" + - "2103" + - "2104" + - "2106" + - "2107" + - "2108" + - "2109" + - "2110" + - "2111" + - "2113" + - "2114" + - "2115" + - "10155" + - "2112" + - "2118" + - "2120" + - "2121" + - "2122" + - "2123" + - "2128" + - "2126" + - "2130" + - "2132" + - "2134" + - "10264" + - "2135" + - "2136" + - "2133" + - "2140" + - "2141" + - "2143" + - "2144" + - "10004" + - "2145" + - "2146" + - "2147" + - "10283" + - "2148" + - "2149" + - "2150" + - "2151" + - "2152" + - "2153" + - "2154" + - "10278" + - "2156" + - "2157" + - "10007" + - "2159" + - "2160" + - "2161" + - "10009" + - "2165" + - "10032" + - "2166" + - "2167" + - "2168" + - "2169" + - "2170" + - "2171" + - "2172" + - "2173" + - "10010" + - "2174" + - "2175" + - "2176" + - "2177" + - "2178" + - "2180" + - "2182" + - "2183" + - "2184" + - "2185" + - "2187" + - "2188" + - "2189" + - "2190" + - "2191" + - "2193" + - "2194" + - "2195" + - "10046" + - "2196" + - "2197" + - "2200" + - "2201" + - "2198" + - "2204" + - "2205" + - "2206" + - "2207" + - "2208" + - "2209" + - "2210" + - "2213" + - "2214" + - "2215" + - "2216" + - "2217" + - "2219" + - "2220" + - "2221" + - "2222" + - "2224" + - "2225" + - "2228" + - "10014" + - "2230" + - "2231" + - "2235" + - "2236" + - "2237" + - "2238" + - "2239" + - "2240" + - "2241" + - "2242" + - "2243" + - "2244" + - "10016" + - "2246" + - "2247" + - "2248" + - "2249" + - "2250" + - "2251" + - "2252" + - "2253" + - "2254" + - "2255" + - "2256" + - "2257" + - "2258" + - "2259" + - "2260" + - "2261" + - "2262" + - "2263" + - "2264" + - "2266" + - "2267" + - "2268" + - "2269" + - "2270" + - "2272" + - "2273" + - "2274" + - "2275" + - "2276" + - "2277" + - "2278" + - "2279" + - "2280" + - "2281" + - "2283" + - "2284" + - "2285" + - "2286" + - "2287" + - "2288" + - "2289" + - "2290" + - "2292" + - "2293" + - "2294" + - "2295" + - "2296" + - "2297" + - "2298" + - "2299" + - "2300" + - "2301" + - "2303" + - "2304" + - "2305" + - "2306" + - "2307" + - "2308" + - "2309" + - "2310" + - "2311" + - "2312" + - "2313" + - "2314" + - "10322" + - "2315" + - "2320" + - "2321" + - "2322" + - "2324" + - "2325" + - "2326" + - "2327" + - "2328" + - "2331" + - "2332" + - "2335" + - "2336" + - "2337" + - "2338" + - "2339" + - "2340" + - "2342" + - "2343" + - "2344" + - "2345" + - "2346" + - "2347" + - "2348" + - "2349" + - "2350" + - "10241" + - "2352" + - "2353" + - "2354" + - "10265" + - "2355" + - "2356" + - "2357" + - "2358" + - "2359" + - "2360" + - "2361" + - "2365" + - "2364" + - "2369" + - "2370" + - "2371" + - "2372" + - "2373" + - "2374" + - "2375" + - "2376" + - "2377" + - "2378" + - "2379" + - "2380" + - "2381" + - "2382" + - "2383" + - "10259" + - "2387" + - "10254" + - "2388" + - "2391" + - "2389" + - "2394" + - "2395" + - "2397" + - "2398" + - "2399" + - "2400" + - "2401" + - "2402" + - "2403" + - "10255" + - "2404" + - "2410" + - "2411" + - "2412" + - "2413" + - "2414" + - "2415" + - "2419" + - "2420" + - "2421" + - "2425" + - "2426" + - "2427" + - "2428" + - "2429" + - "2430" + - "2431" + - "2432" + - "2433" + - "2434" + - "2435" + - "2436" + - "2437" + - "2438" + - "2439" + - "2440" + - "2441" + - "2444" + - "2445" + - "2446" + - "2447" + - "2448" + - "2449" + - "2451" + - "2452" + - "2453" + - "2450" + - "10117" + - "2456" + - "2460" + - "2465" + - "2466" + - "2468" + - "2464" + - "2470" + - "2473" + - "2474" + - "2475" + - "10019" + - "2477" + - "2478" + - "2479" + - "10021" + - "2481" + - "2482" + - "2483" + - "2484" + - "2485" + - "2486" + - "2488" + - "2489" + - "2490" + - "2493" + - "2494" + - "2495" + - "2487" + - "2500" + - "2491" + - "2503" + - "2505" + - "2506" + - "2508" + - "2509" + - "2510" + - "2511" + - "2512" + - "2513" + - "2514" + - "2516" + - "2517" + - "2518" + - "10359" + - "2519" + - "2522" + - "2523" + - "2525" + - "2526" + - "2527" + - "2528" + - "2529" + - "2530" + - "2531" + - "2532" + - "2533" + - "2534" + - "2538" + - "2539" + - "2541" + - "2542" + - "2543" + - "2544" + - "2545" + - "2547" + - "2548" + - "2549" + - "2550" + - "2551" + - "2552" + - "2553" + - "2554" + - "2555" + - "2558" + - "2559" + - "10319" + - "2560" + - "2561" + - "2562" + - "2563" + - "2564" + - "2565" + - "2568" + - "2570" + - "2571" + - "2573" + - "2574" + - "2575" + - "2576" + - "2577" + - "2578" + - "2579" + - "2582" + - "2583" + - "2584" + - "10028" + - "2586" + - "10248" + - "2588" + - "2589" + - "10023" + - "2590" + - "2591" + - "2593" + - "2594" + - "2596" + - "2597" + - "2598" + - "2599" + - "2602" + - "2603" + - "2604" + - "2605" + - "2607" + - "2608" + - "2609" + - "2610" + - "2611" + - "2612" + - "2613" + - "2614" + - "2615" + - "2617" + - "2618" + - "2619" + - "2622" + - "2623" + - "2624" + - "2625" + - "2626" + - "2627" + - "2628" + - "2629" + - "2630" + - "2631" + - "2632" + - "2633" + - "2634" + - "2635" + - "10029" + - "2636" + - "2638" + - "2640" + - "2641" + - "2642" + - "2643" + - "2644" + - "2645" + - "10031" + - "2647" + - "2648" + - "2649" + - "9964" + - "2650" + - "2651" + - "2652" + - "2653" + - "2654" + - "2655" + - "2656" + - "2657" + - "2658" + - "9961" + - "2660" + - "2661" + - "2664" + - "2665" + - "2666" + - "2667" + - "2669" + - "2671" + - "2672" + - "2673" + - "2674" + - "2675" + - "2676" + - "2677" + - "2678" + - "10036" + - "2680" + - "2681" + - "2682" + - "2683" + - "2684" + - "2685" + - "2687" + - "2689" + - "2690" + - "2695" + - "2697" + - "2698" + - "2699" + - "2700" + - "2701" + - "2702" + - "2703" + - "2705" + - "2706" + - "10038" + - "2708" + - "2709" + - "2710" + - "2711" + - "2712" + - "2713" + - "2714" + - "2715" + - "2716" + - "2718" + - "2719" + - "2720" + - "2721" + - "2722" + - "2723" + - "2724" + - "2726" + - "2727" + - "2728" + - "2729" + - "2730" + - "2731" + - "2733" + - "2736" + - "2737" + - "2738" + - "2739" + - "2740" + - "2741" + - "2742" + - "2743" + - "2744" + - "2745" + - "2746" + - "2748" + - "2749" + - "2750" + - "2751" + - "2752" + - "2753" + - "10193" + - "2754" + - "10312" + - "2756" + - "2757" + - "2758" + - "2761" + - "2762" + - "2763" + - "2764" + - "2767" + - "2768" + - "2769" + - "2770" + - "2771" + - "2772" + - "2773" + - "2774" + - "2775" + - "2776" + - "2777" + - "2778" + - "2779" + - "2781" + - "2782" + - "2783" + - "2784" + - "2785" + - "2786" + - "2787" + - "2788" + - "10167" + - "2791" + - "2790" + - "2793" + - "2794" + - "2795" + - "2796" + - "2797" + - "2798" + - "2800" + - "2801" + - "2802" + - "10215" + - "2804" + - "2806" + - "2809" + - "2810" + - "2811" + - "2813" + - "2815" + - "10043" + - "2817" + - "2819" + - "2820" + - "2821" + - "2822" + - "2823" + - "2824" + - "2825" + - "2826" + - "2829" + - "2830" + - "2831" + - "2832" + - "2833" + - "10018" + - "2835" + - "2836" + - "2834" + - "10049" + - "2840" + - "2841" + - "2842" + - "2843" + - "2844" + - "2845" + - "2846" + - "9915" + - "2847" + - "2849" + - "2850" + - "2851" + - "2852" + - "2854" + - "2855" + - "2857" + - "10164" + - "2858" + - "2859" + - "2860" + - "10052" + - "2862" + - "2863" + - "2864" + - "2865" + - "2866" + - "2867" + - "2868" + - "2869" + - "2870" + - "2871" + - "2872" + - "2873" + - "2874" + - "2875" + - "2876" + - "2877" + - "2878" + - "2879" + - "2880" + - "2881" + - "2882" + - "2883" + - "2884" + - "2885" + - "2886" + - "2887" + - "2888" + - "2892" + - "10022" + - "2893" + - "2894" + - "2895" + - "2896" + - "2898" + - "2899" + - "2900" + - "2901" + - "2902" + - "2903" + - "2904" + - "2905" + - "2906" + - "2907" + - "2908" + - "2909" + - "2910" + - "2911" + - "2912" + - "2913" + - "2914" + - "2915" + - "2916" + - "2917" + - "2918" + - "10055" + - "10056" + - "2920" + - "2923" + - "2924" + - "2925" + - "2926" + - "2927" + - "2928" + - "10057" + - "2929" + - "10059" + - "2932" + - "2935" + - "2936" + - "2937" + - "2938" + - "2939" + - "2940" + - "2941" + - "2942" + - "2943" + - "2944" + - "2946" + - "2947" + - "2948" + - "2949" + - "2950" + - "2951" + - "2952" + - "2954" + - "2955" + - "2956" + - "10051" + - "2957" + - "2958" + - "2959" + - "10135" + - "10122" + - "2960" + - "2961" + - "2962" + - "2963" + - "2964" + - "2965" + - "2966" + - "2967" + - "2968" + - "2969" + - "2970" + - "2971" + - "2972" + - "2973" + - "2974" + - "2975" + - "2976" + - "2978" + - "2979" + - "2980" + - "2981" + - "2982" + - "2984" + - "2985" + - "2986" + - "2988" + - "2989" + - "2990" + - "2991" + - "2992" + - "2993" + - "2994" + - "2995" + - "2996" + - "2997" + - "2998" + - "3000" + - "3001" + - "3002" + - "3003" + - "3004" + - "3006" + - "3007" + - "3008" + - "3009" + - "3010" + - "3011" + - "3012" + - "3013" + - "3014" + - "3015" + - "3017" + - "3018" + - "10060" + - "10184" + - "3020" + - "3022" + - "3023" + - "3024" + - "3025" + - "3026" + - "3027" + - "3028" + - "3029" + - "3030" + - "3031" + - "10194" + - "3032" + - "3035" + - "3036" + - "3037" + - "3038" + - "3039" + - "3040" + - "3041" + - "3044" + - "3046" + - "3047" + - "3048" + - "3049" + - "3050" + - "3052" + - "3053" + - "3054" + - "3055" + - "10058" + - "3056" + - "3059" + - "3060" + - "3062" + - "3063" + - "3064" + - "3065" + - "3066" + - "3067" + - "3068" + - "3069" + - "3070" + - "3071" + - "3072" + - "3073" + - "3074" + - "3075" + - "3077" + - "3078" + - "3079" + - "3081" + - "3082" + - "3083" + - "3085" + - "3084" + - "3087" + - "3088" + - "3089" + - "3090" + - "10033" + - "10172" + - "3091" + - "3092" + - "3093" + - "3094" + - "3095" + - "3096" + - "3097" + - "3098" + - "3099" + - "3100" + - "3101" + - "3102" + - "3103" + - "3104" + - "3105" + - "3106" + - "3107" + - "3109" + - "3111" + - "3112" + - "3113" + - "3114" + - "3115" + - "3117" + - "3118" + - "3119" + - "3121" + - "3122" + - "3123" + - "10349" + - "3125" + - "3126" + - "3127" + - "3128" + - "3129" + - "3130" + - "3131" + - "3132" + - "3133" + - "3134" + - "3135" + - "3136" + - "3137" + - "3138" + - "3139" + - "3140" + - "3141" + - "3143" + - "3144" + - "3145" + - "3146" + - "3147" + - "3149" + - "3150" + - "3151" + - "3152" + - "10111" + - "3153" + - "3154" + - "3155" + - "3156" + - "3157" + - "3158" + - "3160" + - "3161" + - "3162" + - "3163" + - "3165" + - "3166" + - "3167" + - "3168" + - "3169" + - "3170" + - "10160" + - "3174" + - "10030" + - "3176" + - "3177" + - "3178" + - "3179" + - "3181" + - "3180" + - "3184" + - "3185" + - "3186" + - "3189" + - "3190" + - "3192" + - "3195" + - "3196" + - "3197" + - "3199" + - "3200" + - "3202" + - "3203" + - "3204" + - "10267" + - "3205" + - "3206" + - "3207" + - "3208" + - "3209" + - "3211" + - "3212" + - "3213" + - "3214" + - "3215" + - "3216" + - "3217" + - "3218" + - "10189" + - "3219" + - "3221" + - "3222" + - "3223" + - "3224" + - "3225" + - "3226" + - "3227" + - "3228" + - "3229" + - "3230" + - "3231" + - "3232" + - "3233" + - "3234" + - "3237" + - "3238" + - "3239" + - "3240" + - "3241" + - "3242" + - "3243" + - "3244" + - "3245" + - "3246" + - "3247" + - "3248" + - "3250" + - "3251" + - "3252" + - "3253" + - "3254" + - "3255" + - "3256" + - "3257" + - "3259" + - "3260" + - "3261" + - "3264" + - "3265" + - "3266" + - "3267" + - "3268" + - "3269" + - "3270" + - "3271" + - "10263" + - "3273" + - "3274" + - "3272" + - "3276" + - "3277" + - "3278" + - "3279" + - "3280" + - "10062" + - "3282" + - "3283" + - "3284" + - "3285" + - "3286" + - "3288" + - "3289" + - "3290" + - "3292" + - "3293" + - "3294" + - "3295" + - "3296" + - "3297" + - "3298" + - "3299" + - "3300" + - "3301" + - "3306" + - "3307" + - "3308" + - "3309" + - "3310" + - "3311" + - "3313" + - "3314" + - "3315" + - "3316" + - "3317" + - "3318" + - "3320" + - "3321" + - "3322" + - "3323" + - "3325" + - "3327" + - "3328" + - "3329" + - "3330" + - "3331" + - "3332" + - "10065" + - "3334" + - "3335" + - "3336" + - "10269" + - "3338" + - "3340" + - "3341" + - "3342" + - "3343" + - "3344" + - "3346" + - "3348" + - "3349" + - "3350" + - "3351" + - "3353" + - "3319" + - "3356" + - "3357" + - "3358" + - "3360" + - "10324" + - "3361" + - "3362" + - "3363" + - "3364" + - "3365" + - "3366" + - "3367" + - "3368" + - "3369" + - "3370" + - "3372" + - "3373" + - "10066" + - "3375" + - "10026" + - "3376" + - "3379" + - "3380" + - "3381" + - "3383" + - "3384" + - "3385" + - "3386" + - "3387" + - "3388" + - "3390" + - "3391" + - "3392" + - "3393" + - "3394" + - "3395" + - "3396" + - "3397" + - "3398" + - "3399" + - "3400" + - "3401" + - "3402" + - "3403" + - "3406" + - "3407" + - "3408" + - "3409" + - "3410" + - "3411" + - "3412" + - "3413" + - "10067" + - "3415" + - "3416" + - "3417" + - "3419" + - "3420" + - "3421" + - "3422" + - "3423" + - "3427" + - "3428" + - "3429" + - "3430" + - "3431" + - "3432" + - "10087" + - "3433" + - "3434" + - "10069" + - "3436" + - "3438" + - "3439" + - "3440" + - "3442" + - "3443" + - "3445" + - "3446" + - "3447" + - "3448" + - "3451" + - "3453" + - "3456" + - "3457" + - "3458" + - "3459" + - "3460" + - "3463" + - "3464" + - "3465" + - "3466" + - "3467" + - "3468" + - "3469" + - "3470" + - "3471" + - "3472" + - "3473" + - "3474" + - "3475" + - "3476" + - "3477" + - "3478" + - "3479" + - "3481" + - "3482" + - "10375" + - "3483" + - "3484" + - "3485" + - "3486" + - "3488" + - "3489" + - "3491" + - "3492" + - "10090" + - "3493" + - "10072" + - "3495" + - "3496" + - "3497" + - "3498" + - "3499" + - "3500" + - "3501" + - "3502" + - "3504" + - "3505" + - "3506" + - "3508" + - "3509" + - "3510" + - "3511" + - "3513" + - "3514" + - "3516" + - "3517" + - "3518" + - "3519" + - "3520" + - "3521" + - "3522" + - "3523" + - "3524" + - "3525" + - "3526" + - "3527" + - "3528" + - "3529" + - "3530" + - "3531" + - "3532" + - "3533" + - "3534" + - "3535" + - "3536" + - "3541" + - "3537" + - "3538" + - "3539" + - "3542" + - "3543" + - "3544" + - "3545" + - "3548" + - "3549" + - "3550" + - "3551" + - "3552" + - "3553" + - "3554" + - "3555" + - "3556" + - "3557" + - "3560" + - "10182" + - "3561" + - "3562" + - "3563" + - "3564" + - "3565" + - "3566" + - "3567" + - "3568" + - "3569" + - "3570" + - "3571" + - "415" + - "3573" + - "3574" + - "3575" + - "3576" + - "3577" + - "9998" + - "3579" + - "3580" + - "3581" + - "3582" + - "3583" + - "3584" + - "3586" + - "3587" + - "3589" + - "3590" + - "3592" + - "3593" + - "3594" + - "3595" + - "3596" + - "3597" + - "3598" + - "3599" + - "3600" + - "3601" + - "3602" + - "3603" + - "3604" + - "3605" + - "3606" + - "9966" + - "3607" + - "3608" + - "3609" + - "3610" + - "3611" + - "10115" + - "3612" + - "3614" + - "3615" + - "3613" + - "3618" + - "3620" + - "3623" + - "3625" + - "3627" + - "3628" + - "3629" + - "3630" + - "3632" + - "3633" + - "3634" + - "3635" + - "3637" + - "3638" + - "3639" + - "3640" + - "10075" + - "3642" + - "3643" + - "3644" + - "3645" + - "3646" + - "3647" + - "3649" + - "3650" + - "3651" + - "3652" + - "3653" + - "3654" + - "3655" + - "3656" + - "3657" + - "3658" + - "3660" + - "3661" + - "3662" + - "3663" + - "3665" + - "9956" + - "3666" + - "3667" + - "3668" + - "3669" + - "3670" + - "10039" + - "3672" + - "3674" + - "3675" + - "3676" + - "3677" + - "3678" + - "3680" + - "3681" + - "3682" + - "3685" + - "3686" + - "3688" + - "3690" + - "3691" + - "3692" + - "3693" + - "3694" + - "3697" + - "10168" + - "3700" + - "3701" + - "3702" + - "3706" + - "10076" + - "3708" + - "3709" + - "3711" + - "3712" + - "3713" + - "3715" + - "3716" + - "3717" + - "3718" + - "3719" + - "3720" + - "3722" + - "3724" + - "3725" + - "3726" + - "3727" + - "3728" + - "3729" + - "3730" + - "3731" + - "3732" + - "3733" + - "3734" + - "3735" + - "3736" + - "3737" + - "3738" + - "3739" + - "3741" + - "3742" + - "3743" + - "3744" + - "3745" + - "3747" + - "3748" + - "3749" + - "3751" + - "3752" + - "3753" + - "9913" + - "3754" + - "3755" + - "3756" + - "10185" + - "3758" + - "3759" + - "3761" + - "3762" + - "3764" + - "3766" + - "3767" + - "3769" + - "3770" + - "3772" + - "3773" + - "3774" + - "3775" + - "3776" + - "3777" + - "3778" + - "3781" + - "3782" + - "3784" + - "3785" + - "3786" + - "3787" + - "3788" + - "3789" + - "3790" + - "3791" + - "3792" + - "3793" + - "3794" + - "3795" + - "3796" + - "3797" + - "3798" + - "3799" + - "3800" + - "3801" + - "3802" + - "3803" + - "3804" + - "3808" + - "3809" + - "3810" + - "3811" + - "3812" + - "3813" + - "3814" + - "3815" + - "3816" + - "3817" + - "3818" + - "3819" + - "3820" + - "3821" + - "3822" + - "10081" + - "3824" + - "3825" + - "3826" + - "3828" + - "3829" + - "3830" + - "3831" + - "3832" + - "3834" + - "3835" + - "3836" + - "10082" + - "3837" + - "3842" + - "3843" + - "3844" + - "3845" + - "3846" + - "3847" + - "3848" + - "3849" + - "3851" + - "3852" + - "3853" + - "3854" + - "3855" + - "3856" + - "3857" + - "3858" + - "3859" + - "3860" + - "3862" + - "3863" + - "3864" + - "3865" + - "3866" + - "3867" + - "3869" + - "3870" + - "10083" + - "3873" + - "3874" + - "3875" + - "10085" + - "3877" + - "3878" + - "3879" + - "3881" + - "3883" + - "3884" + - "3885" + - "10318" + - "3886" + - "3889" + - "3891" + - "3893" + - "3894" + - "3895" + - "3896" + - "3899" + - "3901" + - "3898" + - "10063" + - "3903" + - "3905" + - "3907" + - "3908" + - "3909" + - "10089" + - "3911" + - "3912" + - "3913" + - "3914" + - "3915" + - "3917" + - "3921" + - "10093" + - "3923" + - "10144" + - "3936" + - "3938" + - "3939" + - "3940" + - "3941" + - "3942" + - "3943" + - "3946" + - "3947" + - "3949" + - "3951" + - "3952" + - "3953" + - "3954" + - "3957" + - "3962" + - "3964" + - "3965" + - "3966" + - "3967" + - "3968" + - "3969" + - "3970" + - "3972" + - "3973" + - "3974" + - "3975" + - "3977" + - "3978" + - "3979" + - "3980" + - "3981" + - "3983" + - "3984" + - "3985" + - "3988" + - "3989" + - "3990" + - "10100" + - "3992" + - "3994" + - "3995" + - "3996" + - "3997" + - "3986" + - "3998" + - "10103" + - "4000" + - "10006" + - "10104" + - "4002" + - "4003" + - "4004" + - "10234" + - "4005" + - "4006" + - "4007" + - "4008" + - "10107" + - "4010" + - "10109" + - "4012" + - "4013" + - "4014" + - "4015" + - "4017" + - "4018" + - "4019" + - "4020" + - "4021" + - "4022" + - "4023" + - "4026" + - "4028" + - "4030" + - "4031" + - "3993" + - "4036" + - "4037" + - "4042" + - "4043" + - "4045" + - "4046" + - "4047" + - "10113" + - "4050" + - "4051" + - "4053" + - "4054" + - "4055" + - "4056" + - "4057" + - "4058" + - "4059" + - "4062" + - "4063" + - "4064" + - "4065" + - "4069" + - "4070" + - "4071" + - "4072" + - "4073" + - "4074" + - "4075" + - "4076" + - "4077" + - "4078" + - "4080" + - "4081" + - "4082" + - "4086" + - "4083" + - "4084" + - "4085" + - "4088" + - "4089" + - "10003" + - "4090" + - "4087" + - "4092" + - "10078" + - "4094" + - "4096" + - "4097" + - "4098" + - "4099" + - "9994" + - "4100" + - "4101" + - "4103" + - "4093" + - "4107" + - "4102" + - "4116" + - "4114" + - "4119" + - "4120" + - "4121" + - "4122" + - "4123" + - "4124" + - "4125" + - "4126" + - "4127" + - "4129" + - "4130" + - "4131" + - "4132" + - "4133" + - "4134" + - "4135" + - "4136" + - "4137" + - "4138" + - "4139" + - "4140" + - "4143" + - "10114" + - "4146" + - "4147" + - "4148" + - "4150" + - "10279" + - "4151" + - "4153" + - "4154" + - "4155" + - "4157" + - "4158" + - "4159" + - "4160" + - "4161" + - "4162" + - "4163" + - "4166" + - "4168" + - "4169" + - "4170" + - "4171" + - "4172" + - "4173" + - "4174" + - "4175" + - "4176" + - "4177" + - "4178" + - "4179" + - "4180" + - "4181" + - "4182" + - "4183" + - "4184" + - "4185" + - "4186" + - "4187" + - "4188" + - "4190" + - "4191" + - "4192" + - "4194" + - "4195" + - "4197" + - "4198" + - "4199" + - "4201" + - "4204" + - "4205" + - "10142" + - "4206" + - "4209" + - "4210" + - "4211" + - "4213" + - "4214" + - "4215" + - "4216" + - "4217" + - "4218" + - "4219" + - "4220" + - "4222" + - "4223" + - "4224" + - "4225" + - "4226" + - "4227" + - "4228" + - "4229" + - "4230" + - "4232" + - "4233" + - "10286" + - "10116" + - "4237" + - "4238" + - "4239" + - "4240" + - "4241" + - "4242" + - "4243" + - "4244" + - "4247" + - "10202" + - "4248" + - "4251" + - "4252" + - "4253" + - "4254" + - "4255" + - "4256" + - "4257" + - "4258" + - "4259" + - "4261" + - "4262" + - "4263" + - "4264" + - "4265" + - "4266" + - "4267" + - "4269" + - "4270" + - "4271" + - "4272" + - "4273" + - "4274" + - "4275" + - "4276" + - "4277" + - "4278" + - "4279" + - "4280" + - "4281" + - "4282" + - "10124" + - "4284" + - "4287" + - "4293" + - "4294" + - "4295" + - "4296" + - "4297" + - "4299" + - "4301" + - "4302" + - "4303" + - "4304" + - "4306" + - "4309" + - "4311" + - "4312" + - "4313" + - "4314" + - "4316" + - "10342" + - "4317" + - "4320" + - "4323" + - "4324" + - "4326" + - "4327" + - "4328" + - "4330" + - "10292" + - "4334" + - "10205" + - "4335" + - "4342" + - "4343" + - "4344" + - "4345" + - "4346" + - "4347" + - "4348" + - "4349" + - "4350" + - "4351" + - "4352" + - "4353" + - "4354" + - "4355" + - "4356" + - "4357" + - "10002" + - "4358" + - "4359" + - "4360" + - "9951" + - "4361" + - "4362" + - "4363" + - "4364" + - "4365" + - "4366" + - "4367" + - "4368" + - "4369" + - "4370" + - "4371" + - "4372" + - "4375" + - "4376" + - "4377" + - "4378" + - "4379" + - "4380" + - "4381" + - "10119" + - "4383" + - "4384" + - "10335" + - "4385" + - "4386" + - "4387" + - "4388" + - "4389" + - "4390" + - "4391" + - "4392" + - "4393" + - "10245" + - "10121" + - "4395" + - "4396" + - "4397" + - "4398" + - "4399" + - "4400" + - "4401" + - "4403" + - "4404" + - "4405" + - "4408" + - "4410" + - "4411" + - "4416" + - "4417" + - "4419" + - "4420" + - "4421" + - "4422" + - "4423" + - "4424" + - "4425" + - "4426" + - "4427" + - "4428" + - "4429" + - "4430" + - "10221" + - "4431" + - "4432" + - "4433" + - "4434" + - "4435" + - "4438" + - "4439" + - "4440" + - "10123" + - "4444" + - "4445" + - "4446" + - "4447" + - "4448" + - "4449" + - "4450" + - "4451" + - "4452" + - "4453" + - "4454" + - "4455" + - "4456" + - "4457" + - "4458" + - "4459" + - "4460" + - "4461" + - "10091" + - "4463" + - "10127" + - "4465" + - "4466" + - "4467" + - "4468" + - "4469" + - "4470" + - "4472" + - "4473" + - "4474" + - "4475" + - "4476" + - "4477" + - "4478" + - "4479" + - "4480" + - "4481" + - "4482" + - "10131" + - "4484" + - "4485" + - "4486" + - "4487" + - "4488" + - "4489" + - "4490" + - "4491" + - "4492" + - "4493" + - "4494" + - "10196" + - "4495" + - "10137" + - "10246" + - "4496" + - "4497" + - "4498" + - "4499" + - "4500" + - "4501" + - "4502" + - "4503" + - "4504" + - "4505" + - "4506" + - "4508" + - "4509" + - "10108" + - "4510" + - "4512" + - "4513" + - "4514" + - "4515" + - "4516" + - "4517" + - "4518" + - "4519" + - "9930" + - "10136" + - "4521" + - "4522" + - "4523" + - "4524" + - "4527" + - "4528" + - "4529" + - "4530" + - "4532" + - "4533" + - "4534" + - "4535" + - "4536" + - "4537" + - "4538" + - "4539" + - "10308" + - "10227" + - "4540" + - "9934" + - "9929" + - "9928" + - "4541" + - "4542" + - "4543" + - "4544" + - "4545" + - "4546" + - "3919" + - "4548" + - "4549" + - "4552" + - "4553" + - "4554" + - "4555" + - "4556" + - "4557" + - "4558" + - "4559" + - "4561" + - "4562" + - "4563" + - "4564" + - "4565" + - "4566" + - "4567" + - "4568" + - "4569" + - "4571" + - "4572" + - "4573" + - "4574" + - "4579" + - "4580" + - "4583" + - "4584" + - "4585" + - "4586" + - "4587" + - "4588" + - "4590" + - "4592" + - "4593" + - "4594" + - "4595" + - "4596" + - "4598" + - "4600" + - "4603" + - "4604" + - "4606" + - "10231" + - "4607" + - "4608" + - "4609" + - "4610" + - "4611" + - "4612" + - "4613" + - "4614" + - "4615" + - "4630" + - "4631" + - "4632" + - "4633" + - "4634" + - "10159" + - "4637" + - "10162" + - "4638" + - "4639" + - "4640" + - "4641" + - "10020" + - "4644" + - "4645" + - "4646" + - "4647" + - "10138" + - "4649" + - "4650" + - "4651" + - "4652" + - "4653" + - "4654" + - "4655" + - "10106" + - "4656" + - "4657" + - "4658" + - "4659" + - "4660" + - "4662" + - "4663" + - "4664" + - "4665" + - "4666" + - "4668" + - "4669" + - "4672" + - "4673" + - "4674" + - "4675" + - "4676" + - "4677" + - "4678" + - "4679" + - "4680" + - "4681" + - "4682" + - "4684" + - "4685" + - "4686" + - "4687" + - "4689" + - "4690" + - "4691" + - "4692" + - "4693" + - "4694" + - "4695" + - "4696" + - "4697" + - "4698" + - "4699" + - "4700" + - "4701" + - "4702" + - "4703" + - "4704" + - "4705" + - "4706" + - "4707" + - "4708" + - "4709" + - "4710" + - "4711" + - "4712" + - "4713" + - "4715" + - "4716" + - "10360" + - "4717" + - "4718" + - "10140" + - "4720" + - "4721" + - "4722" + - "4723" + - "4724" + - "4726" + - "4728" + - "4729" + - "10141" + - "4731" + - "4732" + - "4733" + - "4734" + - "10040" + - "4735" + - "4737" + - "4738" + - "4739" + - "4741" + - "4744" + - "4745" + - "4748" + - "4751" + - "4753" + - "4756" + - "4757" + - "4758" + - "4759" + - "4760" + - "4762" + - "4763" + - "4764" + - "4765" + - "10143" + - "4618" + - "4619" + - "4771" + - "4627" + - "4620" + - "4621" + - "4622" + - "4624" + - "4625" + - "4776" + - "4779" + - "4780" + - "4781" + - "4761" + - "4623" + - "4787" + - "4788" + - "10092" + - "4789" + - "4790" + - "10145" + - "4792" + - "4793" + - "10243" + - "4794" + - "4797" + - "4798" + - "4799" + - "4800" + - "4801" + - "4802" + - "4803" + - "4804" + - "4805" + - "4806" + - "4807" + - "4813" + - "4815" + - "4818" + - "4820" + - "4823" + - "4824" + - "4825" + - "4826" + - "4827" + - "4828" + - "4829" + - "4832" + - "4833" + - "4834" + - "4835" + - "4836" + - "4838" + - "4837" + - "4840" + - "4841" + - "4842" + - "4843" + - "4844" + - "4845" + - "4849" + - "4851" + - "9977" + - "4852" + - "4853" + - "4854" + - "4857" + - "4858" + - "4860" + - "4862" + - "4863" + - "4861" + - "4864" + - "4865" + - "4866" + - "4867" + - "4868" + - "4869" + - "4870" + - "4871" + - "4872" + - "4873" + - "4874" + - "4876" + - "4877" + - "4878" + - "4879" + - "4880" + - "4881" + - "4882" + - "4883" + - "4884" + - "4885" + - "4886" + - "4887" + - "4888" + - "4889" + - "4890" + - "4891" + - "4892" + - "4893" + - "4894" + - "4895" + - "4896" + - "4897" + - "4898" + - "4899" + - "4900" + - "10147" + - "4902" + - "4903" + - "4904" + - "4905" + - "4906" + - "10350" + - "4907" + - "4908" + - "4909" + - "4910" + - "4911" + - "10284" + - "4912" + - "4913" + - "4916" + - "4917" + - "4918" + - "4919" + - "4922" + - "10149" + - "4924" + - "4925" + - "4929" + - "4931" + - "4932" + - "4933" + - "4934" + - "4935" + - "4936" + - "4937" + - "4938" + - "4939" + - "4941" + - "4943" + - "4944" + - "4940" + - "4946" + - "4947" + - "4948" + - "4949" + - "4950" + - "4951" + - "4952" + - "4953" + - "4954" + - "4955" + - "10361" + - "4956" + - "4957" + - "4958" + - "4960" + - "4961" + - "4962" + - "4965" + - "4966" + - "4967" + - "4969" + - "4970" + - "4971" + - "4964" + - "4973" + - "4974" + - "4975" + - "4976" + - "4977" + - "4978" + - "10151" + - "4980" + - "4981" + - "4982" + - "4983" + - "4984" + - "4985" + - "4986" + - "4987" + - "4988" + - "4989" + - "4991" + - "4992" + - "4993" + - "4995" + - "4996" + - "10362" + - "4997" + - "4998" + - "4999" + - "5000" + - "5001" + - "5002" + - "5003" + - "5004" + - "5005" + - "5006" + - "5009" + - "5010" + - "5011" + - "5015" + - "5016" + - "5017" + - "5018" + - "5019" + - "5020" + - "5021" + - "5022" + - "5025" + - "5026" + - "10153" + - "5028" + - "10156" + - "5030" + - "5031" + - "5032" + - "5034" + - "5035" + - "5036" + - "5037" + - "5038" + - "5039" + - "5040" + - "5042" + - "5043" + - "5047" + - "5049" + - "5050" + - "5051" + - "5052" + - "5054" + - "5056" + - "5057" + - "5059" + - "5060" + - "5061" + - "5062" + - "5063" + - "5064" + - "5065" + - "5066" + - "5067" + - "10048" + - "5069" + - "10128" + - "10158" + - "5071" + - "5068" + - "5075" + - "5076" + - "5080" + - "5082" + - "5084" + - "5085" + - "5086" + - "5087" + - "5088" + - "5090" + - "5091" + - "10363" + - "5092" + - "5093" + - "5094" + - "10045" + - "5096" + - "5097" + - "5098" + - "5099" + - "5100" + - "5101" + - "5102" + - "5107" + - "5108" + - "5109" + - "5111" + - "5112" + - "5113" + - "5114" + - "5115" + - "5116" + - "5118" + - "5119" + - "5120" + - "5121" + - "10047" + - "5122" + - "5123" + - "5124" + - "5125" + - "5126" + - "5127" + - "5128" + - "5129" + - "5130" + - "5131" + - "5132" + - "5133" + - "5134" + - "5135" + - "5136" + - "5137" + - "5138" + - "5140" + - "5141" + - "5142" + - "5143" + - "5144" + - "5145" + - "5146" + - "5147" + - "5148" + - "5149" + - "5150" + - "5151" + - "5154" + - "5155" + - "5159" + - "5160" + - "5161" + - "5162" + - "5163" + - "5164" + - "5165" + - "5166" + - "5167" + - "5168" + - "5169" + - "5171" + - "5172" + - "5173" + - "5174" + - "5175" + - "5177" + - "5180" + - "5181" + - "5182" + - "5183" + - "5184" + - "5185" + - "5186" + - "5187" + - "5188" + - "5189" + - "5190" + - "5192" + - "10353" + - "5193" + - "5194" + - "5195" + - "5196" + - "5197" + - "5198" + - "5199" + - "5200" + - "5204" + - "5205" + - "5206" + - "5208" + - "5209" + - "5210" + - "5212" + - "5213" + - "10301" + - "5214" + - "5215" + - "5218" + - "5219" + - "5220" + - "5221" + - "5222" + - "5223" + - "5224" + - "5225" + - "5226" + - "5228" + - "5229" + - "5232" + - "5230" + - "5231" + - "5235" + - "5236" + - "5237" + - "5238" + - "5239" + - "5240" + - "5241" + - "5242" + - "5243" + - "5244" + - "9968" + - "5245" + - "10132" + - "5246" + - "5247" + - "10364" + - "5248" + - "5249" + - "5250" + - "5251" + - "5252" + - "10161" + - "5254" + - "5255" + - "10180" + - "10134" + - "10008" + - "5256" + - "5257" + - "5258" + - "5259" + - "5260" + - "10163" + - "5263" + - "5264" + - "5265" + - "5266" + - "5267" + - "5268" + - "5269" + - "5270" + - "10165" + - "5271" + - "5276" + - "5280" + - "5281" + - "5282" + - "5283" + - "5284" + - "5285" + - "5289" + - "5290" + - "5291" + - "5293" + - "5294" + - "5295" + - "5297" + - "5298" + - "5299" + - "5300" + - "5301" + - "5302" + - "5303" + - "5304" + - "5305" + - "5307" + - "5308" + - "5309" + - "5310" + - "5311" + - "5312" + - "5313" + - "5314" + - "5315" + - "5318" + - "5319" + - "5320" + - "5321" + - "10024" + - "5322" + - "5328" + - "5331" + - "10166" + - "5333" + - "5334" + - "5335" + - "5336" + - "5337" + - "5339" + - "5340" + - "5341" + - "5342" + - "5343" + - "5344" + - "5345" + - "5346" + - "5347" + - "5348" + - "5349" + - "5351" + - "5352" + - "5353" + - "5355" + - "10094" + - "5356" + - "5360" + - "5361" + - "5362" + - "5363" + - "5364" + - "5365" + - "5366" + - "5368" + - "5369" + - "5370" + - "5371" + - "5372" + - "5367" + - "9972" + - "5374" + - "5375" + - "5376" + - "5377" + - "5378" + - "5380" + - "5381" + - "5382" + - "5383" + - "5384" + - "5385" + - "5386" + - "10187" + - "5387" + - "5388" + - "5393" + - "5394" + - "5395" + - "5396" + - "5397" + - "5398" + - "5399" + - "5400" + - "5401" + - "5402" + - "5403" + - "5404" + - "5405" + - "5406" + - "5407" + - "5408" + - "5409" + - "5411" + - "5412" + - "5414" + - "5415" + - "5416" + - "5413" + - "5419" + - "5420" + - "5421" + - "10170" + - "5424" + - "5425" + - "5426" + - "5427" + - "5428" + - "5429" + - "5431" + - "5432" + - "5433" + - "5434" + - "5435" + - "5436" + - "5437" + - "5438" + - "10171" + - "5440" + - "5441" + - "5442" + - "5443" + - "5430" + - "5444" + - "5445" + - "5446" + - "5447" + - "5448" + - "10173" + - "5451" + - "5452" + - "5453" + - "5454" + - "5455" + - "5456" + - "5457" + - "5459" + - "9944" + - "5461" + - "10207" + - "5464" + - "5466" + - "5467" + - "5468" + - "5469" + - "5470" + - "5472" + - "5473" + - "5474" + - "5458" + - "5477" + - "5479" + - "5480" + - "5481" + - "10174" + - "5483" + - "5487" + - "5488" + - "5489" + - "10176" + - "5491" + - "5495" + - "5496" + - "5497" + - "5498" + - "5500" + - "5499" + - "5502" + - "5503" + - "5504" + - "5505" + - "5506" + - "5507" + - "5509" + - "5511" + - "5512" + - "5515" + - "5517" + - "5518" + - "5520" + - "5510" + - "5519" + - "5516" + - "5524" + - "5525" + - "5526" + - "5527" + - "5528" + - "5529" + - "5531" + - "5532" + - "5533" + - "5534" + - "5535" + - "5536" + - "5537" + - "10178" + - "5539" + - "5540" + - "5541" + - "10181" + - "5543" + - "5544" + - "5545" + - "5548" + - "5547" + - "5552" + - "5553" + - "5554" + - "5560" + - "5561" + - "5329" + - "5563" + - "5564" + - "5565" + - "5566" + - "5567" + - "5568" + - "5569" + - "5570" + - "5572" + - "5571" + - "5575" + - "5576" + - "5577" + - "5579" + - "5580" + - "5581" + - "5582" + - "5583" + - "5578" + - "5586" + - "5588" + - "5589" + - "5587" + - "5591" + - "5594" + - "5595" + - "5596" + - "5597" + - "5598" + - "5599" + - "10376" + - "5600" + - "5601" + - "5602" + - "5604" + - "5605" + - "5606" + - "5607" + - "5608" + - "5609" + - "5610" + - "5611" + - "5612" + - "5613" + - "5615" + - "5617" + - "5618" + - "5619" + - "5620" + - "5621" + - "5622" + - "5624" + - "5626" + - "5629" + - "5630" + - "5631" + - "5633" + - "5634" + - "5635" + - "5636" + - "5637" + - "5638" + - "5639" + - "5640" + - "5641" + - "5642" + - "5643" + - "5646" + - "5647" + - "5648" + - "5650" + - "5651" + - "5652" + - "5653" + - "5654" + - "5655" + - "5656" + - "5657" + - "5658" + - "5661" + - "5664" + - "5665" + - "5666" + - "5667" + - "5668" + - "5670" + - "5669" + - "5672" + - "5674" + - "5675" + - "5676" + - "5677" + - "5678" + - "5679" + - "10186" + - "5681" + - "5686" + - "5687" + - "5692" + - "5693" + - "5695" + - "5696" + - "5697" + - "5698" + - "5699" + - "5700" + - "5701" + - "5702" + - "5703" + - "5704" + - "5705" + - "5706" + - "5708" + - "5709" + - "5710" + - "5711" + - "5714" + - "5715" + - "5716" + - "5717" + - "5718" + - "5719" + - "5720" + - "5721" + - "5722" + - "5723" + - "9963" + - "5726" + - "5727" + - "5728" + - "5729" + - "5730" + - "5731" + - "5732" + - "5733" + - "5734" + - "5735" + - "5736" + - "5737" + - "5738" + - "5740" + - "5742" + - "5743" + - "5739" + - "5741" + - "5747" + - "5749" + - "5750" + - "5751" + - "5752" + - "5753" + - "5754" + - "5755" + - "5757" + - "5759" + - "5760" + - "5762" + - "5763" + - "5766" + - "5767" + - "5768" + - "5769" + - "5770" + - "5771" + - "5773" + - "5774" + - "5775" + - "5776" + - "5777" + - "5778" + - "5779" + - "5780" + - "5781" + - "5782" + - "5783" + - "5784" + - "5785" + - "5786" + - "5788" + - "5789" + - "5791" + - "5793" + - "5795" + - "5797" + - "5798" + - "5799" + - "5800" + - "5801" + - "5802" + - "5803" + - "5804" + - "10001" + - "5809" + - "5812" + - "5813" + - "5818" + - "5820" + - "5819" + - "5824" + - "5825" + - "5826" + - "5827" + - "5828" + - "5829" + - "5830" + - "5831" + - "5833" + - "5834" + - "5838" + - "5839" + - "5841" + - "5842" + - "5843" + - "5844" + - "5846" + - "10190" + - "5849" + - "5850" + - "10118" + - "5851" + - "5860" + - "5858" + - "5862" + - "5863" + - "5864" + - "1998" + - "5867" + - "5868" + - "5872" + - "5873" + - "5874" + - "5875" + - "10105" + - "5876" + - "5877" + - "5878" + - "5880" + - "5881" + - "5882" + - "5884" + - "5886" + - "10195" + - "5889" + - "5890" + - "5891" + - "5888" + - "5893" + - "5894" + - "5895" + - "5898" + - "5899" + - "5900" + - "5902" + - "5903" + - "5904" + - "10232" + - "5905" + - "5906" + - "5907" + - "5908" + - "5909" + - "5910" + - "5911" + - "5865" + - "5913" + - "5914" + - "5916" + - "5917" + - "5918" + - "5919" + - "5920" + - "5921" + - "5922" + - "5924" + - "5925" + - "5926" + - "5930" + - "5931" + - "5932" + - "5933" + - "5934" + - "5935" + - "5936" + - "5938" + - "5939" + - "5940" + - "5942" + - "5943" + - "5944" + - "5945" + - "5946" + - "5948" + - "5949" + - "5950" + - "5951" + - "5952" + - "5955" + - "5956" + - "5958" + - "5959" + - "5960" + - "5961" + - "10198" + - "5963" + - "5964" + - "5965" + - "5966" + - "5967" + - "5968" + - "5969" + - "5970" + - "5971" + - "10200" + - "5972" + - "5975" + - "5976" + - "5977" + - "5981" + - "5982" + - "5983" + - "5984" + - "5985" + - "5986" + - "5987" + - "5988" + - "5989" + - "5990" + - "5991" + - "5992" + - "5993" + - "5994" + - "5995" + - "5996" + - "5997" + - "5998" + - "5999" + - "6000" + - "6003" + - "6004" + - "10201" + - "6006" + - "6005" + - "6009" + - "6010" + - "6014" + - "6016" + - "6017" + - "6018" + - "6019" + - "6020" + - "6021" + - "6022" + - "6023" + - "6025" + - "6026" + - "6027" + - "6028" + - "6029" + - "6030" + - "6031" + - "6032" + - "6033" + - "6034" + - "6035" + - "6036" + - "6037" + - "6041" + - "6042" + - "6043" + - "6044" + - "6045" + - "6048" + - "10297" + - "6049" + - "6050" + - "6051" + - "6052" + - "6053" + - "6054" + - "6055" + - "6056" + - "6057" + - "6058" + - "6059" + - "6060" + - "6061" + - "6066" + - "6067" + - "6068" + - "6069" + - "6072" + - "6073" + - "6075" + - "6080" + - "6082" + - "6084" + - "6085" + - "6086" + - "6087" + - "6088" + - "6089" + - "10250" + - "6090" + - "6092" + - "6093" + - "6094" + - "6095" + - "6096" + - "10000" + - "6097" + - "6098" + - "10304" + - "6099" + - "6102" + - "6103" + - "6106" + - "6107" + - "6108" + - "6109" + - "6110" + - "6111" + - "6112" + - "6113" + - "6114" + - "6115" + - "6116" + - "6117" + - "6118" + - "6120" + - "6122" + - "6123" + - "6124" + - "6127" + - "6128" + - "6130" + - "6131" + - "6132" + - "6133" + - "6134" + - "6135" + - "6136" + - "6137" + - "6138" + - "6139" + - "6140" + - "6142" + - "6147" + - "6149" + - "6146" + - "6152" + - "6153" + - "6154" + - "6155" + - "10188" + - "6161" + - "6158" + - "6160" + - "6163" + - "6164" + - "6165" + - "6166" + - "6167" + - "6168" + - "6169" + - "6171" + - "10209" + - "6173" + - "6174" + - "6175" + - "6176" + - "6177" + - "6178" + - "6179" + - "6180" + - "6181" + - "6182" + - "10211" + - "6184" + - "10352" + - "6185" + - "6186" + - "6187" + - "6188" + - "6189" + - "6190" + - "6191" + - "6192" + - "6193" + - "6194" + - "6195" + - "10214" + - "6199" + - "10213" + - "6202" + - "10294" + - "6203" + - "6204" + - "6205" + - "6206" + - "6207" + - "6209" + - "6210" + - "6211" + - "6212" + - "6214" + - "6215" + - "6216" + - "6218" + - "10336" + - "6219" + - "6220" + - "6221" + - "6222" + - "6223" + - "6224" + - "6225" + - "6226" + - "6227" + - "6228" + - "6229" + - "6230" + - "6231" + - "6232" + - "6233" + - "6234" + - "6235" + - "6236" + - "6237" + - "6239" + - "10216" + - "6241" + - "6242" + - "6244" + - "6246" + - "10220" + - "6248" + - "6249" + - "6250" + - "6251" + - "6252" + - "6253" + - "6256" + - "10126" + - "6257" + - "6258" + - "6259" + - "6260" + - "6261" + - "6262" + - "6263" + - "6264" + - "6265" + - "6266" + - "6267" + - "6268" + - "6269" + - "6270" + - "6271" + - "6272" + - "6273" + - "6274" + - "6275" + - "6277" + - "6278" + - "6279" + - "6280" + - "6281" + - "6282" + - "6283" + - "6284" + - "6287" + - "6288" + - "6289" + - "6290" + - "6291" + - "10050" + - "6295" + - "6294" + - "6297" + - "6299" + - "6300" + - "6301" + - "6302" + - "6306" + - "6305" + - "6307" + - "6308" + - "6309" + - "6310" + - "6311" + - "6312" + - "6313" + - "6314" + - "6315" + - "10217" + - "6316" + - "6317" + - "6318" + - "6320" + - "6321" + - "6322" + - "6324" + - "6325" + - "6326" + - "6327" + - "6328" + - "6329" + - "6330" + - "6331" + - "10224" + - "6334" + - "6335" + - "6336" + - "6337" + - "6338" + - "6339" + - "6340" + - "6342" + - "6343" + - "6344" + - "6345" + - "6346" + - "6347" + - "6348" + - "6349" + - "6350" + - "6353" + - "6355" + - "6356" + - "6357" + - "10157" + - "6354" + - "6358" + - "6359" + - "6360" + - "6361" + - "6362" + - "6363" + - "6365" + - "6366" + - "6367" + - "6368" + - "6369" + - "6370" + - "10226" + - "9932" + - "6376" + - "6377" + - "6378" + - "6380" + - "6381" + - "6382" + - "6384" + - "6385" + - "6387" + - "6388" + - "6389" + - "6390" + - "6391" + - "6392" + - "6393" + - "6394" + - "6395" + - "6396" + - "6397" + - "6398" + - "6400" + - "6401" + - "6402" + - "6403" + - "6404" + - "6405" + - "6406" + - "6407" + - "6408" + - "6409" + - "6410" + - "6411" + - "6412" + - "10073" + - "6413" + - "10077" + - "6415" + - "10365" + - "6417" + - "6420" + - "6421" + - "6422" + - "6423" + - "6427" + - "6428" + - "6429" + - "10212" + - "6430" + - "6431" + - "6432" + - "6433" + - "6436" + - "6438" + - "6435" + - "6440" + - "6441" + - "6443" + - "6442" + - "6445" + - "6446" + - "6447" + - "6448" + - "6449" + - "6451" + - "6453" + - "6456" + - "6457" + - "6458" + - "6459" + - "6461" + - "6462" + - "6463" + - "6464" + - "6466" + - "6467" + - "6468" + - "6469" + - "6470" + - "6471" + - "6472" + - "6473" + - "6474" + - "10229" + - "6476" + - "6477" + - "6478" + - "6479" + - "6480" + - "6481" + - "6482" + - "6483" + - "6484" + - "6485" + - "6486" + - "6487" + - "6489" + - "6490" + - "6491" + - "6492" + - "6493" + - "6494" + - "6495" + - "6496" + - "6497" + - "6498" + - "6499" + - "6500" + - "6501" + - "6502" + - "10152" + - "6503" + - "6504" + - "6505" + - "6506" + - "6507" + - "6508" + - "6509" + - "6510" + - "6512" + - "6514" + - "6515" + - "6516" + - "6518" + - "6519" + - "6520" + - "6521" + - "6522" + - "6523" + - "6525" + - "6526" + - "10101" + - "6527" + - "6528" + - "10233" + - "9942" + - "6530" + - "6531" + - "6532" + - "6533" + - "6534" + - "6535" + - "6536" + - "6537" + - "9983" + - "6538" + - "6539" + - "6540" + - "6541" + - "6543" + - "6544" + - "6545" + - "6546" + - "6547" + - "6548" + - "6549" + - "6550" + - "6551" + - "6552" + - "6555" + - "6556" + - "6558" + - "6560" + - "6561" + - "6562" + - "6563" + - "10235" + - "9943" + - "6565" + - "6567" + - "6559" + - "6569" + - "6570" + - "6571" + - "6572" + - "6573" + - "6574" + - "6575" + - "6576" + - "6577" + - "6579" + - "6580" + - "6581" + - "6582" + - "6584" + - "6587" + - "6588" + - "6589" + - "6590" + - "6591" + - "6592" + - "6593" + - "6594" + - "6595" + - "6596" + - "6597" + - "6598" + - "6599" + - "6600" + - "6601" + - "6602" + - "6603" + - "6604" + - "6605" + - "6606" + - "6607" + - "6608" + - "10237" + - "6611" + - "6615" + - "6617" + - "6619" + - "6620" + - "10366" + - "6621" + - "6622" + - "6624" + - "6627" + - "6628" + - "6629" + - "6630" + - "6631" + - "6632" + - "6633" + - "6634" + - "6635" + - "6636" + - "6637" + - "6638" + - "6639" + - "6640" + - "6642" + - "6643" + - "6644" + - "6645" + - "10347" + - "6646" + - "6647" + - "6648" + - "6649" + - "6650" + - "6651" + - "6652" + - "6653" + - "6654" + - "6656" + - "6659" + - "6660" + - "6661" + - "6662" + - "6666" + - "1829" + - "6669" + - "6670" + - "6671" + - "6672" + - "6673" + - "6674" + - "6675" + - "10240" + - "6676" + - "6678" + - "6679" + - "6680" + - "6681" + - "6682" + - "6683" + - "6684" + - "6686" + - "6687" + - "6688" + - "6689" + - "6690" + - "6691" + - "6693" + - "6694" + - "6695" + - "6696" + - "6698" + - "6699" + - "6700" + - "10258" + - "6702" + - "6703" + - "6704" + - "6705" + - "6706" + - "6707" + - "6709" + - "6710" + - "6711" + - "6712" + - "10238" + - "6713" + - "6714" + - "6715" + - "6716" + - "6717" + - "6718" + - "6719" + - "6720" + - "6724" + - "6725" + - "6726" + - "6727" + - "6728" + - "6729" + - "6730" + - "6731" + - "6732" + - "6733" + - "6735" + - "6736" + - "6737" + - "6738" + - "6739" + - "6741" + - "6742" + - "6745" + - "6746" + - "6748" + - "6749" + - "6750" + - "6751" + - "6753" + - "6754" + - "6757" + - "6758" + - "6759" + - "6760" + - "6761" + - "6762" + - "6763" + - "6765" + - "6764" + - "6766" + - "6767" + - "6768" + - "10102" + - "6769" + - "6770" + - "6771" + - "6772" + - "6773" + - "6775" + - "6776" + - "6777" + - "6778" + - "6779" + - "6780" + - "6781" + - "6782" + - "6783" + - "6785" + - "6786" + - "10177" + - "6787" + - "10041" + - "6796" + - "6797" + - "6798" + - "6799" + - "6800" + - "6801" + - "6802" + - "6803" + - "6804" + - "10191" + - "6805" + - "6806" + - "6808" + - "6809" + - "6810" + - "6811" + - "6812" + - "6813" + - "6814" + - "6815" + - "6816" + - "6817" + - "6818" + - "6819" + - "6820" + - "6821" + - "6822" + - "6823" + - "6824" + - "6825" + - "6826" + - "6827" + - "6828" + - "6829" + - "6830" + - "6831" + - "6834" + - "6836" + - "6838" + - "6839" + - "10327" + - "6841" + - "6840" + - "6844" + - "6846" + - "6848" + - "6849" + - "6850" + - "6851" + - "6853" + - "6854" + - "6855" + - "6856" + - "6857" + - "6858" + - "6859" + - "6860" + - "6861" + - "6863" + - "6864" + - "6865" + - "6867" + - "6869" + - "6870" + - "6871" + - "6872" + - "6873" + - "6874" + - "6875" + - "6876" + - "6877" + - "6878" + - "6879" + - "6880" + - "6883" + - "6885" + - "6886" + - "6887" + - "6891" + - "6894" + - "6895" + - "6896" + - "6897" + - "6898" + - "6900" + - "6901" + - "10192" + - "6902" + - "6903" + - "6904" + - "6905" + - "6906" + - "6907" + - "6908" + - "6909" + - "6910" + - "6911" + - "6912" + - "6913" + - "6914" + - "6915" + - "6916" + - "6919" + - "6920" + - "6921" + - "6922" + - "6923" + - "6925" + - "6926" + - "6927" + - "6928" + - "6929" + - "6930" + - "6931" + - "6933" + - "6934" + - "10244" + - "6936" + - "6937" + - "6939" + - "6941" + - "6942" + - "6947" + - "6948" + - "6949" + - "6950" + - "6951" + - "6952" + - "10074" + - "6954" + - "6955" + - "6957" + - "6963" + - "6964" + - "6965" + - "6966" + - "6967" + - "6968" + - "6969" + - "6970" + - "6971" + - "6972" + - "6973" + - "6977" + - "6978" + - "6979" + - "6982" + - "6983" + - "6984" + - "6985" + - "6986" + - "6987" + - "6988" + - "6989" + - "6990" + - "6992" + - "6991" + - "6997" + - "6998" + - "7000" + - "7001" + - "7003" + - "7004" + - "7005" + - "7006" + - "7008" + - "7010" + - "7012" + - "7013" + - "10011" + - "10281" + - "7014" + - "7016" + - "7017" + - "7018" + - "7020" + - "7021" + - "10017" + - "7022" + - "7023" + - "7024" + - "6924" + - "7027" + - "7028" + - "7029" + - "7030" + - "7031" + - "7033" + - "7035" + - "7036" + - "7037" + - "7038" + - "7039" + - "7040" + - "7041" + - "7042" + - "7043" + - "7044" + - "7045" + - "7046" + - "7047" + - "7048" + - "7049" + - "10271" + - "7052" + - "7050" + - "7054" + - "7056" + - "7057" + - "7058" + - "7059" + - "7060" + - "7061" + - "7064" + - "7067" + - "7068" + - "7069" + - "7070" + - "7071" + - "7072" + - "7074" + - "7075" + - "7076" + - "7077" + - "7079" + - "7080" + - "7081" + - "7082" + - "10098" + - "7073" + - "7086" + - "7087" + - "7088" + - "7090" + - "7091" + - "7093" + - "7094" + - "7095" + - "7096" + - "7097" + - "7099" + - "7100" + - "7101" + - "7102" + - "7103" + - "7089" + - "7106" + - "7107" + - "7108" + - "7109" + - "7113" + - "7114" + - "7115" + - "7116" + - "7117" + - "7118" + - "7119" + - "7120" + - "7121" + - "7122" + - "7123" + - "7126" + - "7130" + - "7131" + - "7133" + - "7134" + - "7136" + - "7137" + - "7138" + - "7141" + - "7142" + - "7143" + - "7144" + - "7145" + - "7146" + - "7147" + - "7148" + - "7150" + - "7151" + - "7152" + - "7153" + - "7154" + - "7156" + - "7157" + - "7158" + - "7159" + - "7160" + - "7161" + - "7162" + - "7163" + - "7164" + - "7165" + - "7166" + - "7167" + - "7168" + - "7169" + - "7170" + - "7171" + - "7172" + - "7173" + - "7174" + - "7175" + - "7176" + - "7178" + - "7180" + - "7181" + - "7182" + - "7183" + - "7184" + - "7185" + - "7187" + - "7188" + - "7190" + - "7191" + - "7192" + - "7193" + - "7194" + - "10013" + - "7195" + - "7196" + - "7197" + - "7198" + - "7199" + - "7200" + - "7201" + - "7202" + - "7203" + - "7204" + - "7205" + - "7206" + - "7207" + - "7208" + - "7209" + - "7210" + - "7213" + - "7214" + - "7215" + - "7216" + - "7217" + - "7219" + - "7220" + - "7221" + - "7223" + - "7226" + - "7227" + - "10251" + - "7231" + - "7232" + - "7233" + - "7234" + - "7235" + - "10012" + - "7236" + - "9940" + - "7237" + - "7238" + - "7239" + - "7240" + - "10252" + - "7242" + - "7243" + - "7244" + - "7245" + - "7246" + - "7247" + - "7248" + - "7249" + - "7250" + - "7252" + - "7254" + - "7255" + - "7256" + - "7257" + - "7258" + - "7259" + - "7260" + - "7261" + - "7262" + - "7263" + - "7264" + - "7265" + - "7267" + - "7268" + - "7269" + - "7270" + - "7271" + - "7272" + - "7273" + - "7275" + - "7277" + - "7279" + - "7283" + - "7285" + - "7286" + - "10256" + - "7287" + - "7288" + - "7290" + - "7291" + - "7292" + - "7293" + - "7294" + - "9971" + - "7295" + - "7296" + - "7297" + - "7298" + - "7299" + - "7300" + - "7301" + - "7302" + - "7303" + - "7304" + - "7305" + - "7306" + - "7307" + - "7309" + - "7310" + - "7311" + - "7312" + - "7314" + - "7315" + - "7316" + - "7317" + - "7318" + - "7322" + - "10179" + - "7323" + - "7324" + - "7325" + - "7326" + - "7327" + - "7328" + - "7329" + - "7330" + - "7332" + - "7334" + - "7336" + - "10257" + - "7338" + - "7339" + - "7340" + - "7341" + - "7342" + - "7343" + - "7344" + - "7345" + - "7346" + - "7347" + - "7348" + - "7349" + - "7350" + - "7351" + - "7352" + - "7353" + - "7355" + - "7356" + - "7357" + - "7358" + - "7359" + - "7360" + - "7361" + - "7362" + - "7367" + - "7368" + - "7369" + - "7364" + - "7365" + - "7366" + - "7370" + - "7371" + - "7372" + - "7373" + - "7374" + - "7376" + - "7377" + - "7378" + - "7379" + - "7380" + - "7381" + - "7383" + - "7385" + - "7386" + - "7387" + - "7388" + - "7389" + - "7390" + - "7392" + - "7393" + - "7394" + - "7397" + - "7398" + - "7399" + - "7400" + - "7401" + - "7402" + - "7403" + - "7404" + - "7405" + - "7407" + - "7408" + - "7409" + - "7410" + - "7411" + - "7413" + - "10345" + - "7415" + - "7417" + - "7420" + - "7421" + - "7422" + - "7424" + - "7425" + - "7426" + - "7427" + - "7428" + - "7429" + - "7432" + - "7434" + - "7436" + - "7437" + - "7438" + - "7439" + - "7440" + - "7441" + - "7442" + - "7444" + - "7445" + - "7446" + - "7447" + - "7448" + - "7449" + - "7450" + - "7451" + - "7452" + - "7453" + - "10148" + - "7454" + - "7455" + - "7457" + - "7458" + - "7459" + - "7460" + - "7461" + - "7463" + - "7464" + - "7465" + - "7466" + - "7468" + - "10070" + - "9986" + - "10338" + - "7499" + - "7500" + - "7501" + - "7503" + - "7504" + - "7505" + - "7508" + - "7511" + - "10260" + - "7512" + - "7514" + - "7515" + - "7516" + - "7517" + - "7518" + - "7519" + - "7520" + - "7521" + - "7522" + - "7523" + - "7524" + - "7525" + - "7527" + - "7530" + - "7532" + - "7533" + - "9910" + - "7534" + - "7535" + - "7536" + - "7537" + - "7538" + - "7539" + - "7540" + - "7541" + - "7542" + - "7543" + - "7544" + - "7546" + - "7547" + - "7548" + - "7549" + - "411" + - "410" + - "7555" + - "7554" + - "7556" + - "7557" + - "413" + - "7560" + - "7561" + - "7564" + - "7565" + - "7566" + - "7568" + - "7570" + - "7571" + - "7572" + - "7573" + - "7569" + - "7574" + - "7575" + - "7576" + - "7580" + - "7590" + - "7591" + - "7592" + - "7593" + - "10320" + - "7595" + - "7596" + - "7597" + - "7598" + - "7599" + - "7600" + - "7601" + - "7602" + - "7603" + - "7604" + - "7605" + - "7606" + - "7607" + - "7608" + - "7609" + - "7610" + - "7611" + - "7612" + - "7614" + - "7615" + - "7616" + - "7618" + - "7620" + - "9920" + - "7621" + - "7622" + - "7623" + - "7624" + - "7625" + - "7626" + - "7627" + - "7628" + - "7629" + - "10313" + - "7630" + - "7633" + - "7634" + - "7636" + - "7637" + - "7638" + - "7639" + - "7640" + - "7641" + - "7642" + - "7643" + - "7644" + - "7645" + - "7646" + - "7647" + - "7648" + - "9982" + - "7650" + - "7651" + - "7652" + - "7653" + - "7654" + - "7655" + - "7656" + - "7657" + - "7660" + - "7658" + - "7661" + - "7662" + - "7666" + - "7663" + - "7668" + - "7669" + - "7670" + - "7671" + - "7672" + - "7673" + - "7676" + - "7677" + - "7674" + - "7680" + - "7681" + - "7682" + - "7683" + - "7684" + - "7685" + - "7686" + - "7687" + - "7689" + - "7690" + - "7691" + - "7693" + - "7696" + - "7698" + - "7699" + - "7700" + - "7706" + - "7707" + - "7708" + - "7709" + - "7710" + - "7711" + - "7712" + - "7715" + - "7717" + - "7718" + - "7720" + - "7721" + - "7722" + - "7723" + - "7724" + - "7725" + - "7726" + - "7727" + - "7728" + - "7729" + - "7730" + - "7731" + - "7732" + - "10266" + - "7735" + - "7736" + - "7737" + - "7738" + - "7739" + - "7740" + - "7741" + - "7742" + - "7743" + - "7744" + - "7745" + - "7746" + - "7747" + - "7748" + - "10228" + - "7749" + - "7751" + - "7752" + - "7753" + - "7755" + - "7756" + - "7757" + - "7760" + - "7761" + - "7763" + - "7764" + - "10110" + - "9937" + - "7765" + - "7766" + - "7767" + - "7768" + - "10289" + - "7769" + - "7773" + - "10268" + - "7776" + - "7777" + - "7778" + - "7781" + - "7780" + - "7784" + - "7788" + - "7789" + - "7790" + - "7793" + - "7794" + - "7795" + - "7796" + - "7798" + - "7799" + - "7800" + - "7801" + - "7802" + - "7803" + - "7804" + - "7805" + - "7806" + - "7807" + - "7808" + - "7809" + - "7810" + - "7811" + - "10340" + - "7812" + - "7816" + - "7817" + - "10367" + - "7818" + - "7821" + - "7822" + - "7823" + - "7824" + - "7825" + - "7826" + - "7828" + - "7829" + - "7830" + - "7831" + - "7832" + - "7833" + - "7835" + - "7836" + - "10035" + - "7837" + - "10239" + - "7839" + - "7840" + - "7841" + - "7842" + - "7843" + - "7844" + - "7845" + - "7846" + - "7847" + - "7848" + - "7849" + - "7850" + - "7851" + - "7852" + - "7853" + - "7854" + - "7856" + - "7857" + - "7858" + - "7860" + - "7861" + - "7862" + - "7864" + - "7865" + - "7866" + - "7867" + - "7869" + - "7870" + - "10346" + - "7871" + - "7872" + - "7873" + - "7875" + - "7876" + - "7877" + - "7878" + - "7879" + - "7880" + - "7881" + - "7883" + - "10044" + - "7884" + - "7885" + - "6697" + - "7896" + - "7897" + - "7895" + - "7899" + - "7900" + - "7901" + - "7902" + - "7903" + - "7904" + - "10351" + - "7905" + - "7906" + - "7907" + - "7908" + - "7909" + - "7910" + - "7911" + - "7912" + - "7913" + - "7914" + - "7915" + - "7916" + - "7917" + - "7918" + - "7920" + - "7921" + - "7922" + - "7923" + - "7924" + - "7926" + - "7927" + - "10099" + - "7928" + - "7931" + - "7932" + - "7933" + - "7934" + - "7935" + - "7936" + - "7937" + - "7938" + - "7939" + - "7940" + - "7945" + - "7946" + - "7947" + - "7948" + - "7949" + - "7951" + - "7952" + - "7954" + - "7955" + - "7956" + - "7957" + - "7958" + - "7959" + - "7960" + - "7961" + - "7962" + - "7963" + - "7964" + - "7965" + - "7967" + - "7968" + - "7969" + - "7970" + - "7971" + - "7972" + - "7973" + - "7974" + - "7975" + - "7976" + - "7977" + - "7978" + - "7979" + - "7981" + - "7982" + - "7983" + - "7984" + - "7985" + - "7986" + - "7987" + - "7470" + - "7471" + - "7469" + - "7490" + - "7494" + - "9975" + - "7992" + - "7993" + - "7697" + - "4441" + - "5033" + - "7998" + - "7999" + - "7475" + - "7435" + - "7480" + - "7481" + - "10064" + - "8003" + - "8004" + - "8005" + - "8006" + - "10270" + - "8008" + - "8009" + - "8010" + - "8011" + - "8012" + - "8013" + - "8016" + - "8017" + - "8019" + - "8014" + - "8022" + - "8023" + - "8024" + - "8025" + - "8026" + - "8027" + - "8028" + - "8029" + - "8030" + - "8031" + - "8032" + - "8033" + - "8034" + - "8035" + - "8036" + - "8037" + - "8038" + - "8039" + - "8042" + - "8043" + - "8044" + - "8045" + - "8046" + - "8047" + - "8049" + - "8048" + - "8051" + - "8052" + - "8053" + - "8054" + - "8055" + - "8056" + - "8057" + - "8058" + - "8059" + - "8060" + - "8062" + - "8063" + - "8061" + - "10079" + - "8068" + - "8070" + - "8069" + - "8074" + - "8075" + - "10317" + - "8076" + - "8078" + - "8079" + - "8080" + - "8081" + - "8082" + - "8083" + - "8084" + - "8085" + - "8086" + - "8087" + - "8090" + - "8091" + - "8093" + - "8094" + - "8095" + - "8097" + - "2808" + - "8101" + - "8104" + - "8105" + - "8096" + - "10272" + - "10225" + - "8110" + - "10273" + - "8114" + - "10204" + - "8115" + - "8116" + - "8118" + - "8119" + - "8120" + - "8121" + - "8125" + - "8126" + - "8127" + - "8128" + - "8129" + - "8130" + - "8131" + - "8132" + - "10274" + - "8134" + - "8135" + - "8139" + - "8140" + - "8141" + - "8142" + - "8144" + - "8145" + - "8147" + - "8150" + - "8151" + - "8153" + - "8154" + - "8157" + - "8158" + - "8159" + - "8160" + - "8161" + - "8162" + - "8163" + - "8164" + - "8165" + - "8166" + - "10276" + - "8168" + - "8169" + - "8170" + - "8171" + - "8172" + - "8173" + - "8174" + - "8175" + - "8176" + - "8177" + - "8178" + - "8179" + - "8180" + - "8181" + - "8182" + - "8183" + - "8184" + - "8185" + - "8186" + - "8188" + - "8189" + - "8190" + - "8191" + - "8192" + - "8193" + - "8194" + - "8195" + - "9984" + - "10277" + - "8197" + - "9990" + - "8198" + - "8199" + - "8200" + - "8201" + - "8202" + - "8203" + - "8204" + - "8205" + - "8208" + - "8209" + - "8210" + - "8211" + - "8212" + - "8213" + - "8214" + - "8215" + - "8216" + - "8217" + - "8219" + - "8221" + - "8222" + - "8223" + - "8224" + - "8225" + - "8226" + - "8227" + - "8228" + - "8230" + - "8111" + - "8237" + - "8239" + - "8240" + - "8242" + - "8243" + - "8244" + - "8245" + - "8247" + - "10280" + - "8249" + - "8250" + - "8251" + - "8252" + - "8254" + - "8255" + - "10037" + - "8256" + - "8257" + - "8258" + - "8259" + - "8260" + - "8261" + - "8262" + - "8263" + - "10285" + - "8265" + - "8266" + - "8282" + - "8268" + - "8269" + - "10321" + - "8270" + - "8271" + - "8272" + - "8273" + - "8274" + - "8275" + - "8276" + - "8277" + - "8280" + - "8281" + - "8283" + - "8284" + - "8285" + - "8286" + - "8287" + - "8288" + - "8289" + - "8291" + - "8292" + - "8293" + - "8294" + - "8295" + - "8296" + - "8297" + - "9907" + - "8301" + - "8302" + - "8303" + - "8304" + - "8305" + - "8306" + - "8307" + - "8308" + - "8309" + - "9955" + - "10197" + - "8312" + - "8313" + - "8314" + - "8316" + - "8317" + - "8318" + - "8320" + - "8321" + - "8322" + - "8323" + - "8324" + - "8326" + - "8327" + - "8328" + - "8329" + - "8331" + - "10291" + - "8333" + - "8335" + - "8336" + - "10275" + - "8337" + - "8338" + - "8339" + - "8340" + - "8341" + - "8342" + - "8343" + - "8344" + - "8346" + - "8347" + - "8348" + - "8349" + - "8350" + - "8351" + - "8352" + - "8353" + - "8354" + - "8355" + - "8356" + - "8357" + - "8358" + - "8359" + - "8360" + - "8364" + - "8365" + - "8367" + - "8368" + - "8369" + - "8370" + - "8371" + - "8372" + - "8373" + - "8375" + - "8376" + - "8377" + - "8378" + - "10096" + - "8379" + - "10293" + - "8381" + - "8382" + - "8383" + - "8384" + - "8385" + - "8387" + - "8388" + - "10199" + - "10295" + - "8393" + - "8394" + - "8395" + - "8398" + - "8399" + - "8402" + - "8405" + - "8407" + - "8408" + - "8409" + - "8410" + - "8412" + - "8415" + - "8420" + - "8421" + - "8422" + - "8423" + - "8425" + - "9979" + - "8424" + - "8434" + - "8429" + - "8430" + - "8431" + - "8432" + - "8435" + - "8439" + - "8440" + - "8441" + - "8442" + - "8444" + - "8445" + - "8446" + - "8447" + - "8448" + - "8451" + - "8449" + - "8456" + - "8457" + - "8458" + - "8459" + - "8460" + - "8461" + - "8462" + - "8463" + - "8464" + - "8465" + - "8470" + - "8471" + - "8472" + - "8473" + - "8477" + - "8478" + - "8479" + - "8480" + - "8481" + - "3920" + - "8482" + - "8483" + - "8484" + - "8486" + - "8487" + - "8485" + - "8492" + - "8493" + - "8494" + - "8495" + - "8496" + - "10169" + - "8497" + - "8504" + - "8505" + - "8506" + - "8507" + - "8509" + - "8510" + - "8511" + - "8512" + - "8513" + - "8514" + - "8516" + - "8517" + - "8518" + - "8519" + - "8520" + - "8521" + - "10299" + - "8523" + - "8526" + - "8527" + - "8528" + - "8529" + - "8530" + - "8531" + - "8532" + - "8533" + - "8534" + - "8535" + - "8536" + - "10378" + - "8537" + - "8541" + - "8543" + - "8544" + - "8545" + - "8546" + - "8547" + - "8548" + - "8549" + - "10368" + - "8550" + - "8551" + - "8552" + - "10369" + - "8554" + - "8555" + - "8556" + - "8557" + - "8558" + - "8560" + - "8561" + - "8562" + - "8563" + - "8564" + - "8565" + - "8566" + - "8567" + - "8568" + - "8569" + - "8571" + - "8572" + - "10302" + - "8574" + - "8575" + - "8576" + - "8577" + - "8578" + - "8538" + - "8584" + - "8586" + - "10303" + - "8588" + - "8589" + - "8590" + - "8591" + - "8592" + - "8593" + - "8596" + - "8597" + - "8598" + - "8599" + - "8600" + - "8601" + - "8602" + - "8603" + - "8604" + - "8606" + - "8595" + - "8607" + - "8609" + - "8611" + - "8612" + - "8613" + - "8614" + - "8615" + - "8616" + - "8620" + - "8621" + - "8624" + - "8626" + - "8627" + - "8628" + - "8630" + - "8632" + - "8633" + - "8634" + - "8635" + - "10370" + - "8638" + - "8636" + - "8640" + - "8643" + - "8644" + - "9922" + - "8650" + - "8651" + - "8652" + - "8653" + - "8654" + - "8655" + - "8656" + - "8657" + - "8658" + - "8659" + - "10183" + - "8660" + - "8663" + - "8661" + - "8666" + - "8667" + - "8668" + - "8670" + - "8673" + - "8674" + - "8675" + - "8678" + - "8679" + - "8680" + - "8682" + - "8683" + - "10329" + - "9967" + - "9939" + - "8684" + - "8686" + - "8687" + - "8688" + - "8689" + - "8690" + - "8691" + - "8693" + - "8695" + - "132" + - "8698" + - "8699" + - "649" + - "729" + - "8702" + - "8703" + - "8704" + - "988" + - "8706" + - "8707" + - "1114" + - "8709" + - "8710" + - "8711" + - "8712" + - "1687" + - "8713" + - "1720" + - "1760" + - "8719" + - "1891" + - "8721" + - "8722" + - "8723" + - "8724" + - "8725" + - "8726" + - "2999" + - "8728" + - "8730" + - "8731" + - "8732" + - "9960" + - "8733" + - "8734" + - "8735" + - "8736" + - "8737" + - "8738" + - "8739" + - "8740" + - "8741" + - "8742" + - "5055" + - "8744" + - "5662" + - "8746" + - "8747" + - "8748" + - "8749" + - "5923" + - "8752" + - "6238" + - "8755" + - "8756" + - "8757" + - "8758" + - "8759" + - "8760" + - "8761" + - "7395" + - "8764" + - "8765" + - "7953" + - "8767" + - "8768" + - "8770" + - "8771" + - "8772" + - "8773" + - "8774" + - "8775" + - "8776" + - "8777" + - "8778" + - "8779" + - "8782" + - "8783" + - "8784" + - "8785" + - "8786" + - "8787" + - "8788" + - "8789" + - "8790" + - "8791" + - "8792" + - "8793" + - "8794" + - "8795" + - "8796" + - "8797" + - "10371" + - "8799" + - "8800" + - "8433" + - "6974" + - "8803" + - "8802" + - "8807" + - "8808" + - "8809" + - "8810" + - "8812" + - "10305" + - "8813" + - "8814" + - "8815" + - "8816" + - "8817" + - "8818" + - "8819" + - "8820" + - "8821" + - "8822" + - "8823" + - "8824" + - "8825" + - "8826" + - "8832" + - "8833" + - "8831" + - "8835" + - "8836" + - "8837" + - "8838" + - "8839" + - "8840" + - "8842" + - "8843" + - "8845" + - "8847" + - "8849" + - "10307" + - "8851" + - "8852" + - "8853" + - "8854" + - "8856" + - "8857" + - "8858" + - "8860" + - "9921" + - "8861" + - "8862" + - "8863" + - "8865" + - "8866" + - "8867" + - "8868" + - "8869" + - "8871" + - "8873" + - "8874" + - "8875" + - "8876" + - "8877" + - "8878" + - "8879" + - "9946" + - "8880" + - "8881" + - "8882" + - "8503" + - "8887" + - "8888" + - "8889" + - "8890" + - "8892" + - "8893" + - "8894" + - "8897" + - "8898" + - "8900" + - "8901" + - "8902" + - "8903" + - "8905" + - "8907" + - "8908" + - "8909" + - "8910" + - "8911" + - "8913" + - "8914" + - "8915" + - "10218" + - "8916" + - "8917" + - "8918" + - "8919" + - "8920" + - "8921" + - "8922" + - "8924" + - "8925" + - "8926" + - "8927" + - "8928" + - "8929" + - "8930" + - "8931" + - "8932" + - "8934" + - "8935" + - "8936" + - "8937" + - "8938" + - "8939" + - "8940" + - "8941" + - "8942" + - "8944" + - "8943" + - "8946" + - "8947" + - "8948" + - "8949" + - "8951" + - "8953" + - "8954" + - "8955" + - "8956" + - "8957" + - "8958" + - "10042" + - "8959" + - "8964" + - "8965" + - "8966" + - "8967" + - "8969" + - "8970" + - "8971" + - "8972" + - "8974" + - "8975" + - "8977" + - "8978" + - "10311" + - "8983" + - "8985" + - "8986" + - "8987" + - "8988" + - "8989" + - "8990" + - "8991" + - "8993" + - "8994" + - "8997" + - "8995" + - "9002" + - "9005" + - "9007" + - "9008" + - "9009" + - "10203" + - "9014" + - "9016" + - "9017" + - "9018" + - "9019" + - "9020" + - "9021" + - "10372" + - "10253" + - "9023" + - "9024" + - "9025" + - "9029" + - "9031" + - "9032" + - "9033" + - "9034" + - "9035" + - "9036" + - "9037" + - "9038" + - "9040" + - "9041" + - "9042" + - "9043" + - "9044" + - "9045" + - "9046" + - "9047" + - "9048" + - "9049" + - "9053" + - "10316" + - "9055" + - "9056" + - "9057" + - "9058" + - "9059" + - "9060" + - "9061" + - "9062" + - "9063" + - "9064" + - "9065" + - "9066" + - "9068" + - "9070" + - "9071" + - "9072" + - "9073" + - "9074" + - "9075" + - "9076" + - "9077" + - "9078" + - "9079" + - "9080" + - "9081" + - "9082" + - "9083" + - "9084" + - "9085" + - "9086" + - "9088" + - "8428" + - "9091" + - "9093" + - "9094" + - "9095" + - "9096" + - "9097" + - "9098" + - "9099" + - "9103" + - "9104" + - "9105" + - "9106" + - "9108" + - "9109" + - "9110" + - "9111" + - "9112" + - "9114" + - "9116" + - "9117" + - "9118" + - "9121" + - "10288" + - "9122" + - "9124" + - "9125" + - "10373" + - "9126" + - "9127" + - "10034" + - "9128" + - "9129" + - "9131" + - "9132" + - "9133" + - "9134" + - "9136" + - "9137" + - "9135" + - "9141" + - "9144" + - "9150" + - "9151" + - "9948" + - "9152" + - "9153" + - "9143" + - "9155" + - "9156" + - "9157" + - "9149" + - "9165" + - "9147" + - "9168" + - "9169" + - "9171" + - "9172" + - "9173" + - "9175" + - "9176" + - "10343" + - "9177" + - "9178" + - "9179" + - "9180" + - "9181" + - "9182" + - "9183" + - "9184" + - "9185" + - "9187" + - "9188" + - "9189" + - "9191" + - "9192" + - "9194" + - "9195" + - "9196" + - "9197" + - "9198" + - "9199" + - "9201" + - "9203" + - "9204" + - "9205" + - "9206" + - "9207" + - "9208" + - "9209" + - "9210" + - "9211" + - "9212" + - "9214" + - "9215" + - "9218" + - "9220" + - "9221" + - "9186" + - "9225" + - "9226" + - "9227" + - "9228" + - "9229" + - "9230" + - "9231" + - "10206" + - "9234" + - "9236" + - "9237" + - "9233" + - "9239" + - "9240" + - "9241" + - "9242" + - "9243" + - "9245" + - "9244" + - "9247" + - "9248" + - "9249" + - "9250" + - "9251" + - "9252" + - "9253" + - "9256" + - "9257" + - "9259" + - "9260" + - "9261" + - "9262" + - "9264" + - "9267" + - "9268" + - "9269" + - "9270" + - "9271" + - "9272" + - "9274" + - "9273" + - "9276" + - "9277" + - "9278" + - "9279" + - "9280" + - "9283" + - "9284" + - "9285" + - "9286" + - "9287" + - "9288" + - "10210" + - "9289" + - "9292" + - "9293" + - "9294" + - "9296" + - "9297" + - "9298" + - "9299" + - "9300" + - "9302" + - "9303" + - "9304" + - "9305" + - "9306" + - "9307" + - "9308" + - "9310" + - "9311" + - "9312" + - "9313" + - "9314" + - "9315" + - "9316" + - "9317" + - "9318" + - "9319" + - "9322" + - "9323" + - "9324" + - "9325" + - "9326" + - "9327" + - "9328" + - "9329" + - "9330" + - "9332" + - "9333" + - "9334" + - "9335" + - "9336" + - "9339" + - "9340" + - "9341" + - "9342" + - "9344" + - "9348" + - "9354" + - "9355" + - "9360" + - "9363" + - "9364" + - "9366" + - "9369" + - "9370" + - "9371" + - "9372" + - "9373" + - "9374" + - "9375" + - "9379" + - "9380" + - "9382" + - "9383" + - "9386" + - "9387" + - "9388" + - "9389" + - "9391" + - "9392" + - "9393" + - "9394" + - "9396" + - "9397" + - "9398" + - "9399" + - "9404" + - "9405" + - "9406" + - "9407" + - "10287" + - "9408" + - "9409" + - "9410" + - "9411" + - "10323" + - "9413" + - "9414" + - "9415" + - "9416" + - "9417" + - "9418" + - "9420" + - "9422" + - "9423" + - "9425" + - "9428" + - "9432" + - "9431" + - "9435" + - "9436" + - "9438" + - "9440" + - "9441" + - "9442" + - "9443" + - "9444" + - "9445" + - "9446" + - "9447" + - "9448" + - "9449" + - "9450" + - "9451" + - "9459" + - "9460" + - "9424" + - "9463" + - "9465" + - "10071" + - "9466" + - "9467" + - "9468" + - "9470" + - "9472" + - "9474" + - "9476" + - "9477" + - "9479" + - "9480" + - "9481" + - "9482" + - "9483" + - "9484" + - "9485" + - "9486" + - "9487" + - "9491" + - "9492" + - "9493" + - "9494" + - "9495" + - "9496" + - "9497" + - "9498" + - "9499" + - "9500" + - "9503" + - "9504" + - "9505" + - "9506" + - "9508" + - "9509" + - "9510" + - "9511" + - "9513" + - "9514" + - "9516" + - "9517" + - "9518" + - "9520" + - "9521" + - "9522" + - "9524" + - "9525" + - "9526" + - "9527" + - "9528" + - "9529" + - "9535" + - "9538" + - "9541" + - "9542" + - "9543" + - "10374" + - "9544" + - "9545" + - "9546" + - "9548" + - "9549" + - "9550" + - "9551" + - "9552" + - "9555" + - "9557" + - "9559" + - "9562" + - "9563" + - "10328" + - "9565" + - "9566" + - "9530" + - "9532" + - "9569" + - "9570" + - "9571" + - "9572" + - "9573" + - "9575" + - "9577" + - "9578" + - "9579" + - "9580" + - "9581" + - "9582" + - "9583" + - "9584" + - "9585" + - "9589" + - "10097" + - "9590" + - "9596" + - "9597" + - "10027" + - "9595" + - "9601" + - "9602" + - "9603" + - "9604" + - "9605" + - "9606" + - "9607" + - "9608" + - "9609" + - "9610" + - "9611" + - "9612" + - "9613" + - "9616" + - "9618" + - "9619" + - "9622" + - "9623" + - "9624" + - "9626" + - "9627" + - "9628" + - "9629" + - "9630" + - "9631" + - "9632" + - "9633" + - "9634" + - "9635" + - "9636" + - "9640" + - "9643" + - "9644" + - "9645" + - "10331" + - "9647" + - "9648" + - "9649" + - "9650" + - "9651" + - "9654" + - "9655" + - "9656" + - "9657" + - "9658" + - "9660" + - "9661" + - "9662" + - "9663" + - "9664" + - "9665" + - "9666" + - "9667" + - "9668" + - "9669" + - "9671" + - "9672" + - "9673" + - "9674" + - "9507" + - "9677" + - "9678" + - "9679" + - "9681" + - "9683" + - "9684" + - "9686" + - "9687" + - "9688" + - "9689" + - "9690" + - "9691" + - "9692" + - "9693" + - "9694" + - "9695" + - "9696" + - "9699" + - "9700" + - "9701" + - "10125" + - "9702" + - "9706" + - "9707" + - "9708" + - "9710" + - "9711" + - "9712" + - "9713" + - "9714" + - "9715" + - "9717" + - "9718" + - "9720" + - "9721" + - "9723" + - "9724" + - "9725" + - "9726" + - "9727" + - "9728" + - "9729" + - "9730" + - "10333" + - "9732" + - "9734" + - "9735" + - "9736" + - "10310" + - "9737" + - "10309" + - "9739" + - "9740" + - "9741" + - "9742" + - "9743" + - "9744" + - "9745" + - "9747" + - "9748" + - "9749" + - "9750" + - "9751" + - "9754" + - "9755" + - "9756" + - "9757" + - "9758" + - "9759" + - "9760" + - "10344" + - "9761" + - "9762" + - "9763" + - "9764" + - "9765" + - "9766" + - "9767" + - "10330" + - "9768" + - "9769" + - "9770" + - "9771" + - "9772" + - "9773" + - "9775" + - "9776" + - "9777" + - "9778" + - "9953" + - "10325" + - "9779" + - "9784" + - "9785" + - "9786" + - "9789" + - "9791" + - "9792" + - "9794" + - "9795" + - "9796" + - "9797" + - "9798" + - "9799" + - "9800" + - "9801" + - "9805" + - "10334" + - "9807" + - "9808" + - "9809" + - "9811" + - "9812" + - "9813" + - "9814" + - "9815" + - "9816" + - "9817" + - "9818" + - "9820" + - "9821" + - "9822" + - "9825" + - "9826" + - "9827" + - "9828" + - "9829" + - "9830" + - "9831" + - "9832" + - "9833" + - "9834" + - "9835" + - "9836" + - "9837" + - "9838" + - "9839" + - "9842" + - "9843" + - "9844" + - "9845" + - "9846" + - "9847" + - "9848" + - "9849" + - "9850" + - "9852" + - "9853" + - "9854" + - "9855" + - "9856" + - "9857" + - "9858" + - "9859" + - "9861" + - "9862" + - "10337" + - "9864" + - "9865" + - "9866" + - "9868" + - "9869" + - "9870" + - "9871" + - "9872" + - "9873" + - "9874" + - "9876" + - "9875" + - "9879" + - "9880" + - "9883" + - "9884" + - "9882" + - "9887" + - "9888" + - "10130" + - "9889" + - "9890" + - "9891" + - "9892" + - "9893" + - "10298" + - "9895" + - "9896" + - "9897" + - "143" + properties: + 142: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 142 + name: + type: string + example: '?' + 9916: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 9916 + name: + type: string + example: '.dat' + 2: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 2 + name: + type: string + example: '.theprodukkt' + 9898: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 9898 + name: + type: string + example: '[adult swim] games' + 9899: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 9899 + name: + type: string + example: '[bracket]games' + 9900: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 9900 + name: + type: string + example: '[erka:es]' + 9901: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 9901 + name: + type: string + example: '][ Games Inc' + 145: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 145 + name: + type: string + example: '@nifty' + 10341: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 10341 + name: + type: string + example: '~JV~' + 3: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 3 + name: + type: string + example: '07th Expansion' + 4: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 4 + name: + type: string + example: '1-Pup Games' + 5: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 5 + name: + type: string + example: '10 out of 10' + 7: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 7 + name: + type: string + example: '1001 Software Development' + 8: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 8 + name: + type: string + example: '10Ants Hill' + 6: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 6 + name: + type: string + example: '10Tacle Studios AG' + 9: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 9 + name: + type: string + example: '10tons' + 10: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 10 + name: + type: string + example: '10tons Ltd.' + 11: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 11 + name: + type: string + example: '11 Bit Studios' + 12: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 12 + name: + type: string + example: '1337 & Senri AB' + 13: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 13 + name: + type: string + example: '13AM Games' + 14: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 14 + name: + type: string + example: '14° East' + 15: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 15 + name: + type: string + example: '17-Bit' + 16: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 16 + name: + type: string + example: '1985 Alternativo' + 17: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 17 + name: + type: string + example: '1C Company' + 19: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 19 + name: + type: string + example: '1C Wireless' + 20: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 20 + name: + type: string + example: '1C-Avalon' + 21: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 21 + name: + type: string + example: '1C-Softclub' + 23: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 23 + name: + type: string + example: '1C: Ino-Co' + 24: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 24 + name: + type: string + example: '1C: Ino-Co' + 22: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 22 + name: + type: string + example: '1C: Maddox Games' + 25: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 25 + name: + type: string + example: '1st Playable Productions' + 27: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 27 + name: + type: string + example: '1st Team Exit' + 28: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 28 + name: + type: string + example: '2 Dawn Games Inc' + 29: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 29 + name: + type: string + example: '2015, Inc.' + 30: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 30 + name: + type: string + example: '20th Century Fox' + 31: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 31 + name: + type: string + example: '21st Century Entertainment' + 33: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 33 + name: + type: string + example: '221B Software Development' + 32: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 32 + name: + type: string + example: '22Cans' + 37: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 37 + name: + type: string + example: '24 Caret Games' + 39: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 39 + name: + type: string + example: '2D Boy' + 40: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 40 + name: + type: string + example: '2D-Retroperspectives' + 41: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 41 + name: + type: string + example: '2DEngine' + 43: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 43 + name: + type: string + example: '2Dream' + 10068: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 10068 + name: + type: string + example: '2K Australia' + 45: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 45 + name: + type: string + example: '2K Boston' + 46: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 46 + name: + type: string + example: '2K China' + 47: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 47 + name: + type: string + example: '2K Czech' + 44: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 44 + name: + type: string + example: '2K Games' + 49: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 49 + name: + type: string + example: '2K Marin' + 51: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 51 + name: + type: string + example: '2K Play' + 52: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 52 + name: + type: string + example: '2K Shanghai' + 54: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 54 + name: + type: string + example: '2K Sports' + 55: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 55 + name: + type: string + example: '2n Productions' + 56: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 56 + name: + type: string + example: '2Play' + 57: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 57 + name: + type: string + example: '2SD' + 58: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 58 + name: + type: string + example: '2WG Media, Inc.' + 59: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 59 + name: + type: string + example: '2XL Games' + 60: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 60 + name: + type: string + example: '3 Minute Games, LLC' + 61: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 61 + name: + type: string + example: '3 Sprockets' + 62: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 62 + name: + type: string + example: '3000AD, Inc.' + 63: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 63 + name: + type: string + example: '343 Industries' + 65: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 65 + name: + type: string + example: '34BigThings' + 68: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 68 + name: + type: string + example: '369 Interactive' + 9906: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 9906 + name: + type: string + example: '38 Studios' + 70: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 70 + name: + type: string + example: '39 Steps' + 71: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 71 + name: + type: string + example: '3909 LLC' + 72: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 72 + name: + type: string + example: '3D Ages' + 73: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 73 + name: + type: string + example: '3D Lights' + 74: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 74 + name: + type: string + example: '3D Realms Entertainment' + 76: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 76 + name: + type: string + example: '3d6 Games, Inc.' + 77: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 77 + name: + type: string + example: '3DO' + 78: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 78 + name: + type: string + example: '3f Interactive' + 79: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 79 + name: + type: string + example: '3G Studios, Inc.' + 80: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 80 + name: + type: string + example: '3j' + 81: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 81 + name: + type: string + example: '3Romans LLC' + 82: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 82 + name: + type: string + example: '3T Games' + 83: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 83 + name: + type: string + example: '3Vision Games' + 84: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 84 + name: + type: string + example: '4 Dimension Games' + 87: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 87 + name: + type: string + example: '48h Studio' + 88: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 88 + name: + type: string + example: '49Games GmbH' + 90: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 90 + name: + type: string + example: '4A Games' + 91: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 91 + name: + type: string + example: '4A Games Limited' + 92: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 92 + name: + type: string + example: '4CLRC Soft' + 93: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 93 + name: + type: string + example: '4D Rulers Software, Inc.' + 85: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 85 + name: + type: string + example: '4HEAD Studios' + 95: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 95 + name: + type: string + example: '4HIT LTD' + 96: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 96 + name: + type: string + example: '4J Studios' + 99: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 99 + name: + type: string + example: '4Kids Technology, Inc.' + 100: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 100 + name: + type: string + example: '4mm Games' + 86: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 86 + name: + type: string + example: '4Play/Scatologic' + 102: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 102 + name: + type: string + example: '4sdk' + 10146: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 10146 + name: + type: string + example: '4X Studios' + 103: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 103 + name: + type: string + example: '5 Ants' + 104: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 104 + name: + type: string + example: '5 Bits Games' + 105: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 105 + name: + type: string + example: '5 Lives Studios' + 106: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 106 + name: + type: string + example: '5000ft, Inc.' + 107: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 107 + name: + type: string + example: '505 Games' + 111: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 111 + name: + type: string + example: '576 KByte' + 10300: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 10300 + name: + type: string + example: '5pb' + 112: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 112 + name: + type: string + example: '5pb.' + 115: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 115 + name: + type: string + example: '5th Cell Media' + 116: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 116 + name: + type: string + example: '64G' + 117: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 117 + name: + type: string + example: '7 Raven Studios' + 118: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 118 + name: + type: string + example: '7 Studios' + 119: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 119 + name: + type: integer + minimum: 0 + example: 773 + 120: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 120 + name: + type: string + example: '7GAMES' + 122: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 122 + name: + type: string + example: '7Levels' + 127: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 127 + name: + type: string + example: '7th Chord' + 124: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 124 + name: + type: string + example: '7th Level Inc.' + 125: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 125 + name: + type: string + example: '7th Level Inc.' + 123: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 123 + name: + type: string + example: '7th Road' + 126: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 126 + name: + type: string + example: '7th Sense s.r.l.' + 10315: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 10315 + name: + type: string + example: '8-4, Ltd.' + 128: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 128 + name: + type: string + example: '8bits Fanatics' + 129: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 129 + name: + type: string + example: '8ing/Raizing' + 131: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 131 + name: + type: string + example: '8monkey Labs' + 133: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 133 + name: + type: string + example: '91Act Inc.' + 134: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 134 + name: + type: string + example: '93 Games Studio' + 137: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 137 + name: + type: string + example: '989 Sports' + 135: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 135 + name: + type: string + example: '989 Studios' + 140: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 140 + name: + type: string + example: '99Vidas' + 141: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 141 + name: + type: string + example: '9heads Game Studios' + 146: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 146 + name: + type: string + example: 'A Sharp, LLC' + 147: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 147 + name: + type: string + example: 'A Squared' + 151: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 151 + name: + type: string + example: 'A-Max' + 152: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 152 + name: + type: string + example: 'A-Wave' + 153: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 153 + name: + type: string + example: 'A.C.G.' + 154: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 154 + name: + type: string + example: 'A.C.R.O.N.Y.M. Games' + 155: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 155 + name: + type: string + example: 'A.I Co., Ltd.' + 158: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 158 + name: + type: string + example: 'A.I. Design' + 159: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 159 + name: + type: string + example: 'A.R. Software' + 160: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 160 + name: + type: string + example: 'A.R.E. System' + 148: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 148 + name: + type: string + example: 'A&F Software Ltd.' + 161: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 161 + name: + type: string + example: 'A1 Games' + 163: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 163 + name: + type: string + example: 'A2M' + 165: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 165 + name: + type: string + example: 'Aackosoft' + 166: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 166 + name: + type: string + example: 'Aardman Animations' + 167: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 167 + name: + type: string + example: 'Aardvark Software' + 169: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 169 + name: + type: string + example: 'Aaron Curtis' + 170: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 170 + name: + type: string + example: 'Aaronix' + 171: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 171 + name: + type: string + example: 'Aatlantis' + 172: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 172 + name: + type: string + example: 'Abalome' + 173: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 173 + name: + type: string + example: 'Abbey Games' + 174: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 174 + name: + type: string + example: 'Abersoft' + 175: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 175 + name: + type: string + example: 'Able' + 176: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 176 + name: + type: string + example: 'Able Corp. Ltd.' + 177: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 177 + name: + type: string + example: 'ABM' + 178: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 178 + name: + type: string + example: 'ABM Electronics' + 179: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 179 + name: + type: string + example: 'Abrakam SA' + 180: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 180 + name: + type: string + example: 'Abrasco Ltd.' + 181: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 181 + name: + type: string + example: 'Absolute Entertainment' + 182: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 182 + name: + type: string + example: 'Abstraction Games' + 183: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 183 + name: + type: string + example: 'Abstrax' + 184: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 184 + name: + type: string + example: 'Abylight' + 10015: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 10015 + name: + type: string + example: 'abylight S.L.' + 186: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 186 + name: + type: string + example: 'ACA Soft, S.L.' + 187: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 187 + name: + type: string + example: 'Academysoft-Elorg' + 188: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 188 + name: + type: string + example: 'Accent Media Productions' + 189: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 189 + name: + type: string + example: 'Access' + 190: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 190 + name: + type: string + example: 'Access Co.' + 191: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 191 + name: + type: string + example: 'Access Games' + 192: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 192 + name: + type: string + example: 'Access Software, Inc.' + 194: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 194 + name: + type: string + example: 'Acclaim' + 195: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 195 + name: + type: string + example: 'Acclaim Cheltenham' + 196: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 196 + name: + type: string + example: 'Acclaim Entertainment' + 197: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 197 + name: + type: string + example: 'Acclaim Entertainment, Inc.' + 199: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 199 + name: + type: string + example: 'Acclaim Studios Austin' + 200: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 200 + name: + type: string + example: 'Acclaim Studios Cheltenham' + 201: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 201 + name: + type: string + example: 'Acclaim Studios London' + 202: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 202 + name: + type: string + example: 'Acclaim Studios Manchester' + 9908: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 9908 + name: + type: string + example: 'Acclaim Studios Teesside, Ltd.' + 203: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 203 + name: + type: string + example: 'Accolade' + 204: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 204 + name: + type: string + example: 'Accolade, Inc.' + 205: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 205 + name: + type: string + example: 'Accursed Toys' + 206: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 206 + name: + type: string + example: 'Ace International' + 207: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 207 + name: + type: string + example: 'ACE Software' + 209: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 209 + name: + type: string + example: 'ACE Team' + 210: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 210 + name: + type: string + example: 'Acess' + 9909: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 9909 + name: + type: string + example: 'Achim Volkers' + 213: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 213 + name: + type: string + example: 'Acid Nerve' + 214: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 214 + name: + type: string + example: 'Acid Software' + 10354: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 10354 + name: + type: string + example: 'Acid Wizard Studio' + 215: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 215 + name: + type: string + example: 'Ackkstudios' + 216: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 216 + name: + type: string + example: 'Acme Interactive' + 9911: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 9911 + name: + type: string + example: 'Acme Interactive, Inc.' + 218: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 218 + name: + type: string + example: 'Acom' + 219: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 219 + name: + type: string + example: 'ACONY Games' + 220: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 220 + name: + type: string + example: 'Acornsoft' + 221: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 221 + name: + type: string + example: 'ACQUIRE' + 223: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 223 + name: + type: string + example: 'Acro Studio' + 224: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 224 + name: + type: string + example: 'Act Japan' + 225: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 225 + name: + type: string + example: 'Actalogic' + 226: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 226 + name: + type: string + example: 'Action Forms' + 227: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 227 + name: + type: string + example: 'Action Graphics' + 228: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 228 + name: + type: string + example: 'Action Software' + 229: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 229 + name: + type: string + example: 'Actionsoft' + 230: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 230 + name: + type: string + example: 'Actionware Corporation' + 231: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 231 + name: + type: string + example: 'Active Enterprises' + 232: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 232 + name: + type: string + example: 'Active Gaming Media' + 233: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 233 + name: + type: string + example: 'Active Zone Group' + 234: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 234 + name: + type: string + example: 'Activision' + 242: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 242 + name: + type: string + example: 'AD Dinamic' + 243: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 243 + name: + type: string + example: 'ad Games' + 244: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 244 + name: + type: string + example: 'Adam Atomic and Danny B' + 245: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 245 + name: + type: string + example: 'Adam Ryland' + 246: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 246 + name: + type: string + example: 'Adam Saltsman' + 247: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 247 + name: + type: string + example: 'Adatek' + 248: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 248 + name: + type: string + example: 'Addendum Games' + 249: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 249 + name: + type: string + example: 'Addict' + 250: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 250 + name: + type: string + example: 'Addictive Games Ltd' + 251: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 251 + name: + type: string + example: 'Adeline Software International' + 253: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 253 + name: + type: string + example: 'Adept Software' + 254: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 254 + name: + type: string + example: 'Adhesive Games' + 256: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 256 + name: + type: string + example: 'ADK' + 257: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 257 + name: + type: string + example: 'Adrenalin Entertainment' + 260: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 260 + name: + type: string + example: 'Adrenium Games' + 262: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 262 + name: + type: string + example: 'Adrian Page' + 263: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 263 + name: + type: string + example: 'Aduge Studio' + 264: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 264 + name: + type: string + example: 'Advance Communication Company' + 266: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 266 + name: + type: string + example: 'Advance Software' + 268: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 268 + name: + type: string + example: 'Advanced Microcomputer Systems' + 269: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 269 + name: + type: string + example: 'Advanced Productions' + 270: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 270 + name: + type: string + example: 'Adventure International' + 271: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 271 + name: + type: string + example: 'Adventure Soft Publishing Ltd.' + 273: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 273 + name: + type: string + example: 'AEA' + 274: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 274 + name: + type: string + example: 'Aegis Games' + 275: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 275 + name: + type: string + example: 'Aegis Interactive Software' + 276: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 276 + name: + type: string + example: 'Aeon Electronic Entertainment, Inc.' + 279: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 279 + name: + type: string + example: 'Aeria Games & Entertainment' + 280: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 280 + name: + type: string + example: 'Aesir Interactive' + 281: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 281 + name: + type: string + example: 'Aetherbyte' + 282: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 282 + name: + type: string + example: 'Afega' + 283: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 283 + name: + type: string + example: 'Affect Co.,Ltd' + 285: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 285 + name: + type: string + example: 'AG Corp.' + 286: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 286 + name: + type: string + example: 'Agatsuma Entertainment' + 288: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 288 + name: + type: string + example: 'AGD Interactive' + 289: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 289 + name: + type: string + example: 'Age' + 290: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 290 + name: + type: string + example: 'Agenda' + 293: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 293 + name: + type: string + example: 'Agetec' + 294: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 294 + name: + type: string + example: 'Agharta Studio' + 295: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 295 + name: + type: string + example: 'AHEARTFULOFGAMES' + 296: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 296 + name: + type: string + example: 'AI' + 297: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 297 + name: + type: string + example: 'AI Factory' + 298: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 298 + name: + type: string + example: 'AIA' + 299: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 299 + name: + type: string + example: 'Aicom' + 300: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 300 + name: + type: string + example: 'Aiky' + 301: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 301 + name: + type: string + example: 'AIM' + 302: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 302 + name: + type: string + example: 'Airship Syndicate' + 303: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 303 + name: + type: string + example: 'Airship Syndicate Entertainment' + 304: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 304 + name: + type: string + example: 'Airtight Games' + 306: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 306 + name: + type: string + example: 'Airwalk Studios' + 307: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 307 + name: + type: string + example: 'Aisystem Tokyo' + 309: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 309 + name: + type: string + example: 'Ajinomoto' + 310: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 310 + name: + type: string + example: 'Akabei Soft2' + 311: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 311 + name: + type: string + example: 'Akaoni Studio' + 312: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 312 + name: + type: string + example: 'Akella' + 9917: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 9917 + name: + type: string + example: 'AKI Corporation' + 314: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 314 + name: + type: string + example: 'AKI USA, Inc.' + 319: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 319 + name: + type: string + example: 'Aksys Games' + 323: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 323 + name: + type: string + example: 'Al Alamiah' + 324: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 324 + name: + type: string + example: 'Al Baker & Associates' + 325: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 325 + name: + type: string + example: 'Al Baker & Associates' + 9918: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 9918 + name: + type: string + example: 'Al Duffy' + 327: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 327 + name: + type: string + example: 'Al Rubin' + 328: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 328 + name: + type: string + example: 'Alain Savetier' + 329: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 329 + name: + type: string + example: 'Alan Hazelden & Harry Lee' + 330: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 330 + name: + type: string + example: 'Alan Miller' + 331: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 331 + name: + type: string + example: 'Alawar Entertainment Inc.' + 332: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 332 + name: + type: string + example: 'Alawar Entertainment Inc.' + 333: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 333 + name: + type: string + example: 'Alawar Entertainment Inc.' + 334: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 334 + name: + type: string + example: 'Alaware Games' + 335: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 335 + name: + type: string + example: 'Albert Hebert' + 336: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 336 + name: + type: string + example: 'Alcachofa Soft' + 337: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 337 + name: + type: string + example: 'Alcatraz' + 338: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 338 + name: + type: string + example: 'Alchemist' + 339: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 339 + name: + type: string + example: 'Alcom' + 340: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 340 + name: + type: string + example: 'Alda Games' + 341: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 341 + name: + type: string + example: 'Aldorlea Games' + 342: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 342 + name: + type: string + example: 'Alec DeMeo' + 343: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 343 + name: + type: string + example: 'Alekmaul' + 344: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 344 + name: + type: string + example: 'Aleksi Eeben' + 345: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 345 + name: + type: string + example: 'Alex Herbert' + 346: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 346 + name: + type: string + example: 'Alexander Bruce' + 347: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 347 + name: + type: string + example: 'Alexandr Oresco' + 348: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 348 + name: + type: string + example: 'Alexandre Duret-Lutz' + 349: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 349 + name: + type: string + example: 'Alexandria' + 350: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 350 + name: + type: string + example: 'Alexey Bokulev' + 9919: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 9919 + name: + type: string + example: 'Alexey Davydov' + 352: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 352 + name: + type: string + example: 'Alexey Pajitnov' + 353: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 353 + name: + type: string + example: 'Alf Yngve' + 354: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 354 + name: + type: string + example: 'Alfa System' + 358: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 358 + name: + type: string + example: 'Alice Soft' + 359: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 359 + name: + type: string + example: 'Alientrap' + 363: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 363 + name: + type: string + example: 'Alim - Gumi' + 364: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 364 + name: + type: string + example: 'Alkemi Games' + 365: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 365 + name: + type: string + example: 'Alkterios Games' + 366: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 366 + name: + type: string + example: 'All Seeing Eye Games' + 367: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 367 + name: + type: string + example: 'Allgraf' + 10150: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 10150 + name: + type: string + example: 'Allied' + 368: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 368 + name: + type: string + example: 'Allied Leisure' + 362: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 362 + name: + type: string + example: 'Alligata Software Ltd.' + 372: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 372 + name: + type: string + example: 'Allods Team' + 374: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 374 + name: + type: string + example: 'Allumer, Ltd.' + 376: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 376 + name: + type: string + example: 'Almanic Corp.' + 379: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 379 + name: + type: string + example: 'Almost Human Games' + 380: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 380 + name: + type: string + example: 'AlpesSoft' + 381: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 381 + name: + type: string + example: 'Alpha Denshi Co., Ltd.' + 10296: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 10296 + name: + type: string + example: 'Alpha Unit' + 387: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 387 + name: + type: string + example: 'Alpha-Unit' + 389: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 389 + name: + type: string + example: 'AlphaDream' + 390: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 390 + name: + type: string + example: 'Alphadream Corporation' + 391: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 391 + name: + type: string + example: 'Alpine Studios' + 392: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 392 + name: + type: string + example: 'Alta' + 393: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 393 + name: + type: string + example: 'ALTAR Games' + 395: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 395 + name: + type: string + example: 'Alten8' + 396: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 396 + name: + type: string + example: 'Alternative Software Ltd.' + 398: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 398 + name: + type: string + example: 'Alti' + 9923: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 9923 + name: + type: string + example: 'Altron' + 399: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 399 + name: + type: string + example: 'Altron Corporation' + 402: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 402 + name: + type: string + example: 'ALU' + 403: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 403 + name: + type: string + example: 'Alvaro Mateos Herrera' + 404: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 404 + name: + type: string + example: 'Alvion Co., Ltd' + 406: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 406 + name: + type: string + example: 'AM R&D' + 407: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 407 + name: + type: string + example: 'AM R&D Dept. #2' + 409: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 409 + name: + type: string + example: 'AM&M' + 412: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 412 + name: + type: string + example: 'AM2R Team' + 414: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 414 + name: + type: string + example: 'Amanita Design' + 416: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 416 + name: + type: string + example: 'Amaranth Games' + 9914: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 9914 + name: + type: string + example: 'Amaze Entertainment' + 417: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 417 + name: + type: string + example: 'Amaze Entertainment, Inc.' + 419: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 419 + name: + type: string + example: 'Amazing Media' + 420: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 420 + name: + type: string + example: 'Amazing Studios' + 421: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 421 + name: + type: string + example: 'Amble' + 422: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 422 + name: + type: string + example: 'Ambo Computer Co' + 423: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 423 + name: + type: string + example: 'Ambrella' + 424: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 424 + name: + type: string + example: 'AMC' + 425: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 425 + name: + type: string + example: 'Amccus' + 426: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 426 + name: + type: string + example: 'Amedio' + 427: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 427 + name: + type: string + example: 'Amenip' + 428: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 428 + name: + type: string + example: 'American Eagle Software' + 429: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 429 + name: + type: string + example: 'American Game Cartridges' + 9924: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 9924 + name: + type: string + example: 'American Game Cartridges (et. al)' + 431: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 431 + name: + type: string + example: 'American Interactive Media' + 432: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 432 + name: + type: string + example: 'American Laser Games, Inc.' + 434: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 434 + name: + type: string + example: 'American Sammy' + 9959: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 9959 + name: + type: string + example: 'American Softworks' + 435: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 435 + name: + type: string + example: 'American Softworks Corporation' + 436: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 436 + name: + type: string + example: 'American Technos' + 437: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 437 + name: + type: string + example: 'American Video Entertainment' + 438: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 438 + name: + type: string + example: 'AmeriCorp' + 439: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 439 + name: + type: string + example: 'Amiga' + 440: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 440 + name: + type: string + example: 'Amnesty Design' + 441: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 441 + name: + type: string + example: 'Ample Software' + 442: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 442 + name: + type: string + example: 'Amplitude Studios' + 444: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 444 + name: + type: string + example: 'Amsoft' + 446: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 446 + name: + type: string + example: 'Amstar' + 447: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 447 + name: + type: string + example: 'Amtex' + 448: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 448 + name: + type: string + example: 'Amulware' + 449: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 449 + name: + type: string + example: 'Amuse' + 450: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 450 + name: + type: string + example: 'Amuse World Corp.' + 451: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 451 + name: + type: string + example: 'Amusement Vision, Ltd.' + 453: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 453 + name: + type: string + example: 'Amuze' + 454: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 454 + name: + type: string + example: 'AMZY' + 455: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 455 + name: + type: string + example: 'Analgesic Productions' + 456: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 456 + name: + type: string + example: 'Analyrical' + 457: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 457 + name: + type: string + example: 'Anarchy Enterprises' + 458: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 458 + name: + type: string + example: 'Anchor, Inc.' + 460: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 460 + name: + type: string + example: 'Ancient' + 463: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 463 + name: + type: string + example: 'Anco Software Ltd.' + 468: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 468 + name: + type: string + example: 'And Avoid Panic By' + 469: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 469 + name: + type: string + example: 'Andamiro' + 470: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 470 + name: + type: string + example: 'Andamiro Co., Ltd.' + 471: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 471 + name: + type: string + example: 'AndNow Interactive' + 9925: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 9925 + name: + type: string + example: 'Andre Chagas Silva' + 473: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 473 + name: + type: string + example: 'Andrea Mazzini' + 474: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 474 + name: + type: string + example: 'Andreas Gustafsson' + 475: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 475 + name: + type: string + example: 'Andreas Kemnitz' + 10139: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 10139 + name: + type: string + example: 'Andreas Pedersen' + 476: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 476 + name: + type: string + example: 'Andreas Varga' + 9927: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 9927 + name: + type: string + example: 'Andres Roberto Samudio Monro' + 479: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 479 + name: + type: string + example: 'Andrew Braybrook' + 480: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 480 + name: + type: string + example: 'Andrew Carter' + 481: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 481 + name: + type: string + example: 'Andrew Darovich' + 482: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 482 + name: + type: string + example: 'Andrew Davie' + 483: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 483 + name: + type: string + example: 'Andrew F Holdroyd' + 9935: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 9935 + name: + type: string + example: 'Andrew Gilmour' + 485: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 485 + name: + type: string + example: 'Andrew Gosling' + 486: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 486 + name: + type: string + example: 'Andrew Hutchings' + 487: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 487 + name: + type: string + example: 'Andrew Kolesnyk' + 488: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 488 + name: + type: string + example: 'Andrew Morrish' + 10236: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 10236 + name: + type: string + example: 'Andrew Oliver' + 10120: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 10120 + name: + type: string + example: 'Andrew P. Deakin' + 9936: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 9936 + name: + type: string + example: 'Andrew Rogers' + 490: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 490 + name: + type: string + example: 'Andrew Spencer' + 491: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 491 + name: + type: string + example: 'Andrew Spencer Studios' + 492: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 492 + name: + type: string + example: 'AndrewWatt96' + 493: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 493 + name: + type: string + example: 'Andrey ''Zed'' Zaikin' + 494: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 494 + name: + type: string + example: 'Andromeda Software' + 495: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 495 + name: + type: string + example: 'Andy Finkel' + 9938: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 9938 + name: + type: string + example: 'Andy Green' + 497: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 497 + name: + type: string + example: 'Andy Noble' + 498: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 498 + name: + type: string + example: 'Andy Sum' + 499: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 499 + name: + type: string + example: 'Andy Walker, Paul Hodgson' + 10230: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 10230 + name: + type: string + example: 'Andy Williams' + 500: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 500 + name: + type: string + example: 'ANex' + 501: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 501 + name: + type: string + example: 'Angel' + 503: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 503 + name: + type: string + example: 'Angel Studios' + 504: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 504 + name: + type: string + example: 'Angelsoft, Inc.' + 506: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 506 + name: + type: string + example: 'Angry Mob Games' + 508: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 508 + name: + type: string + example: 'Anima Project' + 509: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 509 + name: + type: string + example: 'Animation Arts' + 510: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 510 + name: + type: string + example: 'Animation F/X' + 511: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 511 + name: + type: string + example: 'Animation Magic' + 512: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 512 + name: + type: string + example: 'Animoca XL' + 513: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 513 + name: + type: string + example: 'Anino Entertainment' + 514: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 514 + name: + type: string + example: 'Anirog Software' + 517: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 517 + name: + type: string + example: 'Anisoptera Games' + 518: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 518 + name: + type: string + example: 'Ankama Games' + 521: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 521 + name: + type: string + example: 'Anma' + 522: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 522 + name: + type: string + example: 'Another' + 523: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 523 + name: + type: string + example: 'Anozor S.A.R.L.' + 524: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 524 + name: + type: string + example: 'Answer Software' + 526: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 526 + name: + type: string + example: 'Ant Software' + 527: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 527 + name: + type: string + example: 'Antagonist' + 528: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 528 + name: + type: string + example: 'Anthony Case' + 529: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 529 + name: + type: string + example: 'Anthony Crowther' + 530: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 530 + name: + type: string + example: 'Anthony J. Clarke' + 531: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 531 + name: + type: string + example: 'Anthony Maro' + 9926: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 9926 + name: + type: string + example: 'Anthony Septim' + 9941: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 9941 + name: + type: string + example: 'Anthony Taglione' + 533: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 533 + name: + type: string + example: 'AntonioND' + 534: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 534 + name: + type: string + example: 'Antony Crowther' + 536: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 536 + name: + type: string + example: 'Anuman Interactive' + 537: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 537 + name: + type: string + example: 'Any Channel' + 538: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 538 + name: + type: string + example: 'Aorn' + 539: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 539 + name: + type: string + example: 'Apache Software Limited' + 540: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 540 + name: + type: string + example: 'Ape Studios' + 541: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 541 + name: + type: string + example: 'Apex Computer Productions' + 544: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 544 + name: + type: string + example: 'Apex Designs' + 545: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 545 + name: + type: string + example: 'Apex Software' + 546: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 546 + name: + type: string + example: 'APh Technological Consulting' + 549: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 549 + name: + type: string + example: 'APLUS Co., Ltd.' + 550: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 550 + name: + type: string + example: 'Apogee Software, Ltd.' + 554: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 554 + name: + type: string + example: 'Apollo, Inc.' + 556: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 556 + name: + type: string + example: 'ApolloSoft' + 557: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 557 + name: + type: string + example: 'app2fun' + 558: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 558 + name: + type: string + example: 'Appaloosa Interactive' + 560: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 560 + name: + type: string + example: 'Appeal S.A.' + 10355: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 10355 + name: + type: string + example: 'Application Systems Heidelberg' + 561: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 561 + name: + type: string + example: 'Applied Systems Engineering Inc.' + 562: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 562 + name: + type: string + example: 'Applied Systems Knowledge Ltd.' + 563: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 563 + name: + type: string + example: 'Appmania' + 564: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 564 + name: + type: string + example: 'Aprinet' + 565: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 565 + name: + type: string + example: 'AQ Interactive' + 566: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 566 + name: + type: string + example: 'Aqarius' + 567: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 567 + name: + type: string + example: 'Aqua Pacific Ltd.' + 9945: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 9945 + name: + type: string + example: 'Aqua Style' + 570: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 570 + name: + type: string + example: 'Aquaplus' + 573: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 573 + name: + type: string + example: 'Aquaslash & Pals' + 574: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 574 + name: + type: string + example: 'AquaSystem Co.' + 575: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 575 + name: + type: string + example: 'Aquiris Game Studio' + 576: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 576 + name: + type: string + example: 'Aquria' + 578: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 578 + name: + type: string + example: 'Arc Developments' + 10332: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 10332 + name: + type: string + example: 'Arc Entertainment' + 10061: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 10061 + name: + type: string + example: 'ARC System Works' + 577: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 577 + name: + type: string + example: 'Arc System Works Co., Ltd.' + 580: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 580 + name: + type: string + example: 'Arc System Works Co., Ltd.' + 584: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 584 + name: + type: string + example: 'Arc System Works, Toybox Games' + 10262: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 10262 + name: + type: string + example: 'Arc SystemWorks' + 586: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 586 + name: + type: string + example: 'Arcade Distillery' + 587: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 587 + name: + type: string + example: 'Arcade Machine' + 588: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 588 + name: + type: string + example: 'Arcade Moon' + 589: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 589 + name: + type: string + example: 'Arcade Zone Ltd.' + 591: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 591 + name: + type: string + example: 'Arcadia' + 592: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 592 + name: + type: string + example: 'Arcadia Corporation' + 593: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 593 + name: + type: string + example: 'Arcadia S.A.' + 594: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 594 + name: + type: string + example: 'Arcadia Systems, Inc.' + 597: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 597 + name: + type: string + example: 'Arcana Software Limited' + 598: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 598 + name: + type: string + example: 'Arcane Entertainment Ltd.' + 599: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 599 + name: + type: string + example: 'Arcane Kids' + 600: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 600 + name: + type: string + example: 'Arcanum Computing' + 601: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 601 + name: + type: string + example: 'Arcen Games' + 604: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 604 + name: + type: string + example: 'Arch and The Blind Archer' + 605: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 605 + name: + type: string + example: 'Archer MacLean' + 606: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 606 + name: + type: string + example: 'Archive Entertainment' + 607: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 607 + name: + type: string + example: 'Arctic Anteater' + 608: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 608 + name: + type: string + example: 'Arena Graphics' + 609: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 609 + name: + type: string + example: 'ArenaNet' + 610: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 610 + name: + type: string + example: 'Argent' + 611: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 611 + name: + type: string + example: 'Argo Games' + 612: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 612 + name: + type: string + example: 'Argonaut Games' + 618: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 618 + name: + type: string + example: 'Argus Designs' + 619: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 619 + name: + type: string + example: 'Argus Press Software Ltd.' + 622: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 622 + name: + type: string + example: 'Arika Co., Ltd.' + 625: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 625 + name: + type: string + example: 'Ariolasoft' + 626: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 626 + name: + type: string + example: 'Ariolasoft UK' + 627: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 627 + name: + type: string + example: 'Aristocrat' + 628: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 628 + name: + type: string + example: 'Arkane Studios SA' + 631: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 631 + name: + type: string + example: 'Arkedo Studio' + 633: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 633 + name: + type: string + example: 'ARKOS' + 634: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 634 + name: + type: string + example: 'Armature Studio' + 635: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 635 + name: + type: string + example: 'Armenia Ltd.' + 637: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 637 + name: + type: string + example: 'Arnauld Chavallier' + 638: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 638 + name: + type: string + example: 'Aroma' + 9949: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 9949 + name: + type: string + example: 'Aron Nieminen' + 640: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 640 + name: + type: string + example: 'Arrowhead Game Studios' + 642: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 642 + name: + type: string + example: 'Arsys Software' + 644: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 644 + name: + type: string + example: 'Art & Magic' + 643: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 643 + name: + type: string + example: 'ART Co., Ltd.' + 10261: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 10261 + name: + type: string + example: 'Art SEDIC' + 650: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 650 + name: + type: string + example: 'Art Skiles' + 651: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 651 + name: + type: string + example: 'Artdink' + 657: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 657 + name: + type: string + example: 'Artech Digital Entertainments, Inc.' + 653: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 653 + name: + type: string + example: 'Artech Studios' + 660: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 660 + name: + type: string + example: 'Artefacts Studio' + 661: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 661 + name: + type: string + example: 'Artefacts Studios' + 662: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 662 + name: + type: string + example: 'Artematica' + 663: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 663 + name: + type: string + example: 'ArtePiazza' + 664: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 664 + name: + type: string + example: 'Artery Studios' + 665: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 665 + name: + type: string + example: 'ArtGame' + 666: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 666 + name: + type: string + example: 'Artic' + 667: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 667 + name: + type: string + example: 'Artifact Studio' + 668: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 668 + name: + type: string + example: 'Artifex Mundi' + 671: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 671 + name: + type: string + example: 'Artifice Studios' + 672: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 672 + name: + type: string + example: 'Artificial Hair Bros.' + 670: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 670 + name: + type: string + example: 'Artificial Mind & Movement' + 674: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 674 + name: + type: string + example: 'Artificial Mind & Movement' + 676: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 676 + name: + type: string + example: 'Artificial Studios' + 677: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 677 + name: + type: string + example: 'Artillery' + 678: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 678 + name: + type: string + example: 'Artix Entertainment' + 679: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 679 + name: + type: string + example: 'Artnumeris' + 680: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 680 + name: + type: string + example: 'Artogon Games' + 681: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 681 + name: + type: string + example: 'Artoon Co., Ltd.' + 683: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 683 + name: + type: string + example: 'Artplant' + 684: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 684 + name: + type: string + example: 'Artronic Limited' + 685: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 685 + name: + type: string + example: 'ArturGames' + 686: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 686 + name: + type: string + example: 'Artworx Software Company, Anirog Software' + 687: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 687 + name: + type: string + example: 'Aruze Corp.' + 689: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 689 + name: + type: string + example: 'Arzest' + 690: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 690 + name: + type: string + example: 'ASCARON Entertainment GmbH' + 694: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 694 + name: + type: string + example: 'ASCII' + 695: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 695 + name: + type: string + example: 'ASCII Corporation' + 10222: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 10222 + name: + type: string + example: 'ASCII Entertainment' + 696: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 696 + name: + type: string + example: 'ASCII Entertainment Software, Inc.' + 700: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 700 + name: + type: string + example: 'Asciiware' + 701: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 701 + name: + type: string + example: 'Ascon' + 702: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 702 + name: + type: string + example: 'Asder' + 703: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 703 + name: + type: string + example: 'Ashby Computers and Graphics Ltd.' + 705: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 705 + name: + type: string + example: 'Asixa' + 706: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 706 + name: + type: string + example: 'ASK Co. Ltd.' + 709: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 709 + name: + type: string + example: 'ASK Kodansha' + 713: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 713 + name: + type: string + example: 'Asmik Ace Entertainment' + 712: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 712 + name: + type: string + example: 'Asmik Corp. of America' + 720: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 720 + name: + type: string + example: 'Asobo' + 721: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 721 + name: + type: string + example: 'Asobo Studio' + 722: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 722 + name: + type: string + example: 'Aspect Co. Ltd.' + 10339: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 10339 + name: + type: string + example: 'Aspyr' + 10314: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 10314 + name: + type: string + example: 'Aspyr Media' + 725: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 725 + name: + type: string + example: 'Aspyr Media, Inc.' + 731: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 731 + name: + type: string + example: 'Asteroid Base' + 733: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 733 + name: + type: string + example: 'Astral Software' + 734: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 734 + name: + type: string + example: 'ASTRO PORT' + 735: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 735 + name: + type: string + example: 'Astrocade' + 736: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 736 + name: + type: string + example: 'Astroll' + 737: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 737 + name: + type: string + example: 'Astronomic Games' + 738: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 738 + name: + type: string + example: 'Astrosaurus Games' + 739: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 739 + name: + type: string + example: 'Astrovision' + 740: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 740 + name: + type: string + example: 'Astrum Nival' + 741: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 741 + name: + type: string + example: 'Asuka Technologies' + 742: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 742 + name: + type: string + example: 'Asylum Entertainment Ltd.' + 744: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 744 + name: + type: string + example: 'Asylum Studios' + 745: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 745 + name: + type: string + example: 'Asymmetric' + 746: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 746 + name: + type: string + example: 'ata Design Interactive' + 748: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 748 + name: + type: string + example: 'Atari' + 1: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 1 + name: + type: string + example: 'Atari Games' + 755: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 755 + name: + type: string + example: 'AtariAge' + 756: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 756 + name: + type: string + example: 'Atarisoft' + 757: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 757 + name: + type: string + example: 'AtariVox' + 758: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 758 + name: + type: string + example: 'Ateam Inc.' + 759: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 759 + name: + type: string + example: 'Atelier 801' + 760: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 760 + name: + type: string + example: 'Atelier Designs' + 747: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 747 + name: + type: string + example: 'Atelier Double' + 762: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 762 + name: + type: string + example: 'Atelier Double Co. Ltd.' + 763: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 763 + name: + type: string + example: 'Atelier-Sai' + 764: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 764 + name: + type: string + example: 'Athena Co., Ltd.' + 766: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 766 + name: + type: string + example: 'Athletic Design AB' + 9947: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 9947 + name: + type: string + example: 'Atlus' + 767: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 767 + name: + type: string + example: 'Atlus Co., Ltd.' + 770: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 770 + name: + type: string + example: 'Atlus Company, Limited' + 771: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 771 + name: + type: string + example: 'Atlus U.S.A., Inc.' + 778: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 778 + name: + type: string + example: 'Atod AB' + 781: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 781 + name: + type: string + example: 'Atomic Elbow' + 782: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 782 + name: + type: string + example: 'Atomic Games' + 783: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 783 + name: + type: string + example: 'Atomic Motion' + 784: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 784 + name: + type: string + example: 'Atomic Planet Entertainment Limited' + 788: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 788 + name: + type: string + example: 'Atomicom Limited' + 789: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 789 + name: + type: string + example: 'AtomicTorch Studio' + 790: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 790 + name: + type: string + example: 'AtomTeam' + 791: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 791 + name: + type: string + example: 'Atooi' + 792: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 792 + name: + type: string + example: 'Atreid Concept SA' + 9952: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 9952 + name: + type: string + example: 'Atsushi Taniguchi' + 795: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 795 + name: + type: string + example: 'Attention to Detail Limited' + 798: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 798 + name: + type: string + example: 'Attic Entertainment Software GmbH' + 800: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 800 + name: + type: string + example: 'Attila Bird' + 801: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 801 + name: + type: string + example: 'Attractive Games' + 802: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 802 + name: + type: string + example: 'ATW USA' + 803: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 803 + name: + type: string + example: 'Atwoods Studios' + 804: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 804 + name: + type: string + example: 'Audio Visual Magic' + 805: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 805 + name: + type: string + example: 'Audio Visuellen Medien' + 806: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 806 + name: + type: string + example: 'Audiogenic Software Ltd.' + 810: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 810 + name: + type: string + example: 'Auran' + 811: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 811 + name: + type: string + example: 'Auran Games' + 812: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 812 + name: + type: string + example: 'Aurelien Regard' + 813: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 813 + name: + type: string + example: 'Auroch Digital' + 814: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 814 + name: + type: string + example: 'Aurora44' + 815: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 815 + name: + type: string + example: 'Automata U.K. Limited' + 9954: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 9954 + name: + type: string + example: 'Autumn Moon Entertainment' + 817: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 817 + name: + type: string + example: 'AV artisan' + 818: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 818 + name: + type: string + example: 'Avalanche' + 819: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 819 + name: + type: string + example: 'Avalanche Software LLC' + 824: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 824 + name: + type: string + example: 'Avalanche Studios' + 828: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 828 + name: + type: string + example: 'Avallon Alliance Ltd.' + 829: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 829 + name: + type: string + example: 'Avalon Hill' + 830: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 830 + name: + type: string + example: 'Avalon Interactive' + 831: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 831 + name: + type: string + example: 'Avalon Style Entertainment' + 832: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 832 + name: + type: string + example: 'Avanquest' + 834: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 834 + name: + type: string + example: 'Avantgardistic Arts' + 835: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 835 + name: + type: string + example: 'Aventuras AD' + 836: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 836 + name: + type: string + example: 'Avion' + 837: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 837 + name: + type: string + example: 'Avit' + 838: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 838 + name: + type: string + example: 'AVM' + 839: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 839 + name: + type: string + example: 'AWE Games' + 842: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 842 + name: + type: string + example: 'AWE Productions, Inc.' + 844: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 844 + name: + type: string + example: 'Awesome Developments' + 845: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 845 + name: + type: string + example: 'Awesome Games Studio' + 846: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 846 + name: + type: string + example: 'Awesome Play Ltd' + 847: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 847 + name: + type: string + example: 'Awesome Productions' + 843: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 843 + name: + type: string + example: 'Awesome Studios' + 849: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 849 + name: + type: string + example: 'AwesomeBlade' + 850: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 850 + name: + type: string + example: 'Awfully Nice Studios' + 851: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 851 + name: + type: string + example: 'Awkoker Games' + 852: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 852 + name: + type: string + example: 'Axe Eel Games' + 853: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 853 + name: + type: string + example: 'Axela' + 854: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 854 + name: + type: string + example: 'Axelay' + 855: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 855 + name: + type: string + example: 'Axes Art Amuse' + 856: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 856 + name: + type: string + example: 'Axis Entertainment' + 857: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 857 + name: + type: string + example: 'Axis Komputerkunst' + 858: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 858 + name: + type: string + example: 'Axlon' + 859: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 859 + name: + type: string + example: 'Axolot Games' + 860: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 860 + name: + type: string + example: 'AXYOS GAMES TEAM' + 10053: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 10053 + name: + type: string + example: 'Ayyo Games' + 861: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 861 + name: + type: string + example: 'Azeroth, Inc.' + 862: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 862 + name: + type: string + example: 'Azuma' + 863: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 863 + name: + type: string + example: 'Azure' + 864: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 864 + name: + type: string + example: 'b-Alive' + 865: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 865 + name: + type: string + example: 'B-Factory' + 866: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 866 + name: + type: string + example: 'B.B. Studio' + 868: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 868 + name: + type: string + example: 'B.I.T.S., Ltd.' + 870: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 870 + name: + type: string + example: 'B.U.G.' + 871: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 871 + name: + type: string + example: 'BABYLON' + 872: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 872 + name: + type: string + example: 'Babylon Software' + 873: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 873 + name: + type: string + example: 'Backbone Charlottetown' + 874: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 874 + name: + type: string + example: 'Backbone Emeryville' + 875: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 875 + name: + type: string + example: 'Backbone Entertainment' + 878: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 878 + name: + type: string + example: 'Backbone Vancouver' + 879: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 879 + name: + type: string + example: 'Backs Electronic Publishing' + 10356: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 10356 + name: + type: string + example: 'Backwoods Entertainment' + 880: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 880 + name: + type: string + example: 'Bacon Bandit Games' + 881: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 881 + name: + type: string + example: 'Bad2theBone Studio' + 882: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 882 + name: + type: string + example: 'Badland Games' + 883: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 883 + name: + type: string + example: 'Baggy Cat Ltd' + 884: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 884 + name: + type: string + example: 'Balanced Alternative Techniques' + 885: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 885 + name: + type: string + example: 'Ballistic' + 9957: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 9957 + name: + type: string + example: 'Bally' + 886: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 886 + name: + type: string + example: 'Bally Mfg. Corp.' + 890: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 890 + name: + type: string + example: 'Bally Midway Mfg.' + 891: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 891 + name: + type: string + example: 'Bally Sente' + 895: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 895 + name: + type: string + example: 'BAM! Entertainment, Inc.' + 898: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 898 + name: + type: string + example: 'Bamtang' + 899: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 899 + name: + type: string + example: 'Banana Development' + 903: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 903 + name: + type: string + example: 'Bandai America, Inc.' + 900: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 900 + name: + type: string + example: 'Bandai Co., Ltd.' + 902: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 902 + name: + type: string + example: 'Bandai Namco Entertainment' + 905: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 905 + name: + type: string + example: 'BANDAI NAMCO Entertainment, Inc.' + 911: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 911 + name: + type: string + example: 'Bandai Shinsei' + 912: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 912 + name: + type: string + example: 'Bandai Visual' + 916: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 916 + name: + type: string + example: 'Bandit' + 9958: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 9958 + name: + type: string + example: 'Banpresto' + 917: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 917 + name: + type: string + example: 'Banpresto Co., Ltd.' + 924: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 924 + name: + type: string + example: 'Barking Dog Studios' + 925: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 925 + name: + type: string + example: 'Barking Lizards Technologies' + 923: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 923 + name: + type: string + example: 'Barko Corp' + 928: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 928 + name: + type: string + example: 'Barnhouse Effect Co., Ltd' + 930: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 930 + name: + type: string + example: 'Baroque Decay' + 931: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 931 + name: + type: string + example: 'Baroque Gaming' + 932: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 932 + name: + type: string + example: 'Bart van Velzen (Norakomi)' + 933: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 933 + name: + type: string + example: 'Bartosz Bialek' + 934: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 934 + name: + type: string + example: 'Basaltic Studio' + 10025: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 10025 + name: + type: string + example: 'Base Camp Films' + 935: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 935 + name: + type: string + example: 'Basecamp Games' + 936: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 936 + name: + type: string + example: 'BaseSon' + 937: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 937 + name: + type: string + example: 'Basilisk Games' + 938: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 938 + name: + type: string + example: 'Bastian Schick' + 939: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 939 + name: + type: string + example: 'Batovi Games Studio' + 940: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 940 + name: + type: string + example: 'Batterystaple Games' + 941: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 941 + name: + type: string + example: 'BattleBorne Entertainment' + 943: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 943 + name: + type: string + example: 'Battleborne Entertainment, 5000ft' + 944: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 944 + name: + type: string + example: 'Battlegoat Studios' + 945: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 945 + name: + type: string + example: 'Battlestate Games' + 946: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 946 + name: + type: string + example: 'Baudville' + 947: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 947 + name: + type: string + example: 'BBC Multimedia' + 948: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 948 + name: + type: string + example: 'BC Verlags und Medien' + 949: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 949 + name: + type: string + example: 'Be Rad Entertainment' + 67: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 67 + name: + type: string + example: 'Beam Software' + 955: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 955 + name: + type: string + example: 'Beamdog' + 956: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 956 + name: + type: string + example: 'BeamNG' + 957: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 957 + name: + type: string + example: 'Bear''s Corporation' + 958: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 958 + name: + type: string + example: 'Beast' + 959: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 959 + name: + type: string + example: 'Beast Games' + 960: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 960 + name: + type: string + example: 'Beatnik Games' + 961: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 961 + name: + type: string + example: 'Beatshapers' + 962: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 962 + name: + type: string + example: 'BEATSHAPERS LTD.' + 963: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 963 + name: + type: string + example: 'Beautiful Game Studios' + 964: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 964 + name: + type: string + example: 'Beautiful Glitch' + 965: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 965 + name: + type: string + example: 'Beavis-Soft' + 966: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 966 + name: + type: string + example: 'BEC Co., Ltd.' + 970: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 970 + name: + type: string + example: 'Beck-Tech' + 971: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 971 + name: + type: string + example: 'Bedlam Games' + 972: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 972 + name: + type: string + example: 'Bedtime Digital Games' + 973: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 973 + name: + type: string + example: 'Bee Tribe' + 974: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 974 + name: + type: string + example: 'Bee-Oh' + 975: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 975 + name: + type: string + example: 'Beemov' + 976: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 976 + name: + type: string + example: 'Beenox Studios' + 978: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 978 + name: + type: string + example: 'Beep Games Inc.' + 979: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 979 + name: + type: string + example: 'Beep Industries' + 980: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 980 + name: + type: string + example: 'Beethoven & Dinosaur' + 981: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 981 + name: + type: string + example: 'BeeWorks Co., Ltd.' + 984: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 984 + name: + type: string + example: 'Behavior Interactive' + 986: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 986 + name: + type: string + example: 'Behaviour Digital Inc.' + 985: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 985 + name: + type: string + example: 'Behaviour Interactive' + 989: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 989 + name: + type: string + example: 'Behind the Stone' + 990: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 990 + name: + type: string + example: 'Behold Studios' + 991: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 991 + name: + type: string + example: 'Bell-Fruit' + 992: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 992 + name: + type: string + example: 'Bemani' + 9969: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 9969 + name: + type: string + example: 'Ben Daglish' + 10005: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 10005 + name: + type: string + example: 'Ben Ibach' + 993: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 993 + name: + type: string + example: 'Ben Johnson' + 994: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 994 + name: + type: string + example: 'Ben Larson' + 995: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 995 + name: + type: string + example: 'Bend Studio' + 996: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 996 + name: + type: string + example: 'Benjamin Rivers' + 997: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 997 + name: + type: string + example: 'Benjamin Rivers Inc' + 998: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 998 + name: + type: string + example: 'Benny Schmidt' + 999: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 999 + name: + type: string + example: 'Bergsala Lightweight' + 1000: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 1000 + name: + type: string + example: 'Berkeley Softworks' + 1001: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 1001 + name: + type: string + example: 'Berkeley Systems, Inc.' + 10133: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 10133 + name: + type: string + example: 'Bernie Drummond' + 1003: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 1003 + name: + type: string + example: 'Berserk Games' + 1004: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 1004 + name: + type: string + example: 'Best' + 1005: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 1005 + name: + type: string + example: 'Best Ever Games' + 1006: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 1006 + name: + type: string + example: 'Best Media' + 1007: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 1007 + name: + type: string + example: 'Best Way' + 1008: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 1008 + name: + type: string + example: 'Bethesda' + 1009: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 1009 + name: + type: string + example: 'Bethesda Game Studios' + 1010: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 1010 + name: + type: string + example: 'Bethesda Softworks' + 1012: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 1012 + name: + type: string + example: 'Betop' + 1013: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 1013 + name: + type: string + example: 'Bewesoft' + 1014: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 1014 + name: + type: string + example: 'Beyond' + 1015: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 1015 + name: + type: string + example: 'Beyond Games' + 1016: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 1016 + name: + type: string + example: 'Beyond Reality Games' + 1018: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 1018 + name: + type: string + example: 'Beyond Software, Inc.' + 1020: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 1020 + name: + type: string + example: 'BFM' + 1021: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 1021 + name: + type: string + example: 'BGS Development' + 1022: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 1022 + name: + type: string + example: 'Biart Company LLC' + 1023: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 1023 + name: + type: string + example: 'Biart Studio' + 1024: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 1024 + name: + type: string + example: 'Big Ant Studios' + 1025: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 1025 + name: + type: string + example: 'Big Ape Productions' + 1027: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 1027 + name: + type: string + example: 'Big Bad Wolf' + 1028: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 1028 + name: + type: string + example: 'Big Bang' + 1029: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 1029 + name: + type: string + example: 'Big Blaze' + 1030: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 1030 + name: + type: string + example: 'Big Blue Bubble Inc.' + 1032: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 1032 + name: + type: string + example: 'Big Boat Interactive' + 1033: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 1033 + name: + type: string + example: 'Big Club' + 1034: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 1034 + name: + type: string + example: 'Big Deez Productions' + 1035: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 1035 + name: + type: string + example: 'Big Fat Alien' + 1036: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 1036 + name: + type: string + example: 'Big Finish Games' + 1037: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 1037 + name: + type: string + example: 'Big Fish Games' + 1040: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 1040 + name: + type: string + example: 'Big Five Software' + 1041: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 1041 + name: + type: string + example: 'Big Grub' + 1042: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 1042 + name: + type: string + example: 'Big Head Games Limited' + 1043: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 1043 + name: + type: string + example: 'Big Head Games Ltd.' + 1044: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 1044 + name: + type: string + example: 'Big Huge Games' + 1045: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 1045 + name: + type: string + example: 'Big John Games' + 1046: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 1046 + name: + type: string + example: 'Big Red' + 1047: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 1047 + name: + type: string + example: 'Big Red Button Entertainment' + 1048: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 1048 + name: + type: string + example: 'Big Red Software' + 1049: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 1049 + name: + type: string + example: 'Big Red Software Ltd.' + 1050: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 1050 + name: + type: string + example: 'Big Red Software, Jon Cartwright, Derek Leigh Gilchrist, Ian Gray' + 1051: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 1051 + name: + type: string + example: 'Big Sandwich Games' + 1052: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 1052 + name: + type: string + example: 'Big Sky Software' + 1053: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 1053 + name: + type: string + example: 'Big Splash Games LLC' + 1055: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 1055 + name: + type: string + example: 'Big West' + 1056: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 1056 + name: + type: string + example: 'Bigben Games' + 1057: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 1057 + name: + type: string + example: 'Bigben Interactive' + 1058: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 1058 + name: + type: string + example: 'BigBig Studios' + 1061: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 1061 + name: + type: string + example: 'bignic - Dolphin Barn' + 1062: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 1062 + name: + type: string + example: 'Bignonia' + 1063: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 1063 + name: + type: string + example: 'BigPark' + 1064: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 1064 + name: + type: string + example: 'BigSky Interactive' + 1065: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 1065 + name: + type: string + example: 'Bigzur Games' + 1066: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 1066 + name: + type: string + example: 'Bildgarden' + 1067: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 1067 + name: + type: string + example: 'Bill Budge' + 1068: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 1068 + name: + type: string + example: 'Bill Dunlevy' + 1069: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 1069 + name: + type: string + example: 'Bill Hindorff' + 1070: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 1070 + name: + type: string + example: 'Bill Kendrick' + 1071: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 1071 + name: + type: string + example: 'Bimboosoft' + 1072: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 1072 + name: + type: string + example: 'Binary 9 Studios' + 1073: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 1073 + name: + type: string + example: 'Binary Asylum' + 1074: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 1074 + name: + type: string + example: 'Binary Design, Ltd.' + 1079: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 1079 + name: + type: string + example: 'Binary Emotions' + 1080: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 1080 + name: + type: string + example: 'Binary Systems' + 1081: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 1081 + name: + type: string + example: 'Binary Takeover' + 1082: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 1082 + name: + type: string + example: 'Binary Vision' + 1083: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 1083 + name: + type: string + example: 'Binary Zoo' + 1085: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 1085 + name: + type: string + example: 'Bionic Games' + 1086: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 1086 + name: + type: string + example: 'BioWare' + 1089: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 1089 + name: + type: string + example: 'Biox' + 1090: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 1090 + name: + type: string + example: 'Bip Games' + 1091: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 1091 + name: + type: string + example: 'Birthday' + 1092: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 1092 + name: + type: string + example: 'Bit Blot' + 1094: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 1094 + name: + type: string + example: 'Bit Corporation' + 1097: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 1097 + name: + type: string + example: 'Bit Managers' + 1099: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 1099 + name: + type: string + example: 'Bit Town Inc.' + 1101: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 1101 + name: + type: string + example: 'Bit²' + 1102: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 1102 + name: + type: string + example: 'Bitbox Ltd.' + 1093: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 1093 + name: + type: string + example: 'bitComposer Entertainment AG' + 1106: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 1106 + name: + type: string + example: 'Bite Studios' + 1107: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 1107 + name: + type: string + example: 'Bite the Chili Productions' + 1108: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 1108 + name: + type: string + example: 'Bitfield' + 1109: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 1109 + name: + type: string + example: 'Bitfield GmbH' + 1110: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 1110 + name: + type: string + example: 'Bitfighter Industries' + 1111: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 1111 + name: + type: string + example: 'Bitfusion' + 1112: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 1112 + name: + type: string + example: 'BitJag' + 1113: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 1113 + name: + type: string + example: 'Bitmap Brother, The' + 1115: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 1115 + name: + type: string + example: 'Bitmap Brothers, The' + 1116: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 1116 + name: + type: string + example: 'Bitmap Bureau' + 1117: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 1117 + name: + type: string + example: 'Bitmap Bureau Ltd.' + 1118: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 1118 + name: + type: string + example: 'Bitmasters, Inc.' + 1119: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 1119 + name: + type: string + example: 'BitMonster, Inc' + 1120: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 1120 + name: + type: string + example: 'BITS' + 1121: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 1121 + name: + type: string + example: 'Bits Corporation Limited' + 1124: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 1124 + name: + type: string + example: 'Bits Laboratory' + 1125: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 1125 + name: + type: string + example: 'Bits of Magic' + 1126: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 1126 + name: + type: string + example: 'Bits Productions' + 1098: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 1098 + name: + type: string + example: 'Bits Studios' + 1129: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 1129 + name: + type: string + example: 'BitStep' + 1130: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 1130 + name: + type: string + example: 'Bizarre' + 1131: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 1131 + name: + type: string + example: 'Bizarre Creations, Ltd.' + 1133: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 1133 + name: + type: string + example: 'Bizarre Developments' + 1134: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 1134 + name: + type: string + example: 'BL-Logic' + 10326: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 10326 + name: + type: string + example: 'Black Box' + 1135: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 1135 + name: + type: string + example: 'Black Box Games' + 1137: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 1137 + name: + type: string + example: 'Black Element Software' + 1138: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 1138 + name: + type: string + example: 'Black Forest Games' + 1139: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 1139 + name: + type: string + example: 'Black Hammer Games' + 1140: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 1140 + name: + type: string + example: 'Black Hole Entertainment' + 1143: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 1143 + name: + type: string + example: 'Black Isle Studio' + 1142: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 1142 + name: + type: string + example: 'Black Isle Studios' + 1145: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 1145 + name: + type: string + example: 'Black Jacket Studios' + 1146: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 1146 + name: + type: string + example: 'Black Lantern Studios, Inc.' + 1150: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 1150 + name: + type: string + example: 'Black Legend' + 1151: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 1151 + name: + type: string + example: 'Black Magic Software' + 1152: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 1152 + name: + type: string + example: 'Black Market Games' + 1153: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 1153 + name: + type: string + example: 'Black Mesa Modification Team' + 1154: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 1154 + name: + type: string + example: 'Black Ops Entertainment' + 1158: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 1158 + name: + type: string + example: 'Black Pants Game Studio' + 1160: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 1160 + name: + type: string + example: 'Black Pearl' + 1161: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 1161 + name: + type: string + example: 'Black Rock Studio' + 1162: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 1162 + name: + type: string + example: 'Black Sea Studios' + 1163: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 1163 + name: + type: string + example: 'Black Sheep Studio' + 1164: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 1164 + name: + type: string + example: 'Black Ship Games' + 1165: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 1165 + name: + type: string + example: 'Black Tusk Studios' + 10086: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 10086 + name: + type: string + example: 'Black Wing Foundation' + 1166: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 1166 + name: + type: string + example: 'Blackbird Interactive' + 1167: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 1167 + name: + type: string + example: 'Blackbone Entertainment' + 1168: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 1168 + name: + type: string + example: 'Blackfire Games' + 1169: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 1169 + name: + type: string + example: 'Blackland Games' + 1170: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 1170 + name: + type: string + example: 'Blackpowder Games' + 1171: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 1171 + name: + type: string + example: 'BlackSpot Entertainment' + 1172: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 1172 + name: + type: string + example: 'Blade Interactive' + 1174: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 1174 + name: + type: string + example: 'Blade Software' + 1175: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 1175 + name: + type: string + example: 'Blah Blah Woof Woof' + 1176: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 1176 + name: + type: string + example: 'Blam!' + 1177: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 1177 + name: + type: string + example: 'BlankMediaGames' + 1178: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 1178 + name: + type: string + example: 'Blast! Entertainment Ltd' + 1179: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 1179 + name: + type: string + example: 'Blastar' + 1180: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 1180 + name: + type: string + example: 'Blaster' + 1181: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 1181 + name: + type: string + example: 'Blaze Epic' + 1182: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 1182 + name: + type: string + example: 'Blazer & Co.' + 1183: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 1183 + name: + type: string + example: 'Blazer and DH Ninja' + 1184: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 1184 + name: + type: string + example: 'Blazing Badger' + 1185: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 1185 + name: + type: string + example: 'Blazing Griffin' + 1186: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 1186 + name: + type: string + example: 'Blazing Lizard' + 10357: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 10357 + name: + type: string + example: 'Blender Games' + 1187: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 1187 + name: + type: string + example: 'Blender Institute' + 1188: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 1188 + name: + type: string + example: 'Blendo Games' + 1189: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 1189 + name: + type: string + example: 'Blind Squirrel Games' + 10377: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 10377 + name: + type: string + example: 'Blindflug Studios' + 1190: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 1190 + name: + type: string + example: 'BlinkWorks Media' + 1191: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 1191 + name: + type: string + example: 'Blit' + 1192: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 1192 + name: + type: string + example: 'Blit Software' + 1193: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 1193 + name: + type: string + example: 'Blitter Animations' + 1194: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 1194 + name: + type: string + example: 'BlitWorks' + 1195: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 1195 + name: + type: string + example: 'Blitz' + 1196: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 1196 + name: + type: string + example: 'Blitz Arcade' + 1197: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 1197 + name: + type: string + example: 'Blitz Game Studios' + 1198: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 1198 + name: + type: string + example: 'Blitz Games' + 1199: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 1199 + name: + type: string + example: 'Blitz Games Limited' + 1200: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 1200 + name: + type: string + example: 'Blitz Games Studio, Ltd.' + 1201: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 1201 + name: + type: string + example: 'Blitz Interactive Studios' + 1202: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 1202 + name: + type: string + example: 'Blizzard' + 1203: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 1203 + name: + type: string + example: 'Blizzard Entertainment' + 1204: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 1204 + name: + type: string + example: 'Blizzard Entertainment Inc.' + 1205: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 1205 + name: + type: string + example: 'Bloober Team SA' + 1207: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 1207 + name: + type: string + example: 'Bloodhouse' + 1208: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 1208 + name: + type: string + example: 'Bloodhouse Ltd.' + 1210: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 1210 + name: + type: string + example: 'Bloodlust Software' + 1211: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 1211 + name: + type: string + example: 'Blooming Buds Studio' + 1212: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 1212 + name: + type: string + example: 'Blowfish Studios' + 1213: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 1213 + name: + type: string + example: 'BluBee Games' + 1214: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 1214 + name: + type: string + example: 'Blue 52' + 1215: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 1215 + name: + type: string + example: 'Blue Bottle Games' + 1216: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 1216 + name: + type: string + example: 'Blue Byte Software' + 1221: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 1221 + name: + type: string + example: 'Blue Castle Games' + 1223: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 1223 + name: + type: string + example: 'Blue Fang Games' + 1224: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 1224 + name: + type: string + example: 'Blue Isle Studios' + 1225: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 1225 + name: + type: string + example: 'Blue Mammoth Games' + 1226: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 1226 + name: + type: string + example: 'Blue Monkey Studios' + 1227: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 1227 + name: + type: string + example: 'Blue Moon' + 1228: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 1228 + name: + type: string + example: 'Blue Omega' + 1229: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 1229 + name: + type: string + example: 'Blue Planet Interactive' + 1230: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 1230 + name: + type: string + example: 'Blue Planet Software' + 1231: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 1231 + name: + type: string + example: 'Blue Ribbon' + 1232: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 1232 + name: + type: string + example: 'Blue Shift' + 10208: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 10208 + name: + type: string + example: 'Blue Sky Software' + 1235: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 1235 + name: + type: string + example: 'Blue Sphere' + 1236: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 1236 + name: + type: string + example: 'Blue Sphere Games' + 1237: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 1237 + name: + type: string + example: 'Blue Tea Games' + 1238: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 1238 + name: + type: string + example: 'Blue Tongue Entertainment Pty, Ltd.' + 1242: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 1242 + name: + type: string + example: 'Blue Turtle' + 1244: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 1244 + name: + type: string + example: 'Bluebutton Games' + 1246: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 1246 + name: + type: string + example: 'Bluehole Ginno Games' + 1245: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 1245 + name: + type: string + example: 'Bluehole Studio' + 1248: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 1248 + name: + type: string + example: 'Bluemoon' + 1249: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 1249 + name: + type: string + example: 'Bluepoint Games' + 1250: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 1250 + name: + type: string + example: 'Bluepoint Games SIE Japan Studio' + 1251: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 1251 + name: + type: string + example: 'Blueside' + 1233: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 1233 + name: + type: string + example: 'BlueSky Software' + 9962: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 9962 + name: + type: string + example: 'Bluth Group' + 1258: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 1258 + name: + type: string + example: 'Blyts' + 1259: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 1259 + name: + type: string + example: 'Bo Jangeborg' + 1260: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 1260 + name: + type: string + example: 'Bob DeCrescenzo' + 1261: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 1261 + name: + type: string + example: 'Bob Montgomery' + 1262: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 1262 + name: + type: string + example: 'Bob the Game Development Bot' + 9965: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 9965 + name: + type: string + example: 'Bob Toone' + 1264: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 1264 + name: + type: string + example: 'Boco' + 1265: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 1265 + name: + type: string + example: 'Bohemia Interactive Studio' + 1267: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 1267 + name: + type: string + example: 'Bold' + 1268: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 1268 + name: + type: string + example: 'Bollaware' + 1269: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 1269 + name: + type: string + example: 'bom667' + 1270: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 1270 + name: + type: string + example: 'Bomb' + 1271: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 1271 + name: + type: string + example: 'Bomb Shelter Games' + 1272: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 1272 + name: + type: string + example: 'Bomber Games' + 1273: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 1273 + name: + type: string + example: 'BomberDev' + 1274: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 1274 + name: + type: string + example: 'Bombservice' + 1275: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 1275 + name: + type: string + example: 'Boneloaf Games' + 1276: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 1276 + name: + type: string + example: 'Bongfish GmbH' + 1278: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 1278 + name: + type: string + example: 'Bonsai Entertainment Corp.' + 1280: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 1280 + name: + type: string + example: 'Bonus Level Entertainment' + 1281: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 1281 + name: + type: string + example: 'BonusJZ' + 1282: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 1282 + name: + type: string + example: 'Boolat' + 1283: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 1283 + name: + type: string + example: 'Boom' + 1284: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 1284 + name: + type: string + example: 'BOOMBIT' + 1285: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 1285 + name: + type: string + example: 'Boomzap' + 1286: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 1286 + name: + type: string + example: 'Bootdisk revolution' + 1287: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 1287 + name: + type: string + example: 'Bootsnake Games' + 1288: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 1288 + name: + type: string + example: 'Borealys Games' + 1289: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 1289 + name: + type: string + example: 'Born Ready Games' + 1290: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 1290 + name: + type: string + example: 'Borta' + 1291: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 1291 + name: + type: string + example: 'Boss Baddie' + 1292: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 1292 + name: + type: string + example: 'Boss Game Studios' + 1293: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 1293 + name: + type: string + example: 'Boss Key' + 1294: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 1294 + name: + type: string + example: 'Boss Key Productions' + 1295: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 1295 + name: + type: string + example: 'Bossa Studios Ltd' + 1298: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 1298 + name: + type: string + example: 'Boston Animation' + 1299: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 1299 + name: + type: string + example: 'Bothtec' + 1300: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 1300 + name: + type: string + example: 'BottleRocket Entertainment' + 1301: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 1301 + name: + type: string + example: 'Bottom Up' + 1302: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 1302 + name: + type: string + example: 'Bourne Educational Software' + 1303: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 1303 + name: + type: string + example: 'Box Office' + 1304: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 1304 + name: + type: string + example: 'Box Office, Inc.' + 1305: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 1305 + name: + type: string + example: 'Boxelware' + 1306: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 1306 + name: + type: string + example: 'Boys without Brains' + 1344: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 1344 + name: + type: string + example: 'Brøderbund France' + 1342: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 1342 + name: + type: string + example: 'Brøderbund Software, Inc.' + 1309: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 1309 + name: + type: string + example: 'Brace Yourself Games' + 1310: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 1310 + name: + type: string + example: 'Brad Stewart' + 1311: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 1311 + name: + type: string + example: 'Brain Bug' + 1312: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 1312 + name: + type: string + example: 'Brain in a Jar' + 1313: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 1313 + name: + type: string + example: 'Brain Slap Studio' + 1314: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 1314 + name: + type: string + example: 'Brain Toys' + 1315: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 1315 + name: + type: string + example: 'Brainbox Games' + 1316: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 1316 + name: + type: string + example: 'Brainbox Software' + 1317: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 1317 + name: + type: string + example: 'Brainchild Design' + 1318: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 1318 + name: + type: string + example: 'BrainGames' + 1319: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 1319 + name: + type: string + example: 'BrainGoodGames' + 1320: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 1320 + name: + type: string + example: 'Brainseed Factory' + 1321: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 1321 + name: + type: string + example: 'BRAM Inc.' + 1322: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 1322 + name: + type: string + example: 'Brandon James' + 1323: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 1323 + name: + type: string + example: 'Brash Entertainment' + 1324: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 1324 + name: + type: string + example: 'Brat Designs' + 1325: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 1325 + name: + type: string + example: 'braudo' + 1326: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 1326 + name: + type: string + example: 'Brave Giant' + 1327: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 1327 + name: + type: string + example: 'Brave Giant LTD' + 1328: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 1328 + name: + type: string + example: 'Brawsome' + 1329: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 1329 + name: + type: string + example: 'Breakfall' + 1330: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 1330 + name: + type: string + example: 'Breaking Fourth' + 1331: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 1331 + name: + type: string + example: 'Brezzasoft' + 1332: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 1332 + name: + type: string + example: 'Brian A. Rice, Inc' + 1334: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 1334 + name: + type: string + example: 'Brian Cotton' + 1335: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 1335 + name: + type: string + example: 'Brian Hebbes' + 1336: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 1336 + name: + type: string + example: 'Brian Prescott' + 1337: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 1337 + name: + type: string + example: 'brightlight' + 1338: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 1338 + name: + type: string + example: 'Brilliant Blue-G' + 1339: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 1339 + name: + type: string + example: 'Broadsword Interactive Limited' + 1346: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 1346 + name: + type: string + example: 'Broken Glass Studios' + 1347: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 1347 + name: + type: string + example: 'Broken Rules' + 1348: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 1348 + name: + type: string + example: 'Brother Industries' + 1349: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 1349 + name: + type: string + example: 'Brownie Brown' + 1350: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 1350 + name: + type: string + example: 'Bruce & Roger Carver' + 1351: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 1351 + name: + type: string + example: 'Bruce A. Artwick' + 1352: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 1352 + name: + type: string + example: 'Bruce A. Artwick (SubLogic)' + 1353: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 1353 + name: + type: string + example: 'Bruce Artwick' + 9970: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 9970 + name: + type: string + example: 'Bruce Carver' + 1355: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 1355 + name: + type: string + example: 'Bruce Films' + 1356: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 1356 + name: + type: string + example: 'Bruno' + 1357: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 1357 + name: + type: string + example: 'Bruno De Georgio' + 1358: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 1358 + name: + type: string + example: 'Bruno Ethvignot' + 1359: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 1359 + name: + type: string + example: 'BS Comp. Ltd.' + 1360: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 1360 + name: + type: string + example: 'Bubble Bus Software' + 1361: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 1361 + name: + type: string + example: 'Budcat Creations' + 1364: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 1364 + name: + type: string + example: 'Buddiez, Inc.' + 1366: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 1366 + name: + type: string + example: 'BudgeCo' + 1367: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 1367 + name: + type: string + example: 'Buena Vista Interactive' + 1370: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 1370 + name: + type: string + example: 'BuffStone., Ltd.' + 1371: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 1371 + name: + type: string + example: 'Bug-Byte Software' + 1373: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 1373 + name: + type: string + example: 'BUGBEAR' + 1375: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 1375 + name: + type: string + example: 'BugFactory' + 1376: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 1376 + name: + type: string + example: 'Buka' + 1377: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 1377 + name: + type: string + example: 'BulkyPix' + 1378: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 1378 + name: + type: string + example: 'BullDog Interactive' + 1308: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 1308 + name: + type: string + example: 'Bullet-Proof Software, Inc.' + 1382: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 1382 + name: + type: string + example: 'Bullets' + 10095: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 10095 + name: + type: string + example: 'Bullfrog' + 1383: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 1383 + name: + type: string + example: 'Bullfrog Productions' + 1385: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 1385 + name: + type: string + example: 'Bullfrog Productions, Ltd.' + 1386: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 1386 + name: + type: string + example: 'BumpkinBrothers' + 1387: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 1387 + name: + type: string + example: 'Bunch Games' + 1388: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 1388 + name: + type: string + example: 'Bundra Games' + 1389: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 1389 + name: + type: string + example: 'Bungie' + 1392: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 1392 + name: + type: string + example: 'Bunkasha Games' + 1393: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 1393 + name: + type: string + example: 'Burst' + 1394: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 1394 + name: + type: string + example: 'Burut Software' + 1395: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 1395 + name: + type: string + example: 'bushiroad' + 1396: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 1396 + name: + type: string + example: 'Butterfly' + 1397: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 1397 + name: + type: string + example: 'Butterscotch Shenanigans' + 1398: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 1398 + name: + type: string + example: 'Buzz Monkey' + 1399: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 1399 + name: + type: string + example: 'Byron Preiss' + 1400: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 1400 + name: + type: string + example: 'Byte Engineers' + 1405: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 1405 + name: + type: string + example: 'C-Lab' + 1408: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 1408 + name: + type: string + example: 'C.I.I.' + 1406: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 1406 + name: + type: string + example: 'C.P. Brain' + 1403: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 1403 + name: + type: string + example: 'C''s Ware' + 1404: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 1404 + name: + type: string + example: 'C*Dream' + 1401: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 1401 + name: + type: string + example: 'C&E' + 1402: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 1402 + name: + type: string + example: 'C&E Inc.' + 1411: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 1411 + name: + type: string + example: 'Cabinet' + 1412: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 1412 + name: + type: string + example: 'Cadenza Interactive' + 1413: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 1413 + name: + type: string + example: 'Cagdas Production' + 1414: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 1414 + name: + type: string + example: 'Calaris Studios' + 1415: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 1415 + name: + type: string + example: 'Caldera' + 1416: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 1416 + name: + type: string + example: 'California Dreams' + 1417: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 1417 + name: + type: string + example: 'California Pacific Computer' + 1418: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 1418 + name: + type: string + example: 'Caltron' + 1420: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 1420 + name: + type: string + example: 'Calvino Noir Limited' + 1421: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 1421 + name: + type: string + example: 'Camelot Software Planning' + 1424: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 1424 + name: + type: string + example: 'Camerica' + 10154: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 10154 + name: + type: string + example: 'Camouflaj' + 1425: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 1425 + name: + type: string + example: 'Campo Santo' + 1426: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 1426 + name: + type: string + example: 'Camshaft Software' + 1427: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 1427 + name: + type: string + example: 'Canal+ Multimedia' + 1428: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 1428 + name: + type: string + example: 'canarycharm' + 1430: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 1430 + name: + type: string + example: 'Candle Light Studios' + 1431: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 1431 + name: + type: string + example: 'Candygun Games' + 1432: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 1432 + name: + type: string + example: 'CandyStand' + 1433: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 1433 + name: + type: string + example: 'Canopy Games' + 1434: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 1434 + name: + type: string + example: 'Canvas' + 1435: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 1435 + name: + type: string + example: 'Canvas Software' + 1436: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 1436 + name: + type: string + example: 'Capcom' + 1441: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 1441 + name: + type: string + example: 'Capcom Game Studios Vancouver' + 1442: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 1442 + name: + type: string + example: 'Capcom Production Studio 1' + 1443: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 1443 + name: + type: string + example: 'Capcom Production Studio 2' + 1439: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 1439 + name: + type: string + example: 'Capcom Production Studio 3' + 1446: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 1446 + name: + type: string + example: 'Capcom Production Studio 4' + 1447: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 1447 + name: + type: string + example: 'Capcom Production Studio 6' + 1449: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 1449 + name: + type: string + example: 'Capcom USA, Inc.' + 1451: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 1451 + name: + type: string + example: 'Capcom Vancouver' + 1457: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 1457 + name: + type: string + example: 'Capital Software' + 1458: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 1458 + name: + type: string + example: 'Capitol Disc Interactive' + 1407: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 1407 + name: + type: string + example: 'CAProductions Co. Ltd.' + 1461: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 1461 + name: + type: string + example: 'Capstone Software' + 1463: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 1463 + name: + type: string + example: 'Captain Games' + 1464: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 1464 + name: + type: string + example: 'Capy Games' + 1465: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 1465 + name: + type: string + example: 'Capybara Games' + 10358: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 10358 + name: + type: string + example: 'Caracal Games' + 1467: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 1467 + name: + type: string + example: 'Carapace' + 1468: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 1468 + name: + type: string + example: 'Carbine Studios' + 1470: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 1470 + name: + type: string + example: 'Carbon Games' + 1471: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 1471 + name: + type: string + example: 'Carbonated Games' + 1472: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 1472 + name: + type: string + example: 'Cardboard Computer' + 1473: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 1473 + name: + type: string + example: 'Cardboard Utopia' + 1474: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 1474 + name: + type: string + example: 'CardboardUtopia' + 1475: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 1475 + name: + type: string + example: 'Cardinal Amusement Products' + 1476: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 1476 + name: + type: string + example: 'Career Soft' + 1478: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 1478 + name: + type: string + example: 'CargoSoft' + 1479: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 1479 + name: + type: string + example: 'Carlo Barazzetta & Lorenzo Barazzetta' + 10219: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 10219 + name: + type: string + example: 'Carlo Castellano' + 1480: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 1480 + name: + type: string + example: 'Carlos Coronado' + 9931: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 9931 + name: + type: string + example: 'Carlos Marqu' + 9933: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 9933 + name: + type: string + example: 'Carlos Marques' + 1481: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 1481 + name: + type: string + example: 'Carlos Sevila' + 9973: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 9973 + name: + type: string + example: 'Carlsen Games' + 1483: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 1483 + name: + type: string + example: 'Carolco' + 1484: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 1484 + name: + type: string + example: 'Carrozzeria' + 1485: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 1485 + name: + type: string + example: 'Carry Lab' + 1486: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 1486 + name: + type: string + example: 'Carter Follis Software' + 1487: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 1487 + name: + type: string + example: 'Cartoon Network' + 1488: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 1488 + name: + type: string + example: 'Cartoon Studios' + 1489: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 1489 + name: + type: string + example: 'Casablanca' + 1490: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 1490 + name: + type: string + example: 'Casali Brothers' + 1491: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 1491 + name: + type: string + example: 'Cascade Games' + 1492: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 1492 + name: + type: string + example: 'Case Western' + 1493: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 1493 + name: + type: string + example: 'Casio' + 1494: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 1494 + name: + type: string + example: 'Castle Pixel' + 1495: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 1495 + name: + type: string + example: 'Castle Pixel, LLC.' + 1496: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 1496 + name: + type: string + example: 'Castleworks Gameware' + 1497: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 1497 + name: + type: string + example: 'Cat Daddy Games, LLC' + 1500: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 1500 + name: + type: string + example: 'Catalyst Coders' + 1501: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 1501 + name: + type: string + example: 'Catapult Entertainment' + 1502: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 1502 + name: + type: string + example: 'Catfish' + 1503: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 1503 + name: + type: string + example: 'CatfishBlues Games' + 1504: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 1504 + name: + type: string + example: 'Cattle Call' + 1505: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 1505 + name: + type: string + example: 'Cauldron Ltd.' + 1508: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 1508 + name: + type: string + example: 'Causacreations' + 1509: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 1509 + name: + type: string + example: 'Cavalier Game Studios' + 1511: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 1511 + name: + type: string + example: 'Cave Barn Studios' + 1510: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 1510 + name: + type: string + example: 'CAVE Co., Ltd.' + 1513: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 1513 + name: + type: string + example: 'Cave Interactive' + 1515: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 1515 + name: + type: string + example: 'Cavedog Entertainment' + 1516: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 1516 + name: + type: string + example: 'cavia inc.' + 1521: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 1521 + name: + type: string + example: 'Cazap' + 9974: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 9974 + name: + type: string + example: 'CBS' + 1522: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 1522 + name: + type: string + example: 'CBS Electronics' + 1524: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 1524 + name: + type: string + example: 'CBS Games' + 1525: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 1525 + name: + type: string + example: 'CBS Software' + 1527: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 1527 + name: + type: string + example: 'CBS Video' + 1528: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 1528 + name: + type: string + example: 'CCE' + 1529: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 1529 + name: + type: string + example: 'CClub Flying Column Party' + 1530: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 1530 + name: + type: string + example: 'CCP Games' + 1531: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 1531 + name: + type: string + example: 'CCS' + 1532: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 1532 + name: + type: string + example: 'CD Projekt RED Sp. z o.o.' + 1535: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 1535 + name: + type: string + example: 'CD Projekt Sp. z o.o.' + 1534: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 1534 + name: + type: string + example: 'CD-i Systems' + 1536: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 1536 + name: + type: string + example: 'CDS Software' + 1538: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 1538 + name: + type: string + example: 'Ceilick' + 1539: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 1539 + name: + type: string + example: 'Ceilick, Mink, Tulip' + 1540: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 1540 + name: + type: string + example: 'Ceiphren' + 1541: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 1541 + name: + type: string + example: 'Celeris' + 1543: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 1543 + name: + type: string + example: 'Celery Software' + 1544: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 1544 + name: + type: string + example: 'Celestial' + 1545: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 1545 + name: + type: string + example: 'Celestial Software' + 1546: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 1546 + name: + type: string + example: 'Cellar Door Games' + 1547: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 1547 + name: + type: string + example: 'Cellius Inc.' + 1548: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 1548 + name: + type: string + example: 'Cellnavi Corp' + 144: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 144 + name: + type: string + example: 'Čeněk Svoboda' + 1549: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 1549 + name: + type: string + example: 'Centauri Production' + 1550: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 1550 + name: + type: string + example: 'Central Soultions' + 1551: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 1551 + name: + type: string + example: 'Centuri, Inc.' + 1552: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 1552 + name: + type: string + example: 'Century Electronics' + 1553: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 1553 + name: + type: string + example: 'Century Interactive' + 1554: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 1554 + name: + type: string + example: 'cerasus.media GmbH' + 1556: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 1556 + name: + type: string + example: 'Cerebral Gaming Systems' + 1557: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 1557 + name: + type: string + example: 'Ceridus Software, Inc.' + 1558: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 1558 + name: + type: string + example: 'Ceris Software' + 10054: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 10054 + name: + type: string + example: 'Cerny Games' + 1559: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 1559 + name: + type: string + example: 'Certain Affinity' + 1537: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 1537 + name: + type: string + example: 'César Nicolás González' + 1560: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 1560 + name: + type: string + example: 'CGE Services Corp.' + 1561: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 1561 + name: + type: string + example: 'Chad Alan Cuddigan' + 9976: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 9976 + name: + type: string + example: 'Chad Close' + 1563: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 1563 + name: + type: string + example: 'Chainsaw Syndicate' + 1564: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 1564 + name: + type: string + example: 'Chainsawesome Games' + 1565: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 1565 + name: + type: string + example: 'Chair Entertainment' + 1566: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 1566 + name: + type: string + example: 'Challenge Inc.' + 1568: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 1568 + name: + type: string + example: 'Chameleon' + 1569: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 1569 + name: + type: string + example: 'Champ Games' + 1570: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 1570 + name: + type: string + example: 'Channel 42 Software Developer' + 1571: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 1571 + name: + type: string + example: 'Chantemar Creations' + 1572: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 1572 + name: + type: string + example: 'Chaos' + 1573: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 1573 + name: + type: string + example: 'ChaosEsque Team' + 1574: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 1574 + name: + type: string + example: 'Chaosoft Games' + 10242: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 10242 + name: + type: string + example: 'Chara-Ani' + 1575: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 1575 + name: + type: string + example: 'Character Soft' + 1576: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 1576 + name: + type: string + example: 'Charles Bystram' + 1577: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 1577 + name: + type: string + example: 'Charles Doty' + 1578: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 1578 + name: + type: string + example: 'Charles Goodwin' + 1579: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 1579 + name: + type: string + example: 'Charles Jacobi' + 1580: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 1580 + name: + type: string + example: 'Chart Top Design' + 1581: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 1581 + name: + type: string + example: 'Charteroak' + 1582: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 1582 + name: + type: string + example: 'Charybdis Limited' + 1583: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 1583 + name: + type: string + example: 'Chat Noir' + 10290: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 10290 + name: + type: string + example: 'Chatnoir' + 1584: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 1584 + name: + type: string + example: 'Check Six Studios' + 1586: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 1586 + name: + type: string + example: 'Cheesy Sofware' + 1587: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 1587 + name: + type: string + example: 'Chengdu Tai Jing Da Dong Computer' + 1588: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 1588 + name: + type: string + example: 'Cherry Pop Games' + 1589: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 1589 + name: + type: string + example: 'Cheshire Engineering' + 9978: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 9978 + name: + type: string + example: 'Chicken Head' + 1591: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 1591 + name: + type: string + example: 'Chiku' + 1592: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 1592 + name: + type: string + example: 'Children''s Computer Workshop, Inc.' + 1595: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 1595 + name: + type: string + example: 'Children''s Television Workshop' + 1596: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 1596 + name: + type: string + example: 'Chillingo Ltd.' + 1597: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 1597 + name: + type: string + example: 'Chime' + 1598: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 1598 + name: + type: string + example: 'Chimera Entertainment' + 1599: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 1599 + name: + type: string + example: 'Chip Software' + 1601: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 1601 + name: + type: string + example: 'Choice Provisions' + 1600: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 1600 + name: + type: string + example: 'Choice Software' + 1603: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 1603 + name: + type: string + example: 'Choice Software, M.C. Lothlorien Ltd' + 1604: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 1604 + name: + type: string + example: 'Chou Co. Ltd' + 1605: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 1605 + name: + type: string + example: 'Chris Butler & DSE Crew' + 1606: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 1606 + name: + type: string + example: 'Chris Chung' + 1607: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 1607 + name: + type: string + example: 'Chris Coupe' + 1608: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 1608 + name: + type: string + example: 'Chris Davis' + 1609: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 1609 + name: + type: string + example: 'Chris Gray Enterprises Inc.' + 10282: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 10282 + name: + type: string + example: 'Chris Harvey' + 9980: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 9980 + name: + type: string + example: 'Chris Kerry' + 1612: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 1612 + name: + type: string + example: 'Chris Oberth' + 1613: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 1613 + name: + type: string + example: 'Chris Pirih' + 1614: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 1614 + name: + type: string + example: 'Chris Read' + 9988: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 9988 + name: + type: string + example: 'Chris Salomon' + 1615: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 1615 + name: + type: string + example: 'Chris Sawyer Productions' + 1617: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 1617 + name: + type: string + example: 'Chris Spry' + 1618: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 1618 + name: + type: string + example: 'Chris Stamper' + 1619: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 1619 + name: + type: string + example: 'Chris Tumber' + 1620: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 1620 + name: + type: string + example: 'Chris Walton' + 1621: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 1621 + name: + type: string + example: 'Chris West, Tony West' + 1622: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 1622 + name: + type: string + example: 'Christan Whitehead' + 1623: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 1623 + name: + type: string + example: 'Christian Mauduit' + 1624: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 1624 + name: + type: string + example: 'Christian Reuter' + 1625: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 1625 + name: + type: string + example: 'Christine Love' + 1626: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 1626 + name: + type: string + example: 'Christopher Salomon' + 1627: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 1627 + name: + type: string + example: 'Christopher Tumber' + 1628: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 1628 + name: + type: string + example: 'Chronic Logic' + 1629: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 1629 + name: + type: string + example: 'Chronic Reality' + 1630: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 1630 + name: + type: string + example: 'Chrono Moogle and Dieter von Laser' + 1631: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 1631 + name: + type: string + example: 'ChuanPu Technology Co.' + 1633: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 1633 + name: + type: string + example: 'Chuck' + 1634: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 1634 + name: + type: string + example: 'Chuck Benton' + 1635: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 1635 + name: + type: string + example: 'Chuck Peavey' + 1636: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 1636 + name: + type: string + example: 'Chucklefish' + 1637: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 1637 + name: + type: string + example: 'Chunsoft' + 1638: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 1638 + name: + type: string + example: 'Chuo Co. Ltd' + 1639: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 1639 + name: + type: string + example: 'CI Games' + 1640: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 1640 + name: + type: string + example: 'Ciberbit' + 1641: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 1641 + name: + type: string + example: 'CiD' + 1642: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 1642 + name: + type: string + example: 'Cidelsa' + 1644: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 1644 + name: + type: string + example: 'Cinegroupe' + 1643: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 1643 + name: + type: string + example: 'Cinematronics' + 1646: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 1646 + name: + type: string + example: 'Cinemaware' + 9912: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 9912 + name: + type: string + example: 'Cinemaware Corporation' + 1648: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 1648 + name: + type: string + example: 'Cinemaware Corporation, Incredible Technologies, Inc.' + 1650: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 1650 + name: + type: string + example: 'CINEMAX, s.r.o.' + 9985: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 9985 + name: + type: string + example: 'Cing' + 1652: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 1652 + name: + type: string + example: 'CING, Inc.' + 1654: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 1654 + name: + type: string + example: 'Cinopt Studios LLC' + 1655: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 1655 + name: + type: string + example: 'Cipher Prime Studios' + 10084: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 10084 + name: + type: string + example: 'Ciprian Stanciu' + 1656: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 1656 + name: + type: string + example: 'CipSoft' + 1657: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 1657 + name: + type: string + example: 'Circle Entertainment' + 1659: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 1659 + name: + type: string + example: 'Circus Freak Studios' + 1661: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 1661 + name: + type: string + example: 'Cirque Verte' + 1662: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 1662 + name: + type: string + example: 'Cirrus Software' + 1663: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 1663 + name: + type: string + example: 'Citeremis Inc.' + 1664: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 1664 + name: + type: string + example: 'Citizen Software' + 1665: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 1665 + name: + type: string + example: 'City Connection' + 1666: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 1666 + name: + type: string + example: 'City Interactive' + 1667: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 1667 + name: + type: string + example: 'City Man Technologies' + 9995: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 9995 + name: + type: string + example: 'Claeys Brothers' + 1668: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 1668 + name: + type: string + example: 'Clap Hanz Ltd.' + 1671: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 1671 + name: + type: string + example: 'Claws of Lorek' + 9987: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 9987 + name: + type: string + example: 'Clay Cowgill' + 1673: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 1673 + name: + type: string + example: 'Clear Crown' + 1674: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 1674 + name: + type: string + example: 'Clever Beans' + 1675: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 1675 + name: + type: string + example: 'Clever Endeavour Games' + 1677: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 1677 + name: + type: string + example: 'Clever-Plays' + 1676: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 1676 + name: + type: string + example: 'Clever''s Development' + 1678: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 1678 + name: + type: string + example: 'Cleversan Software' + 1679: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 1679 + name: + type: string + example: 'Click Entertainment' + 1680: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 1680 + name: + type: string + example: 'clickBoom' + 1681: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 1681 + name: + type: string + example: 'Cliffhanger Productions' + 1682: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 1682 + name: + type: string + example: 'Clifford Ramshaw' + 1685: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 1685 + name: + type: string + example: 'Climax Entertainment' + 1688: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 1688 + name: + type: string + example: 'Climax Racing' + 1683: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 1683 + name: + type: string + example: 'Climax Studios' + 1691: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 1691 + name: + type: string + example: 'Clipper Software' + 1692: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 1692 + name: + type: string + example: 'Clive Barrett' + 9989: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 9989 + name: + type: string + example: 'Clive Townsend' + 1694: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 1694 + name: + type: string + example: 'ClockStone' + 1695: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 1695 + name: + type: string + example: 'ClockStone Software' + 1697: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 1697 + name: + type: string + example: 'Clockstone Sofware' + 1699: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 1699 + name: + type: string + example: 'Clockwork Games' + 1700: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 1700 + name: + type: string + example: 'Clockwork Tortoise' + 1701: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 1701 + name: + type: string + example: 'Cloud Imperium Games' + 1702: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 1702 + name: + type: string + example: 'cloudcade' + 1703: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 1703 + name: + type: string + example: 'Cloudscan' + 1704: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 1704 + name: + type: string + example: 'Clover' + 1705: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 1705 + name: + type: string + example: 'Clover Studio' + 1706: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 1706 + name: + type: string + example: 'CMC Games' + 1707: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 1707 + name: + type: string + example: 'CNGSoft' + 1709: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 1709 + name: + type: string + example: 'CO2-PRO' + 1710: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 1710 + name: + type: string + example: 'Coatsink Software' + 1711: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 1711 + name: + type: string + example: 'Cobra Mobile Ltd.' + 1712: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 1712 + name: + type: string + example: 'Cobra Soft' + 1713: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 1713 + name: + type: string + example: 'Cockroach Ink.' + 1714: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 1714 + name: + type: string + example: 'Cocktail Soft' + 1715: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 1715 + name: + type: string + example: 'Coconut Island Games' + 1716: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 1716 + name: + type: string + example: 'Coconuts Japan Entertainment Co., Ltd.' + 1718: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 1718 + name: + type: string + example: 'Code' + 1719: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 1719 + name: + type: string + example: 'Code Junkies' + 1721: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 1721 + name: + type: string + example: 'Code Monkeys LTD' + 1722: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 1722 + name: + type: string + example: 'Code Mystics' + 1724: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 1724 + name: + type: string + example: 'CodeBrush Games' + 1725: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 1725 + name: + type: string + example: 'CodeFire' + 1726: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 1726 + name: + type: string + example: 'Codemasters' + 1728: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 1728 + name: + type: string + example: 'Codemasters Birmingham' + 1729: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 1729 + name: + type: string + example: 'Codemasters Software' + 1731: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 1731 + name: + type: string + example: 'Codemasters Southam' + 1733: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 1733 + name: + type: string + example: 'Codemasters, Feral Interactive (Linux)' + 1734: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 1734 + name: + type: string + example: 'Codemasters, Feral Interactive (Mac)' + 1735: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 1735 + name: + type: string + example: 'Codemasters, Feral Interactive (Mac), Feral Interactive (Linux)' + 1736: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 1736 + name: + type: string + example: 'Codename Entertainment Inc.' + 1737: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 1737 + name: + type: string + example: 'CoderChild' + 1738: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 1738 + name: + type: string + example: 'Codim Interactive' + 1739: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 1739 + name: + type: string + example: 'Coding: Luis Barrachina Graphics: David Vassart Music: Steve Fenton and Mihaly Horvath' + 1740: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 1740 + name: + type: string + example: 'Codo Games' + 1741: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 1741 + name: + type: string + example: 'Coffee Powered Machine' + 1742: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 1742 + name: + type: string + example: 'Coffee Stain Studios' + 1743: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 1743 + name: + type: string + example: 'Cognetics Corporation' + 1744: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 1744 + name: + type: string + example: 'Cohort Studios' + 1745: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 1745 + name: + type: string + example: 'Coilworks' + 1746: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 1746 + name: + type: string + example: 'CokeM Interactive' + 1747: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 1747 + name: + type: string + example: 'Coktel Vision' + 1749: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 1749 + name: + type: string + example: 'Cold Beam Games' + 1750: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 1750 + name: + type: string + example: 'ColdWood Interactive' + 1751: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 1751 + name: + type: string + example: 'Coldwood Interactive AB' + 1752: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 1752 + name: + type: string + example: 'Coleco' + 1753: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 1753 + name: + type: string + example: 'ColePowered Games' + 1754: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 1754 + name: + type: string + example: 'Colfpax' + 1755: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 1755 + name: + type: string + example: 'Colibri Games' + 9981: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 9981 + name: + type: string + example: 'Colin Dooley' + 1756: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 1756 + name: + type: string + example: 'Colin Hughes' + 1757: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 1757 + name: + type: string + example: 'Colin Jordan' + 1758: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 1758 + name: + type: string + example: 'ColinC10' + 1759: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 1759 + name: + type: string + example: 'colinshark' + 1761: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 1761 + name: + type: string + example: 'Collision Studios' + 1763: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 1763 + name: + type: string + example: 'Color Dreams' + 9993: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 9993 + name: + type: string + example: 'Colorful Media' + 1764: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 1764 + name: + type: string + example: 'Colosoftware' + 1765: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 1765 + name: + type: string + example: 'Colossal Games' + 1766: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 1766 + name: + type: string + example: 'Colossal Order' + 1767: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 1767 + name: + type: string + example: 'Colossal Pictures' + 1769: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 1769 + name: + type: string + example: 'Colpax' + 1770: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 1770 + name: + type: string + example: 'Com2uS' + 1771: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 1771 + name: + type: string + example: 'Comad' + 1772: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 1772 + name: + type: string + example: 'CombatCats' + 1773: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 1773 + name: + type: string + example: 'Comcept, Armature Studio' + 1774: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 1774 + name: + type: string + example: 'Comix' + 1775: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 1775 + name: + type: string + example: 'CommaVid, Inc.' + 1777: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 1777 + name: + type: string + example: 'Commercial Data Systems Ltd.' + 1778: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 1778 + name: + type: string + example: 'Commin' + 1779: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 1779 + name: + type: string + example: 'Commodore' + 1780: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 1780 + name: + type: string + example: 'Commodore Business Machines (UK) Ltd' + 1781: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 1781 + name: + type: string + example: 'Commodore Electronics Ltd.' + 1782: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 1782 + name: + type: string + example: 'Commodore Spain' + 1783: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 1783 + name: + type: string + example: 'Compact Disk Incorporated' + 1784: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 1784 + name: + type: string + example: 'Compilation' + 1785: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 1785 + name: + type: string + example: 'Compile' + 10112: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 10112 + name: + type: string + example: 'Compile Heart' + 1788: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 1788 + name: + type: string + example: 'Compile Heart and Sting Entertainment.' + 1787: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 1787 + name: + type: string + example: 'Compile Heart, Inc.' + 1795: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 1795 + name: + type: string + example: 'COMPLETE-IT' + 1796: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 1796 + name: + type: string + example: 'Comptiq' + 1797: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 1797 + name: + type: string + example: 'Compulsion Games' + 1798: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 1798 + name: + type: string + example: 'Computer & Entertainment' + 1799: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 1799 + name: + type: string + example: 'Computer Artworks Ltd.' + 9991: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 9991 + name: + type: string + example: 'Computer Magic' + 1801: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 1801 + name: + type: string + example: 'Computer''s Dream' + 1802: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 1802 + name: + type: string + example: 'Computersmith' + 1803: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 1803 + name: + type: string + example: 'Comtec' + 1804: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 1804 + name: + type: string + example: 'ComTek' + 1805: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 1805 + name: + type: string + example: 'Conatus Creative Inc.' + 9992: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 9992 + name: + type: string + example: 'Concave Studio' + 1807: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 1807 + name: + type: string + example: 'Concept Software' + 1808: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 1808 + name: + type: string + example: 'ConcernedApe' + 1809: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 1809 + name: + type: string + example: 'Concrete Software, Inc' + 1810: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 1810 + name: + type: string + example: 'Condor' + 10129: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 10129 + name: + type: string + example: 'Cong Xu' + 1811: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 1811 + name: + type: string + example: 'Conspiracy Entertainment Corp.' + 1812: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 1812 + name: + type: string + example: 'Conspiracy Games' + 1813: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 1813 + name: + type: string + example: 'Consult Software' + 1814: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 1814 + name: + type: string + example: 'Contingent99' + 1815: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 1815 + name: + type: string + example: 'Contrail' + 1816: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 1816 + name: + type: string + example: 'Convoy Games' + 1817: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 1817 + name: + type: string + example: 'Cony Soft' + 1818: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 1818 + name: + type: string + example: 'Cooking Mama Limited' + 1820: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 1820 + name: + type: string + example: 'Coolhand Interactive' + 1821: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 1821 + name: + type: string + example: 'Cope-com' + 1822: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 1822 + name: + type: string + example: 'Copenhagen Game Collective' + 1823: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 1823 + name: + type: string + example: 'Copya System Ltd.' + 1825: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 1825 + name: + type: string + example: 'Copysoft' + 1826: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 1826 + name: + type: string + example: 'COR Entertainment, LLC' + 10247: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 10247 + name: + type: string + example: 'CORE Design Limited' + 1827: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 1827 + name: + type: string + example: 'Core Design Ltd.' + 1831: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 1831 + name: + type: string + example: 'Corecell Technology' + 1832: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 1832 + name: + type: string + example: 'Coredumping' + 1833: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 1833 + name: + type: string + example: 'Coreland' + 1835: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 1835 + name: + type: string + example: 'Coreplay' + 1837: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 1837 + name: + type: string + example: 'Coresoft' + 1838: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 1838 + name: + type: string + example: 'Coresoft, Inc.' + 1839: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 1839 + name: + type: string + example: 'Coresoft, Point of View' + 1840: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 1840 + name: + type: string + example: 'Cornfox & Bros.' + 1841: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 1841 + name: + type: string + example: 'Cornfox & Brothers' + 1842: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 1842 + name: + type: string + example: 'Corvus5' + 1843: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 1843 + name: + type: string + example: 'Cosmi Corporation' + 1845: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 1845 + name: + type: string + example: 'Cosmic Logic' + 1846: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 1846 + name: + type: string + example: 'Cosmigo' + 1847: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 1847 + name: + type: string + example: 'Cosmonaut Games' + 1848: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 1848 + name: + type: string + example: 'Cosmos Computer' + 1849: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 1849 + name: + type: string + example: 'Cosmos Designs' + 1850: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 1850 + name: + type: string + example: 'Costa Panayi' + 1851: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 1851 + name: + type: string + example: 'Counterplay Games Inc.' + 1852: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 1852 + name: + type: string + example: 'Coven Games' + 1853: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 1853 + name: + type: string + example: 'Cowardly Creations' + 1854: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 1854 + name: + type: string + example: 'Cowboy Rodeo' + 1855: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 1855 + name: + type: string + example: 'Coyote Developments Ltd' + 1858: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 1858 + name: + type: string + example: 'CP Decision' + 1859: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 1859 + name: + type: string + example: 'CP Verlag' + 1860: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 1860 + name: + type: string + example: 'CPPP' + 1861: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 1861 + name: + type: string + example: 'Crack dot Com' + 1862: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 1862 + name: + type: string + example: 'Crackpot Entertainment' + 1863: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 1863 + name: + type: string + example: 'Crackshell' + 1864: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 1864 + name: + type: string + example: 'Craftgold' + 1865: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 1865 + name: + type: string + example: 'Craig Aker' + 1866: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 1866 + name: + type: string + example: 'Cranberry Production' + 1867: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 1867 + name: + type: string + example: 'Craneballs Studio' + 1869: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 1869 + name: + type: string + example: 'Crankshaft Games' + 1870: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 1870 + name: + type: string + example: 'Cranky Pants Games' + 1872: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 1872 + name: + type: string + example: 'Crateboy' + 1873: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 1873 + name: + type: string + example: 'Crave Entertainment' + 1875: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 1875 + name: + type: string + example: 'Craveyard' + 1876: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 1876 + name: + type: string + example: 'Crawfish Interactive' + 1878: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 1878 + name: + type: string + example: 'Crazy Games' + 1879: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 1879 + name: + type: string + example: 'Crazy Monkey Studios' + 1881: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 1881 + name: + type: string + example: 'Crazy Moo Games' + 1882: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 1882 + name: + type: string + example: 'Crazy Viking Studios' + 1883: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 1883 + name: + type: string + example: 'Crea-Tech' + 1884: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 1884 + name: + type: string + example: 'Creability' + 1885: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 1885 + name: + type: string + example: 'Cream' + 10306: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 10306 + name: + type: string + example: 'Creat Studios' + 1886: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 1886 + name: + type: string + example: 'Creat Studios, Inc' + 1889: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 1889 + name: + type: string + example: 'Creat Studios, Inc.' + 1890: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 1890 + name: + type: string + example: 'Creations' + 1893: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 1893 + name: + type: string + example: 'Creative Edge Software' + 1892: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 1892 + name: + type: string + example: 'Creative Edge Studios, Inc.' + 1896: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 1896 + name: + type: string + example: 'Creative Materials' + 1897: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 1897 + name: + type: string + example: 'Creative Media' + 1898: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 1898 + name: + type: string + example: 'Creative Mobile' + 1899: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 1899 + name: + type: string + example: 'Creative Multimedia Corporation' + 1900: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 1900 + name: + type: string + example: 'Creative Office' + 1901: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 1901 + name: + type: string + example: 'Creative Patterns' + 1902: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 1902 + name: + type: string + example: 'Creative Reality' + 1903: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 1903 + name: + type: string + example: 'Creative Software' + 1904: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 1904 + name: + type: string + example: 'Creative Sparks' + 1905: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 1905 + name: + type: string + example: 'Creative Technology Group Ltd.' + 1906: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 1906 + name: + type: string + example: 'CreativeForge Games' + 1907: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 1907 + name: + type: string + example: 'Creaton Softech Inc.' + 1908: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 1908 + name: + type: string + example: 'Creature Feep' + 1909: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 1909 + name: + type: string + example: 'Creature Labs Ltd' + 9996: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 9996 + name: + type: string + example: 'Creature Labs Ltd.' + 1912: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 1912 + name: + type: string + example: 'Creatures, Inc.' + 1917: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 1917 + name: + type: string + example: 'Creepsoft' + 1918: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 1918 + name: + type: string + example: 'Crema Games' + 1919: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 1919 + name: + type: string + example: 'CremaGames SL' + 10080: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 10080 + name: + type: string + example: 'Crenetic' + 1920: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 1920 + name: + type: string + example: 'Creobit' + 1921: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 1921 + name: + type: string + example: 'Crescent Moon Games' + 1922: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 1922 + name: + type: string + example: 'CreSpirit' + 1923: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 1923 + name: + type: string + example: 'CRI' + 1924: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 1924 + name: + type: string + example: 'Crian Soft' + 1925: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 1925 + name: + type: string + example: 'Crim' + 1926: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 1926 + name: + type: string + example: 'Crimson' + 1927: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 1927 + name: + type: string + example: 'Crimson Cow' + 1928: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 1928 + name: + type: string + example: 'Crimson, Coyote Developments' + 1929: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 1929 + name: + type: string + example: 'Crispy''s' + 9997: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 9997 + name: + type: string + example: 'Crispy''s!' + 1931: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 1931 + name: + type: string + example: 'Cristian Whitehead, Headcanon, PagodaWest Games' + 1932: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 1932 + name: + type: string + example: 'Criterion Games' + 1934: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 1934 + name: + type: string + example: 'Criterion Software' + 1936: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 1936 + name: + type: string + example: 'Critical Force Entertainment' + 1937: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 1937 + name: + type: string + example: 'Critical Studio' + 1938: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 1938 + name: + type: string + example: 'CRL Group PLC' + 1940: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 1940 + name: + type: string + example: 'Crocodile Entertainment' + 1942: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 1942 + name: + type: string + example: 'Cross Eaglet' + 1941: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 1941 + name: + type: string + example: 'Cross Media Soft' + 1944: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 1944 + name: + type: string + example: 'Cross talk' + 1945: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 1945 + name: + type: string + example: 'Crosse Studios' + 1947: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 1947 + name: + type: string + example: 'Crossroad' + 1948: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 1948 + name: + type: string + example: 'Croteam' + 1949: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 1949 + name: + type: string + example: 'Crowd' + 1950: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 1950 + name: + type: string + example: 'Crowdstar Inc' + 1951: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 1951 + name: + type: string + example: 'Crunching Koalas' + 1952: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 1952 + name: + type: string + example: 'CrunchTime Games' + 1953: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 1953 + name: + type: string + example: 'Crux' + 1954: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 1954 + name: + type: string + example: 'Cryo Interactive Entertainment' + 1957: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 1957 + name: + type: string + example: 'Cryptic Allusion' + 1958: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 1958 + name: + type: string + example: 'Cryptic Sea' + 1959: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 1959 + name: + type: string + example: 'Cryptic Studios' + 1960: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 1960 + name: + type: string + example: 'Crypton Future Media' + 1961: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 1961 + name: + type: string + example: 'Crystal' + 1962: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 1962 + name: + type: string + example: 'Crystal Box Team' + 9999: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 9999 + name: + type: string + example: 'Crystal Dynamics' + 1963: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 1963 + name: + type: string + example: 'Crystal Dynamics, Inc.' + 1968: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 1968 + name: + type: string + example: 'Crystal Shard' + 1969: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 1969 + name: + type: string + example: 'Crystal Soft' + 1971: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 1971 + name: + type: string + example: 'Crytek Frankfurt' + 1970: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 1970 + name: + type: string + example: 'Crytek GmbH' + 1973: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 1973 + name: + type: string + example: 'CS1 Team' + 1974: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 1974 + name: + type: string + example: 'CSK Research Institute Corp.' + 1976: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 1976 + name: + type: string + example: 'CSR Studios' + 1977: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 1977 + name: + type: string + example: 'CTA Developments' + 1978: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 1978 + name: + type: string + example: 'Cube Roots' + 1979: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 1979 + name: + type: string + example: 'Cubetype' + 1980: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 1980 + name: + type: string + example: 'Culture Attack Studio' + 10175: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 10175 + name: + type: string + example: 'Culture Brain' + 1981: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 1981 + name: + type: string + example: 'Culture Brain Inc.' + 1983: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 1983 + name: + type: string + example: 'Culture Publishers' + 1985: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 1985 + name: + type: string + example: 'Cunning Developments' + 1987: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 1987 + name: + type: string + example: 'Curious Panda Games' + 1988: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 1988 + name: + type: string + example: 'Curious Pictures' + 1989: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 1989 + name: + type: string + example: 'Curly Monsters' + 1990: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 1990 + name: + type: string + example: 'Current Technologies' + 1991: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 1991 + name: + type: string + example: 'Curve Digital' + 10249: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 10249 + name: + type: string + example: 'Curve Studios' + 1999: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 1999 + name: + type: string + example: 'Cuve Games' + 2000: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 2000 + name: + type: string + example: 'CVS' + 2001: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 2001 + name: + type: string + example: 'CX 26XX' + 2002: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 2002 + name: + type: string + example: 'Cyan' + 2004: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 2004 + name: + type: string + example: 'Cyan Worlds' + 2005: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 2005 + name: + type: string + example: 'Cyanide Studio' + 2008: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 2008 + name: + type: string + example: 'Cybadyne' + 2011: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 2011 + name: + type: string + example: 'Cyber Planet Interactive' + 2012: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 2012 + name: + type: string + example: 'Cyber Rhino Studios' + 2013: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 2013 + name: + type: string + example: 'CyberArts' + 2009: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 2009 + name: + type: string + example: 'CyberConnect' + 2010: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 2010 + name: + type: string + example: 'CyberConnect2 Co., Ltd.' + 2017: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 2017 + name: + type: string + example: 'Cyberdreams' + 2018: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 2018 + name: + type: string + example: 'Cyberdyne Systems' + 2019: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 2019 + name: + type: string + example: 'Cyberflix' + 2020: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 2020 + name: + type: string + example: 'CyberFront' + 2021: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 2021 + name: + type: string + example: 'Cyberlife Technology, Ltd.' + 2022: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 2022 + name: + type: string + example: 'Cyberlore Studios, Inc.' + 2026: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 2026 + name: + type: string + example: 'Cybernetic Corporation' + 2027: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 2027 + name: + type: string + example: 'CyberPlanet Interactive' + 2028: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 2028 + name: + type: string + example: 'CyberStep' + 2029: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 2029 + name: + type: string + example: 'Cybertech' + 2030: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 2030 + name: + type: string + example: 'CyberVision' + 2031: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 2031 + name: + type: string + example: 'Cyclone Studios' + 2033: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 2033 + name: + type: string + example: 'Cyclone System' + 2034: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 2034 + name: + type: string + example: 'Cyclone Zero' + 2035: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 2035 + name: + type: string + example: 'Cydex Software' + 2036: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 2036 + name: + type: string + example: 'Cygames' + 2037: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 2037 + name: + type: string + example: 'Cygnus Software' + 2038: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 2038 + name: + type: string + example: 'Cygnus Software Ltd.' + 2040: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 2040 + name: + type: string + example: 'Cynus' + 2041: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 2041 + name: + type: string + example: 'Cyparade' + 2042: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 2042 + name: + type: string + example: 'Cypron Studios' + 2043: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 2043 + name: + type: string + example: 'Cypronia' + 2044: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 2044 + name: + type: string + example: 'CYSCORPIONS' + 2045: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 2045 + name: + type: string + example: 'D Cruise' + 2049: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 2049 + name: + type: string + example: 'D-Dub' + 2050: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 2050 + name: + type: string + example: 'D-Dub Software' + 2051: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 2051 + name: + type: string + example: 'D-Pad Studio' + 2052: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 2052 + name: + type: string + example: 'D-Pad Studios' + 2053: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 2053 + name: + type: string + example: 'D. Gottlieb & Co.' + 10223: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 10223 + name: + type: string + example: 'D.A.S.T.' + 2054: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 2054 + name: + type: string + example: 'D.J. Baker' + 2055: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 2055 + name: + type: string + example: 'D.O. Corp' + 2056: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 2056 + name: + type: string + example: 'D.R. Korea' + 2048: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 2048 + name: + type: string + example: 'D''s Garage 21' + 2046: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 2046 + name: + type: string + example: 'D&L Research' + 2047: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 2047 + name: + type: string + example: 'D&M''sK System' + 2057: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 2057 + name: + type: string + example: 'D3 Publisher Inc.' + 2061: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 2061 + name: + type: string + example: 'D3 Publisher, Teamsoft' + 2063: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 2063 + name: + type: string + example: 'd3t' + 2064: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 2064 + name: + type: string + example: 'D5' + 2065: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 2065 + name: + type: string + example: 'Daedalic Entertainment' + 2069: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 2069 + name: + type: string + example: 'Daedalus' + 2070: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 2070 + name: + type: string + example: 'Daft' + 2072: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 2072 + name: + type: string + example: 'Daiei Manufacturing' + 2071: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 2071 + name: + type: string + example: 'Daiei Seisakusho' + 2074: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 2074 + name: + type: string + example: 'Daigom Games Corp.' + 2075: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 2075 + name: + type: string + example: 'Daina' + 10088: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 10088 + name: + type: string + example: 'Daisuke Amaya' + 2076: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 2076 + name: + type: string + example: 'Daisysoft' + 2077: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 2077 + name: + type: string + example: 'Daiwon C&A' + 2078: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 2078 + name: + type: string + example: 'Dakko Dakko' + 2079: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 2079 + name: + type: string + example: 'Dalali Software' + 2080: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 2080 + name: + type: string + example: 'Dalali Software Ltd.' + 2081: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 2081 + name: + type: string + example: 'DalcolmSoft, Inc.' + 2082: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 2082 + name: + type: string + example: 'Dale Crum' + 2083: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 2083 + name: + type: string + example: 'Dale Disharoon, Inc.' + 2086: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 2086 + name: + type: string + example: 'Dale Lear' + 2087: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 2087 + name: + type: string + example: 'damiansommer' + 2088: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 2088 + name: + type: string + example: 'Damien Cavanagh' + 2089: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 2089 + name: + type: string + example: 'Dan & Gary Games' + 2090: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 2090 + name: + type: string + example: 'Dan Dixon' + 2091: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 2091 + name: + type: string + example: 'Dan Fornace' + 2092: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 2092 + name: + type: string + example: 'Dan Games' + 2093: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 2093 + name: + type: string + example: 'Dan Gorlin' + 2094: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 2094 + name: + type: string + example: 'Dan Gorlin Productions' + 2095: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 2095 + name: + type: string + example: 'Dan Hewitt' + 2096: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 2096 + name: + type: string + example: 'Dan Kitchen' + 10348: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 10348 + name: + type: string + example: 'Dan Smith Studios' + 2097: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 2097 + name: + type: string + example: 'Danbi System' + 2099: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 2099 + name: + type: string + example: 'Dandy Arai' + 2100: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 2100 + name: + type: string + example: 'Danger Close Games' + 9950: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 9950 + name: + type: string + example: 'Daniel Frisk' + 2102: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 2102 + name: + type: string + example: 'Daniel Linssen' + 2103: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 2103 + name: + type: string + example: 'danteg9' + 2104: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 2104 + name: + type: string + example: 'Daou Infosys Corp.' + 2106: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 2106 + name: + type: string + example: 'Dark Biohazard' + 2107: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 2107 + name: + type: string + example: 'Dark Energy Digital' + 2108: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 2108 + name: + type: string + example: 'Dark Energy Digital Ltd.' + 2109: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 2109 + name: + type: string + example: 'Dark Roast Entertainment' + 2110: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 2110 + name: + type: string + example: 'Dark Technologies' + 2111: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 2111 + name: + type: string + example: 'Dark Water Studios, Ltd.' + 2113: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 2113 + name: + type: string + example: 'dark7god' + 2114: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 2114 + name: + type: string + example: 'DarkBlack' + 2115: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 2115 + name: + type: string + example: 'Darkling Room' + 10155: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 10155 + name: + type: string + example: 'Darkwind Media' + 2112: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 2112 + name: + type: string + example: 'Darkworks SA' + 2118: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 2118 + name: + type: string + example: 'Darrell Spice Jr.' + 2120: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 2120 + name: + type: string + example: 'Dasoft' + 2121: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 2121 + name: + type: string + example: 'Data Age' + 2122: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 2122 + name: + type: string + example: 'Data Amusement' + 2123: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 2123 + name: + type: string + example: 'Data Design Interactive' + 2128: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 2128 + name: + type: string + example: 'Data East Corp.' + 2126: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 2126 + name: + type: string + example: 'Data East Corporation' + 2130: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 2130 + name: + type: string + example: 'Data East USA' + 2132: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 2132 + name: + type: string + example: 'Data Realms' + 2134: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 2134 + name: + type: string + example: 'Databyte' + 10264: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 10264 + name: + type: string + example: 'DataEast' + 2135: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 2135 + name: + type: string + example: 'Datamost, Inc.' + 2136: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 2136 + name: + type: string + example: 'Datasoft, Inc.' + 2133: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 2133 + name: + type: string + example: 'DataWest' + 2140: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 2140 + name: + type: string + example: 'Datt Japan' + 2141: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 2141 + name: + type: string + example: 'Datt Japan Inc.' + 2143: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 2143 + name: + type: string + example: 'Dave Engman' + 2144: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 2144 + name: + type: string + example: 'Dave Gedarovich' + 10004: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 10004 + name: + type: string + example: 'Dave Ibach' + 2145: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 2145 + name: + type: string + example: 'Dave Neuman' + 2146: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 2146 + name: + type: string + example: 'Dave Nutting Associates' + 2147: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 2147 + name: + type: string + example: 'Dave Rotor & Peter Wood' + 10283: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 10283 + name: + type: string + example: 'Dave Stevenson' + 2148: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 2148 + name: + type: string + example: 'Dave Theurer' + 2149: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 2149 + name: + type: string + example: 'Dave Thomas' + 2150: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 2150 + name: + type: string + example: 'Dave Vout, JJS' + 2151: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 2151 + name: + type: string + example: 'David A. Palmer Productions' + 2152: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 2152 + name: + type: string + example: 'David Amador' + 2153: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 2153 + name: + type: string + example: 'David Berezowksi' + 2154: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 2154 + name: + type: string + example: 'David Braben' + 10278: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 10278 + name: + type: string + example: 'David Cooke' + 2156: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 2156 + name: + type: string + example: 'David Court' + 2157: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 2157 + name: + type: string + example: 'David Crane' + 10007: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 10007 + name: + type: string + example: 'David Dentt' + 2159: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 2159 + name: + type: string + example: 'David Galloway, Bob Montgomery' + 2160: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 2160 + name: + type: string + example: 'David J. Eastman' + 2161: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 2161 + name: + type: string + example: 'David J. Heelas' + 10009: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 10009 + name: + type: string + example: 'David Jones' + 2165: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 2165 + name: + type: string + example: 'David Kaemmer & Omar Khudari' + 10032: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 10032 + name: + type: string + example: 'David Kanaga' + 2166: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 2166 + name: + type: string + example: 'David Moorman' + 2167: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 2167 + name: + type: string + example: 'David Newton' + 2168: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 2168 + name: + type: string + example: 'David Olofson' + 2169: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 2169 + name: + type: string + example: 'David OReilly' + 2170: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 2170 + name: + type: string + example: 'David Schroeder' + 2171: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 2171 + name: + type: string + example: 'David Szymanski' + 2172: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 2172 + name: + type: string + example: 'David Vincent & Allan Forsberg' + 2173: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 2173 + name: + type: string + example: 'David Weavil' + 10010: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 10010 + name: + type: string + example: 'David Whittaker' + 2174: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 2174 + name: + type: string + example: 'David Williamson' + 2175: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 2175 + name: + type: string + example: 'Davidson & Associates' + 2176: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 2176 + name: + type: string + example: 'Davidson & Associates, Inc.' + 2177: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 2177 + name: + type: string + example: 'Davilex' + 2178: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 2178 + name: + type: string + example: 'Day 1 Studios' + 2180: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 2180 + name: + type: string + example: 'Daybreak Games' + 2182: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 2182 + name: + type: string + example: 'Daygames' + 2183: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 2183 + name: + type: string + example: 'Daylight Studios' + 2184: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 2184 + name: + type: string + example: 'DaZZ' + 2185: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 2185 + name: + type: string + example: 'dB-SOFT' + 2187: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 2187 + name: + type: string + example: 'DC Studios' + 2188: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 2188 + name: + type: string + example: 'Dead Mage' + 2189: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 2189 + name: + type: string + example: 'Dead Mage Studio' + 2190: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 2190 + name: + type: string + example: 'Dead Shark Triplepunch' + 2191: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 2191 + name: + type: string + example: 'Deadline Games A/S' + 2193: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 2193 + name: + type: string + example: 'Deadly Sin Studios' + 2194: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 2194 + name: + type: string + example: 'Dean ''Peppy'' Herbert' + 2195: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 2195 + name: + type: string + example: 'Dearsoft' + 10046: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 10046 + name: + type: string + example: 'Deborah' + 2196: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 2196 + name: + type: string + example: 'Decaying Logic' + 2197: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 2197 + name: + type: string + example: 'Deceased Pixel' + 2200: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 2200 + name: + type: string + example: 'Deck Nine' + 2201: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 2201 + name: + type: string + example: 'Deck Nine Games' + 2198: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 2198 + name: + type: string + example: 'DECK13 Interactive GmbH' + 2204: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 2204 + name: + type: string + example: 'Deco' + 2205: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 2205 + name: + type: string + example: 'Deconstructeam' + 2206: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 2206 + name: + type: string + example: 'Decroix-Garofalo' + 2207: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 2207 + name: + type: string + example: 'Deep' + 2208: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 2208 + name: + type: string + example: 'Deep Fried Enterprises' + 2209: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 2209 + name: + type: string + example: 'Deep Fried Entertainment' + 2210: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 2210 + name: + type: string + example: 'Deep Red Games Ltd.' + 2213: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 2213 + name: + type: string + example: 'Deep Shadows' + 2214: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 2214 + name: + type: string + example: 'Deep Silver' + 2215: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 2215 + name: + type: string + example: 'Deep Silver Vienna' + 2216: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 2216 + name: + type: string + example: 'Deep Space Inc.' + 2217: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 2217 + name: + type: string + example: 'Deep-Sea Prisoner' + 2219: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 2219 + name: + type: string + example: 'Defence Alliance Team' + 2220: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 2220 + name: + type: string + example: 'Defiant Development' + 2221: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 2221 + name: + type: string + example: 'Degica' + 2222: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 2222 + name: + type: string + example: 'Deibus Studios Ltd.' + 2224: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 2224 + name: + type: string + example: 'Deimos Games' + 2225: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 2225 + name: + type: string + example: 'Dejobaan Games' + 2228: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 2228 + name: + type: string + example: 'Del' + 10014: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 10014 + name: + type: string + example: 'Delirium Studios Evolution S.L.' + 2230: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 2230 + name: + type: string + example: 'Delphieye Enterainment' + 2231: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 2231 + name: + type: string + example: 'Delphine Software International' + 2235: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 2235 + name: + type: string + example: 'Delta 4' + 2236: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 2236 + name: + type: string + example: 'Delvin J. Sorrell' + 2237: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 2237 + name: + type: string + example: 'Dementia' + 2238: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 2238 + name: + type: string + example: 'Demian' + 2239: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 2239 + name: + type: string + example: 'Demiforce' + 2240: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 2240 + name: + type: string + example: 'Demiurge Studios' + 2241: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 2241 + name: + type: string + example: 'Demon Wagon Studios' + 2242: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 2242 + name: + type: string + example: 'Dempa Shinbunsha' + 2243: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 2243 + name: + type: string + example: 'DeNA Corp.' + 2244: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 2244 + name: + type: string + example: 'Denaris' + 10016: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 10016 + name: + type: string + example: 'Denby' + 2246: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 2246 + name: + type: string + example: 'Deniam' + 2247: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 2247 + name: + type: string + example: 'Denine' + 2248: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 2248 + name: + type: string + example: 'Denki Ltd' + 2249: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 2249 + name: + type: string + example: 'Denki Onyko' + 2250: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 2250 + name: + type: string + example: 'Dennaton Games' + 2251: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 2251 + name: + type: string + example: 'Denneko Yuugi' + 2252: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 2252 + name: + type: string + example: 'Dennis Debro' + 2253: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 2253 + name: + type: string + example: 'Dennis Koble' + 2254: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 2254 + name: + type: string + example: 'Dennou Club' + 2255: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 2255 + name: + type: string + example: 'Denton Designs' + 2256: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 2256 + name: + type: string + example: 'Denyu-Sha' + 2257: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 2257 + name: + type: string + example: 'DePaul University students' + 2258: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 2258 + name: + type: string + example: 'Derek Brewster' + 2259: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 2259 + name: + type: string + example: 'Derek Yu' + 2260: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 2260 + name: + type: string + example: 'Deru-Deru' + 2261: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 2261 + name: + type: string + example: 'Desert Productions' + 2262: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 2262 + name: + type: string + example: 'Design Design' + 2263: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 2263 + name: + type: string + example: 'Design Factory' + 2264: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 2264 + name: + type: string + example: 'Designer Software' + 2266: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 2266 + name: + type: string + example: 'Designmaker Ltd.' + 2267: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 2267 + name: + type: string + example: 'DesignStar Consultants, Inc.' + 2268: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 2268 + name: + type: string + example: 'DesignWare, Inc.' + 2269: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 2269 + name: + type: string + example: 'Despairgames' + 2270: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 2270 + name: + type: string + example: 'Destination Software, Inc.' + 2272: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 2272 + name: + type: string + example: 'Destineer' + 2273: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 2273 + name: + type: string + example: 'Destructive Creations' + 2274: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 2274 + name: + type: string + example: 'desunoya' + 2275: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 2275 + name: + type: string + example: 'devCAT' + 2276: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 2276 + name: + type: string + example: 'Developmental Learning Materials, Inc.' + 2277: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 2277 + name: + type: string + example: 'Devespresso Games' + 2278: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 2278 + name: + type: string + example: 'Devil''s Thumb Entertainment' + 2279: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 2279 + name: + type: string + example: 'Devin Cook' + 2280: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 2280 + name: + type: string + example: 'Devlin' + 2281: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 2281 + name: + type: string + example: 'Devolver Digital' + 2283: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 2283 + name: + type: string + example: 'Devonshire House' + 2284: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 2284 + name: + type: string + example: 'dforce3000' + 2285: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 2285 + name: + type: string + example: 'DHG Games' + 2286: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 2286 + name: + type: string + example: 'Dialogue Design' + 2287: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 2287 + name: + type: string + example: 'Diamond Head' + 2288: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 2288 + name: + type: string + example: 'Diamond Software' + 2289: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 2289 + name: + type: string + example: 'Diatec' + 2290: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 2290 + name: + type: string + example: 'DiCE' + 2292: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 2292 + name: + type: string + example: 'DICE Stockholm' + 2293: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 2293 + name: + type: string + example: 'Dick "Bucko" Balaska' + 2294: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 2294 + name: + type: string + example: 'Die Gute Fabrik' + 2295: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 2295 + name: + type: string + example: 'Different Tuna' + 2296: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 2296 + name: + type: string + example: 'Dig That Gold Limited' + 2297: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 2297 + name: + type: string + example: 'Digerati Distribution' + 2298: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 2298 + name: + type: string + example: 'Digicube' + 2299: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 2299 + name: + type: string + example: 'Digifloyd' + 2300: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 2300 + name: + type: string + example: 'DigiFX Interactive' + 2301: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 2301 + name: + type: string + example: 'DigiPen Institute of Technology' + 2303: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 2303 + name: + type: string + example: 'Digital Anvil' + 2304: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 2304 + name: + type: string + example: 'Digital Artists' + 2305: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 2305 + name: + type: string + example: 'Digital Builders Sabarasa' + 2306: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 2306 + name: + type: string + example: 'Digital Chocolate' + 2307: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 2307 + name: + type: string + example: 'Digital Concept' + 2308: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 2308 + name: + type: string + example: 'Digital Concepts' + 2309: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 2309 + name: + type: string + example: 'Digital Confectioners' + 2310: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 2310 + name: + type: string + example: 'Digital Continue' + 2311: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 2311 + name: + type: string + example: 'Digital Creations' + 2312: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 2312 + name: + type: string + example: 'Digital Design' + 2313: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 2313 + name: + type: string + example: 'Digital Dialect' + 2314: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 2314 + name: + type: string + example: 'Digital Dream' + 10322: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 10322 + name: + type: string + example: 'Digital Eclipse' + 2315: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 2315 + name: + type: string + example: 'Digital Eclipse Software, Inc.' + 2320: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 2320 + name: + type: string + example: 'Digital Eel' + 2321: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 2321 + name: + type: string + example: 'Digital Embryo' + 2322: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 2322 + name: + type: string + example: 'Digital Extremes' + 2324: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 2324 + name: + type: string + example: 'Digital Fiction' + 2325: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 2325 + name: + type: string + example: 'Digital Goldfish Ltd' + 2326: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 2326 + name: + type: string + example: 'Digital Happiness' + 2327: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 2327 + name: + type: string + example: 'Digital Illusions' + 2328: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 2328 + name: + type: string + example: 'Digital Illusions Canada' + 2331: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 2331 + name: + type: string + example: 'Digital Illusions, Inc' + 2332: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 2332 + name: + type: string + example: 'Digital Image Design Ltd.' + 2335: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 2335 + name: + type: string + example: 'Digital Integration' + 2336: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 2336 + name: + type: string + example: 'Digital Jesters' + 2337: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 2337 + name: + type: string + example: 'Digital Kids' + 2338: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 2338 + name: + type: string + example: 'Digital Kingdom' + 2339: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 2339 + name: + type: string + example: 'DIGITAL LEGENDS ENTERTAINMENT SL' + 2340: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 2340 + name: + type: string + example: 'Digital Leisure Inc.' + 2342: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 2342 + name: + type: string + example: 'Digital Lounge' + 2343: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 2343 + name: + type: string + example: 'Digital Magic Software' + 2344: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 2344 + name: + type: string + example: 'Digital Magic Software Ltd.' + 2345: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 2345 + name: + type: string + example: 'Digital Mayhem' + 2346: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 2346 + name: + type: string + example: 'Digital Melody' + 2347: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 2347 + name: + type: string + example: 'Digital Monastery' + 2348: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 2348 + name: + type: string + example: 'Digital Pictures' + 2349: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 2349 + name: + type: string + example: 'Digital Press' + 2350: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 2350 + name: + type: string + example: 'Digital Reality' + 10241: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 10241 + name: + type: string + example: 'Digital Reality Software' + 2352: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 2352 + name: + type: string + example: 'Digital Sun' + 2353: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 2353 + name: + type: string + example: 'Digital Tentacle' + 2354: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 2354 + name: + type: string + example: 'Digital Tome' + 10265: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 10265 + name: + type: string + example: 'DigitalDNA Games LLC' + 2355: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 2355 + name: + type: string + example: 'Digitalmindsoft' + 2356: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 2356 + name: + type: string + example: 'Digitalo Studios' + 2357: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 2357 + name: + type: string + example: 'DigitalWare' + 2358: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 2358 + name: + type: string + example: 'Dim Bulb Games, Serenity Forge' + 2359: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 2359 + name: + type: string + example: 'DIMA' + 2360: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 2360 + name: + type: string + example: 'Dimple Entertainment' + 2361: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 2361 + name: + type: string + example: 'Dimps Corporation' + 2365: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 2365 + name: + type: string + example: 'Dinamic Multimedia' + 2364: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 2364 + name: + type: string + example: 'Dinamic Software' + 2369: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 2369 + name: + type: string + example: 'Dingaling' + 2370: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 2370 + name: + type: string + example: 'Dingo Inc.' + 2371: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 2371 + name: + type: string + example: 'Dini and Dini Productions' + 2372: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 2372 + name: + type: string + example: 'Dinine' + 2373: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 2373 + name: + type: string + example: 'Dino Dini' + 2374: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 2374 + name: + type: string + example: 'Dinosaur Polo Club' + 2375: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 2375 + name: + type: string + example: 'Direct Action Games' + 2376: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 2376 + name: + type: string + example: 'Direct Designs' + 2377: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 2377 + name: + type: string + example: 'Dirtybit' + 2378: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 2378 + name: + type: string + example: 'Dischan' + 2379: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 2379 + name: + type: string + example: 'Disco' + 2380: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 2380 + name: + type: string + example: 'Discovery' + 2381: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 2381 + name: + type: string + example: 'Discovery Software International, Inc.' + 2382: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 2382 + name: + type: string + example: 'Disiplement Studio' + 2383: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 2383 + name: + type: string + example: 'Disney Interactive' + 10259: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 10259 + name: + type: string + example: 'Disney Interactive Studios' + 2387: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 2387 + name: + type: string + example: 'Disney Software' + 10254: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 10254 + name: + type: string + example: 'Disruptive Games' + 2388: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 2388 + name: + type: string + example: 'Disruptor Beam' + 2391: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 2391 + name: + type: string + example: 'Distinctive Developments' + 2389: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 2389 + name: + type: string + example: 'Distinctive Software, Inc.' + 2394: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 2394 + name: + type: string + example: 'Diversions Entertainment' + 2395: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 2395 + name: + type: string + example: 'Divide By Zero, Ltd.' + 2397: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 2397 + name: + type: string + example: 'Division2' + 2398: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 2398 + name: + type: string + example: 'Djinnworks GmbH' + 2399: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 2399 + name: + type: string + example: 'DJL Software Ltd.' + 2400: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 2400 + name: + type: string + example: 'DK Games' + 2401: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 2401 + name: + type: string + example: 'dk'' tronics' + 2402: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 2402 + name: + type: string + example: 'dk''tronics' + 2403: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 2403 + name: + type: string + example: 'DK''Tronics Ltd' + 10255: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 10255 + name: + type: string + example: 'DMA Design' + 2404: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 2404 + name: + type: string + example: 'DMA Design Limited' + 2410: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 2410 + name: + type: string + example: 'Dmytry Lavrov' + 2411: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 2411 + name: + type: string + example: 'DnS Development' + 2412: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 2412 + name: + type: string + example: 'Doctor Entertainment AB' + 2413: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 2413 + name: + type: string + example: 'Dodge Roll' + 2414: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 2414 + name: + type: string + example: 'Dojo Games' + 2415: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 2415 + name: + type: string + example: 'Doki Denki Studio' + 2419: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 2419 + name: + type: string + example: 'Dolby' + 2420: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 2420 + name: + type: string + example: 'DolphinBarn' + 2421: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 2421 + name: + type: string + example: 'Domark Software' + 2425: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 2425 + name: + type: string + example: 'Dome Software' + 2426: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 2426 + name: + type: string + example: 'Domestic Funk Productions' + 2427: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 2427 + name: + type: string + example: 'Domini Games' + 2428: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 2428 + name: + type: string + example: 'Dominic Ford' + 2429: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 2429 + name: + type: string + example: 'Dominic J Melfi' + 2430: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 2430 + name: + type: string + example: 'Dominic Robinson' + 2431: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 2431 + name: + type: string + example: 'DOMO Studio' + 2432: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 2432 + name: + type: string + example: 'Domspitze' + 2433: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 2433 + name: + type: string + example: 'Don Fitchhorn' + 2434: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 2434 + name: + type: string + example: 'Don Priestley' + 2435: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 2435 + name: + type: string + example: 'Dong Gue La Mi Ltd' + 2436: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 2436 + name: + type: string + example: 'Dongsung Wonder Park' + 2437: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 2437 + name: + type: string + example: 'Donovan Bell' + 2438: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 2438 + name: + type: string + example: 'DONTNOD Entertainment' + 2439: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 2439 + name: + type: string + example: 'Doobic Studios' + 2440: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 2440 + name: + type: string + example: 'Doodlebug Designs' + 2441: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 2441 + name: + type: string + example: 'Dooyong' + 2444: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 2444 + name: + type: string + example: 'Doppler Interactive' + 2445: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 2445 + name: + type: string + example: 'Dorart' + 2446: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 2446 + name: + type: string + example: 'Dorasu' + 2447: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 2447 + name: + type: string + example: 'Dot Warrior Games' + 2448: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 2448 + name: + type: string + example: 'DotEmu' + 2449: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 2449 + name: + type: string + example: 'Dotoyou Technology Limited' + 2451: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 2451 + name: + type: string + example: 'Double Density' + 2452: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 2452 + name: + type: string + example: 'Double Diamond' + 2453: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 2453 + name: + type: string + example: 'Double Diamond Sports' + 2450: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 2450 + name: + type: string + example: 'Double Eleven' + 10117: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 10117 + name: + type: string + example: 'Double Eleven Studios' + 2456: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 2456 + name: + type: string + example: 'Double Fine Productions, Inc.' + 2460: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 2460 + name: + type: string + example: 'Double Helix Games' + 2465: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 2465 + name: + type: string + example: 'DoubleBear Productions' + 2466: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 2466 + name: + type: string + example: 'DoubleDutch Games' + 2468: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 2468 + name: + type: string + example: 'Doublesix' + 2464: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 2464 + name: + type: string + example: 'DoubleTap Games' + 2470: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 2470 + name: + type: string + example: 'Douglas E. Smith' + 2473: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 2473 + name: + type: string + example: 'Dov Sherman' + 2474: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 2474 + name: + type: string + example: 'Dovetail Games' + 2475: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 2475 + name: + type: string + example: 'Dr. Wuro Industries' + 10019: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 10019 + name: + type: string + example: 'Draconian' + 2477: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 2477 + name: + type: string + example: 'Dracue' + 2478: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 2478 + name: + type: string + example: 'Dragon' + 2479: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 2479 + name: + type: string + example: 'Dragon Co.' + 10021: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 10021 + name: + type: string + example: 'Dragon Data Ltd.' + 2481: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 2481 + name: + type: string + example: 'Dragonfeet' + 2482: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 2482 + name: + type: string + example: 'Dragonhead Games' + 2483: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 2483 + name: + type: string + example: 'Dragonstone Software' + 2484: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 2484 + name: + type: string + example: 'Drakhar Studio' + 2485: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 2485 + name: + type: string + example: 'Drakkar Dev' + 2486: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 2486 + name: + type: string + example: 'Dreadlocks' + 2488: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 2488 + name: + type: string + example: 'Dream Execution' + 2489: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 2489 + name: + type: string + example: 'Dream Factory' + 2490: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 2490 + name: + type: string + example: 'Dream Japan' + 2493: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 2493 + name: + type: string + example: 'Dream Publishing' + 2494: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 2494 + name: + type: string + example: 'Dream Rift' + 2495: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 2495 + name: + type: string + example: 'Dreamatrix' + 2487: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 2487 + name: + type: string + example: 'DreamCatcher Interactive Inc.' + 2500: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 2500 + name: + type: string + example: 'DreamForge Entertainment, Inc.' + 2491: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 2491 + name: + type: string + example: 'DreamOn Studio' + 2503: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 2503 + name: + type: string + example: 'Dreampainters' + 2505: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 2505 + name: + type: string + example: 'DreamRift' + 2506: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 2506 + name: + type: string + example: 'Dreams' + 2508: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 2508 + name: + type: string + example: 'Dreamsky' + 2509: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 2509 + name: + type: string + example: 'DreamWorks' + 2510: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 2510 + name: + type: string + example: 'DreamWorks Interactive L.L.C.' + 2511: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 2511 + name: + type: string + example: 'Dreamworlds' + 2512: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 2512 + name: + type: string + example: 'DreamyTyper' + 2513: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 2513 + name: + type: string + example: 'Drew Pictures' + 2514: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 2514 + name: + type: string + example: 'DrinkBox Studios' + 2516: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 2516 + name: + type: string + example: 'Dro Soft.' + 2517: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 2517 + name: + type: string + example: 'Drool LLC' + 2518: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 2518 + name: + type: string + example: 'Droqen' + 10359: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 10359 + name: + type: string + example: 'DRUNKEN APES' + 2519: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 2519 + name: + type: string + example: 'DSD/Camelot' + 2522: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 2522 + name: + type: string + example: 'DTales' + 2523: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 2523 + name: + type: string + example: 'dtp entertainment AG' + 2525: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 2525 + name: + type: string + example: 'dtp young entertainment GmbH & Co. KG' + 2526: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 2526 + name: + type: string + example: 'Du Tech' + 2527: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 2527 + name: + type: string + example: 'Dual' + 2528: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 2528 + name: + type: string + example: 'Duintronic' + 2529: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 2529 + name: + type: string + example: 'Duncan Brown' + 2530: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 2530 + name: + type: string + example: 'Dungeon Dwellers Design' + 2531: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 2531 + name: + type: string + example: 'Dunhill Electronics' + 2532: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 2532 + name: + type: string + example: 'Dupuis' + 2533: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 2533 + name: + type: string + example: 'Duranik' + 2534: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 2534 + name: + type: string + example: 'Durell Software Ltd.' + 2538: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 2538 + name: + type: string + example: 'Dust Devil Studios Inc.' + 2539: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 2539 + name: + type: string + example: 'DVS' + 2541: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 2541 + name: + type: string + example: 'DWSK' + 2542: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 2542 + name: + type: string + example: 'DYA Games' + 2543: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 2543 + name: + type: string + example: 'Dylan Fitterer' + 2544: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 2544 + name: + type: string + example: 'Dylan Loney' + 2545: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 2545 + name: + type: string + example: 'Dyna Corporation' + 2547: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 2547 + name: + type: string + example: 'Dynabyte' + 2548: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 2548 + name: + type: string + example: 'Dynacom' + 2549: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 2549 + name: + type: string + example: 'Dynafield' + 2550: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 2550 + name: + type: string + example: 'Dynamic Pixels' + 2551: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 2551 + name: + type: string + example: 'Dynamic-Designs' + 2552: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 2552 + name: + type: string + example: 'DynaMicro' + 2553: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 2553 + name: + type: string + example: 'Dynamighty' + 2554: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 2554 + name: + type: string + example: 'Dynamite' + 2555: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 2555 + name: + type: string + example: 'Dynamix, Inc.' + 2558: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 2558 + name: + type: string + example: 'Dynax' + 2559: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 2559 + name: + type: string + example: 'Dystopia Team' + 10319: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 10319 + name: + type: string + example: 'E-Line Media' + 2560: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 2560 + name: + type: string + example: 'E-Scape EnterMedia' + 2561: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 2561 + name: + type: string + example: 'E.F. Dreyer' + 2562: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 2562 + name: + type: string + example: 'E.O. Imagination' + 2563: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 2563 + name: + type: string + example: 'EA' + 2564: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 2564 + name: + type: string + example: 'EA - Maxis' + 2565: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 2565 + name: + type: string + example: 'EA Black Box' + 2568: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 2568 + name: + type: string + example: 'EA Bright Light' + 2570: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 2570 + name: + type: string + example: 'EA Canada' + 2571: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 2571 + name: + type: string + example: 'EA Canada - Team Fusion' + 2573: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 2573 + name: + type: string + example: 'EA Casual Studios' + 2574: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 2574 + name: + type: string + example: 'EA Chicago' + 2575: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 2575 + name: + type: string + example: 'EA Dice' + 2576: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 2576 + name: + type: string + example: 'EA Digital Illusions CE' + 2577: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 2577 + name: + type: string + example: 'EA Games' + 2578: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 2578 + name: + type: string + example: 'EA Japan' + 2579: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 2579 + name: + type: string + example: 'EA Los Angeles' + 2582: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 2582 + name: + type: string + example: 'EA Montreal' + 2583: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 2583 + name: + type: string + example: 'EA North Carolina' + 2584: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 2584 + name: + type: string + example: 'EA Phenomic' + 10028: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 10028 + name: + type: string + example: 'EA Play' + 2586: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 2586 + name: + type: string + example: 'EA Redwood Shores' + 10248: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 10248 + name: + type: string + example: 'EA Redwood Shores Studio' + 2588: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 2588 + name: + type: string + example: 'EA Romania' + 2589: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 2589 + name: + type: string + example: 'EA Salt Lake' + 10023: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 10023 + name: + type: string + example: 'EA Seattle' + 2590: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 2590 + name: + type: string + example: 'EA Sports' + 2591: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 2591 + name: + type: string + example: 'EA Sports BIG' + 2593: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 2593 + name: + type: string + example: 'EA Swiss Sarl' + 2594: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 2594 + name: + type: string + example: 'EA Tiburon' + 2596: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 2596 + name: + type: string + example: 'EA Tiburon, Exient Entertainment' + 2597: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 2597 + name: + type: string + example: 'EA UK' + 2598: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 2598 + name: + type: string + example: 'EA Vancouver and EA Romania' + 2599: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 2599 + name: + type: string + example: 'EA, Canada' + 2602: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 2602 + name: + type: string + example: 'Eagle Dynamics' + 2603: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 2603 + name: + type: string + example: 'Eagle Tree Software' + 2604: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 2604 + name: + type: string + example: 'Eagle Vision' + 2605: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 2605 + name: + type: string + example: 'Eaglesoft' + 2607: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 2607 + name: + type: string + example: 'EAI Interactive' + 2608: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 2608 + name: + type: string + example: 'EAI Interactive, Hasbro Interactive' + 2609: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 2609 + name: + type: string + example: 'Earthlight Productions' + 2610: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 2610 + name: + type: string + example: 'Earthly Soft' + 2611: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 2611 + name: + type: string + example: 'East Asiasoft' + 2612: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 2612 + name: + type: string + example: 'East Cube' + 2613: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 2613 + name: + type: string + example: 'East Point Software' + 2614: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 2614 + name: + type: string + example: 'East Side Games Studio' + 2615: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 2615 + name: + type: string + example: 'East Technology Corp.' + 2617: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 2617 + name: + type: string + example: 'Eastasiasoft' + 2618: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 2618 + name: + type: string + example: 'Easter Egg' + 2619: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 2619 + name: + type: string + example: 'Eastern Micro Electronics Inc.' + 2622: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 2622 + name: + type: string + example: 'Eastridge Technology' + 2623: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 2623 + name: + type: string + example: 'EasyGameStation' + 2624: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 2624 + name: + type: string + example: 'EasyRPG' + 2625: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 2625 + name: + type: string + example: 'Eat Create Sleep' + 2626: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 2626 + name: + type: string + example: 'Eat Sleep Play' + 2627: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 2627 + name: + type: string + example: 'Ebivision' + 2628: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 2628 + name: + type: string + example: 'EC Interactive Games' + 2629: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 2629 + name: + type: string + example: 'ECi' + 2630: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 2630 + name: + type: string + example: 'Eckhard Stolberg' + 2631: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 2631 + name: + type: string + example: 'Eclipse Entertainment' + 2632: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 2632 + name: + type: string + example: 'Eclipse Games' + 2633: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 2633 + name: + type: string + example: 'Eclipse Productions' + 2634: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 2634 + name: + type: string + example: 'Eclipse Software' + 2635: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 2635 + name: + type: string + example: 'Ecogames S.L.' + 10029: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 10029 + name: + type: string + example: 'Ecole' + 2636: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 2636 + name: + type: string + example: 'Ecole Software' + 2638: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 2638 + name: + type: string + example: 'Ecole Software, Type-Moon' + 2640: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 2640 + name: + type: string + example: 'ECP' + 2641: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 2641 + name: + type: string + example: 'Ecseco' + 2642: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 2642 + name: + type: string + example: 'Ed Co, Ltd.' + 2643: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 2643 + name: + type: string + example: 'Ed Federmeyer' + 2644: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 2644 + name: + type: string + example: 'Ed Fries' + 2645: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 2645 + name: + type: string + example: 'Ed Hobbs' + 10031: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 10031 + name: + type: string + example: 'Ed Key' + 2647: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 2647 + name: + type: string + example: 'Ed Magnin and Associates' + 2648: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 2648 + name: + type: string + example: 'Edelweiss' + 2649: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 2649 + name: + type: string + example: 'Eden' + 9964: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 9964 + name: + type: string + example: 'Eden Entertainment' + 2650: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 2650 + name: + type: string + example: 'Eden Entertainment Software' + 2651: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 2651 + name: + type: string + example: 'Eden Games' + 2652: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 2652 + name: + type: string + example: 'Eden Games S.A.S.' + 2653: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 2653 + name: + type: string + example: 'Eden Industries' + 2654: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 2654 + name: + type: string + example: 'Eden Studios' + 2655: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 2655 + name: + type: string + example: 'Edgar M. Vigdal' + 2656: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 2656 + name: + type: string + example: 'Edge Case Games Ltd.' + 2657: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 2657 + name: + type: string + example: 'Edge Computers' + 2658: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 2658 + name: + type: string + example: 'Edge of Reality Inc.' + 9961: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 9961 + name: + type: string + example: 'Edge of Reality, Ltd.' + 2660: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 2660 + name: + type: string + example: 'Edmund McMillen' + 2661: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 2661 + name: + type: string + example: 'Edmund McMillen + Tyler Glaiel' + 2664: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 2664 + name: + type: string + example: 'Edu-Ware' + 2665: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 2665 + name: + type: string + example: 'Educational Information Systems, Inc.' + 2666: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 2666 + name: + type: string + example: 'Edward Sanville' + 2667: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 2667 + name: + type: string + example: 'Efecto Studios' + 2669: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 2669 + name: + type: string + example: 'EFO S.A.' + 2671: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 2671 + name: + type: string + example: 'Eforb' + 2672: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 2672 + name: + type: string + example: 'Eggcode' + 2673: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 2673 + name: + type: string + example: 'Eggtooth Team' + 2674: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 2674 + name: + type: string + example: 'Ego Software' + 2675: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 2675 + name: + type: string + example: 'Egoboo Development Team' + 2676: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 2676 + name: + type: string + example: 'Egosoft' + 2677: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 2677 + name: + type: string + example: 'EGOSOFT GmbH' + 2678: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 2678 + name: + type: string + example: 'EgoTrip' + 10036: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 10036 + name: + type: string + example: 'Ehrgeiz' + 2680: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 2680 + name: + type: string + example: 'EHTechnology' + 2681: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 2681 + name: + type: string + example: 'Eiconic Games' + 2682: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 2682 + name: + type: string + example: 'Eidetic' + 2683: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 2683 + name: + type: string + example: 'Eidos' + 2684: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 2684 + name: + type: string + example: 'Eidos Hungary' + 2685: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 2685 + name: + type: string + example: 'Eidos Interactive' + 2687: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 2687 + name: + type: string + example: 'Eidos Montreal' + 2689: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 2689 + name: + type: string + example: 'Eidos Sweden' + 2690: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 2690 + name: + type: string + example: 'Eighting Co., Ltd.' + 2695: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 2695 + name: + type: string + example: 'EightyEight Games' + 2697: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 2697 + name: + type: string + example: 'Eiji Hashimoto' + 2698: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 2698 + name: + type: string + example: 'Eikichi Kawasaki and team' + 2699: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 2699 + name: + type: string + example: 'EIM' + 2700: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 2700 + name: + type: string + example: 'Einar Odinn Holm' + 2701: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 2701 + name: + type: string + example: 'Einar Saukas' + 2702: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 2702 + name: + type: string + example: 'Eko' + 2703: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 2703 + name: + type: string + example: 'EKO Software' + 2705: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 2705 + name: + type: string + example: 'Eko System' + 2706: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 2706 + name: + type: string + example: 'Elaine Henshon' + 10038: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 10038 + name: + type: string + example: 'Elastic' + 2708: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 2708 + name: + type: string + example: 'Elder Games' + 2709: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 2709 + name: + type: string + example: 'Eldritch Games' + 2710: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 2710 + name: + type: string + example: 'Eldritch the Cat Ltd' + 2711: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 2711 + name: + type: string + example: 'Eleca' + 2712: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 2712 + name: + type: string + example: 'Elecbyte' + 2713: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 2713 + name: + type: string + example: 'Elecorn' + 2714: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 2714 + name: + type: string + example: 'Electra Concepts' + 2715: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 2715 + name: + type: string + example: 'Electralyte' + 2716: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 2716 + name: + type: string + example: 'Electric Dreams Software' + 2718: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 2718 + name: + type: string + example: 'Electric Harem' + 2719: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 2719 + name: + type: string + example: 'Electric Software' + 2720: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 2720 + name: + type: string + example: 'Electro Brain' + 2721: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 2721 + name: + type: string + example: 'Electro Design Company' + 2722: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 2722 + name: + type: string + example: 'electrolyte' + 2723: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 2723 + name: + type: string + example: 'Electronic' + 2724: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 2724 + name: + type: string + example: 'Electronic Arts' + 2726: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 2726 + name: + type: string + example: 'Electronic Arts Canada' + 2727: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 2727 + name: + type: string + example: 'Electronic Arts Los Angeles' + 2728: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 2728 + name: + type: string + example: 'Electronic Arts Montreal' + 2729: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 2729 + name: + type: string + example: 'Electronic Arts Sports' + 2730: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 2730 + name: + type: string + example: 'Electronic Arts Tiburon' + 2731: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 2731 + name: + type: string + example: 'Electronic Arts Victor' + 2733: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 2733 + name: + type: string + example: 'Electronic Arts, Inc.' + 2736: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 2736 + name: + type: string + example: 'Electronic Canda' + 2737: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 2737 + name: + type: string + example: 'Electronic Design Hannover' + 2738: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 2738 + name: + type: string + example: 'Electronic Devices' + 2739: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 2739 + name: + type: string + example: 'Electronic Devices Italy' + 2740: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 2740 + name: + type: string + example: 'Electronic Music and Animated Graphics CO., LTD.' + 2741: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 2741 + name: + type: string + example: 'Electronic Pencil Co. Ltd., The' + 2742: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 2742 + name: + type: string + example: 'Electronic Pencil Company' + 2743: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 2743 + name: + type: string + example: 'Electronics Application' + 2744: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 2744 + name: + type: string + example: 'ElectroTECH Software' + 2745: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 2745 + name: + type: string + example: 'Elektronika' + 2746: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 2746 + name: + type: string + example: 'Elephant Games' + 2748: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 2748 + name: + type: string + example: 'Elettronica' + 2749: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 2749 + name: + type: string + example: 'Elettronolo' + 2750: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 2750 + name: + type: string + example: 'Elev8 Games' + 2751: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 2751 + name: + type: string + example: 'Eleven' + 2752: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 2752 + name: + type: string + example: 'Eleven(Japan)' + 2753: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 2753 + name: + type: string + example: 'Elex Wireless' + 10193: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 10193 + name: + type: string + example: 'Elf' + 2754: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 2754 + name: + type: string + example: 'Elf Co., Ltd.' + 10312: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 10312 + name: + type: string + example: 'Eli Brewer' + 2756: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 2756 + name: + type: string + example: 'Elite' + 2757: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 2757 + name: + type: string + example: 'Elite Games Team' + 2758: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 2758 + name: + type: string + example: 'Elite Systems Ltd.' + 2761: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 2761 + name: + type: string + example: 'Elite-Worldwide' + 2762: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 2762 + name: + type: string + example: 'Elixir Studios' + 2763: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 2763 + name: + type: string + example: 'Elmer Productions' + 2764: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 2764 + name: + type: string + example: 'Elo Interactive Media GmbH' + 2767: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 2767 + name: + type: string + example: 'Elorg' + 2768: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 2768 + name: + type: string + example: 'Elven Software Company' + 2769: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 2769 + name: + type: string + example: 'EM Studios' + 2770: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 2770 + name: + type: string + example: 'Emag' + 2771: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 2771 + name: + type: string + example: 'Emectralyte' + 2772: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 2772 + name: + type: string + example: 'Emerald Software' + 2773: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 2773 + name: + type: string + example: 'Emerson Radio Corp' + 2774: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 2774 + name: + type: string + example: 'EMG' + 2775: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 2775 + name: + type: string + example: 'Emil Macko' + 2776: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 2776 + name: + type: string + example: 'Emotion Digital Software' + 2777: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 2777 + name: + type: string + example: 'Emphasys' + 2778: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 2778 + name: + type: string + example: 'Empire' + 2779: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 2779 + name: + type: string + example: 'Empire Interactive' + 2781: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 2781 + name: + type: string + example: 'Empire Oxford' + 2782: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 2782 + name: + type: string + example: 'Empires' + 2783: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 2783 + name: + type: string + example: 'Empty Clip Studios' + 2784: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 2784 + name: + type: string + example: 'Empyrean' + 2785: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 2785 + name: + type: string + example: 'Emu' + 2786: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 2786 + name: + type: string + example: 'EMV Software' + 2787: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 2787 + name: + type: string + example: 'Encore' + 2788: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 2788 + name: + type: string + example: 'Encore Software, Inc.' + 10167: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 10167 + name: + type: string + example: 'END' + 2791: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 2791 + name: + type: string + example: 'Endless Fluff Games' + 2790: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 2790 + name: + type: string + example: 'Endless Loop Studios' + 2793: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 2793 + name: + type: string + example: 'Endnight Games Ltd' + 2794: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 2794 + name: + type: string + example: 'Eneminds' + 2795: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 2795 + name: + type: string + example: 'Enerdyne Technologies' + 2796: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 2796 + name: + type: string + example: 'Engine Software' + 2797: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 2797 + name: + type: string + example: 'Engineering Animation, Inc.' + 2798: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 2798 + name: + type: string + example: 'English Software Company' + 2800: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 2800 + name: + type: string + example: 'Enhance Games' + 2801: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 2801 + name: + type: string + example: 'Enigma' + 2802: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 2802 + name: + type: string + example: 'Enigma Software Productions S.L.' + 10215: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 10215 + name: + type: string + example: 'Enigma Variations Ltd' + 2804: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 2804 + name: + type: string + example: 'Enigma Variations Ltd.' + 2806: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 2806 + name: + type: string + example: 'Enix' + 2809: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 2809 + name: + type: string + example: 'enjoy Entertainment' + 2810: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 2810 + name: + type: string + example: 'Enjoy Gaming Ltd' + 2811: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 2811 + name: + type: string + example: 'EnjoyUp Games' + 2813: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 2813 + name: + type: string + example: 'Enlight Software' + 2815: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 2815 + name: + type: string + example: 'Enormous Elk' + 10043: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 10043 + name: + type: string + example: 'Enrique Cervera Mateu' + 2817: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 2817 + name: + type: string + example: 'Ensemble Studios' + 2819: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 2819 + name: + type: string + example: 'Enter Skies' + 2820: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 2820 + name: + type: string + example: 'Enter-Tech' + 2821: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 2821 + name: + type: string + example: 'Enterbrain' + 2822: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 2822 + name: + type: string + example: 'Entersphere' + 2823: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 2823 + name: + type: string + example: 'Entertainment Int' + 2824: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 2824 + name: + type: string + example: 'Entheogen Studios LLC' + 2825: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 2825 + name: + type: string + example: 'Envision Studios' + 2826: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 2826 + name: + type: string + example: 'Eolith' + 2829: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 2829 + name: + type: string + example: 'Eon Digital' + 2830: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 2830 + name: + type: string + example: 'Eon Software' + 2831: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 2831 + name: + type: string + example: 'EPCOM' + 2832: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 2832 + name: + type: string + example: 'EPEE MOBILE' + 2833: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 2833 + name: + type: string + example: 'Epic' + 10018: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 10018 + name: + type: string + example: 'Epic Games' + 2835: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 2835 + name: + type: string + example: 'Epic Games , People Can Fly' + 2836: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 2836 + name: + type: string + example: 'Epic Games, Inc' + 2834: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 2834 + name: + type: string + example: 'Epic Games, Inc.' + 10049: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 10049 + name: + type: string + example: 'Epic MegaGames, Inc.' + 2840: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 2840 + name: + type: string + example: 'Epicenter Interactive' + 2841: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 2841 + name: + type: string + example: 'Epicenter Studios' + 2842: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 2842 + name: + type: string + example: 'Epics' + 2843: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 2843 + name: + type: string + example: 'epicsoft' + 2844: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 2844 + name: + type: string + example: 'Epiphany Games' + 2845: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 2845 + name: + type: string + example: 'Epoch' + 2846: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 2846 + name: + type: string + example: 'Epoch Co.' + 9915: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 9915 + name: + type: string + example: 'Epoch Co., Ltd.' + 2847: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 2847 + name: + type: string + example: 'Epos Corporation' + 2849: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 2849 + name: + type: string + example: 'Epyx' + 2850: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 2850 + name: + type: string + example: 'Epyx, Inc.' + 2851: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 2851 + name: + type: string + example: 'Equilibrium' + 2852: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 2852 + name: + type: string + example: 'Erbe Software' + 2854: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 2854 + name: + type: string + example: 'Erdem Sen' + 2855: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 2855 + name: + type: string + example: 'ERE Informatique' + 2857: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 2857 + name: + type: string + example: 'Eric Ball' + 10164: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 10164 + name: + type: string + example: 'Eric Chahi' + 2858: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 2858 + name: + type: string + example: 'Eric Froemling' + 2859: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 2859 + name: + type: string + example: 'Eric Hartman' + 2860: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 2860 + name: + type: string + example: 'Eric Kinkead' + 10052: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 10052 + name: + type: string + example: 'Eric Provan' + 2862: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 2862 + name: + type: string + example: 'Eric Wright' + 2863: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 2863 + name: + type: string + example: 'Erick Eid' + 2864: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 2864 + name: + type: string + example: 'Erik Mooney, Piero Cavina' + 2865: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 2865 + name: + type: string + example: 'Ernieware' + 2866: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 2866 + name: + type: string + example: 'Erosoft' + 2867: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 2867 + name: + type: string + example: 'Error Free Productions' + 2868: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 2868 + name: + type: string + example: 'ERS G-Studio' + 2869: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 2869 + name: + type: string + example: 'Ertain' + 2870: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 2870 + name: + type: string + example: 'Ervin Horvath' + 2871: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 2871 + name: + type: string + example: 'Escape' + 2872: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 2872 + name: + type: string + example: 'Esco Trading Company, Incorporated.' + 2873: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 2873 + name: + type: string + example: 'ESD' + 2874: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 2874 + name: + type: string + example: 'Esoterica' + 2875: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 2875 + name: + type: string + example: 'ESP Sfotware' + 2876: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 2876 + name: + type: string + example: 'ESP Software' + 2877: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 2877 + name: + type: string + example: 'espawn Entertainment' + 2878: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 2878 + name: + type: string + example: 'ESTsoft Corp.' + 2879: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 2879 + name: + type: string + example: 'Etermax' + 2880: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 2880 + name: + type: string + example: 'Etranges Libellules' + 2881: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 2881 + name: + type: string + example: 'ette' + 2882: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 2882 + name: + type: string + example: 'Eugen Systems' + 2883: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 2883 + name: + type: string + example: 'Euphoria' + 2884: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 2884 + name: + type: string + example: 'Eureka Software' + 2885: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 2885 + name: + type: string + example: 'Euro Gold' + 2886: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 2886 + name: + type: string + example: 'Eurocom' + 2887: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 2887 + name: + type: string + example: 'Eurocom Developments Ltd' + 2888: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 2888 + name: + type: string + example: 'Eurocom Entertainment Software' + 2892: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 2892 + name: + type: string + example: 'Eurogold' + 10022: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 10022 + name: + type: string + example: 'Eurohard' + 2893: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 2893 + name: + type: string + example: 'Europress' + 2894: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 2894 + name: + type: string + example: 'Eurosoft' + 2895: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 2895 + name: + type: string + example: 'Eushully' + 2896: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 2896 + name: + type: string + example: 'Eutechnyx Limited' + 2898: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 2898 + name: + type: string + example: 'Euthnyx' + 2899: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 2899 + name: + type: string + example: 'eV Interactive' + 2900: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 2900 + name: + type: string + example: 'Evelend Games' + 2901: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 2901 + name: + type: string + example: 'Event Horizon Software, Inc.' + 2902: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 2902 + name: + type: string + example: 'Everett Kaser Software' + 2903: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 2903 + name: + type: string + example: 'Eversim' + 2904: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 2904 + name: + type: string + example: 'Everything Unlimited Ltd.' + 2905: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 2905 + name: + type: string + example: 'Evil Tortilla Games' + 2906: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 2906 + name: + type: string + example: 'Evilized Productions' + 2907: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 2907 + name: + type: string + example: 'Evoga Entertainment' + 2908: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 2908 + name: + type: string + example: 'Evolution' + 2909: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 2909 + name: + type: string + example: 'Evolution Entertainment' + 2910: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 2910 + name: + type: string + example: 'Evolution Games' + 2911: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 2911 + name: + type: string + example: 'Evolution Studios' + 2912: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 2912 + name: + type: string + example: 'Evryware' + 2913: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 2913 + name: + type: string + example: 'Ex Animo Designs' + 2914: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 2914 + name: + type: string + example: 'Ex Nihilo' + 2915: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 2915 + name: + type: string + example: 'Exa Planning' + 2916: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 2916 + name: + type: string + example: 'Exact' + 2917: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 2917 + name: + type: string + example: 'Exakt' + 2918: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 2918 + name: + type: string + example: 'Exakt Entertainment' + 10055: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 10055 + name: + type: string + example: 'EXAKT Entertainment, Inc.' + 10056: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 10056 + name: + type: string + example: 'EXAMU' + 2920: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 2920 + name: + type: string + example: 'Examu Inc.' + 2923: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 2923 + name: + type: string + example: 'Exato Games' + 2924: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 2924 + name: + type: string + example: 'Excellent System' + 2925: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 2925 + name: + type: string + example: 'Excellent Systems' + 2926: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 2926 + name: + type: string + example: 'eXDream' + 2927: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 2927 + name: + type: string + example: 'EXE Create' + 2928: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 2928 + name: + type: string + example: 'Exe Create Inc.' + 10057: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 10057 + name: + type: string + example: 'Exidy' + 2929: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 2929 + name: + type: string + example: 'Exidy, Inc.' + 10059: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 10059 + name: + type: string + example: 'Exient' + 2932: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 2932 + name: + type: string + example: 'Exient Entertainment' + 2935: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 2935 + name: + type: string + example: 'eXiin' + 2936: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 2936 + name: + type: string + example: 'Exkee' + 2937: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 2937 + name: + type: string + example: 'Exor Studios' + 2938: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 2938 + name: + type: string + example: 'Exortus' + 2939: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 2939 + name: + type: string + example: 'exosyphen studios' + 2940: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 2940 + name: + type: string + example: 'Exozet Games' + 2941: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 2941 + name: + type: string + example: 'EXP' + 2942: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 2942 + name: + type: string + example: 'Expansive Worlds' + 2943: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 2943 + name: + type: string + example: 'Experience' + 2944: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 2944 + name: + type: string + example: 'Experience Inc.' + 2946: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 2946 + name: + type: string + example: 'EXPERIENCE, INC.' + 2947: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 2947 + name: + type: string + example: 'Experiment 101' + 2948: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 2948 + name: + type: string + example: 'Experimental Gamer Studios' + 2949: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 2949 + name: + type: string + example: 'Exploding Head Productions' + 2950: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 2950 + name: + type: string + example: 'Expotato' + 2951: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 2951 + name: + type: string + example: 'Extend Studio' + 2952: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 2952 + name: + type: string + example: 'Extended Play Productions' + 2954: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 2954 + name: + type: string + example: 'Extra Mile Studios' + 2955: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 2955 + name: + type: string + example: 'extreme' + 2956: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 2956 + name: + type: string + example: 'Exus Corporation' + 10051: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 10051 + name: + type: string + example: 'Exxos' + 2957: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 2957 + name: + type: string + example: 'Eyebrow Interactive' + 2958: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 2958 + name: + type: string + example: 'Eyedentity Games Inc.' + 2959: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 2959 + name: + type: string + example: 'Eyedentity Mobile' + 10135: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 10135 + name: + type: string + example: 'F. David Thorpe' + 10122: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 10122 + name: + type: string + example: 'F. Tilesch' + 2960: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 2960 + name: + type: string + example: 'F&C' + 2961: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 2961 + name: + type: string + example: 'F1 Licenceware' + 2962: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 2962 + name: + type: string + example: 'F2 Company' + 2963: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 2963 + name: + type: string + example: 'F2 System' + 2964: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 2964 + name: + type: string + example: 'F84 Games' + 2965: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 2965 + name: + type: string + example: 'Fab Communications' + 2966: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 2966 + name: + type: string + example: 'Fabien Fessard' + 2967: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 2967 + name: + type: string + example: 'Fabio Ferrara' + 2968: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 2968 + name: + type: string + example: 'Fabio Ferrara, Giulia Airoldi' + 2969: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 2969 + name: + type: string + example: 'Fabraz' + 2970: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 2970 + name: + type: string + example: 'Fabraz, LLC' + 2971: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 2971 + name: + type: string + example: 'Fabrizio Zavagli' + 2972: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 2972 + name: + type: string + example: 'Face' + 2973: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 2973 + name: + type: string + example: 'Faceless Programmers'' Corporation' + 2974: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 2974 + name: + type: string + example: 'Facepalm Games' + 2975: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 2975 + name: + type: string + example: 'Facepunch Studios' + 2976: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 2976 + name: + type: string + example: 'Factor 5 GmbH' + 2978: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 2978 + name: + type: string + example: 'Failbetter Games' + 2979: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 2979 + name: + type: string + example: 'Fair Play Labs' + 2980: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 2980 + name: + type: string + example: 'Fairchild Semiconductor' + 2981: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 2981 + name: + type: string + example: 'FairyTale' + 2982: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 2982 + name: + type: string + example: 'FAKT Software GmbH' + 2984: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 2984 + name: + type: string + example: 'Falcom' + 2985: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 2985 + name: + type: string + example: 'Falcon' + 2986: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 2986 + name: + type: string + example: 'Fall Line Studios' + 2988: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 2988 + name: + type: string + example: 'Fallen Tree Games Ltd' + 2989: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 2989 + name: + type: string + example: 'Falling Star Games' + 2990: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 2990 + name: + type: string + example: 'Family Production' + 2991: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 2991 + name: + type: string + example: 'Family Soft' + 2992: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 2992 + name: + type: string + example: 'Fanatec' + 2993: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 2993 + name: + type: string + example: 'Fanda' + 2994: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 2994 + name: + type: string + example: 'FanLed' + 2995: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 2995 + name: + type: string + example: 'Fantastic Four' + 2996: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 2996 + name: + type: string + example: 'Fantasy Factory' + 2997: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 2997 + name: + type: string + example: 'Fantasy Productions' + 2998: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 2998 + name: + type: string + example: 'Faravid Interactive' + 3000: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 3000 + name: + type: string + example: 'FarmerGnome' + 3001: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 3001 + name: + type: string + example: 'Farmergone' + 3002: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 3002 + name: + type: string + example: 'Farr-Ware Software' + 3003: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 3003 + name: + type: string + example: 'FarSight Studios' + 3004: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 3004 + name: + type: string + example: 'FarSight Technologies Inc.' + 3006: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 3006 + name: + type: string + example: 'FASA Interactive' + 3007: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 3007 + name: + type: string + example: 'FASA Studio' + 3008: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 3008 + name: + type: string + example: 'Faster Than Light' + 3009: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 3009 + name: + type: string + example: 'Fathom Pictures' + 3010: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 3010 + name: + type: string + example: 'Fatshark' + 3011: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 3011 + name: + type: string + example: 'Fatshark AB' + 3012: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 3012 + name: + type: string + example: 'Faucet Software' + 3013: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 3013 + name: + type: string + example: 'Faux Game Company' + 3014: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 3014 + name: + type: string + example: 'Fayju' + 3015: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 3015 + name: + type: string + example: 'FCI, Inc.' + 3017: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 3017 + name: + type: string + example: 'FDG Entertainment GmbH & Co.KG' + 3018: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 3018 + name: + type: string + example: 'FDG Entertainment GmbH & Co.KG' + 10060: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 10060 + name: + type: string + example: 'Feel Plus' + 10184: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 10184 + name: + type: string + example: 'Feelplus' + 3020: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 3020 + name: + type: string + example: 'feelplus Inc' + 3022: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 3022 + name: + type: string + example: 'Felipe Caldas' + 3023: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 3023 + name: + type: string + example: 'Felistella' + 3024: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 3024 + name: + type: string + example: 'Fernando Cabrera, Toni Galvez' + 3025: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 3025 + name: + type: string + example: 'FF56' + 3026: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 3026 + name: + type: string + example: 'Fictiorama Studios' + 3027: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 3027 + name: + type: string + example: 'Fiddlesticks' + 3028: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 3028 + name: + type: string + example: 'Fiddlesticks Games' + 3029: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 3029 + name: + type: string + example: 'Field' + 3030: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 3030 + name: + type: string + example: 'Fields of Vision' + 3031: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 3031 + name: + type: string + example: 'Fifth Cell' + 10194: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 10194 + name: + type: string + example: 'Fill In Cafe' + 3032: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 3032 + name: + type: string + example: 'Fill-in-Cafe' + 3035: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 3035 + name: + type: string + example: 'Final Boss' + 3036: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 3036 + name: + type: string + example: 'Final Boss Entertainment' + 3037: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 3037 + name: + type: string + example: 'Final Form Games' + 3038: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 3038 + name: + type: string + example: 'Fingersoft' + 3039: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 3039 + name: + type: string + example: 'FiolaSoft Studio' + 3040: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 3040 + name: + type: string + example: 'Fira Soft' + 3041: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 3041 + name: + type: string + example: 'Firaxis Games' + 3044: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 3044 + name: + type: string + example: 'Firebird Software' + 3046: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 3046 + name: + type: string + example: 'Firebrand Games' + 3047: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 3047 + name: + type: string + example: 'Firedance Games' + 3048: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 3048 + name: + type: string + example: 'Firefly Studios' + 3049: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 3049 + name: + type: string + example: 'Fireforce' + 3050: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 3050 + name: + type: string + example: 'FireForge Games' + 3052: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 3052 + name: + type: string + example: 'Firemint' + 3053: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 3053 + name: + type: string + example: 'Firemonkeys Studios' + 3054: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 3054 + name: + type: string + example: 'Fireproof Games' + 3055: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 3055 + name: + type: string + example: 'First Amusement' + 10058: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 10058 + name: + type: string + example: 'First Star Software' + 3056: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 3056 + name: + type: string + example: 'First Star Software Inc' + 3059: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 3059 + name: + type: string + example: 'First Star Software, Inc.' + 3060: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 3060 + name: + type: string + example: 'Firstlight' + 3062: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 3062 + name: + type: string + example: 'Fish Factory Games' + 3063: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 3063 + name: + type: string + example: 'Fisher Price' + 3064: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 3064 + name: + type: string + example: 'Fishing Cactus' + 3065: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 3065 + name: + type: string + example: 'Fishlabs' + 3066: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 3066 + name: + type: string + example: 'Five Miles Out' + 3067: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 3067 + name: + type: string + example: 'Five Ways Software' + 3068: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 3068 + name: + type: string + example: 'Five Ways Software Ltd' + 3069: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 3069 + name: + type: string + example: 'FIX Korea' + 3070: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 3070 + name: + type: string + example: 'Fixpoint Productions Ltd.' + 3071: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 3071 + name: + type: string + example: 'Fizbin' + 3072: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 3072 + name: + type: string + example: 'Flagship' + 3073: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 3073 + name: + type: string + example: 'Flagship Seattle' + 3074: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 3074 + name: + type: string + example: 'Flagship Studios' + 3075: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 3075 + name: + type: string + example: 'Flair Software' + 3077: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 3077 + name: + type: string + example: 'Flair Software Ltd.' + 3078: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 3078 + name: + type: string + example: 'Flashback' + 3079: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 3079 + name: + type: string + example: 'Flashpoint Productions' + 3081: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 3081 + name: + type: string + example: 'Flat Earth Games' + 3082: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 3082 + name: + type: string + example: 'Flat Software' + 3083: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 3083 + name: + type: string + example: 'Flat-Out' + 3085: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 3085 + name: + type: string + example: 'Flight School Studio' + 3084: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 3084 + name: + type: string + example: 'Flight-Plan' + 3087: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 3087 + name: + type: string + example: 'Flight-Plan Inc.' + 3088: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 3088 + name: + type: string + example: 'FlipFlop' + 3089: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 3089 + name: + type: string + example: 'Floodgate' + 3090: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 3090 + name: + type: string + example: 'Floppy' + 10033: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 10033 + name: + type: string + example: 'Florian Himsl' + 10172: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 10172 + name: + type: string + example: 'Florian Hufsky' + 3091: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 3091 + name: + type: string + example: 'Flow Combine' + 3092: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 3092 + name: + type: string + example: 'FLT Games' + 3093: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 3093 + name: + type: string + example: 'FluffyLogic' + 3094: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 3094 + name: + type: string + example: 'Fluid Solutions' + 3095: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 3095 + name: + type: string + example: 'Fluid Studios' + 3096: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 3096 + name: + type: string + example: 'FlukeDude' + 3097: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 3097 + name: + type: string + example: 'Flyeap Studios' + 3098: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 3098 + name: + type: string + example: 'Flyhigh Works' + 3099: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 3099 + name: + type: string + example: 'Flying Bear Entertainment' + 3100: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 3100 + name: + type: string + example: 'Flying Buffalo' + 3101: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 3101 + name: + type: string + example: 'Flying Carpet Games' + 3102: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 3102 + name: + type: string + example: 'Flying Chicken' + 3103: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 3103 + name: + type: string + example: 'Flying Crackers' + 3104: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 3104 + name: + type: string + example: 'Flying Edge' + 3105: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 3105 + name: + type: string + example: 'Flying Helmet Games' + 3106: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 3106 + name: + type: string + example: 'Flying Star' + 3107: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 3107 + name: + type: string + example: 'Flying Tiger Entertainment' + 3109: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 3109 + name: + type: string + example: 'Flying Wild Hog' + 3111: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 3111 + name: + type: string + example: 'FlyingCafe' + 3112: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 3112 + name: + type: string + example: 'FlyingShine' + 3113: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 3113 + name: + type: string + example: 'FM Work' + 3114: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 3114 + name: + type: string + example: 'FocasLens' + 3115: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 3115 + name: + type: string + example: 'Focus Creative Enterprises Ltd.' + 3117: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 3117 + name: + type: string + example: 'Focus Home Interactive' + 3118: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 3118 + name: + type: string + example: 'Focus Multimedia' + 3119: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 3119 + name: + type: string + example: 'Foreign Media Games' + 3121: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 3121 + name: + type: string + example: 'Foresight' + 3122: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 3122 + name: + type: string + example: 'Forest' + 3123: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 3123 + name: + type: string + example: 'Forever Entertainment S. A.' + 10349: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 10349 + name: + type: string + example: 'Forgotten Key' + 3125: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 3125 + name: + type: string + example: 'Formula' + 3126: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 3126 + name: + type: string + example: 'Formula Game Development' + 3127: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 3127 + name: + type: string + example: 'Fortafy' + 3128: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 3128 + name: + type: string + example: 'Fortyfive' + 3129: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 3129 + name: + type: string + example: 'Four Door Lemon' + 3130: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 3130 + name: + type: string + example: 'Four Horses' + 3131: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 3131 + name: + type: string + example: 'Four J International' + 3132: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 3132 + name: + type: string + example: 'Four Leaf Studios' + 3133: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 3133 + name: + type: string + example: 'Four Quarters' + 3134: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 3134 + name: + type: string + example: 'Four Winds' + 3135: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 3135 + name: + type: string + example: 'Fourattic' + 3136: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 3136 + name: + type: string + example: 'Foursaken Media' + 3137: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 3137 + name: + type: string + example: 'Foursfield' + 3138: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 3138 + name: + type: string + example: 'Fox' + 3139: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 3139 + name: + type: string + example: 'Fox Digital Entertainment, Inc.' + 3140: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 3140 + name: + type: string + example: 'Fox Interactive' + 3141: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 3141 + name: + type: string + example: 'Fox Video Games, Inc.' + 3143: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 3143 + name: + type: string + example: 'Fox Williams' + 3144: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 3144 + name: + type: string + example: 'Foxbat' + 3145: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 3145 + name: + type: string + example: 'Foxysofts' + 3146: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 3146 + name: + type: string + example: 'Fraktalvoid.Pty.Ltd' + 3147: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 3147 + name: + type: string + example: 'Frame Studios Interactive' + 3149: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 3149 + name: + type: string + example: 'Frank Cohen' + 3150: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 3150 + name: + type: string + example: 'Frank Ellis' + 3151: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 3151 + name: + type: string + example: 'Fraoula' + 3152: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 3152 + name: + type: string + example: 'FreakZone Games' + 10111: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 10111 + name: + type: string + example: 'Fred Gray' + 3153: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 3153 + name: + type: string + example: 'Fred Quimby' + 3154: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 3154 + name: + type: string + example: 'Fredaikis AB' + 3155: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 3155 + name: + type: string + example: 'Frederik Spada' + 3156: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 3156 + name: + type: string + example: 'Free Fall Associates' + 3157: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 3157 + name: + type: string + example: 'Free Lives' + 3158: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 3158 + name: + type: string + example: 'Free Radical Design' + 3160: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 3160 + name: + type: string + example: 'Free Reign Entertainment' + 3161: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 3161 + name: + type: string + example: 'Free Spirit Software Inc.' + 3162: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 3162 + name: + type: string + example: 'Freebird Games' + 3163: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 3163 + name: + type: string + example: 'Freedom Factory Studios' + 3165: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 3165 + name: + type: string + example: 'Freedroid Team' + 3166: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 3166 + name: + type: string + example: 'Freegamer' + 3167: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 3167 + name: + type: string + example: 'Freejam' + 3168: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 3168 + name: + type: string + example: 'Freeland Studios' + 3169: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 3169 + name: + type: string + example: 'Freemind' + 3170: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 3170 + name: + type: string + example: 'Freestyle Games' + 10160: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 10160 + name: + type: string + example: 'FreeStyleGames' + 3174: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 3174 + name: + type: string + example: 'Freeze Tag' + 10030: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 10030 + name: + type: string + example: 'French-Bread' + 3176: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 3176 + name: + type: string + example: 'Fresh 3D' + 3177: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 3177 + name: + type: string + example: 'Freyr Games' + 3178: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 3178 + name: + type: string + example: 'Frictional Games' + 3179: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 3179 + name: + type: string + example: 'Frima' + 3181: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 3181 + name: + type: string + example: 'Frima Studios' + 3180: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 3180 + name: + type: string + example: 'Frog City Software' + 3184: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 3184 + name: + type: string + example: 'Frogames' + 3185: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 3185 + name: + type: string + example: 'Frogdice' + 3186: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 3186 + name: + type: string + example: 'Froggo Games Corporation' + 3189: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 3189 + name: + type: string + example: 'Frogmind' + 3190: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 3190 + name: + type: string + example: 'Frogwares Games Development Studio' + 3192: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 3192 + name: + type: string + example: 'FromSoftware, Inc.' + 3195: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 3195 + name: + type: string + example: 'Front Wing' + 3196: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 3196 + name: + type: string + example: 'Frontier' + 3197: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 3197 + name: + type: string + example: 'Frontier Developments Ltd.' + 3199: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 3199 + name: + type: string + example: 'Frontier Developments, Asobo Studio' + 3200: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 3200 + name: + type: string + example: 'Frontline Studios' + 3202: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 3202 + name: + type: string + example: 'Frooxius' + 3203: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 3203 + name: + type: string + example: 'Frozen Codebase' + 3204: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 3204 + name: + type: string + example: 'Frozen Dev' + 10267: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 10267 + name: + type: string + example: 'Frozen Sand LLC' + 3205: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 3205 + name: + type: string + example: 'Frozenbyte' + 3206: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 3206 + name: + type: string + example: 'Frozenbyte, Inc.' + 3207: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 3207 + name: + type: string + example: 'FRS' + 3208: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 3208 + name: + type: string + example: 'FTG' + 3209: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 3209 + name: + type: string + example: 'FTL Games' + 3211: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 3211 + name: + type: string + example: 'Fube Industries' + 3212: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 3212 + name: + type: string + example: 'Fuel Industries' + 3213: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 3213 + name: + type: string + example: 'Fufark' + 3214: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 3214 + name: + type: string + example: 'Fuji Television Network' + 3215: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 3215 + name: + type: string + example: 'Fujicom' + 3216: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 3216 + name: + type: string + example: 'Fujimic' + 3217: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 3217 + name: + type: string + example: 'Fukutake Publishing Co, Ltd' + 3218: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 3218 + name: + type: string + example: 'Full Control Studios' + 10189: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 10189 + name: + type: string + example: 'Full Fat' + 3219: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 3219 + name: + type: string + example: 'Full Fat Games' + 3221: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 3221 + name: + type: string + example: 'Fullbright' + 3222: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 3222 + name: + type: string + example: 'Fummy' + 3223: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 3223 + name: + type: string + example: 'Fun Bits Interactive' + 3224: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 3224 + name: + type: string + example: 'Fun Com' + 3225: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 3225 + name: + type: string + example: 'Fun Factory' + 3226: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 3226 + name: + type: string + example: 'Fun Labs' + 3227: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 3227 + name: + type: string + example: 'Fun Project' + 3228: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 3228 + name: + type: string + example: 'Funai' + 3229: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 3229 + name: + type: string + example: 'Funari' + 3230: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 3230 + name: + type: string + example: 'Funatics Development' + 3231: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 3231 + name: + type: string + example: 'Funatics Software' + 3232: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 3232 + name: + type: string + example: 'Funbox Media' + 3233: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 3233 + name: + type: string + example: 'Funcom' + 3234: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 3234 + name: + type: string + example: 'Funcom Dublin Ltd.' + 3237: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 3237 + name: + type: string + example: 'Funhouse' + 3238: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 3238 + name: + type: string + example: 'Funkitron' + 3239: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 3239 + name: + type: string + example: 'Funktronic Labs' + 3240: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 3240 + name: + type: string + example: 'Funny Computer' + 3241: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 3241 + name: + type: string + example: 'FunTown World Limited' + 3242: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 3242 + name: + type: string + example: 'Funvision' + 3243: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 3243 + name: + type: string + example: 'Funware' + 3244: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 3244 + name: + type: string + example: 'Fupac' + 3245: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 3245 + name: + type: string + example: 'FuRyu' + 3246: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 3246 + name: + type: string + example: 'Fuse Games' + 3247: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 3247 + name: + type: string + example: 'Fusion Reactions' + 3248: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 3248 + name: + type: string + example: 'Fusionsphere Systems' + 3250: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 3250 + name: + type: string + example: 'Futility Games' + 3251: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 3251 + name: + type: string + example: 'Futura' + 3252: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 3252 + name: + type: string + example: 'Future Concepts Ltd.' + 3253: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 3253 + name: + type: string + example: 'Future Creates' + 3254: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 3254 + name: + type: string + example: 'Future Driver' + 3255: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 3255 + name: + type: string + example: 'Future Endeavors Inc.' + 3256: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 3256 + name: + type: string + example: 'Future Games' + 3257: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 3257 + name: + type: string + example: 'Futuremark Game Studio' + 3259: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 3259 + name: + type: string + example: 'FuturLab' + 3260: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 3260 + name: + type: string + example: 'FuturLab Ltd.' + 3261: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 3261 + name: + type: string + example: 'Fuuki Co., Ltd.' + 3264: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 3264 + name: + type: string + example: 'Fuzzbox' + 3265: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 3265 + name: + type: string + example: 'FX interactive' + 3266: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 3266 + name: + type: string + example: 'FYTO' + 3267: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 3267 + name: + type: string + example: 'G Artist' + 3268: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 3268 + name: + type: string + example: 'G-Amusement' + 3269: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 3269 + name: + type: string + example: 'G-artists' + 3270: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 3270 + name: + type: string + example: 'G-artists, Sugar & Rockets' + 3271: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 3271 + name: + type: string + example: 'G-Craft' + 10263: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 10263 + name: + type: string + example: 'G-Sat' + 3273: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 3273 + name: + type: string + example: 'G.O.1' + 3274: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 3274 + name: + type: string + example: 'G.rev' + 3272: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 3272 + name: + type: string + example: 'G.rev Ltd.' + 3276: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 3276 + name: + type: string + example: 'G.T Enterprise Inc.' + 3277: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 3277 + name: + type: string + example: 'G1M2' + 3278: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 3278 + name: + type: string + example: 'G3 Interactive' + 3279: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 3279 + name: + type: string + example: 'G3 Studios' + 3280: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 3280 + name: + type: string + example: 'G5 ENTERTAINMENT AB' + 10062: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 10062 + name: + type: string + example: 'GA-Yume' + 3282: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 3282 + name: + type: string + example: 'Gaboda games' + 3283: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 3283 + name: + type: string + example: 'Gabriel Interactive' + 3284: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 3284 + name: + type: string + example: 'Gadget Soft' + 3285: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 3285 + name: + type: string + example: 'Gaea Mobile Limited' + 3286: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 3286 + name: + type: string + example: 'Gaelco SA.' + 3288: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 3288 + name: + type: string + example: 'Gaibrain' + 3289: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 3289 + name: + type: string + example: 'Gaijin' + 3290: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 3290 + name: + type: string + example: 'Gaijin Entertainment Corporation' + 3292: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 3292 + name: + type: string + example: 'Gaijin Games' + 3293: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 3293 + name: + type: string + example: 'Gaijinworks' + 3294: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 3294 + name: + type: string + example: 'Gainax' + 3295: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 3295 + name: + type: string + example: 'Gainax Network Systems' + 3296: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 3296 + name: + type: string + example: 'Gakken' + 3297: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 3297 + name: + type: string + example: 'Galactic Cafe' + 3298: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 3298 + name: + type: string + example: 'GalaxyTrail' + 3299: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 3299 + name: + type: string + example: 'Gambrinous' + 3300: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 3300 + name: + type: string + example: 'Game Ace' + 3301: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 3301 + name: + type: string + example: 'Game Arts' + 3306: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 3306 + name: + type: string + example: 'Game Brains' + 3307: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 3307 + name: + type: string + example: 'Game Coder Studios' + 3308: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 3308 + name: + type: string + example: 'Game Design Flat Pack' + 3309: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 3309 + name: + type: string + example: 'Game Design Sweden AB' + 3310: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 3310 + name: + type: string + example: 'Game Dev Castle' + 3311: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 3311 + name: + type: string + example: 'Game Factory Interactive' + 3313: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 3313 + name: + type: string + example: 'Game Factory Online' + 3314: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 3314 + name: + type: string + example: 'Game Freak' + 3315: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 3315 + name: + type: string + example: 'Game Guild' + 3316: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 3316 + name: + type: string + example: 'Game Insight' + 3317: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 3317 + name: + type: string + example: 'Game Machine Studios' + 3318: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 3318 + name: + type: string + example: 'Game Machine Studios' + 3320: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 3320 + name: + type: string + example: 'Game On' + 3321: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 3321 + name: + type: string + example: 'Game Over' + 3322: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 3322 + name: + type: string + example: 'Game Plan Inc.' + 3323: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 3323 + name: + type: string + example: 'Game Refuge Inc.' + 3325: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 3325 + name: + type: string + example: 'Game Republic' + 3327: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 3327 + name: + type: string + example: 'Game Room' + 3328: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 3328 + name: + type: string + example: 'Game Sauce' + 3329: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 3329 + name: + type: string + example: 'Game Studio' + 3330: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 3330 + name: + type: string + example: 'Game Studio 78' + 3331: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 3331 + name: + type: string + example: 'Game Titan' + 3332: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 3332 + name: + type: string + example: 'Game World Manufacturing' + 10065: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 10065 + name: + type: string + example: 'Game Yaruoze' + 3334: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 3334 + name: + type: string + example: 'Game-Labs' + 3335: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 3335 + name: + type: string + example: 'Game-Play Studios' + 3336: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 3336 + name: + type: string + example: 'GameArt Studio GmbH' + 10269: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 10269 + name: + type: string + example: 'GameArts' + 3338: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 3338 + name: + type: string + example: 'GameBox' + 3340: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 3340 + name: + type: string + example: 'GameChanger Studio' + 3341: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 3341 + name: + type: string + example: 'GameCrafterTeam' + 3342: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 3342 + name: + type: string + example: 'GameDesignDan' + 3343: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 3343 + name: + type: string + example: 'GameDesire' + 3344: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 3344 + name: + type: string + example: 'GameForge' + 3346: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 3346 + name: + type: string + example: 'GameHouse' + 3348: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 3348 + name: + type: string + example: 'Gameinvest' + 3349: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 3349 + name: + type: string + example: 'GameLab' + 3350: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 3350 + name: + type: string + example: 'GameLife' + 3351: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 3351 + name: + type: string + example: 'Gamelion Studios' + 3353: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 3353 + name: + type: string + example: 'Gameloft S.A.' + 3319: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 3319 + name: + type: string + example: 'GameMill Entertainment' + 3356: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 3356 + name: + type: string + example: 'Gamenauts' + 3357: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 3357 + name: + type: string + example: 'Gameness Art Software' + 3358: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 3358 + name: + type: string + example: 'Gamer''s Edge' + 3360: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 3360 + name: + type: string + example: 'Gamerizon' + 10324: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 10324 + name: + type: string + example: 'Gamers Digital' + 3361: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 3361 + name: + type: string + example: 'GamerSquad Productions' + 3362: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 3362 + name: + type: string + example: 'Games Abbey' + 3363: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 3363 + name: + type: string + example: 'Games Cafe' + 3364: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 3364 + name: + type: string + example: 'Games Distillery' + 3365: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 3365 + name: + type: string + example: 'Games Express' + 3366: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 3366 + name: + type: string + example: 'Games Faction' + 3367: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 3367 + name: + type: string + example: 'Games Farm' + 3368: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 3368 + name: + type: string + example: 'Games Hut' + 3369: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 3369 + name: + type: string + example: 'Games Line Co.' + 3370: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 3370 + name: + type: string + example: 'Games Workshop' + 3372: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 3372 + name: + type: string + example: 'GameShastra' + 3373: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 3373 + name: + type: string + example: 'Gameshastra Inc.' + 10066: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 10066 + name: + type: string + example: 'Gamesoft' + 3375: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 3375 + name: + type: string + example: 'GameStar' + 10026: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 10026 + name: + type: string + example: 'Gametap Entertainment' + 3376: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 3376 + name: + type: string + example: 'GameTek, Inc.' + 3379: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 3379 + name: + type: string + example: 'GameTheNews' + 3380: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 3380 + name: + type: string + example: 'GameTrust' + 3381: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 3381 + name: + type: string + example: 'GAMEVIL Inc.' + 3383: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 3383 + name: + type: string + example: 'GameVillage' + 3384: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 3384 + name: + type: string + example: 'GameVision' + 3385: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 3385 + name: + type: string + example: 'Gameware Development' + 3386: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 3386 + name: + type: string + example: 'Gamex' + 3387: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 3387 + name: + type: string + example: 'Gamezlab' + 3388: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 3388 + name: + type: string + example: 'Gaming Minds Studios' + 3390: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 3390 + name: + type: string + example: 'Gamious' + 3391: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 3391 + name: + type: string + example: 'Gammation' + 3392: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 3392 + name: + type: string + example: 'Gammick Entertainment' + 3393: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 3393 + name: + type: string + example: 'Gamtec' + 3394: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 3394 + name: + type: string + example: 'Gamute' + 3395: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 3395 + name: + type: string + example: 'Ganbarion' + 3396: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 3396 + name: + type: string + example: 'Gang of Five' + 3397: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 3397 + name: + type: string + example: 'Gaps' + 3398: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 3398 + name: + type: string + example: 'GAPS Inc.' + 3399: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 3399 + name: + type: string + example: 'GAPS, Incorporated' + 3400: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 3400 + name: + type: string + example: 'GarageGames' + 3401: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 3401 + name: + type: string + example: 'Garden' + 3402: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 3402 + name: + type: string + example: 'Gareth Baker' + 3403: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 3403 + name: + type: string + example: 'Gargoyle Games Ltd.' + 3406: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 3406 + name: + type: string + example: 'Garow' + 3407: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 3407 + name: + type: string + example: 'Gary Partis' + 3408: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 3408 + name: + type: string + example: 'Gary Shannon & Tod Frye' + 3409: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 3409 + name: + type: string + example: 'Gary Yorke' + 3410: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 3410 + name: + type: string + example: 'Gas Powered Games' + 3411: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 3411 + name: + type: string + example: 'Gaslamp Games' + 3412: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 3412 + name: + type: string + example: 'Gastronaut Studios' + 3413: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 3413 + name: + type: string + example: 'Gau Entertainment' + 10067: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 10067 + name: + type: string + example: 'Gavaking' + 3415: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 3415 + name: + type: string + example: 'Gavin Camp' + 3416: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 3416 + name: + type: string + example: 'Gazelle' + 3417: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 3417 + name: + type: string + example: 'Gazillion Entertainment, Inc.' + 3419: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 3419 + name: + type: string + example: 'GCC' + 3420: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 3420 + name: + type: string + example: 'GCE' + 3421: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 3421 + name: + type: string + example: 'Gear Head Studios' + 3422: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 3422 + name: + type: string + example: 'Gearbox' + 3423: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 3423 + name: + type: string + example: 'Gearbox Software' + 3427: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 3427 + name: + type: string + example: 'Gears for Breakfast' + 3428: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 3428 + name: + type: string + example: 'Gebet' + 3429: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 3429 + name: + type: string + example: 'Geeta Games' + 3430: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 3430 + name: + type: string + example: 'Gelios Software' + 3431: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 3431 + name: + type: string + example: 'GEM' + 3432: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 3432 + name: + type: string + example: 'Gem International Corp' + 10087: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 10087 + name: + type: string + example: 'Gem International Corporation' + 3433: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 3433 + name: + type: string + example: 'Gem Software' + 3434: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 3434 + name: + type: string + example: 'Genazea' + 10069: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 10069 + name: + type: string + example: 'genDESIGN' + 3436: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 3436 + name: + type: string + example: 'GenePool Software' + 3438: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 3438 + name: + type: string + example: 'Genera Games' + 3439: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 3439 + name: + type: string + example: 'General Arcade' + 3440: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 3440 + name: + type: string + example: 'General Computer Corporation' + 3442: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 3442 + name: + type: string + example: 'General Computer Corporation, Midway Manufacturing Company' + 3443: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 3443 + name: + type: string + example: 'General Entertainment Co., Ltd.' + 3445: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 3445 + name: + type: string + example: 'General Support' + 3446: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 3446 + name: + type: string + example: 'Genesis Software' + 3447: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 3447 + name: + type: string + example: 'Genetix Studio' + 3448: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 3448 + name: + type: string + example: 'Genius Sonority Inc.' + 3451: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 3451 + name: + type: string + example: 'Genki' + 3453: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 3453 + name: + type: string + example: 'Genki Co., Ltd.' + 3456: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 3456 + name: + type: string + example: 'Genric' + 3457: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 3457 + name: + type: string + example: 'Genterprise' + 3458: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 3458 + name: + type: string + example: 'Gentleman Squid Studio' + 3459: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 3459 + name: + type: string + example: 'Gentlymad Studios , Assemble Entertainment' + 3460: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 3460 + name: + type: string + example: 'Genuine Games, Inc.' + 3463: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 3463 + name: + type: string + example: 'Geo' + 3464: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 3464 + name: + type: string + example: 'Geo Factory' + 3465: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 3465 + name: + type: string + example: 'Geoff Crammond' + 3466: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 3466 + name: + type: string + example: 'Geoff Dawson' + 3467: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 3467 + name: + type: string + example: 'Georg Rottensteiner, Sean Connolly, Ilija Melentijević' + 3468: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 3468 + name: + type: string + example: 'George Moromisato' + 3469: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 3469 + name: + type: string + example: 'George Schultz' + 3470: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 3470 + name: + type: string + example: 'Geronimo interactive' + 3471: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 3471 + name: + type: string + example: 'gerstrong' + 3472: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 3472 + name: + type: string + example: 'Gevo Entertainment' + 3473: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 3473 + name: + type: string + example: 'GFI Russia' + 3474: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 3474 + name: + type: string + example: 'GFX Construction' + 3475: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 3475 + name: + type: string + example: 'GG & 6128, McKlain' + 3476: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 3476 + name: + type: string + example: 'Ghost' + 3477: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 3477 + name: + type: string + example: 'Ghost Games' + 3478: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 3478 + name: + type: string + example: 'Ghost Ship Games' + 3479: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 3479 + name: + type: string + example: 'Ghost Town Games Ltd.' + 3481: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 3481 + name: + type: string + example: 'Ghostfire Games' + 3482: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 3482 + name: + type: string + example: 'GhostShark' + 10375: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 10375 + name: + type: string + example: 'Giant Army' + 3483: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 3483 + name: + type: string + example: 'Giant Bomb' + 3484: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 3484 + name: + type: string + example: 'Giant Media Group' + 3485: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 3485 + name: + type: string + example: 'Giant Spacekat' + 3486: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 3486 + name: + type: string + example: 'Giant Sparrow' + 3488: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 3488 + name: + type: string + example: 'Giant Squid' + 3489: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 3489 + name: + type: string + example: 'GIANTS Software GmbH' + 3491: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 3491 + name: + type: string + example: 'GIGA' + 3492: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 3492 + name: + type: string + example: 'Gigawatt Studios' + 10090: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 10090 + name: + type: string + example: 'Giles Williams' + 3493: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 3493 + name: + type: string + example: 'Giles Williams (a.k.a. Aegidian)' + 10072: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 10072 + name: + type: string + example: 'Giovanni Zanetti' + 3495: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 3495 + name: + type: string + example: 'Givro' + 3496: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 3496 + name: + type: string + example: 'Gizmo' + 3497: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 3497 + name: + type: string + example: 'Gl33k' + 3498: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 3498 + name: + type: string + example: 'Glass Bottom Games' + 3499: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 3499 + name: + type: string + example: 'Glass Ghost' + 3500: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 3500 + name: + type: string + example: 'Glen Bredon' + 3501: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 3501 + name: + type: string + example: 'Global' + 3502: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 3502 + name: + type: string + example: 'Global A Entertainment' + 3504: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 3504 + name: + type: string + example: 'Global Corporation Tokyo' + 3505: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 3505 + name: + type: string + example: 'Global Software' + 3506: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 3506 + name: + type: string + example: 'Global Star Software' + 3508: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 3508 + name: + type: string + example: 'Gloomywood' + 3509: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 3509 + name: + type: string + example: 'Glowforth' + 3510: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 3510 + name: + type: string + example: 'Glu' + 3511: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 3511 + name: + type: string + example: 'Glu Mobile Inc.' + 3513: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 3513 + name: + type: string + example: 'Gluk' + 3514: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 3514 + name: + type: string + example: 'GlyphX Games' + 3516: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 3516 + name: + type: string + example: 'GM Shoji' + 3517: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 3517 + name: + type: string + example: 'gnifrebel Games UG' + 3518: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 3518 + name: + type: string + example: 'Go!' + 3519: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 3519 + name: + type: string + example: 'Goblinz Studio' + 3520: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 3520 + name: + type: string + example: 'GOD Games' + 3521: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 3521 + name: + type: string + example: 'Gogii Games' + 3522: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 3522 + name: + type: string + example: 'Gogii Games, World-Loom' + 3523: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 3523 + name: + type: string + example: 'Going Loud Studios' + 3524: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 3524 + name: + type: string + example: 'Golden Goblins' + 3525: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 3525 + name: + type: string + example: 'Golden Sector' + 3526: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 3526 + name: + type: string + example: 'GoldenTricycle' + 3527: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 3527 + name: + type: string + example: 'Goldhawk Interactive' + 3528: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 3528 + name: + type: string + example: 'GolemLabs' + 3529: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 3529 + name: + type: string + example: 'Golgoth Studio' + 3530: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 3530 + name: + type: string + example: 'Goliath' + 3531: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 3531 + name: + type: string + example: 'Goliath Games' + 3532: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 3532 + name: + type: string + example: 'Goliath Video System' + 3533: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 3533 + name: + type: string + example: 'Gone North Games' + 3534: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 3534 + name: + type: string + example: 'GOO!' + 3535: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 3535 + name: + type: string + example: 'Good Deal Games' + 3536: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 3536 + name: + type: string + example: 'Good Feel' + 3541: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 3541 + name: + type: string + example: 'Good Game' + 3537: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 3537 + name: + type: string + example: 'Good Game & OXON game studio' + 3538: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 3538 + name: + type: string + example: 'Good Games LLC.' + 3539: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 3539 + name: + type: string + example: 'Good Science Studio' + 3542: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 3542 + name: + type: string + example: 'Goodhustle Studios, Inc.' + 3543: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 3543 + name: + type: string + example: 'Gorilla' + 3544: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 3544 + name: + type: string + example: 'Gorilla Games' + 3545: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 3545 + name: + type: string + example: 'Gorilla Systems Corporation' + 3548: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 3548 + name: + type: string + example: 'Goshow' + 3549: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 3549 + name: + type: string + example: 'Got Game Entertainment' + 3550: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 3550 + name: + type: string + example: 'Gottlieb' + 3551: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 3551 + name: + type: string + example: 'Gra' + 3552: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 3552 + name: + type: string + example: 'Grab, LLC' + 3553: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 3553 + name: + type: string + example: 'Gradiente' + 3554: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 3554 + name: + type: string + example: 'Gradual Games' + 3555: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 3555 + name: + type: string + example: 'Graffiti' + 3556: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 3556 + name: + type: string + example: 'Graffiti Entertainment' + 3557: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 3557 + name: + type: string + example: 'Graftgold Ltd.' + 3560: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 3560 + name: + type: string + example: 'Graham Axten' + 10182: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 10182 + name: + type: string + example: 'Graham Lilley' + 3561: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 3561 + name: + type: string + example: 'Granada' + 3562: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 3562 + name: + type: string + example: 'Grand Prix Games' + 3563: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 3563 + name: + type: string + example: 'Grand Products' + 3564: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 3564 + name: + type: string + example: 'Grandprix Inc.' + 3565: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 3565 + name: + type: string + example: 'Grandslam' + 3566: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 3566 + name: + type: string + example: 'Grandslam Entertainments' + 3567: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 3567 + name: + type: string + example: 'Grandslam Video' + 3568: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 3568 + name: + type: string + example: 'Grandy' + 3569: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 3569 + name: + type: string + example: 'Granite Bay Software' + 3570: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 3570 + name: + type: string + example: 'Grant Ojanen''s Creations' + 3571: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 3571 + name: + type: string + example: 'Granzella Inc.' + 415: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 415 + name: + type: string + example: 'Graphic Research Co., Ltd.' + 3573: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 3573 + name: + type: string + example: 'Graphic Simulations' + 3574: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 3574 + name: + type: string + example: 'Graphic State' + 3575: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 3575 + name: + type: string + example: 'Graphic Techno' + 3576: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 3576 + name: + type: string + example: 'Graphicfinal Ltd.' + 3577: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 3577 + name: + type: string + example: 'Grasshopper Manufacture' + 9998: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 9998 + name: + type: string + example: 'Grasshopper Manufacture inc.' + 3579: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 3579 + name: + type: string + example: 'Grasshopper Manufacturer' + 3580: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 3580 + name: + type: string + example: 'Gratuitous Games' + 3581: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 3581 + name: + type: string + example: 'Graviteam' + 3582: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 3582 + name: + type: string + example: 'Gravity' + 3583: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 3583 + name: + type: string + example: 'Gravity Corporation' + 3584: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 3584 + name: + type: string + example: 'Gravity-I' + 3586: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 3586 + name: + type: string + example: 'Gray Design Associates' + 3587: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 3587 + name: + type: string + example: 'Gray Matter' + 3589: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 3589 + name: + type: string + example: 'Gray Matter Inc., Imagexcel' + 3590: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 3590 + name: + type: string + example: 'Gray Matter Interactive' + 3592: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 3592 + name: + type: string + example: 'GRC' + 3593: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 3593 + name: + type: string + example: 'Great' + 3594: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 3594 + name: + type: string + example: 'Great War Team' + 3595: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 3595 + name: + type: string + example: 'GREE, INC' + 3596: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 3596 + name: + type: string + example: 'Green' + 3597: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 3597 + name: + type: string + example: 'Green Lava Studios' + 3598: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 3598 + name: + type: string + example: 'Green Sauce Games' + 3599: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 3599 + name: + type: string + example: 'Green Screen Games' + 3600: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 3600 + name: + type: string + example: 'Green Soft' + 3601: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 3601 + name: + type: string + example: 'Green-eyed Taxi' + 3602: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 3602 + name: + type: string + example: 'Greenheart Games' + 3603: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 3603 + name: + type: string + example: 'Greenlight Games' + 3604: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 3604 + name: + type: string + example: 'Greenpig Production' + 3605: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 3605 + name: + type: string + example: 'Greenstreet Games' + 3606: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 3606 + name: + type: string + example: 'Greenwood Entertainment' + 9966: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 9966 + name: + type: string + example: 'Greg A. Holmes' + 3607: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 3607 + name: + type: string + example: 'Greg Follis' + 3608: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 3608 + name: + type: string + example: 'Greg Troutman' + 3609: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 3609 + name: + type: string + example: 'Greg Zumwalt' + 3610: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 3610 + name: + type: string + example: 'Greggy' + 3611: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 3611 + name: + type: string + example: 'Gremlin' + 10115: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 10115 + name: + type: string + example: 'Gremlin Entertainment' + 3612: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 3612 + name: + type: string + example: 'Gremlin Graphics' + 3614: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 3614 + name: + type: string + example: 'Gremlin Graphics Software Limited' + 3615: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 3615 + name: + type: string + example: 'Gremlin Graphics Software Limited, The Warp Factory' + 3613: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 3613 + name: + type: string + example: 'Gremlin Graphics Software Ltd.' + 3618: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 3618 + name: + type: string + example: 'Gremlin Industries, Inc.' + 3620: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 3620 + name: + type: string + example: 'Gremlin Interactive Ltd.' + 3623: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 3623 + name: + type: string + example: 'Gremlin Ireland' + 3625: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 3625 + name: + type: string + example: 'Greve Graphics' + 3627: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 3627 + name: + type: string + example: 'Greyhound Electronics' + 3628: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 3628 + name: + type: string + example: 'Grezzo' + 3629: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 3629 + name: + type: string + example: 'Grimlore Games' + 3630: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 3630 + name: + type: string + example: 'GRIN' + 3632: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 3632 + name: + type: string + example: 'GriN Multimedia' + 3633: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 3633 + name: + type: string + example: 'Grinding Gear Games' + 3634: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 3634 + name: + type: string + example: 'Grip Games' + 3635: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 3635 + name: + type: string + example: 'Griptonite Games' + 3637: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 3637 + name: + type: string + example: 'Groove Box Japan' + 3638: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 3638 + name: + type: string + example: 'Groove Games' + 3639: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 3639 + name: + type: string + example: 'Ground Control Studios' + 3640: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 3640 + name: + type: string + example: 'Ground Shatter' + 10075: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 10075 + name: + type: string + example: 'Grounding' + 3642: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 3642 + name: + type: string + example: 'Group SNE' + 3643: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 3643 + name: + type: string + example: 'Grumpyface Studios' + 3644: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 3644 + name: + type: string + example: 'Grynsoft' + 3645: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 3645 + name: + type: string + example: 'GSC Game World' + 3646: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 3646 + name: + type: string + example: 'GST Video' + 3647: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 3647 + name: + type: string + example: 'GT Interactive' + 3649: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 3649 + name: + type: string + example: 'GTArcade' + 3650: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 3650 + name: + type: string + example: 'GTE' + 3651: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 3651 + name: + type: string + example: 'GTE Entertainment' + 3652: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 3652 + name: + type: string + example: 'GTE Vantage' + 3653: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 3653 + name: + type: string + example: 'gtscom' + 3654: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 3654 + name: + type: string + example: 'Gu Inc' + 3655: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 3655 + name: + type: string + example: 'Guerrilla' + 3656: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 3656 + name: + type: string + example: 'Guerrilla Cambridge' + 3657: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 3657 + name: + type: string + example: 'Guerrilla Games' + 3658: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 3658 + name: + type: string + example: 'Guildford Studios' + 3660: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 3660 + name: + type: string + example: 'Gulti' + 3661: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 3661 + name: + type: string + example: 'Gunfire Games' + 3662: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 3662 + name: + type: string + example: 'Gunfire Games, Vigil Games, THQ Nordic' + 3663: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 3663 + name: + type: string + example: 'GungHo Online Entertainment' + 3665: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 3665 + name: + type: string + example: 'Gunnar Games' + 9956: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 9956 + name: + type: string + example: 'Gunnar Games, Inc.' + 3666: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 3666 + name: + type: string + example: 'Gunstar Studio' + 3667: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 3667 + name: + type: string + example: 'Guru Games' + 3668: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 3668 + name: + type: string + example: 'Gust' + 3669: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 3669 + name: + type: string + example: 'Gust Co. Ltd.' + 3670: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 3670 + name: + type: string + example: 'Gust Co., LTD' + 10039: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 10039 + name: + type: string + example: 'Gusto Games' + 3672: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 3672 + name: + type: string + example: 'Gusto Games Ltd.' + 3674: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 3674 + name: + type: string + example: 'GUTS Department' + 3675: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 3675 + name: + type: string + example: 'GW.' + 3676: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 3676 + name: + type: string + example: 'GXB Interactive' + 3677: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 3677 + name: + type: string + example: 'Gyuzware' + 3678: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 3678 + name: + type: string + example: 'h.a.n.d. Inc.' + 3680: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 3680 + name: + type: string + example: 'H.I. & R.J. Steadman' + 3681: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 3681 + name: + type: string + example: 'H.I.C.' + 3682: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 3682 + name: + type: string + example: 'H2O Interactive' + 3685: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 3685 + name: + type: string + example: 'Hack' + 3686: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 3686 + name: + type: string + example: 'Hacker International' + 3688: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 3688 + name: + type: string + example: 'Haemimont Games AD' + 3690: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 3690 + name: + type: string + example: 'HAG/SJP Productions' + 3691: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 3691 + name: + type: string + example: 'Haggard Games' + 3692: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 3692 + name: + type: string + example: 'Hailstorm Games' + 3693: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 3693 + name: + type: string + example: 'Hakuhodo' + 3694: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 3694 + name: + type: string + example: 'HAL Laboratory' + 3697: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 3697 + name: + type: string + example: 'HAL Laboratory, Inc.' + 10168: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 10168 + name: + type: string + example: 'HAL900' + 3700: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 3700 + name: + type: string + example: 'Halcyon Co.' + 3701: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 3701 + name: + type: string + example: 'Halestorm' + 3702: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 3702 + name: + type: string + example: 'Halfbrick Studios' + 3706: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 3706 + name: + type: string + example: 'Halfbus' + 10076: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 10076 + name: + type: string + example: 'Hamachi' + 3708: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 3708 + name: + type: string + example: 'Hammerfall Publishing' + 3709: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 3709 + name: + type: string + example: 'HammerHead, Ltd.' + 3711: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 3711 + name: + type: string + example: 'Hammond & Leyland' + 3712: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 3712 + name: + type: string + example: 'Hamster Co.' + 3713: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 3713 + name: + type: string + example: 'Hanako Games' + 3715: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 3715 + name: + type: string + example: 'Hanbit Soft' + 3716: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 3716 + name: + type: string + example: 'Hand' + 3717: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 3717 + name: + type: string + example: 'Hand Made Software' + 3718: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 3718 + name: + type: string + example: 'HandCircus' + 3719: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 3719 + name: + type: string + example: 'Handelabra Games' + 3720: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 3720 + name: + type: string + example: 'Handheld Games' + 3722: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 3722 + name: + type: string + example: 'HandMade Games' + 3724: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 3724 + name: + type: string + example: 'Handy-Games' + 3725: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 3725 + name: + type: string + example: 'HandyGames' + 3726: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 3726 + name: + type: string + example: 'Hangar 13' + 3727: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 3727 + name: + type: string + example: 'hannenz, Crossbow of Crest (graphics), Scorp.ius (graphics), Ninja (bugfix)' + 3728: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 3728 + name: + type: string + example: 'Hans-Kristian Arntzen "Themaister"' + 3729: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 3729 + name: + type: string + example: 'Hapa Games' + 3730: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 3730 + name: + type: string + example: 'Happy Happening' + 3731: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 3731 + name: + type: string + example: 'Happy-Smile' + 3732: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 3732 + name: + type: string + example: 'Happysoft' + 3733: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 3733 + name: + type: string + example: 'HARD' + 3734: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 3734 + name: + type: string + example: 'Hardline Studios' + 3735: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 3735 + name: + type: string + example: 'Harebrained Schemes' + 3736: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 3736 + name: + type: string + example: 'Harebrained Schemes LLC' + 3737: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 3737 + name: + type: string + example: 'Harlequin' + 3738: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 3738 + name: + type: string + example: 'HarmlessLion' + 3739: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 3739 + name: + type: string + example: 'Harmonix Music Systems' + 3741: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 3741 + name: + type: string + example: 'Haroldo Pinheiro' + 3742: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 3742 + name: + type: string + example: 'Harry Dodgson' + 3743: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 3743 + name: + type: string + example: 'Haruneko Entertainment' + 3744: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 3744 + name: + type: string + example: 'Harvester Games' + 3745: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 3745 + name: + type: string + example: 'Hasbro Interactive' + 3747: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 3747 + name: + type: string + example: 'Hashbang Games' + 3748: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 3748 + name: + type: string + example: 'Hashstash' + 3749: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 3749 + name: + type: string + example: 'Hassey Enterprises, Inc.' + 3751: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 3751 + name: + type: string + example: 'Hato Moa' + 3752: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 3752 + name: + type: string + example: 'Haus Tekknika' + 3753: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 3753 + name: + type: string + example: 'Havok' + 9913: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 9913 + name: + type: string + example: 'Hawken Entertainment, Inc.' + 3754: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 3754 + name: + type: string + example: 'Hazardous Software, Inc.' + 3755: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 3755 + name: + type: string + example: 'Hazelight Studios' + 3756: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 3756 + name: + type: string + example: 'HB Studios' + 10185: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 10185 + name: + type: string + example: 'HD Interactive' + 3758: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 3758 + name: + type: string + example: 'HE SAW' + 3759: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 3759 + name: + type: string + example: 'He-Saw' + 3761: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 3761 + name: + type: string + example: 'Headfirst Productions' + 3762: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 3762 + name: + type: string + example: 'Headgames' + 3764: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 3764 + name: + type: string + example: 'Headgate Studios' + 3766: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 3766 + name: + type: string + example: 'Headlock' + 3767: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 3767 + name: + type: string + example: 'Headroom' + 3769: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 3769 + name: + type: string + example: 'Headstrong Games' + 3770: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 3770 + name: + type: string + example: 'Headup Games' + 3772: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 3772 + name: + type: string + example: 'Heart Beat' + 3773: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 3773 + name: + type: string + example: 'Heart Denshi' + 3774: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 3774 + name: + type: string + example: 'Heart Machine' + 3775: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 3775 + name: + type: string + example: 'Heart Soft' + 3776: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 3776 + name: + type: string + example: 'HeartBit Interactive' + 3777: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 3777 + name: + type: string + example: 'Hearty Robin' + 3778: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 3778 + name: + type: string + example: 'Heavy Iron Studios' + 3781: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 3781 + name: + type: string + example: 'Heavy Spectrum' + 3782: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 3782 + name: + type: string + example: 'Hect' + 3784: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 3784 + name: + type: string + example: 'Heineke & Finger' + 3785: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 3785 + name: + type: string + example: 'Helbent Studios' + 3786: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 3786 + name: + type: string + example: 'Heliotrope Studios' + 3787: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 3787 + name: + type: string + example: 'Helium Interactive LLC' + 3788: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 3788 + name: + type: string + example: 'Helixe' + 3789: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 3789 + name: + type: string + example: 'Hellbent Games' + 3790: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 3790 + name: + type: string + example: 'Hello Games' + 3791: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 3791 + name: + type: string + example: 'Hello There AB' + 3792: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 3792 + name: + type: string + example: 'Hemisphere Games' + 3793: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 3793 + name: + type: string + example: 'Henrique Moreira' + 3794: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 3794 + name: + type: string + example: 'Her Interactive' + 3795: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 3795 + name: + type: string + example: 'HermitWorks Entertainment' + 3796: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 3796 + name: + type: string + example: 'HeroCraft' + 3797: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 3797 + name: + type: string + example: 'HeroCraft Krasnodar' + 3798: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 3798 + name: + type: string + example: 'HEROZ' + 3799: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 3799 + name: + type: string + example: 'Hertz' + 3800: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 3800 + name: + type: string + example: 'HES' + 3801: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 3801 + name: + type: string + example: 'HES Games' + 3802: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 3802 + name: + type: string + example: 'HES Interactive' + 3803: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 3803 + name: + type: string + example: 'Heuristic Park' + 3804: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 3804 + name: + type: string + example: 'Hewson Consultants Ltd.' + 3808: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 3808 + name: + type: string + example: 'Hewson Consulting' + 3809: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 3809 + name: + type: string + example: 'Hexa Drive' + 3810: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 3810 + name: + type: string + example: 'HexaDrive' + 3811: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 3811 + name: + type: string + example: 'Hexage' + 3812: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 3812 + name: + type: string + example: 'Hexdragonal Games' + 3813: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 3813 + name: + type: string + example: 'Hi Corp' + 3814: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 3814 + name: + type: string + example: 'Hi Tech' + 3815: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 3815 + name: + type: string + example: 'Hi-Max Technologies' + 3816: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 3816 + name: + type: string + example: 'Hi-Rez Studios' + 3817: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 3817 + name: + type: string + example: 'Hi-Score' + 3818: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 3818 + name: + type: string + example: 'Hi-Soft' + 3819: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 3819 + name: + type: string + example: 'Hi-Tech' + 3820: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 3820 + name: + type: string + example: 'Hi-Tech Expressions' + 3821: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 3821 + name: + type: string + example: 'Hi-Tech Expressions, Inc.' + 3822: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 3822 + name: + type: string + example: 'HiCom' + 10081: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 10081 + name: + type: string + example: 'HID' + 3824: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 3824 + name: + type: string + example: 'Hidden City' + 3825: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 3825 + name: + type: string + example: 'Hidden Floor' + 3826: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 3826 + name: + type: string + example: 'Hidden Path Entertainment' + 3828: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 3828 + name: + type: string + example: 'HideA' + 3829: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 3829 + name: + type: string + example: 'High Impact Games' + 3830: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 3830 + name: + type: string + example: 'High Impact Games, Ready at Dawn' + 3831: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 3831 + name: + type: string + example: 'High Level Challenge' + 3832: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 3832 + name: + type: string + example: 'High Moon Studios' + 3834: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 3834 + name: + type: string + example: 'High Score' + 3835: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 3835 + name: + type: string + example: 'High Score Productions' + 3836: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 3836 + name: + type: string + example: 'High Tech' + 10082: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 10082 + name: + type: string + example: 'High Voltage Software' + 3837: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 3837 + name: + type: string + example: 'High Voltage Software, Inc.' + 3842: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 3842 + name: + type: string + example: 'High-Tech Lab Japan' + 3843: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 3843 + name: + type: string + example: 'Hightech Studio' + 3844: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 3844 + name: + type: string + example: 'Highway 1 Productions' + 3845: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 3845 + name: + type: string + example: 'Highwaystar' + 3846: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 3846 + name: + type: string + example: 'Hijinx Studios' + 3847: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 3847 + name: + type: string + example: 'Hiker Games' + 3848: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 3848 + name: + type: string + example: 'Hinocyber' + 3849: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 3849 + name: + type: string + example: 'Hinterland Studio Inc.' + 3851: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 3851 + name: + type: string + example: 'Hip Games' + 3852: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 3852 + name: + type: string + example: 'Hip Interactive' + 3853: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 3853 + name: + type: string + example: 'Hipnotic Interactive' + 3854: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 3854 + name: + type: string + example: 'HippieGame' + 3855: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 3855 + name: + type: string + example: 'HipSoft' + 3856: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 3856 + name: + type: string + example: 'Hipster Whale' + 3857: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 3857 + name: + type: string + example: 'Hiro' + 3858: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 3858 + name: + type: string + example: 'Hirographics' + 3859: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 3859 + name: + type: string + example: 'Hit Bit' + 3860: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 3860 + name: + type: string + example: 'Hit Maker' + 3862: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 3862 + name: + type: string + example: 'Hit Pak' + 3863: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 3863 + name: + type: string + example: 'Hit-Point Co.,Ltd.' + 3864: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 3864 + name: + type: string + example: 'Hitbox Team' + 3865: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 3865 + name: + type: string + example: 'Hitcents' + 3866: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 3866 + name: + type: string + example: 'Hitmaker' + 3867: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 3867 + name: + type: string + example: 'Hitmen Productions' + 3869: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 3869 + name: + type: string + example: 'Hoei' + 3870: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 3870 + name: + type: string + example: 'Hokus Pokus' + 10083: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 10083 + name: + type: string + example: 'Holden Boyles' + 3873: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 3873 + name: + type: string + example: 'Holistic Design' + 3874: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 3874 + name: + type: string + example: 'Holocronet' + 3875: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 3875 + name: + type: string + example: 'Holy Priest' + 10085: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 10085 + name: + type: string + example: 'Holy Warp' + 3877: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 3877 + name: + type: string + example: 'Home Data' + 3878: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 3878 + name: + type: string + example: 'Home Net Games' + 3879: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 3879 + name: + type: string + example: 'Home Vision' + 3881: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 3881 + name: + type: string + example: 'HomeGrown' + 3883: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 3883 + name: + type: string + example: 'Honeyslug' + 3884: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 3884 + name: + type: string + example: 'Honeyslug Ltd' + 3885: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 3885 + name: + type: string + example: 'Hong Chan' + 10318: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 10318 + name: + type: string + example: 'Hookstone' + 3886: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 3886 + name: + type: string + example: 'Hookstone Ltd.' + 3889: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 3889 + name: + type: string + example: 'Hoplite Research' + 3891: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 3891 + name: + type: string + example: 'Hopoo Games' + 3893: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 3893 + name: + type: string + example: 'Horberg Productions' + 3894: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 3894 + name: + type: string + example: 'Horisoft' + 3895: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 3895 + name: + type: string + example: 'Horizon''s End, Inc.' + 3896: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 3896 + name: + type: string + example: 'Horrorsoft' + 3899: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 3899 + name: + type: string + example: 'Hot Lava Games' + 3901: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 3901 + name: + type: string + example: 'Hot Shot' + 3898: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 3898 + name: + type: string + example: 'Hot-B' + 10063: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 10063 + name: + type: string + example: 'HOT-B' + 3903: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 3903 + name: + type: string + example: 'Hot-B Co.' + 3905: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 3905 + name: + type: string + example: 'HotGen Studios' + 3907: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 3907 + name: + type: string + example: 'Hothead Games' + 3908: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 3908 + name: + type: string + example: 'Hothouse Creations' + 3909: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 3909 + name: + type: string + example: 'HotPengu' + 10089: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 10089 + name: + type: string + example: 'House Marque' + 3911: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 3911 + name: + type: string + example: 'House of Tales' + 3912: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 3912 + name: + type: string + example: 'House On Fire' + 3913: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 3913 + name: + type: string + example: 'Household Games Inc.' + 3914: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 3914 + name: + type: string + example: 'Housemarque' + 3915: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 3915 + name: + type: string + example: 'Hozer Video Games' + 3917: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 3917 + name: + type: string + example: 'Hs Action Game' + 3921: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 3921 + name: + type: string + example: 'Hucast Games' + 10093: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 10093 + name: + type: string + example: 'Hudson' + 3923: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 3923 + name: + type: string + example: 'Hudson Entertainment, Inc.' + 10144: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 10144 + name: + type: string + example: 'Hudson Soft' + 3936: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 3936 + name: + type: string + example: 'Hudson, Sonic Team' + 3938: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 3938 + name: + type: string + example: 'Humagade' + 3939: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 3939 + name: + type: string + example: 'Human' + 3940: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 3940 + name: + type: string + example: 'Human Club' + 3941: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 3941 + name: + type: string + example: 'Human Code, Inc.' + 3942: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 3942 + name: + type: string + example: 'Human Creative' + 3943: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 3943 + name: + type: string + example: 'Human Entertainment, Inc.' + 3946: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 3946 + name: + type: string + example: 'Human Head Studios' + 3947: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 3947 + name: + type: string + example: 'Human Soft' + 3949: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 3949 + name: + type: string + example: 'HumaNature Studios' + 3951: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 3951 + name: + type: string + example: 'Humble Bundle' + 3952: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 3952 + name: + type: string + example: 'Humble Hearts' + 3953: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 3953 + name: + type: string + example: 'Hummer Team' + 3954: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 3954 + name: + type: string + example: 'Humming Bird Soft' + 3957: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 3957 + name: + type: string + example: 'Humongous Entertainment' + 3962: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 3962 + name: + type: string + example: 'HuneX' + 3964: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 3964 + name: + type: string + example: 'HuniePot' + 3965: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 3965 + name: + type: string + example: 'Hunter Studio' + 3966: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 3966 + name: + type: string + example: 'Huracan Studio' + 3967: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 3967 + name: + type: string + example: 'Huy Phan' + 3968: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 3968 + name: + type: string + example: 'Hwang Shinwei' + 3969: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 3969 + name: + type: string + example: 'Hyde' + 3970: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 3970 + name: + type: string + example: 'Hydravision Entertainment' + 3972: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 3972 + name: + type: string + example: 'Hyper Hippo' + 3973: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 3973 + name: + type: string + example: 'Hyper Hippo Games' + 3974: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 3974 + name: + type: string + example: 'Hyper-Devbox' + 3975: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 3975 + name: + type: string + example: 'HyperBole Studios' + 3977: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 3977 + name: + type: string + example: 'Hyperion Studios' + 3978: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 3978 + name: + type: string + example: 'Hypersloth' + 3979: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 3979 + name: + type: string + example: 'Hyperspace Cowgirls' + 3980: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 3980 + name: + type: string + example: 'Hyperware' + 3981: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 3981 + name: + type: string + example: 'Hypnos Entertainment' + 3983: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 3983 + name: + type: string + example: 'Hypnotix' + 3984: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 3984 + name: + type: string + example: 'Hypnotix, Buzz Monkey Software' + 3985: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 3985 + name: + type: string + example: 'Hyunmin Ryu' + 3988: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 3988 + name: + type: string + example: 'I-deal Games' + 3989: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 3989 + name: + type: string + example: 'I-Illusions' + 3990: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 3990 + name: + type: string + example: 'I-Imagine' + 10100: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 10100 + name: + type: string + example: 'I-Mockery' + 3992: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 3992 + name: + type: string + example: 'I.C.E.' + 3994: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 3994 + name: + type: string + example: 'I.G.S.' + 3995: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 3995 + name: + type: string + example: 'I.M.R. Technology' + 3996: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 3996 + name: + type: string + example: 'I.S.C.' + 3997: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 3997 + name: + type: string + example: 'I.T.L' + 3986: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 3986 + name: + type: string + example: 'I''Max' + 3998: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 3998 + name: + type: string + example: 'I/O Product' + 10103: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 10103 + name: + type: string + example: 'I2G' + 4000: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 4000 + name: + type: string + example: 'I4' + 10006: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 10006 + name: + type: string + example: 'Ian Bell' + 10104: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 10104 + name: + type: string + example: 'Ian Beynon' + 4002: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 4002 + name: + type: string + example: 'Ian Cambell' + 4003: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 4003 + name: + type: string + example: 'Ian Coombe + Caroline Coombe' + 4004: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 4004 + name: + type: string + example: 'Ian Davison' + 10234: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 10234 + name: + type: string + example: 'Ian Ellery' + 4005: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 4005 + name: + type: string + example: 'Ian Eveleigh' + 4006: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 4006 + name: + type: string + example: 'Ian Foster' + 4007: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 4007 + name: + type: string + example: 'Ian Gray' + 4008: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 4008 + name: + type: string + example: 'Ian Isaro' + 10107: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 10107 + name: + type: string + example: 'Ian MacLarty' + 4010: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 4010 + name: + type: string + example: 'Ian Snyder' + 10109: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 10109 + name: + type: string + example: 'Ian Weatherburn' + 4012: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 4012 + name: + type: string + example: 'Ian Wright' + 4013: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 4013 + name: + type: string + example: 'Iber Soft' + 4014: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 4014 + name: + type: string + example: 'Icarus' + 4015: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 4015 + name: + type: string + example: 'Icarus Studios' + 4017: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 4017 + name: + type: string + example: 'ICDI' + 4018: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 4018 + name: + type: string + example: 'ICE' + 4019: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 4019 + name: + type: string + example: 'Ice Man' + 4020: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 4020 + name: + type: string + example: 'Ice-pick Lodge' + 4021: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 4021 + name: + type: string + example: 'ICL' + 4022: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 4022 + name: + type: string + example: 'ICM' + 4023: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 4023 + name: + type: string + example: 'ICOM Simulations, Inc.' + 4026: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 4026 + name: + type: string + example: 'Icon Design Ltd' + 4028: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 4028 + name: + type: string + example: 'Icon Games' + 4030: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 4030 + name: + type: string + example: 'IContact' + 4031: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 4031 + name: + type: string + example: 'ICS' + 3993: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 3993 + name: + type: string + example: 'id Software' + 4036: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 4036 + name: + type: string + example: 'Idea' + 4037: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 4037 + name: + type: string + example: 'Idea Factory' + 4042: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 4042 + name: + type: string + example: 'Idea-Tek' + 4043: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 4043 + name: + type: string + example: 'Ideas Pad Limited' + 4045: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 4045 + name: + type: string + example: 'Idigicon' + 4046: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 4046 + name: + type: string + example: 'Idol FX' + 4047: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 4047 + name: + type: string + example: 'Idol Minds' + 10113: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 10113 + name: + type: string + example: 'Idol Minds Digital Entertainment' + 4050: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 4050 + name: + type: string + example: 'IDSA' + 4051: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 4051 + name: + type: string + example: 'IDSI' + 4053: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 4053 + name: + type: string + example: 'iFun4all' + 4054: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 4054 + name: + type: string + example: 'iFun4All S.A.' + 4055: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 4055 + name: + type: string + example: 'Igelsoft' + 4056: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 4056 + name: + type: string + example: 'IGG' + 4057: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 4057 + name: + type: string + example: 'Ignition' + 4058: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 4058 + name: + type: string + example: 'Ignition Banbury' + 4059: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 4059 + name: + type: string + example: 'Ignition Entertainment' + 4062: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 4062 + name: + type: string + example: 'Ignition Tokyo' + 4063: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 4063 + name: + type: string + example: 'IGS' + 4064: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 4064 + name: + type: string + example: 'IGS (Taiwan)' + 4065: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 4065 + name: + type: string + example: 'Iguana Entertainment' + 4069: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 4069 + name: + type: string + example: 'IJE Inc' + 4070: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 4070 + name: + type: string + example: 'IJK Software' + 4071: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 4071 + name: + type: string + example: 'Ikarion' + 4072: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 4072 + name: + type: string + example: 'Ikegami Tsushinki' + 4073: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 4073 + name: + type: string + example: 'IKIGames' + 4074: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 4074 + name: + type: string + example: 'Iliad' + 4075: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 4075 + name: + type: string + example: 'Illfonic' + 4076: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 4076 + name: + type: string + example: 'Illus Seed Games' + 4077: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 4077 + name: + type: string + example: 'Illusion Software' + 4078: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 4078 + name: + type: string + example: 'Illusion Softworks' + 4080: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 4080 + name: + type: string + example: 'Illusions Gaming Company' + 4081: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 4081 + name: + type: string + example: 'Ilmfinity' + 4082: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 4082 + name: + type: string + example: 'Image' + 4086: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 4086 + name: + type: string + example: 'Image & Form' + 4083: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 4083 + name: + type: string + example: 'Image & Form' + 4084: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 4084 + name: + type: string + example: 'Image & Form Games' + 4085: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 4085 + name: + type: string + example: 'Image & Form International AB' + 4088: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 4088 + name: + type: string + example: 'Image Space Incorporated' + 4089: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 4089 + name: + type: string + example: 'Image Works' + 10003: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 10003 + name: + type: string + example: 'ImageBuilder' + 4090: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 4090 + name: + type: string + example: 'ImageBuilder Software' + 4087: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 4087 + name: + type: string + example: 'Imageepoch' + 4092: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 4092 + name: + type: string + example: 'Imageer' + 10078: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 10078 + name: + type: string + example: 'Images Design' + 4094: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 4094 + name: + type: string + example: 'Images Software Ltd.' + 4096: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 4096 + name: + type: string + example: 'Imagesoft' + 4097: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 4097 + name: + type: string + example: 'Imageworks (Japan)' + 4098: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 4098 + name: + type: string + example: 'Imagexcel' + 4099: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 4099 + name: + type: string + example: 'Imagic' + 9994: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 9994 + name: + type: string + example: 'Imagica Digitalscape Co., Ltd.' + 4100: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 4100 + name: + type: string + example: 'Imaginati' + 4101: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 4101 + name: + type: string + example: 'Imagine' + 4103: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 4103 + name: + type: string + example: 'Imagine Software' + 4093: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 4093 + name: + type: string + example: 'Imagineer' + 4107: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 4107 + name: + type: string + example: 'Imagineering Inc.' + 4102: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 4102 + name: + type: string + example: 'ImaginEngine Corp.' + 4116: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 4116 + name: + type: string + example: 'Imagitec Design Inc' + 4114: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 4114 + name: + type: string + example: 'Imagitec Design Inc.' + 4119: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 4119 + name: + type: string + example: 'Imangi Studios' + 4120: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 4120 + name: + type: string + example: 'IMax' + 4121: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 4121 + name: + type: string + example: 'IMC Games' + 4122: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 4122 + name: + type: string + example: 'IMGN.PRO' + 4123: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 4123 + name: + type: string + example: 'Immersive Games' + 4124: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 4124 + name: + type: string + example: 'Imotion' + 4125: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 4125 + name: + type: string + example: 'Impact' + 4126: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 4126 + name: + type: string + example: 'Impact Software Development, Ltd.' + 4127: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 4127 + name: + type: string + example: 'Imperial Software Designs' + 4129: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 4129 + name: + type: string + example: 'Impressions' + 4130: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 4130 + name: + type: string + example: 'Impressions Games' + 4131: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 4131 + name: + type: string + example: 'Impressionware' + 4132: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 4132 + name: + type: string + example: 'Impromptu Games' + 4133: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 4133 + name: + type: string + example: 'Impulse Games' + 4134: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 4134 + name: + type: string + example: 'In Chang Electronic' + 4135: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 4135 + name: + type: string + example: 'In Utero' + 4136: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 4136 + name: + type: string + example: 'In Vitro Games' + 4137: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 4137 + name: + type: string + example: 'In2Games' + 4138: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 4138 + name: + type: string + example: 'Inaccurate Interactive' + 4139: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 4139 + name: + type: string + example: 'Incandescent Imaging' + 4140: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 4140 + name: + type: string + example: 'Incentive Software Ltd.' + 4143: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 4143 + name: + type: string + example: 'Incinerator Games' + 10114: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 10114 + name: + type: string + example: 'Incinerator Studios' + 4146: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 4146 + name: + type: string + example: 'Incog Inc. Entertainment' + 4147: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 4147 + name: + type: string + example: 'Incognito' + 4148: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 4148 + name: + type: string + example: 'Incognito Entertainment' + 4150: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 4150 + name: + type: string + example: 'Incognito Inc.' + 10279: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 10279 + name: + type: string + example: 'Incredible Technologies' + 4151: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 4151 + name: + type: string + example: 'Incredible Technologies, Inc.' + 4153: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 4153 + name: + type: string + example: 'increpare' + 4154: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 4154 + name: + type: string + example: 'increpare games' + 4155: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 4155 + name: + type: string + example: 'Independent Arts Software' + 4157: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 4157 + name: + type: string + example: 'Indescomp' + 4158: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 4158 + name: + type: string + example: 'index+' + 4159: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 4159 + name: + type: string + example: 'Indi' + 4160: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 4160 + name: + type: string + example: 'indi software' + 4161: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 4161 + name: + type: string + example: 'Indie Built' + 4162: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 4162 + name: + type: string + example: 'Indies Soft' + 4163: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 4163 + name: + type: string + example: 'Indies Zero' + 4166: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 4166 + name: + type: string + example: 'Inevitable Entertainment' + 4168: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 4168 + name: + type: string + example: 'Infamous Adventures' + 4169: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 4169 + name: + type: string + example: 'INFERIOR' + 4170: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 4170 + name: + type: string + example: 'Infernal Byte Systems' + 4171: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 4171 + name: + type: string + example: 'Inferno Games' + 4172: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 4172 + name: + type: string + example: 'infidelity' + 4173: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 4173 + name: + type: string + example: 'Infinigon' + 4174: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 4174 + name: + type: string + example: 'Infinite Dreams' + 4175: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 4175 + name: + type: string + example: 'Infinite Dreams Inc' + 4176: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 4176 + name: + type: string + example: 'Infinite Fall' + 4177: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 4177 + name: + type: string + example: 'Infinite Interactive' + 4178: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 4178 + name: + type: string + example: 'Infinite Laser Dog' + 4179: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 4179 + name: + type: string + example: 'Infinite Machine' + 4180: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 4180 + name: + type: string + example: 'Infinite Madaa' + 4181: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 4181 + name: + type: string + example: 'Infinite Monkeys Entertainment Ltd.' + 4182: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 4182 + name: + type: string + example: 'Infinite State Games' + 4183: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 4183 + name: + type: string + example: 'Infinite Ventures' + 4184: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 4184 + name: + type: string + example: 'Infinite Warfare' + 4185: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 4185 + name: + type: string + example: 'Infinity' + 4186: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 4186 + name: + type: string + example: 'Infinity Vector Ltd' + 4187: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 4187 + name: + type: string + example: 'Infinity Ward' + 4188: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 4188 + name: + type: string + example: 'Infinity Ward & Sledgehammer Games' + 4190: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 4190 + name: + type: string + example: 'Inflexion Development' + 4191: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 4191 + name: + type: string + example: 'InflexionDevelopment' + 4192: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 4192 + name: + type: string + example: 'Infocom' + 4194: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 4194 + name: + type: string + example: 'Infogrames' + 4195: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 4195 + name: + type: string + example: 'Infogrames Europe SA' + 4197: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 4197 + name: + type: string + example: 'Infogrames Melbourne' + 4198: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 4198 + name: + type: string + example: 'Infogrames North America' + 4199: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 4199 + name: + type: string + example: 'Infogrames Sheffield House' + 4201: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 4201 + name: + type: string + example: 'Infogrames Studios Limited' + 4204: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 4204 + name: + type: string + example: 'Information Global Services, Inc.' + 4205: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 4205 + name: + type: string + example: 'INGAME' + 10142: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 10142 + name: + type: string + example: 'iNiS' + 4206: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 4206 + name: + type: string + example: 'iNiS corporation' + 4209: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 4209 + name: + type: string + example: 'Ink Stains Games' + 4210: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 4210 + name: + type: string + example: 'inkle Ltd' + 4211: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 4211 + name: + type: string + example: 'Inland Productions' + 4213: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 4213 + name: + type: string + example: 'InLight Entertainment' + 4214: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 4214 + name: + type: string + example: 'Inner Circle Creations' + 4215: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 4215 + name: + type: string + example: 'Innerloop' + 4216: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 4216 + name: + type: string + example: 'Innerprise' + 4217: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 4217 + name: + type: string + example: 'Innocent Grey' + 4218: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 4218 + name: + type: string + example: 'InnoGames' + 4219: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 4219 + name: + type: string + example: 'Innovation' + 4220: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 4220 + name: + type: string + example: 'Innovation Tech' + 4222: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 4222 + name: + type: string + example: 'Ino-Co Plus' + 4223: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 4223 + name: + type: string + example: 'Inochi Project' + 4224: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 4224 + name: + type: string + example: 'iNPLAS' + 4225: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 4225 + name: + type: string + example: 'Inplay Interactive' + 4226: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 4226 + name: + type: string + example: 'Inputwish' + 4227: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 4227 + name: + type: string + example: 'Insane Code' + 4228: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 4228 + name: + type: string + example: 'Insect' + 4229: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 4229 + name: + type: string + example: 'InsGames' + 4230: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 4230 + name: + type: string + example: 'Inside System' + 4232: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 4232 + name: + type: string + example: 'Insomniac Games' + 4233: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 4233 + name: + type: string + example: 'Instinct Design' + 10286: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 10286 + name: + type: string + example: 'Instinct Games' + 10116: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 10116 + name: + type: string + example: 'Institute for Creative Technologies' + 4237: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 4237 + name: + type: string + example: 'Insurgency Team' + 4238: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 4238 + name: + type: string + example: 'INTEC' + 4239: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 4239 + name: + type: string + example: 'intelek' + 4240: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 4240 + name: + type: string + example: 'IntelliCreations, Inc.' + 4241: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 4241 + name: + type: string + example: 'IntelliCreations, Inc., Pacific Softech Inc.' + 4242: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 4242 + name: + type: string + example: 'Intelligent Design' + 4243: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 4243 + name: + type: string + example: 'Intelligent Design Ltd.' + 4244: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 4244 + name: + type: string + example: 'Intelligent Games, Ltd.' + 4247: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 4247 + name: + type: string + example: 'Intelligent Software' + 10202: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 10202 + name: + type: string + example: 'Intelligent Systems' + 4248: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 4248 + name: + type: string + example: 'Intelligent Systems Co., Ltd.' + 4251: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 4251 + name: + type: string + example: 'Intellimedia Sports' + 4252: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 4252 + name: + type: string + example: 'Intellisoft, Inc.' + 4253: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 4253 + name: + type: string + example: 'INTENSE' + 4254: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 4254 + name: + type: string + example: 'Inter State' + 4255: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 4255 + name: + type: string + example: 'Interabang Entertainment' + 4256: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 4256 + name: + type: string + example: 'Interactive Binary Illusions' + 4257: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 4257 + name: + type: string + example: 'Interactive Brains' + 4258: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 4258 + name: + type: string + example: 'Interactive Designs' + 4259: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 4259 + name: + type: string + example: 'Interactive Entertainment' + 4261: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 4261 + name: + type: string + example: 'Interactive Fantastic Fiction' + 4262: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 4262 + name: + type: string + example: 'Interactive Imagination' + 4263: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 4263 + name: + type: string + example: 'Interactive Strip' + 4264: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 4264 + name: + type: string + example: 'Interactive Studios' + 4265: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 4265 + name: + type: string + example: 'Interactive Studios Ltd.' + 4266: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 4266 + name: + type: string + example: 'Interactive Television Entertainment' + 4267: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 4267 + name: + type: string + example: 'InterActive Vision Games' + 4269: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 4269 + name: + type: string + example: 'Interbec' + 4270: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 4270 + name: + type: string + example: 'Interbellum Team' + 4271: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 4271 + name: + type: string + example: 'Interceptor Entertainment' + 4272: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 4272 + name: + type: string + example: 'Interceptor Micros' + 4273: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 4273 + name: + type: string + example: 'Interceptor Software' + 4274: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 4274 + name: + type: string + example: 'Interchannel' + 4275: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 4275 + name: + type: string + example: 'Interdimensional Games Inc' + 4276: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 4276 + name: + type: string + example: 'Interdimensional Games Inc.' + 4277: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 4277 + name: + type: string + example: 'Intergalactic Development' + 4278: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 4278 + name: + type: string + example: 'Intergrow' + 4279: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 4279 + name: + type: string + example: 'Interlink' + 4280: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 4280 + name: + type: string + example: 'INTERMARUM' + 4281: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 4281 + name: + type: string + example: 'International Computer Entertainment' + 4282: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 4282 + name: + type: string + example: 'International Games System' + 10124: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 10124 + name: + type: string + example: 'International Software Development' + 4284: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 4284 + name: + type: string + example: 'Interphase Technologies Inc.' + 4287: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 4287 + name: + type: string + example: 'Interplay Entertainment Corp.' + 4293: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 4293 + name: + type: string + example: 'InterServ International' + 4294: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 4294 + name: + type: string + example: 'InterServ International Inc.' + 4295: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 4295 + name: + type: string + example: 'Interstel' + 4296: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 4296 + name: + type: string + example: 'Interwave Studios' + 4297: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 4297 + name: + type: string + example: 'Inti Creates' + 4299: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 4299 + name: + type: string + example: 'INTI CREATES CO., LTD.' + 4301: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 4301 + name: + type: string + example: 'IntraCorp' + 4302: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 4302 + name: + type: string + example: 'IntraGames' + 4303: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 4303 + name: + type: string + example: 'Intropy Games' + 4304: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 4304 + name: + type: string + example: 'Introversion Software' + 4306: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 4306 + name: + type: string + example: 'INTV' + 4309: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 4309 + name: + type: string + example: 'Invent4 Entertainment' + 4311: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 4311 + name: + type: string + example: 'Inventor' + 4312: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 4312 + name: + type: string + example: 'Inverse Entertainment' + 4313: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 4313 + name: + type: string + example: 'Invi Image' + 4314: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 4314 + name: + type: string + example: 'Invictus Games' + 4316: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 4316 + name: + type: string + example: 'Invincible Cat' + 10342: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 10342 + name: + type: string + example: 'Involuntary-Twitch' + 4317: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 4317 + name: + type: string + example: 'inXile Entertainment, Inc.' + 4320: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 4320 + name: + type: string + example: 'IO Interactive' + 4323: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 4323 + name: + type: string + example: 'ION M.G LTD' + 4324: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 4324 + name: + type: string + example: 'Ion Storm Inc.' + 4326: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 4326 + name: + type: string + example: 'ioneo' + 4327: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 4327 + name: + type: string + example: 'IonFx' + 4328: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 4328 + name: + type: string + example: 'Iosys' + 4330: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 4330 + name: + type: string + example: 'IR Gurus' + 10292: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 10292 + name: + type: string + example: 'IR Gurus Interactive Ltd.' + 4334: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 4334 + name: + type: string + example: 'Irata' + 10205: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 10205 + name: + type: string + example: 'IREM' + 4335: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 4335 + name: + type: string + example: 'Irem Corp.' + 4342: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 4342 + name: + type: string + example: 'Iridium Studios' + 4343: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 4343 + name: + type: string + example: 'Iridon Interactive' + 4344: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 4344 + name: + type: string + example: 'Irisloft Studio' + 4345: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 4345 + name: + type: string + example: 'iRock Interactive' + 4346: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 4346 + name: + type: string + example: 'Iron Bite' + 4347: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 4347 + name: + type: string + example: 'Iron Byte' + 4348: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 4348 + name: + type: string + example: 'Iron Galaxy Studios' + 4349: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 4349 + name: + type: string + example: 'Iron Lore' + 4350: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 4350 + name: + type: string + example: 'Iron Lore Entertainment' + 4351: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 4351 + name: + type: string + example: 'Ironclad Games' + 4352: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 4352 + name: + type: string + example: 'Ironhide Game Studio' + 4353: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 4353 + name: + type: string + example: 'IronMonkey Studios' + 4354: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 4354 + name: + type: string + example: 'Ironnos' + 4355: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 4355 + name: + type: string + example: 'Ironstone Partners' + 4356: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 4356 + name: + type: string + example: 'Ironward' + 4357: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 4357 + name: + type: string + example: 'Irrational Games' + 10002: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 10002 + name: + type: string + example: 'Irresponsible Games' + 4358: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 4358 + name: + type: string + example: 'Isbit Games' + 4359: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 4359 + name: + type: string + example: 'ISC' + 4360: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 4360 + name: + type: string + example: 'ISCO' + 9951: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 9951 + name: + type: string + example: 'ISCO, Inc.' + 4361: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 4361 + name: + type: string + example: 'ISG Productions' + 4362: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 4362 + name: + type: string + example: 'Island Officials' + 4363: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 4363 + name: + type: string + example: 'Island Racing Studios' + 4364: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 4364 + name: + type: string + example: 'Isoco' + 4365: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 4365 + name: + type: string + example: 'ISOTX' + 4366: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 4366 + name: + type: string + example: 'iSquared Games' + 4367: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 4367 + name: + type: string + example: 'isTom Games Kft.' + 4368: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 4368 + name: + type: string + example: 'isufje' + 4369: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 4369 + name: + type: string + example: 'Italo Games' + 4370: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 4370 + name: + type: string + example: 'ITDA' + 4371: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 4371 + name: + type: string + example: 'ITE' + 4372: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 4372 + name: + type: string + example: 'ITE Media ApS (Interactive Television Entertainment)' + 4375: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 4375 + name: + type: string + example: 'Itech Media Solutions' + 4376: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 4376 + name: + type: string + example: 'Iteration 11' + 4377: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 4377 + name: + type: string + example: 'Itisa' + 4378: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 4378 + name: + type: string + example: 'ITL' + 4379: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 4379 + name: + type: string + example: 'ITT Family Games' + 4380: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 4380 + name: + type: string + example: 'ITT Gamily Games' + 4381: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 4381 + name: + type: string + example: 'Itzy Interactive' + 10119: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 10119 + name: + type: string + example: 'Ivan Horn' + 4383: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 4383 + name: + type: string + example: 'Ivan Machado' + 4384: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 4384 + name: + type: string + example: 'Ivan Strand' + 10335: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 10335 + name: + type: string + example: 'Ivan Venturi Productions' + 4385: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 4385 + name: + type: string + example: 'IVANOFF' + 4386: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 4386 + name: + type: string + example: 'Ivo Herzeg' + 4387: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 4387 + name: + type: string + example: 'Ivolgamus' + 4388: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 4388 + name: + type: string + example: 'Ivory Tower' + 4389: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 4389 + name: + type: string + example: 'Ivy Games' + 4390: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 4390 + name: + type: string + example: 'iWin' + 4391: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 4391 + name: + type: string + example: 'IzHard' + 4392: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 4392 + name: + type: string + example: 'J-Force' + 4393: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 4393 + name: + type: string + example: 'J-Wing' + 10245: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 10245 + name: + type: string + example: 'J. Dave Rogers' + 10121: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 10121 + name: + type: string + example: 'J. Kohalmi' + 4395: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 4395 + name: + type: string + example: 'J. Morris' + 4396: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 4396 + name: + type: string + example: 'J. Morrison (Micros) Ltd.' + 4397: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 4397 + name: + type: string + example: 'J.P. Room' + 4398: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 4398 + name: + type: string + example: 'J.Steele' + 4399: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 4399 + name: + type: string + example: 'Jack of All Games' + 4400: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 4400 + name: + type: string + example: 'Jackbox Games' + 4401: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 4401 + name: + type: string + example: 'Jackbox Games, Inc.' + 4403: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 4403 + name: + type: string + example: 'Jackpot' + 4404: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 4404 + name: + type: string + example: 'Jae Lee Productions' + 4405: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 4405 + name: + type: string + example: 'Jagex' + 4408: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 4408 + name: + type: string + example: 'Jagware' + 4410: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 4410 + name: + type: string + example: 'Jak Locke' + 4411: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 4411 + name: + type: string + example: 'Jaleco Ltd.' + 4416: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 4416 + name: + type: string + example: 'Jaleco, Activision' + 4417: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 4417 + name: + type: string + example: 'JAM Productions' + 4419: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 4419 + name: + type: string + example: 'James Allen' + 4420: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 4420 + name: + type: string + example: 'James Day' + 4421: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 4421 + name: + type: string + example: 'James Garon' + 4422: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 4422 + name: + type: string + example: 'James Pujals' + 4423: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 4423 + name: + type: string + example: 'James Schumacher' + 4424: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 4424 + name: + type: string + example: 'James Silva' + 4425: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 4425 + name: + type: string + example: 'James Software' + 4426: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 4426 + name: + type: string + example: 'James V. Zalewski' + 4427: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 4427 + name: + type: string + example: 'James Wickstead Design Associates' + 4428: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 4428 + name: + type: string + example: 'Jamie Woodhouse' + 4429: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 4429 + name: + type: string + example: 'JAMP' + 4430: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 4430 + name: + type: string + example: 'JamsWorks' + 10221: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 10221 + name: + type: string + example: 'JAMSWORKS Co. Ltd.' + 4431: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 4431 + name: + type: string + example: 'Jan Willem Nijman & Kitty Calis' + 4432: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 4432 + name: + type: string + example: 'Jane''s Combat Simulations' + 4433: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 4433 + name: + type: string + example: 'Janusz Pelc' + 4434: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 4434 + name: + type: string + example: 'Japan' + 4435: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 4435 + name: + type: string + example: 'Japan Art Media' + 4438: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 4438 + name: + type: string + example: 'Japan Dataworks' + 4439: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 4439 + name: + type: string + example: 'Japan Interactive Media' + 4440: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 4440 + name: + type: string + example: 'Japan Media Programming' + 10123: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 10123 + name: + type: string + example: 'Japan Studio' + 4444: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 4444 + name: + type: string + example: 'Japan System Supply' + 4445: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 4445 + name: + type: string + example: 'Japan Vistec' + 4446: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 4446 + name: + type: string + example: 'Jarhead Games' + 4447: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 4447 + name: + type: string + example: 'Jason M. Knight' + 4448: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 4448 + name: + type: string + example: 'Jason Perkins' + 4449: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 4449 + name: + type: string + example: 'Jason Roberts' + 4450: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 4450 + name: + type: string + example: 'Jason Roher' + 4451: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 4451 + name: + type: string + example: 'Jast' + 4452: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 4452 + name: + type: string + example: 'Jawx' + 4453: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 4453 + name: + type: string + example: 'Jay Sullivan' + 4454: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 4454 + name: + type: string + example: 'Jeff Kintz' + 4455: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 4455 + name: + type: string + example: 'Jeff Kurtz' + 4456: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 4456 + name: + type: string + example: 'Jeff Lait' + 4457: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 4457 + name: + type: string + example: 'Jeff McCord' + 4458: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 4458 + name: + type: string + example: 'Jeff Minter' + 4459: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 4459 + name: + type: string + example: 'Jeff Tunnell Productions' + 4460: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 4460 + name: + type: string + example: 'Jeil Computer System' + 4461: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 4461 + name: + type: string + example: 'Jellyvision' + 10091: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 10091 + name: + type: string + example: 'Jens Ayton' + 4463: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 4463 + name: + type: string + example: 'Jeppe Carlsen' + 10127: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 10127 + name: + type: string + example: 'Jeremy Chin' + 4465: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 4465 + name: + type: string + example: 'JessCreations' + 4466: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 4466 + name: + type: string + example: 'Jesse Barksdale' + 4467: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 4467 + name: + type: string + example: 'Jesse Venbrux' + 4468: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 4468 + name: + type: string + example: 'Jester Interactive' + 4469: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 4469 + name: + type: string + example: 'Jet Black Games' + 4470: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 4470 + name: + type: string + example: 'Jetdogs Studios' + 4472: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 4472 + name: + type: string + example: 'Jetsoft' + 4473: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 4473 + name: + type: string + example: 'JGI Entertainment' + 4474: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 4474 + name: + type: string + example: 'Jim Bagley' + 4475: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 4475 + name: + type: string + example: 'Jim Baguley' + 4476: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 4476 + name: + type: string + example: 'Jim Nunke' + 4477: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 4477 + name: + type: string + example: 'JLTurSan' + 4478: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 4478 + name: + type: string + example: 'JMD' + 4479: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 4479 + name: + type: string + example: 'Joakim Sandberg' + 4480: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 4480 + name: + type: string + example: 'Joe Grand' + 4481: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 4481 + name: + type: string + example: 'Joe Vierra & David Riehl' + 4482: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 4482 + name: + type: string + example: 'Joeren Erkens' + 10131: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 10131 + name: + type: string + example: 'Joerg Henrichs' + 4484: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 4484 + name: + type: string + example: 'Johan Peitz' + 4485: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 4485 + name: + type: string + example: 'John A. Reder' + 4486: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 4486 + name: + type: string + example: 'John Buckley, Gary Campbell' + 4487: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 4487 + name: + type: string + example: 'John Darnell' + 4488: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 4488 + name: + type: string + example: 'John Dondzila' + 4489: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 4489 + name: + type: string + example: 'John Dondzilla' + 4490: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 4490 + name: + type: string + example: 'John F. Cain' + 4491: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 4491 + name: + type: string + example: 'John Field' + 4492: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 4492 + name: + type: string + example: 'John Fitzpatrick' + 4493: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 4493 + name: + type: string + example: 'John Gabbard' + 4494: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 4494 + name: + type: string + example: 'John Hall' + 10196: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 10196 + name: + type: string + example: 'John Hassink' + 4495: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 4495 + name: + type: string + example: 'John K. Harvey' + 10137: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 10137 + name: + type: string + example: 'John M. Jaugilas' + 10246: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 10246 + name: + type: string + example: 'John M. Phillips' + 4496: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 4496 + name: + type: string + example: 'John P. Flynn' + 4497: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 4497 + name: + type: string + example: 'John Palevich' + 4498: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 4498 + name: + type: string + example: 'John Payson' + 4499: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 4499 + name: + type: string + example: 'John Philips' + 4500: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 4500 + name: + type: string + example: 'John Phillips' + 4501: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 4501 + name: + type: string + example: 'John Romero' + 4502: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 4502 + name: + type: string + example: 'John Van Ryzin' + 4503: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 4503 + name: + type: string + example: 'John W. Champeau' + 4504: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 4504 + name: + type: string + example: 'John W. Ratcliff' + 4505: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 4505 + name: + type: string + example: 'John Wagstaff' + 4506: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 4506 + name: + type: string + example: 'Johnson-Voorsanger Productions' + 4508: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 4508 + name: + type: string + example: 'Joindots' + 4509: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 4509 + name: + type: string + example: 'Jon burton' + 10108: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 10108 + name: + type: string + example: 'Jon Kerney' + 4510: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 4510 + name: + type: string + example: 'Jon Ritman' + 4512: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 4512 + name: + type: string + example: 'Jon Smith' + 4513: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 4513 + name: + type: string + example: 'Jonas Kyratzes' + 4514: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 4514 + name: + type: string + example: 'Jonathan Blow' + 4515: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 4515 + name: + type: string + example: 'Jongwoo Kim, Erica Lahaie, FX Bilodeau, Tanya Short' + 4516: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 4516 + name: + type: string + example: 'Jopac' + 4517: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 4517 + name: + type: string + example: 'Jordan Mechner' + 4518: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 4518 + name: + type: string + example: 'Jorudan' + 4519: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 4519 + name: + type: string + example: 'Jose Brito' + 9930: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 9930 + name: + type: string + example: 'Jose Luis Masmano' + 10136: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 10136 + name: + type: string + example: 'Joseph H. Ulowetz' + 4521: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 4521 + name: + type: string + example: 'Joseph Zbiciak' + 4522: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 4522 + name: + type: string + example: 'Joshyy' + 4523: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 4523 + name: + type: string + example: 'JosPlays' + 4524: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 4524 + name: + type: string + example: 'JoWood Productions' + 4527: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 4527 + name: + type: string + example: 'JOX Development LLC' + 4528: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 4528 + name: + type: string + example: 'Joy Van' + 4529: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 4529 + name: + type: string + example: 'Joycast Entertainment' + 4530: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 4530 + name: + type: string + example: 'Joyce Hakansson Associates, Inc.' + 4532: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 4532 + name: + type: string + example: 'Joycity' + 4533: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 4533 + name: + type: string + example: 'JoyCity Entertainment' + 4534: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 4534 + name: + type: string + example: 'JoyMania' + 4535: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 4535 + name: + type: string + example: 'JoyMasher' + 4536: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 4536 + name: + type: string + example: 'Joymax Co., Ltd.' + 4537: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 4537 + name: + type: string + example: 'JOYNOWSTUDIO' + 4538: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 4538 + name: + type: string + example: 'Joystick Labs, LLC' + 4539: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 4539 + name: + type: string + example: 'Juan Alberto Munoz' + 10308: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 10308 + name: + type: string + example: 'Juan Antonio Darder' + 10227: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 10227 + name: + type: string + example: 'Juan Delcan' + 4540: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 4540 + name: + type: string + example: 'Juan J. Martinez' + 9934: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 9934 + name: + type: string + example: 'Juan Jose Munoz Falco' + 9929: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 9929 + name: + type: string + example: 'Juan Luis Cervera' + 9928: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 9928 + name: + type: string + example: 'Juan Manuel Medina' + 4541: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 4541 + name: + type: string + example: 'Juha Kauppinen' + 4542: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 4542 + name: + type: string + example: 'Juice Games' + 4543: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 4543 + name: + type: string + example: 'Juicy Beast' + 4544: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 4544 + name: + type: string + example: 'Julian Todd' + 4545: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 4545 + name: + type: string + example: 'Juliet Software' + 4546: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 4546 + name: + type: string + example: 'Junction Point Studios' + 3919: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 3919 + name: + type: string + example: 'Jundroo' + 4548: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 4548 + name: + type: string + example: 'Junglevision Software' + 4549: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 4549 + name: + type: string + example: 'Jupiter Corporation' + 4552: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 4552 + name: + type: string + example: 'Just Add Monsters' + 4553: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 4553 + name: + type: string + example: 'Just Add Water' + 4554: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 4554 + name: + type: string + example: 'Just Flight' + 4555: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 4555 + name: + type: string + example: 'Just Games' + 4556: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 4556 + name: + type: string + example: 'Just1337 Studio' + 4557: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 4557 + name: + type: string + example: 'Juvty Worlds Ltd.' + 4558: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 4558 + name: + type: string + example: 'JV Dialog' + 4559: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 4559 + name: + type: string + example: 'JV Games Inc.' + 4561: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 4561 + name: + type: string + example: 'JVC' + 4562: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 4562 + name: + type: string + example: 'JVM' + 4563: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 4563 + name: + type: string + example: 'JVW Electronics' + 4564: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 4564 + name: + type: string + example: 'JW, Kitty, Jukio, and Dom' + 4565: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 4565 + name: + type: string + example: 'K-Byte' + 4566: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 4566 + name: + type: string + example: 'K-Byte, Ogdon Micro Design, Inc.' + 4567: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 4567 + name: + type: string + example: 'K-D Lab' + 4568: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 4568 + name: + type: string + example: 'K-Tel Vision' + 4569: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 4569 + name: + type: string + example: 'K. Amusement Leasing Co.' + 4571: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 4571 + name: + type: string + example: 'K. K. Tokki' + 4572: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 4572 + name: + type: string + example: 'K.K. International Inc.' + 4573: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 4573 + name: + type: string + example: 'K1soft' + 4574: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 4574 + name: + type: string + example: 'K2 LLC' + 4579: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 4579 + name: + type: string + example: 'Kabam' + 4580: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 4580 + name: + type: string + example: 'Kadokawa Games' + 4583: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 4583 + name: + type: string + example: 'Kadokawa Shoten' + 4584: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 4584 + name: + type: string + example: 'Kaga Create' + 4585: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 4585 + name: + type: string + example: 'Kaiko' + 4586: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 4586 + name: + type: string + example: 'KAJ' + 4587: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 4587 + name: + type: string + example: 'Kajak Games' + 4588: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 4588 + name: + type: string + example: 'Kalisto Entertainment' + 4590: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 4590 + name: + type: string + example: 'Kalypso Media' + 4592: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 4592 + name: + type: string + example: 'Kamehan Studios' + 4593: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 4593 + name: + type: string + example: 'Kamui' + 4594: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 4594 + name: + type: string + example: 'Kan''s' + 4595: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 4595 + name: + type: string + example: 'Kanawo' + 4596: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 4596 + name: + type: string + example: 'Kando Games' + 4598: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 4598 + name: + type: string + example: 'Kaneko' + 4600: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 4600 + name: + type: string + example: 'Kaneko Company, Limited' + 4603: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 4603 + name: + type: string + example: 'Kaolink' + 4604: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 4604 + name: + type: string + example: 'Kaos Studios' + 4606: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 4606 + name: + type: string + example: 'KaraokeDagger' + 10231: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 10231 + name: + type: string + example: 'Karen Trueman' + 4607: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 4607 + name: + type: string + example: 'Karga Games' + 4608: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 4608 + name: + type: string + example: 'Karin Entertainment' + 4609: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 4609 + name: + type: string + example: 'Karl Hornell' + 4610: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 4610 + name: + type: string + example: 'Karma Studios' + 4611: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 4611 + name: + type: string + example: 'Kasedo Games' + 4612: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 4612 + name: + type: string + example: 'Katauri Interactive' + 4613: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 4613 + name: + type: string + example: 'KatGames' + 4614: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 4614 + name: + type: string + example: 'Kawada' + 4615: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 4615 + name: + type: string + example: 'KAZe Co., Ltd.' + 4630: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 4630 + name: + type: string + example: 'kChamp' + 4631: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 4631 + name: + type: string + example: 'KDV Games' + 4632: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 4632 + name: + type: string + example: 'Kee Games' + 4633: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 4633 + name: + type: string + example: 'Keen Games' + 4634: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 4634 + name: + type: string + example: 'Keen Software House' + 10159: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 10159 + name: + type: string + example: 'Keiko Ishizaka' + 4637: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 4637 + name: + type: string + example: 'Keith Harvey' + 10162: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 10162 + name: + type: string + example: 'Keith Prosser' + 4638: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 4638 + name: + type: string + example: 'Keith Schuler' + 4639: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 4639 + name: + type: string + example: 'Kele Line Ltd.' + 4640: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 4640 + name: + type: string + example: 'Kellyn Beck' + 4641: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 4641 + name: + type: string + example: 'Kemco' + 10020: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 10020 + name: + type: string + example: 'Kemco-Seika' + 4644: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 4644 + name: + type: string + example: 'Kemsx' + 4645: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 4645 + name: + type: string + example: 'Ken Kalish' + 4646: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 4646 + name: + type: string + example: 'Ken Siders' + 4647: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 4647 + name: + type: string + example: 'Kenny Sun' + 10138: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 10138 + name: + type: string + example: 'Kent Hansen' + 4649: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 4649 + name: + type: string + example: 'Kent Hudson' + 4650: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 4650 + name: + type: string + example: 'Kenta Cho' + 4651: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 4651 + name: + type: string + example: 'Kerberos Productions' + 4652: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 4652 + name: + type: string + example: 'Kersten' + 4653: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 4653 + name: + type: string + example: 'Ketchapp' + 4654: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 4654 + name: + type: string + example: 'Kevin Berryman' + 4655: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 4655 + name: + type: string + example: 'Kevin Glass' + 10106: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 10106 + name: + type: string + example: 'Kevin J. Bezant' + 4656: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 4656 + name: + type: string + example: 'Kevin Kieller, John Traynor' + 4657: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 4657 + name: + type: string + example: 'Kevin T. Green' + 4658: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 4658 + name: + type: string + example: 'Key' + 4659: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 4659 + name: + type: string + example: 'Key Game' + 4660: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 4660 + name: + type: string + example: 'Key17 Games' + 4662: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 4662 + name: + type: string + example: 'KeysFactory' + 4663: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 4663 + name: + type: string + example: 'KH Video' + 4664: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 4664 + name: + type: string + example: 'KHAN Games' + 4665: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 4665 + name: + type: string + example: 'Khaos' + 4666: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 4666 + name: + type: string + example: 'Kheops Studio' + 4668: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 4668 + name: + type: string + example: 'KickBack' + 4669: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 4669 + name: + type: string + example: 'KID Corp.' + 4672: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 4672 + name: + type: string + example: 'Kiddinx' + 4673: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 4673 + name: + type: string + example: 'Kids Mania' + 4674: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 4674 + name: + type: string + example: 'Kids Revolution' + 4675: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 4675 + name: + type: string + example: 'Kids Station' + 4676: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 4676 + name: + type: string + example: 'KIDSMIND' + 4677: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 4677 + name: + type: string + example: 'KidStuff' + 4678: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 4678 + name: + type: string + example: 'Kikiyama' + 4679: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 4679 + name: + type: string + example: 'Killaware' + 4680: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 4680 + name: + type: string + example: 'Killer Game' + 4681: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 4681 + name: + type: string + example: 'Killmonday Games' + 4682: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 4682 + name: + type: string + example: 'Kiloo ApS' + 4684: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 4684 + name: + type: string + example: 'Kinetic Designs' + 4685: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 4685 + name: + type: string + example: 'Kinetica' + 4686: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 4686 + name: + type: string + example: 'King' + 4687: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 4687 + name: + type: string + example: 'King Art Games' + 4689: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 4689 + name: + type: string + example: 'King of the Jungle' + 4690: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 4690 + name: + type: string + example: 'King Records' + 4691: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 4691 + name: + type: string + example: 'KingIsle Entertainment' + 4692: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 4692 + name: + type: string + example: 'kingPenguin' + 4693: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 4693 + name: + type: string + example: 'Kingsoft' + 4694: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 4694 + name: + type: string + example: 'Kingsoft Dalian JingCai Studio' + 4695: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 4695 + name: + type: string + example: 'Kingsoft GmbH' + 4696: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 4696 + name: + type: string + example: 'Kinotrope' + 4697: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 4697 + name: + type: string + example: 'KintoGames' + 4698: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 4698 + name: + type: string + example: 'Kirin Entertainment' + 4699: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 4699 + name: + type: string + example: 'Kirk Israel' + 4700: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 4700 + name: + type: string + example: 'Kirk Moreno MultiMedia' + 4701: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 4701 + name: + type: string + example: 'Kiro''o Games' + 4702: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 4702 + name: + type: string + example: 'Kiss' + 4703: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 4703 + name: + type: string + example: 'KITATUS STUDIOS' + 4704: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 4704 + name: + type: string + example: 'kite & lightning' + 4705: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 4705 + name: + type: string + example: 'Kitfox Games' + 4706: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 4706 + name: + type: string + example: 'Kittehface Software' + 4707: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 4707 + name: + type: string + example: 'Kitty Group' + 4708: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 4708 + name: + type: string + example: 'Kiwako' + 4709: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 4709 + name: + type: string + example: 'Kiwi, Inc.' + 4710: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 4710 + name: + type: string + example: 'KKK' + 4711: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 4711 + name: + type: string + example: 'Klearwing' + 4712: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 4712 + name: + type: string + example: 'Klei' + 4713: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 4713 + name: + type: string + example: 'Klei Entertainment Inc.' + 4715: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 4715 + name: + type: string + example: 'Klein' + 4716: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 4716 + name: + type: string + example: 'KLON' + 10360: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 10360 + name: + type: string + example: 'Klonk Games' + 4717: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 4717 + name: + type: string + example: 'Kloonigames' + 4718: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 4718 + name: + type: string + example: 'KMM Games' + 10140: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 10140 + name: + type: string + example: 'KnapNok Games' + 4720: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 4720 + name: + type: string + example: 'Knife Media' + 4721: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 4721 + name: + type: string + example: 'Knight Technologies' + 4722: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 4722 + name: + type: string + example: 'Knights of Bytes' + 4723: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 4723 + name: + type: string + example: 'Knitted Pixels' + 4724: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 4724 + name: + type: string + example: 'Knowledge Adventure Inc.' + 4726: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 4726 + name: + type: string + example: 'KnowWonder' + 4728: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 4728 + name: + type: string + example: 'Knuckle Cracker' + 4729: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 4729 + name: + type: string + example: 'KO-OP' + 10141: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 10141 + name: + type: string + example: 'Koboldgames' + 4731: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 4731 + name: + type: string + example: 'Koch Media' + 4732: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 4732 + name: + type: string + example: 'KOCH Media GmbH' + 4733: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 4733 + name: + type: string + example: 'Kodansha' + 4734: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 4734 + name: + type: string + example: 'Kodi Team' + 10040: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 10040 + name: + type: string + example: 'Kodiak Interactive' + 4735: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 4735 + name: + type: string + example: 'Kodiak Interactive Software Studios' + 4737: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 4737 + name: + type: string + example: 'Kodots Games' + 4738: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 4738 + name: + type: string + example: 'Koei' + 4739: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 4739 + name: + type: string + example: 'Koei Canada, Inc.' + 4741: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 4741 + name: + type: string + example: 'KOEI Co., Ltd.' + 4744: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 4744 + name: + type: string + example: 'Koei Tecmo' + 4745: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 4745 + name: + type: string + example: 'KOEI TECMO AMERICA CORP.' + 4748: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 4748 + name: + type: string + example: 'Koei Tecmo Games, Gust Co. Ltd.' + 4751: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 4751 + name: + type: string + example: 'KOG Games' + 4753: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 4753 + name: + type: string + example: 'Kogado Software Products' + 4756: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 4756 + name: + type: string + example: 'Kogado Studio' + 4757: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 4757 + name: + type: string + example: 'Kogado Studio (Usagi San Team)' + 4758: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 4758 + name: + type: string + example: 'Kogado Studio, Inc.' + 4759: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 4759 + name: + type: string + example: 'Koichi Yoshida' + 4760: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 4760 + name: + type: string + example: 'Kojima Productions (Konami)' + 4762: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 4762 + name: + type: string + example: 'Kokopeli Digital Studios' + 4763: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 4763 + name: + type: string + example: 'Kokuzeichou' + 4764: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 4764 + name: + type: string + example: 'Komax' + 4765: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 4765 + name: + type: string + example: 'Konami' + 10143: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 10143 + name: + type: string + example: 'Konami Computer Entertainment Aomori' + 4618: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 4618 + name: + type: string + example: 'Konami Computer Entertainment Hawaii' + 4619: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 4619 + name: + type: string + example: 'Konami Computer Entertainment Japan' + 4771: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 4771 + name: + type: string + example: 'Konami Computer Entertainment Japan & Digital Dialect' + 4627: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 4627 + name: + type: string + example: 'Konami Computer Entertainment Kobe' + 4620: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 4620 + name: + type: string + example: 'Konami Computer Entertainment Nagoya' + 4621: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 4621 + name: + type: string + example: 'Konami Computer Entertainment Osaka' + 4622: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 4622 + name: + type: string + example: 'Konami Computer Entertainment Sapporo Co., Ltd' + 4624: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 4624 + name: + type: string + example: 'Konami Computer Entertainment Tokyo' + 4625: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 4625 + name: + type: string + example: 'Konami Computer Entertainment Yokohama' + 4776: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 4776 + name: + type: string + example: 'Konami Computer Games Aoyama' + 4779: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 4779 + name: + type: string + example: 'Konami Corporation M2' + 4780: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 4780 + name: + type: string + example: 'Konami Digital Entertainment' + 4781: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 4781 + name: + type: string + example: 'Konami Disney Interactive' + 4761: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 4761 + name: + type: string + example: 'Konami Los Angeles Studio' + 4623: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 4623 + name: + type: string + example: 'Konami Studios' + 4787: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 4787 + name: + type: string + example: 'Kongregate' + 4788: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 4788 + name: + type: string + example: 'Konstantin Koshutin' + 10092: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 10092 + name: + type: string + example: 'KonTechs Ltd' + 4789: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 4789 + name: + type: string + example: 'Kool Kizz Amusement Works' + 4790: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 4790 + name: + type: string + example: 'Koolhaus Games' + 10145: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 10145 + name: + type: string + example: 'Kornel Kisielewicz' + 4792: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 4792 + name: + type: string + example: 'Kot in Action Creative Artel' + 4793: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 4793 + name: + type: string + example: 'Koto' + 10243: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 10243 + name: + type: string + example: 'Koto Laboratory' + 4794: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 4794 + name: + type: string + example: 'Kotobuki System Co., Ltd.' + 4797: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 4797 + name: + type: string + example: 'Koubunsha' + 4798: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 4798 + name: + type: string + example: 'kouri' + 4799: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 4799 + name: + type: string + example: 'Kouyousha' + 4800: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 4800 + name: + type: string + example: 'Kraken Empire' + 4801: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 4801 + name: + type: string + example: 'Kral Bros.' + 4802: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 4802 + name: + type: string + example: 'Kralizec' + 4803: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 4803 + name: + type: string + example: 'Krea Medie A/S' + 4804: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 4804 + name: + type: string + example: 'Kremlin, The' + 4805: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 4805 + name: + type: string + example: 'Krillbite Studio' + 4806: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 4806 + name: + type: string + example: 'Kris Hatlelid' + 4807: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 4807 + name: + type: string + example: 'Krisalis Software Ltd.' + 4813: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 4813 + name: + type: string + example: 'Kritzelkratz 3000 GmbH' + 4815: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 4815 + name: + type: string + example: 'Krome Studios Pty Ltd.' + 4818: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 4818 + name: + type: string + example: 'Kron Simulation Software' + 4820: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 4820 + name: + type: string + example: 'Kronos Digital Entertainment' + 4823: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 4823 + name: + type: string + example: 'Krypton Force' + 4824: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 4824 + name: + type: string + example: 'kryptonic' + 4825: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 4825 + name: + type: string + example: 'Krystian Majewski' + 4826: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 4826 + name: + type: string + example: 'ksoft' + 4827: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 4827 + name: + type: string + example: 'KSS' + 4828: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 4828 + name: + type: string + example: 'KTX Software' + 4829: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 4829 + name: + type: string + example: 'Kuju Entertainment Ltd.' + 4832: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 4832 + name: + type: string + example: 'Kuju London' + 4833: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 4833 + name: + type: string + example: 'Kuju Sheffield' + 4834: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 4834 + name: + type: string + example: 'Kukouri' + 4835: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 4835 + name: + type: string + example: 'Kuma' + 4836: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 4836 + name: + type: string + example: 'Kuma Computers' + 4838: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 4838 + name: + type: string + example: 'Kung Fu Factory' + 4837: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 4837 + name: + type: string + example: 'Kung Fu Games' + 4840: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 4840 + name: + type: string + example: 'Kuno Interactive' + 4841: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 4841 + name: + type: string + example: 'Kunos Simulazioni' + 4842: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 4842 + name: + type: string + example: 'KUNST-STOFF' + 4843: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 4843 + name: + type: string + example: 'Kural' + 4844: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 4844 + name: + type: string + example: 'Kure' + 4845: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 4845 + name: + type: string + example: 'Kush Games' + 4849: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 4849 + name: + type: string + example: 'Kuusou Kagaku' + 4851: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 4851 + name: + type: string + example: 'Kyle Seeley' + 9977: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 9977 + name: + type: string + example: 'Kyle Weik' + 4852: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 4852 + name: + type: string + example: 'Kylepulver' + 4853: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 4853 + name: + type: string + example: 'Kylotonn' + 4854: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 4854 + name: + type: string + example: 'Kylotonn Racing Games' + 4857: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 4857 + name: + type: string + example: 'Kyoudai Games' + 4858: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 4858 + name: + type: string + example: 'Kyugo Boueki' + 4860: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 4860 + name: + type: string + example: 'Kyy Games' + 4862: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 4862 + name: + type: string + example: 'L. Stotch' + 4863: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 4863 + name: + type: string + example: 'L.K. Avalon' + 4861: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 4861 + name: + type: string + example: 'L&M Software' + 4864: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 4864 + name: + type: string + example: 'L3O Interactive' + 4865: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 4865 + name: + type: string + example: 'L4 Software' + 4866: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 4866 + name: + type: string + example: 'Lab Rats' + 4867: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 4867 + name: + type: string + example: 'Lab Zero' + 4868: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 4868 + name: + type: string + example: 'Lab Zero Games' + 4869: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 4869 + name: + type: string + example: 'Labyrinthine' + 4870: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 4870 + name: + type: string + example: 'Laguna' + 4871: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 4871 + name: + type: string + example: 'Lakoo' + 4872: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 4872 + name: + type: string + example: 'Laminar Research' + 4873: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 4873 + name: + type: string + example: 'Lancarse' + 4874: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 4874 + name: + type: string + example: 'Land Ho!' + 4876: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 4876 + name: + type: string + example: 'Landfall' + 4877: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 4877 + name: + type: string + example: 'Landisoft' + 4878: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 4878 + name: + type: string + example: 'Landon Podbielski' + 4879: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 4879 + name: + type: string + example: 'Landwarf' + 4880: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 4880 + name: + type: string + example: 'Lankhor' + 4881: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 4881 + name: + type: string + example: 'Larian Studios' + 4882: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 4882 + name: + type: string + example: 'Larkon Studios' + 4883: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 4883 + name: + type: string + example: 'Larry Rosenthal' + 4884: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 4884 + name: + type: string + example: 'Larry Tipton' + 4885: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 4885 + name: + type: string + example: 'Lars Simkins' + 4886: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 4886 + name: + type: string + example: 'Laser Beam' + 4887: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 4887 + name: + type: string + example: 'Laser Soft' + 4888: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 4888 + name: + type: string + example: 'LaserSoft' + 4889: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 4889 + name: + type: string + example: 'Last Chance Conversions' + 4890: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 4890 + name: + type: string + example: 'Last Dimension' + 4891: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 4891 + name: + type: string + example: 'Last Life Games' + 4892: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 4892 + name: + type: string + example: 'Last Limb Games' + 4893: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 4893 + name: + type: string + example: 'Laughing Jackal' + 4894: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 4894 + name: + type: string + example: 'Laughing Jackal Ltd.' + 4895: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 4895 + name: + type: string + example: 'Laura Shigihara' + 4896: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 4896 + name: + type: string + example: 'Lay-Up' + 4897: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 4897 + name: + type: string + example: 'Lazy 8 Studios' + 4898: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 4898 + name: + type: string + example: 'Lazy Bear Games' + 4899: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 4899 + name: + type: string + example: 'Lazy Brain Games' + 4900: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 4900 + name: + type: string + example: 'Lazy Monday Games' + 10147: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 10147 + name: + type: string + example: 'Lazycow' + 4902: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 4902 + name: + type: string + example: 'Le Cartel Studio' + 4903: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 4903 + name: + type: string + example: 'Le Cortex' + 4904: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 4904 + name: + type: string + example: 'Leadfilm' + 4905: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 4905 + name: + type: string + example: 'League of Geeks' + 4906: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 4906 + name: + type: string + example: 'Leandro Ferreras' + 10350: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 10350 + name: + type: string + example: 'LeapFrog' + 4907: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 4907 + name: + type: string + example: 'Leaping Lizard' + 4908: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 4908 + name: + type: string + example: 'Learning Materials, Inc.' + 4909: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 4909 + name: + type: string + example: 'Learning Technologies Interactive' + 4910: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 4910 + name: + type: string + example: 'Learning Techonologies, Inc.' + 4911: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 4911 + name: + type: string + example: 'Leben Pro' + 10284: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 10284 + name: + type: string + example: 'Lee Stevenson' + 4912: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 4912 + name: + type: string + example: 'Leet inc' + 4913: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 4913 + name: + type: string + example: 'Left Field Productions' + 4916: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 4916 + name: + type: string + example: 'LeftRight' + 4917: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 4917 + name: + type: string + example: 'Legacy Interactive' + 4918: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 4918 + name: + type: string + example: 'Legacy Interactive Inc.' + 4919: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 4919 + name: + type: string + example: 'Legend Entertainment Company' + 4922: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 4922 + name: + type: string + example: 'Leijac' + 10149: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 10149 + name: + type: string + example: 'Leisure' + 4924: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 4924 + name: + type: string + example: 'Leisure Genius' + 4925: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 4925 + name: + type: string + example: 'Leland Corporation' + 4929: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 4929 + name: + type: string + example: 'Leland Interactive Media' + 4931: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 4931 + name: + type: string + example: 'Lemon' + 4932: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 4932 + name: + type: string + example: 'Len Townsend' + 4933: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 4933 + name: + type: string + example: 'Lenar' + 4934: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 4934 + name: + type: string + example: 'Leo Christopherson' + 4935: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 4935 + name: + type: string + example: 'Lerner Research' + 4936: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 4936 + name: + type: string + example: 'Les Hogarth, Clive Wilson' + 4937: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 4937 + name: + type: string + example: 'Leslaw Sliwko' + 4938: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 4938 + name: + type: string + example: 'Lesley Dodd' + 4939: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 4939 + name: + type: string + example: 'Lesta Studio' + 4941: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 4941 + name: + type: string + example: 'Level 9 Computing' + 4943: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 4943 + name: + type: string + example: 'Level 9 Computing, Ltd.' + 4944: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 4944 + name: + type: string + example: 'Level Up Labs' + 4940: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 4940 + name: + type: string + example: 'Level-5' + 4946: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 4946 + name: + type: string + example: 'Leveled Games' + 4947: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 4947 + name: + type: string + example: 'LevelUpLabs' + 4948: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 4948 + name: + type: string + example: 'Leven Games' + 4949: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 4949 + name: + type: string + example: 'Leviathan Games' + 4950: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 4950 + name: + type: string + example: 'Lexaloffle Games' + 4951: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 4951 + name: + type: string + example: 'Lexis Numerique' + 4952: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 4952 + name: + type: string + example: 'Lextre' + 4953: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 4953 + name: + type: string + example: 'LG Software' + 4954: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 4954 + name: + type: string + example: 'Libredia' + 4955: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 4955 + name: + type: string + example: 'libretro' + 10361: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 10361 + name: + type: string + example: 'Lichthund' + 4956: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 4956 + name: + type: string + example: 'Lienzo' + 4957: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 4957 + name: + type: string + example: 'Life Fitness' + 4958: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 4958 + name: + type: string + example: 'LifeLike Productions, Inc.' + 4960: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 4960 + name: + type: string + example: 'LIGENSOFT' + 4961: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 4961 + name: + type: string + example: 'Light' + 4962: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 4962 + name: + type: string + example: 'Light Shock Software' + 4965: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 4965 + name: + type: string + example: 'LightBox Interactive' + 4966: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 4966 + name: + type: string + example: 'Lightmare Studio' + 4967: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 4967 + name: + type: string + example: 'Lightning Fish' + 4969: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 4969 + name: + type: string + example: 'Lights' + 4970: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 4970 + name: + type: string + example: 'Lightspan' + 4971: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 4971 + name: + type: string + example: 'Lightspeed Games' + 4964: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 4964 + name: + type: string + example: 'LightWeight' + 4973: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 4973 + name: + type: string + example: 'Lightyear Entertainment' + 4974: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 4974 + name: + type: string + example: 'Lillbacka Powerco Oy' + 4975: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 4975 + name: + type: string + example: 'Limasse Five' + 4976: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 4976 + name: + type: string + example: 'Limbic Entertainment' + 4977: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 4977 + name: + type: string + example: 'Limbic Software' + 4978: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 4978 + name: + type: string + example: 'Limenko' + 10151: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 10151 + name: + type: string + example: 'Liminowicz, Miroslaw' + 4980: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 4980 + name: + type: string + example: 'Lince Works' + 4981: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 4981 + name: + type: string + example: 'LINE Corporation' + 4982: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 4982 + name: + type: string + example: 'Linel' + 4983: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 4983 + name: + type: string + example: 'Linked Dimensions' + 4984: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 4984 + name: + type: string + example: 'Lion Entertainment' + 4985: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 4985 + name: + type: string + example: 'Lion Game Lion' + 4986: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 4986 + name: + type: string + example: 'Lion Heart' + 4987: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 4987 + name: + type: string + example: 'Lion Shield, LLC' + 4988: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 4988 + name: + type: string + example: 'Lion''s Shade' + 4989: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 4989 + name: + type: string + example: 'Lionhead Studios Ltd.' + 4991: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 4991 + name: + type: string + example: 'Liquid' + 4992: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 4992 + name: + type: string + example: 'Liquid Dezign HB' + 4993: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 4993 + name: + type: string + example: 'Liquid Entertainment' + 4995: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 4995 + name: + type: string + example: 'Liquid Games' + 4996: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 4996 + name: + type: string + example: 'Little Boy Games' + 10362: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 10362 + name: + type: string + example: 'Little Cat Feet' + 4997: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 4997 + name: + type: string + example: 'Little Green Men' + 4998: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 4998 + name: + type: string + example: 'Little Orbit' + 4999: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 4999 + name: + type: string + example: 'Little Worlds Studio' + 5000: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 5000 + name: + type: string + example: 'LittleWing' + 5001: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 5001 + name: + type: string + example: 'LittleWing Co. Ltd.' + 5002: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 5002 + name: + type: string + example: 'Littlewitch' + 5003: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 5003 + name: + type: string + example: 'LiveMedia' + 5004: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 5004 + name: + type: string + example: 'Lizardcube' + 5005: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 5005 + name: + type: string + example: 'Lizsoft' + 5006: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 5006 + name: + type: string + example: 'LJN' + 5009: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 5009 + name: + type: string + example: 'LK Avalon Detalion' + 5010: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 5010 + name: + type: string + example: 'LKA' + 5011: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 5011 + name: + type: string + example: 'Llamasoft Ltd.' + 5015: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 5015 + name: + type: string + example: 'Load Inc.' + 5016: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 5016 + name: + type: string + example: 'LoadComplete' + 5017: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 5017 + name: + type: string + example: 'Lobotomy Software' + 5018: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 5018 + name: + type: string + example: 'Lockwood Publishing' + 5019: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 5019 + name: + type: string + example: 'Locomalito' + 5020: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 5020 + name: + type: string + example: 'Locomalito, Gryzor87, Abylight' + 5021: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 5021 + name: + type: string + example: 'Locomotive' + 5022: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 5022 + name: + type: string + example: 'Locomotive Games' + 5025: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 5025 + name: + type: string + example: 'Locomotive Staff' + 5026: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 5026 + name: + type: string + example: 'Locus' + 10153: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 10153 + name: + type: string + example: 'Logan' + 5028: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 5028 + name: + type: string + example: 'Logic Factory' + 10156: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 10156 + name: + type: string + example: 'Logical Design Works, Inc.' + 5030: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 5030 + name: + type: string + example: 'Logicware, Inc.' + 5031: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 5031 + name: + type: string + example: 'LOGINSOFT' + 5032: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 5032 + name: + type: string + example: 'Logitec' + 5034: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 5034 + name: + type: string + example: 'London Studio, SCEE' + 5035: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 5035 + name: + type: string + example: 'London Studios' + 5036: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 5036 + name: + type: string + example: 'LoneDevil' + 5037: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 5037 + name: + type: string + example: 'Lonely Troops' + 5038: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 5038 + name: + type: string + example: 'Long Hat House' + 5039: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 5039 + name: + type: string + example: 'Longbow Digital Arts' + 5040: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 5040 + name: + type: string + example: 'Longtail Studios' + 5042: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 5042 + name: + type: string + example: 'LookAtMyGame' + 5043: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 5043 + name: + type: string + example: 'Looking Glass Studios, Inc.' + 5047: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 5047 + name: + type: string + example: 'Loose Cannon Studios' + 5049: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 5049 + name: + type: string + example: 'Loot Interactive' + 5050: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 5050 + name: + type: string + example: 'Lord British' + 5051: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 5051 + name: + type: string + example: 'Lore Games' + 5052: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 5052 + name: + type: string + example: 'Loriciel' + 5054: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 5054 + name: + type: string + example: 'Loriciels' + 5056: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 5056 + name: + type: string + example: 'Lost Decade Games, LLC' + 5057: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 5057 + name: + type: string + example: 'Lost Toys Ltd.' + 5059: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 5059 + name: + type: string + example: 'Lostwood Games' + 5060: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 5060 + name: + type: string + example: 'Lothlorien' + 5061: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 5061 + name: + type: string + example: 'Lou Haehn' + 5062: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 5062 + name: + type: string + example: 'Love in Space' + 5063: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 5063 + name: + type: string + example: 'Love-de-Lic' + 5064: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 5064 + name: + type: string + example: 'LSP' + 5065: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 5065 + name: + type: string + example: 'LTI Gray Matter' + 5066: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 5066 + name: + type: string + example: 'Luc Bernard' + 5067: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 5067 + name: + type: string + example: 'Luca Burgio' + 10048: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 10048 + name: + type: string + example: 'Lucas Arts' + 5069: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 5069 + name: + type: string + example: 'Lucas Learning' + 10128: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 10128 + name: + type: string + example: 'Lucas Martin-King' + 10158: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 10158 + name: + type: string + example: 'Lucas Pope' + 5071: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 5071 + name: + type: string + example: 'Lucas Wilde' + 5068: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 5068 + name: + type: string + example: 'LucasArts Entertainment Company LLC' + 5075: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 5075 + name: + type: string + example: 'LucasArts Singapore' + 5076: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 5076 + name: + type: string + example: 'LucasFan Games' + 5080: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 5080 + name: + type: string + example: 'Lucid Games' + 5082: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 5082 + name: + type: string + example: 'Lucky Chicken Games' + 5084: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 5084 + name: + type: string + example: 'Lucky Frame' + 5085: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 5085 + name: + type: string + example: 'Lucky Jump' + 5086: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 5086 + name: + type: string + example: 'Ludeon Studios' + 5087: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 5087 + name: + type: string + example: 'Ludi Media' + 5088: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 5088 + name: + type: string + example: 'Ludia Inc' + 5090: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 5090 + name: + type: string + example: 'Ludia Inc.' + 5091: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 5091 + name: + type: string + example: 'Ludic Side' + 10363: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 10363 + name: + type: string + example: 'Ludo Land' + 5092: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 5092 + name: + type: string + example: 'Ludochip' + 5093: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 5093 + name: + type: string + example: 'LudoCraft Ltd.' + 5094: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 5094 + name: + type: string + example: 'Ludosity Interactive' + 10045: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 10045 + name: + type: string + example: 'Luis Rodriguez Soler' + 5096: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 5096 + name: + type: string + example: 'Lukewarm Media' + 5097: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 5097 + name: + type: string + example: 'Lumenox Games' + 5098: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 5098 + name: + type: string + example: 'Lunar Giant' + 5099: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 5099 + name: + type: string + example: 'Lunar Workshop' + 5100: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 5100 + name: + type: string + example: 'Lunatic Software' + 5101: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 5101 + name: + type: string + example: 'Lunatoid' + 5102: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 5102 + name: + type: string + example: 'Luxoflux Corp.' + 5107: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 5107 + name: + type: string + example: 'Lyndon & Associates' + 5108: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 5108 + name: + type: string + example: 'M Network' + 5109: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 5109 + name: + type: string + example: 'M-Kai' + 5111: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 5111 + name: + type: string + example: 'M. Riedel' + 5112: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 5112 + name: + type: string + example: 'M.A.D Games' + 5113: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 5113 + name: + type: string + example: 'M.C. Lothlorien Ltd' + 5114: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 5114 + name: + type: string + example: 'M.N.M Software' + 5115: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 5115 + name: + type: string + example: 'm07 Games' + 5116: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 5116 + name: + type: string + example: 'M2' + 5118: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 5118 + name: + type: string + example: 'M2H Blackmill Games' + 5119: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 5119 + name: + type: string + example: 'M4 Limited' + 5120: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 5120 + name: + type: string + example: 'MA-BA' + 5121: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 5121 + name: + type: string + example: 'Maboroshi Ware' + 10047: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 10047 + name: + type: string + example: 'MAC' + 5122: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 5122 + name: + type: string + example: 'MacBee' + 5123: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 5123 + name: + type: string + example: 'Machine Games' + 5124: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 5124 + name: + type: string + example: 'Machine Zone, Inc.' + 5125: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 5125 + name: + type: string + example: 'Machinegames' + 5126: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 5126 + name: + type: string + example: 'MachineSpirit Pty. Ltd.' + 5127: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 5127 + name: + type: string + example: 'Macmillan Software Ltd' + 5128: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 5128 + name: + type: string + example: 'Macsen Software' + 5129: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 5129 + name: + type: string + example: 'Mad Catz' + 5130: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 5130 + name: + type: string + example: 'Mad Doc Software' + 5131: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 5131 + name: + type: string + example: 'Mad Fellows Ltd' + 5132: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 5132 + name: + type: string + example: 'Mad Head' + 5133: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 5133 + name: + type: string + example: 'Mad Inc' + 5134: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 5134 + name: + type: string + example: 'Mad Monkey Studios' + 5135: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 5135 + name: + type: string + example: 'Mad Orange' + 5136: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 5136 + name: + type: string + example: 'Mad Ram Software' + 5137: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 5137 + name: + type: string + example: 'Madbyte Games' + 5138: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 5138 + name: + type: string + example: 'Madcat Interactive' + 5140: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 5140 + name: + type: string + example: 'Made in Spain' + 5141: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 5141 + name: + type: string + example: 'Madfinger Games' + 5142: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 5142 + name: + type: string + example: 'MADFINGER Games, a.s.' + 5143: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 5143 + name: + type: string + example: 'Madia Entertainment' + 5144: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 5144 + name: + type: string + example: 'Madlab Software' + 5145: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 5145 + name: + type: string + example: 'MadMan Theory Games' + 5146: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 5146 + name: + type: string + example: 'Madmind Studio' + 5147: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 5147 + name: + type: string + example: 'Madpeet' + 5148: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 5148 + name: + type: string + example: 'Madruga Works' + 5149: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 5149 + name: + type: string + example: 'Maelstrom Games' + 5150: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 5150 + name: + type: string + example: 'Maelstrom Games Ltd' + 5151: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 5151 + name: + type: string + example: 'Magellan Interactive' + 5154: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 5154 + name: + type: string + example: 'Magenta' + 5155: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 5155 + name: + type: string + example: 'Magenta Software Ltd.' + 5159: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 5159 + name: + type: string + example: 'Mages' + 5160: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 5160 + name: + type: string + example: 'MAGES. Inc.' + 5161: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 5161 + name: + type: string + example: 'Magic Bytes' + 5162: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 5162 + name: + type: string + example: 'Magic Carpet Software' + 5163: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 5163 + name: + type: string + example: 'Magic Conversions Inc.' + 5164: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 5164 + name: + type: string + example: 'Magic Cube' + 5165: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 5165 + name: + type: string + example: 'Magic Electronics' + 5166: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 5166 + name: + type: string + example: 'Magic Notion' + 5167: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 5167 + name: + type: string + example: 'Magic Partners' + 5168: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 5168 + name: + type: string + example: 'Magic Partners, P.Z.Karen Co. Development Group' + 5169: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 5169 + name: + type: string + example: 'Magic Pockets' + 5171: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 5171 + name: + type: string + example: 'Magic Rings' + 5172: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 5172 + name: + type: string + example: 'Magic Team' + 5173: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 5173 + name: + type: string + example: 'Magic Tiger' + 5174: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 5174 + name: + type: string + example: 'Magic Touch (Edisys SCRL)' + 5175: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 5175 + name: + type: string + example: 'Magic Wand Productions' + 5177: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 5177 + name: + type: string + example: 'Magical Company' + 5180: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 5180 + name: + type: string + example: 'Magical Formation' + 5181: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 5181 + name: + type: string + example: 'Magical Zoo' + 5182: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 5182 + name: + type: string + example: 'MagicalTimeBean' + 5183: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 5183 + name: + type: string + example: 'MagiCom' + 5184: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 5184 + name: + type: string + example: 'MagicPot' + 5185: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 5185 + name: + type: string + example: 'Magicsoft' + 5186: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 5186 + name: + type: string + example: 'Magifact' + 5187: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 5187 + name: + type: string + example: 'Magix' + 5188: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 5188 + name: + type: string + example: 'Magnavox' + 5189: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 5189 + name: + type: string + example: 'Magnet Interactive Studios, Inc.' + 5190: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 5190 + name: + type: string + example: 'Magnetic Fields (Software Design) Ltd.' + 5192: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 5192 + name: + type: string + example: 'Magnetic Images' + 10353: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 10353 + name: + type: string + example: 'Magnetic Realms' + 5193: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 5193 + name: + type: string + example: 'magnetic Scrolls' + 5194: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 5194 + name: + type: string + example: 'Magnin and Associates' + 5195: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 5195 + name: + type: string + example: 'Magnus Auvinen' + 5196: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 5196 + name: + type: string + example: 'Mahou' + 5197: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 5197 + name: + type: string + example: 'MAIET Entertainment' + 5198: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 5198 + name: + type: string + example: 'Maiet Entretaiment' + 5199: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 5199 + name: + type: string + example: 'Maitai Entertainment' + 5200: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 5200 + name: + type: string + example: 'Majesco Entertainment' + 5204: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 5204 + name: + type: string + example: 'Majikeyric' + 5205: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 5205 + name: + type: string + example: 'Major A' + 5206: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 5206 + name: + type: string + example: 'Major Developments' + 5208: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 5208 + name: + type: string + example: 'Major Games' + 5209: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 5209 + name: + type: string + example: 'Major League Baseball Advanced Media' + 5210: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 5210 + name: + type: string + example: 'Make' + 5212: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 5212 + name: + type: string + example: 'Making Fun' + 5213: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 5213 + name: + type: string + example: 'Makivision Games' + 10301: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 10301 + name: + type: string + example: 'Makoto Hirasaka' + 5214: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 5214 + name: + type: string + example: 'Malfador Machinations' + 5215: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 5215 + name: + type: string + example: 'Malibu Interactive' + 5218: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 5218 + name: + type: string + example: 'Mama Top' + 5219: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 5219 + name: + type: string + example: 'Mana Computer Software' + 5220: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 5220 + name: + type: string + example: 'Mana Games' + 5221: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 5221 + name: + type: string + example: 'Mana Potion Studios' + 5222: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 5222 + name: + type: string + example: 'Mandel ArtPlains' + 5223: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 5223 + name: + type: string + example: 'Mandragora' + 5224: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 5224 + name: + type: string + example: 'Manfred Trenz' + 5225: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 5225 + name: + type: string + example: 'Mangled Eye Studios' + 5226: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 5226 + name: + type: string + example: 'Manic Media Productions Ltd.' + 5228: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 5228 + name: + type: string + example: 'Manifest Oranj' + 5229: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 5229 + name: + type: string + example: 'Manjyudo' + 5232: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 5232 + name: + type: string + example: 'Manley & Associates, Inc.' + 5230: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 5230 + name: + type: string + example: 'Manley & Associates' + 5231: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 5231 + name: + type: string + example: 'Manley & Associates, Inc.' + 5235: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 5235 + name: + type: string + example: 'ManMachineGames' + 5236: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 5236 + name: + type: string + example: 'Manu' + 5237: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 5237 + name: + type: string + example: 'Manuel Rotschkar' + 5238: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 5238 + name: + type: string + example: 'Manuel van Dyck' + 5239: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 5239 + name: + type: string + example: 'Marble' + 5240: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 5240 + name: + type: string + example: 'Marc Dawson' + 5241: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 5241 + name: + type: string + example: 'Marc-Thomas Clifton' + 5242: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 5242 + name: + type: string + example: 'Marcelo Lv Cabral' + 5243: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 5243 + name: + type: string + example: 'March' + 5244: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 5244 + name: + type: string + example: 'March Entertainment' + 9968: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 9968 + name: + type: string + example: 'Marco Duroe' + 5245: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 5245 + name: + type: string + example: 'Marco Incitti' + 10132: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 10132 + name: + type: string + example: 'Marianne Gagnon' + 5246: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 5246 + name: + type: string + example: 'Marianne Rougeulle' + 5247: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 5247 + name: + type: string + example: 'Marigul' + 10364: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 10364 + name: + type: string + example: 'Mario Castañeda' + 5248: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 5248 + name: + type: string + example: 'Mario Knezovic' + 5249: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 5249 + name: + type: string + example: 'Marion Clarke' + 5250: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 5250 + name: + type: string + example: 'Marionette' + 5251: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 5251 + name: + type: string + example: 'Mark Ball' + 5252: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 5252 + name: + type: string + example: 'Mark Crane' + 10161: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 10161 + name: + type: string + example: 'Mark Goodall' + 5254: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 5254 + name: + type: string + example: 'Mark J. Taylor' + 5255: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 5255 + name: + type: string + example: 'Mark Prosser, Dave Dew' + 10180: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 10180 + name: + type: string + example: 'Mark R. Jones' + 10134: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 10134 + name: + type: string + example: 'Mark Serlin' + 10008: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 10008 + name: + type: string + example: 'Mark Stephen Pierce' + 5256: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 5256 + name: + type: string + example: 'Mark VandeWettering' + 5257: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 5257 + name: + type: string + example: 'Markt & Technik' + 5258: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 5258 + name: + type: string + example: 'Mars Corp' + 5259: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 5259 + name: + type: string + example: 'Marsbound' + 5260: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 5260 + name: + type: string + example: 'Martech Games Ltd.' + 10163: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 10163 + name: + type: string + example: 'Martial Hesse Dreville' + 5263: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 5263 + name: + type: string + example: 'Martin Ivanov' + 5264: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 5264 + name: + type: string + example: 'Martin Konrad' + 5265: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 5265 + name: + type: string + example: 'Martin P. Bryant' + 5266: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 5266 + name: + type: string + example: 'Martin Walker' + 5267: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 5267 + name: + type: string + example: 'Martin, Joel H.' + 5268: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 5268 + name: + type: string + example: 'Marvellous Entertainment' + 5269: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 5269 + name: + type: string + example: 'Marvelous' + 5270: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 5270 + name: + type: string + example: 'Marvelous AQL' + 10165: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 10165 + name: + type: string + example: 'Marvelous Entertainment' + 5271: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 5271 + name: + type: string + example: 'Marvelous Entertainment Inc.' + 5276: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 5276 + name: + type: string + example: 'Marvelous Interactive' + 5280: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 5280 + name: + type: string + example: 'Marvin Glass and Associates' + 5281: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 5281 + name: + type: string + example: 'MASA Group' + 5282: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 5282 + name: + type: string + example: 'Masaya' + 5283: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 5283 + name: + type: string + example: 'Maschinen-Mensch' + 5284: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 5284 + name: + type: string + example: 'Mason Barry' + 5285: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 5285 + name: + type: string + example: 'Mass Media, Inc.' + 5289: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 5289 + name: + type: string + example: 'Mass Tael' + 5290: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 5290 + name: + type: string + example: 'Massive Damage, Inc.' + 5291: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 5291 + name: + type: string + example: 'Massive Development GmbH' + 5293: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 5293 + name: + type: string + example: 'Massive Entertainment' + 5294: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 5294 + name: + type: string + example: 'Massive Monster' + 5295: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 5295 + name: + type: string + example: 'Master Designer Software, Inc.' + 5297: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 5297 + name: + type: string + example: 'Mastertronic' + 5298: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 5298 + name: + type: string + example: 'Mastervision' + 5299: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 5299 + name: + type: string + example: 'Mastiff' + 5300: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 5300 + name: + type: string + example: 'Mathias Jackermeier' + 5301: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 5301 + name: + type: string + example: 'Matrix' + 5302: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 5302 + name: + type: string + example: 'Matrix Software' + 5303: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 5303 + name: + type: string + example: 'Matsushita Electric Industrial' + 5304: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 5304 + name: + type: string + example: 'Matt Dalgety' + 5305: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 5305 + name: + type: string + example: 'Matt Makes Games' + 5307: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 5307 + name: + type: string + example: 'Matt Roszak' + 5308: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 5308 + name: + type: string + example: 'Matt Thorson' + 5309: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 5309 + name: + type: string + example: 'Mattel' + 5310: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 5310 + name: + type: string + example: 'Mattel Electronics' + 5311: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 5311 + name: + type: string + example: 'Mattel Interactive' + 5312: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 5312 + name: + type: string + example: 'Matthes Bender' + 5313: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 5313 + name: + type: string + example: 'Matthew Brown' + 5314: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 5314 + name: + type: string + example: 'Matthew Smith' + 5315: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 5315 + name: + type: string + example: 'Max Design GesMBH' + 5318: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 5318 + name: + type: string + example: 'Max Entertainment' + 5319: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 5319 + name: + type: string + example: 'MaxFive' + 5320: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 5320 + name: + type: string + example: 'Maximum Family Games' + 5321: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 5321 + name: + type: string + example: 'Maximum Games' + 10024: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 10024 + name: + type: string + example: 'Maxis' + 5322: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 5322 + name: + type: string + example: 'Maxis Software' + 5328: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 5328 + name: + type: string + example: 'MaxNick' + 5331: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 5331 + name: + type: string + example: 'MBI' + 10166: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 10166 + name: + type: string + example: 'Mc' + 5333: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 5333 + name: + type: string + example: 'MC2-Microïds' + 5334: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 5334 + name: + type: string + example: 'Mccasen' + 5335: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 5335 + name: + type: string + example: 'McSyko' + 5336: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 5336 + name: + type: string + example: 'McTeddyGames' + 5337: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 5337 + name: + type: string + example: 'MD Software' + 5339: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 5339 + name: + type: string + example: 'MDF' + 5340: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 5340 + name: + type: string + example: 'Meadows' + 5341: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 5341 + name: + type: string + example: 'Mean Hamster' + 5342: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 5342 + name: + type: string + example: 'Mebio Software' + 5343: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 5343 + name: + type: string + example: 'Mebius' + 5344: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 5344 + name: + type: string + example: 'MECC' + 5345: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 5345 + name: + type: string + example: 'Mechadeus' + 5346: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 5346 + name: + type: string + example: 'Mechanic Arms' + 5347: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 5347 + name: + type: string + example: 'Mechanical Starling' + 5348: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 5348 + name: + type: string + example: 'Med Systems Software' + 5349: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 5349 + name: + type: string + example: 'Media Entertainment' + 5351: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 5351 + name: + type: string + example: 'Media Factory' + 5352: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 5352 + name: + type: string + example: 'Media Molecule' + 5353: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 5353 + name: + type: string + example: 'Media Rings Corporation' + 5355: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 5355 + name: + type: string + example: 'Media Vision' + 10094: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 10094 + name: + type: string + example: 'Media Works' + 5356: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 5356 + name: + type: string + example: 'Media.Vision Entertainment Inc.' + 5360: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 5360 + name: + type: string + example: 'Mediagenic' + 5361: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 5361 + name: + type: string + example: 'MediaMobsters' + 5362: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 5362 + name: + type: string + example: 'Mediamuse' + 5363: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 5363 + name: + type: string + example: 'Mediatonic' + 5364: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 5364 + name: + type: string + example: 'MediaWorks' + 5365: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 5365 + name: + type: string + example: 'Medo Moreno' + 5366: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 5366 + name: + type: string + example: 'Mega Enterprise' + 5368: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 5368 + name: + type: string + example: 'MegaBrain Computer' + 5369: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 5369 + name: + type: string + example: 'Megadev' + 5370: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 5370 + name: + type: string + example: 'MEGAFUZZ' + 5371: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 5371 + name: + type: string + example: 'MegaHouse' + 5372: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 5372 + name: + type: string + example: 'Megas' + 5367: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 5367 + name: + type: string + example: 'Megasoft' + 9972: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 9972 + name: + type: string + example: 'MegaSoft Entertainment, Inc.' + 5374: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 5374 + name: + type: string + example: 'Megastyle' + 5375: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 5375 + name: + type: string + example: 'MegaTech' + 5376: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 5376 + name: + type: string + example: 'Mehsoft' + 5377: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 5377 + name: + type: string + example: 'Mekensleep' + 5378: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 5378 + name: + type: string + example: 'Melbourne House' + 5380: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 5380 + name: + type: string + example: 'Melesta' + 5381: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 5381 + name: + type: string + example: 'Melody' + 5382: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 5382 + name: + type: string + example: 'Melon Dezign' + 5383: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 5383 + name: + type: string + example: 'Men-A-Vision' + 5384: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 5384 + name: + type: string + example: 'Mend' + 5385: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 5385 + name: + type: string + example: 'Mental Software' + 5386: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 5386 + name: + type: string + example: 'Mentor Interactive' + 10187: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 10187 + name: + type: string + example: 'Menue' + 5387: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 5387 + name: + type: string + example: 'Mercenary Technology' + 5388: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 5388 + name: + type: string + example: 'Mercury Steam Entertainment S.L.' + 5393: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 5393 + name: + type: string + example: 'Mere Mortals' + 5394: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 5394 + name: + type: string + example: 'Merge Games' + 5395: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 5395 + name: + type: string + example: 'Meridian4' + 5396: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 5396 + name: + type: string + example: 'Merit' + 5397: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 5397 + name: + type: string + example: 'Merit Software' + 5398: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 5398 + name: + type: string + example: 'Merit Studios (Europe) Limited' + 5399: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 5399 + name: + type: string + example: 'Merlin Software' + 5400: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 5400 + name: + type: string + example: 'Mermaid Studios' + 5401: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 5401 + name: + type: string + example: 'Merscom LLC' + 5402: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 5402 + name: + type: string + example: 'Mervyn Estcourt' + 5403: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 5403 + name: + type: string + example: 'Mesa Logic' + 5404: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 5404 + name: + type: string + example: 'Messhof' + 5405: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 5405 + name: + type: string + example: 'Metalhead Software' + 5406: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 5406 + name: + type: string + example: 'Metalhead Software Inc.' + 5407: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 5407 + name: + type: string + example: 'Metamorf Studios' + 5408: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 5408 + name: + type: string + example: 'Metanet Software' + 5409: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 5409 + name: + type: string + example: 'Metanet Software Inc' + 5411: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 5411 + name: + type: string + example: 'Meteorise' + 5412: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 5412 + name: + type: string + example: 'Metro' + 5414: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 5414 + name: + type: string + example: 'Metro Corp' + 5415: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 5415 + name: + type: string + example: 'Metro Corporation' + 5416: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 5416 + name: + type: string + example: 'Metro Graphics' + 5413: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 5413 + name: + type: string + example: 'Metro3D, Inc.' + 5419: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 5419 + name: + type: string + example: 'Metroid Quest' + 5420: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 5420 + name: + type: string + example: 'Metropolis Digital, Inc.' + 5421: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 5421 + name: + type: string + example: 'Metropolis Software House' + 10170: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 10170 + name: + type: string + example: 'Meyer Glass Interactive' + 5424: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 5424 + name: + type: string + example: 'MGame Corporation' + 5425: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 5425 + name: + type: string + example: 'Mgame Corporation, Noah System' + 5426: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 5426 + name: + type: string + example: 'MGF' + 5427: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 5427 + name: + type: string + example: 'MGM Interactive' + 5428: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 5428 + name: + type: string + example: 'Mia' + 5429: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 5429 + name: + type: string + example: 'miau' + 5431: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 5431 + name: + type: string + example: 'Michael' + 5432: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 5432 + name: + type: string + example: 'Michael A. Hawker' + 5433: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 5433 + name: + type: string + example: 'Michael Aichlmayr' + 5434: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 5434 + name: + type: string + example: 'Michael Denio' + 5435: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 5435 + name: + type: string + example: 'Michael Hayes' + 5436: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 5436 + name: + type: string + example: 'Michael Hedley' + 5437: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 5437 + name: + type: string + example: 'Michael J. Hanson' + 5438: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 5438 + name: + type: string + example: 'Michael J. Lindner' + 10171: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 10171 + name: + type: string + example: 'Michael Schaffer' + 5440: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 5440 + name: + type: string + example: 'Michael Todd Games' + 5441: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 5441 + name: + type: string + example: 'Michael Ware' + 5442: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 5442 + name: + type: string + example: 'Michal Brzozowski' + 5443: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 5443 + name: + type: string + example: 'Michal Hlavac' + 5430: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 5430 + name: + type: string + example: 'Michał Marcinkowski' + 5444: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 5444 + name: + type: string + example: 'MichTron' + 5445: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 5445 + name: + type: string + example: 'Mick West, James Clarke, Mister X & Jonathan Dunn' + 5446: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 5446 + name: + type: string + example: 'Micomeq' + 5447: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 5447 + name: + type: string + example: 'Micott & Basara' + 5448: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 5448 + name: + type: string + example: 'Micro Cabin Co.' + 10173: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 10173 + name: + type: string + example: 'Micro Design' + 5451: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 5451 + name: + type: string + example: 'Micro F/X Software' + 5452: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 5452 + name: + type: string + example: 'Micro Factory' + 5453: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 5453 + name: + type: string + example: 'Micro Fun' + 5454: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 5454 + name: + type: string + example: 'Micro Genius' + 5455: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 5455 + name: + type: string + example: 'Micro Graphic Image' + 5456: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 5456 + name: + type: string + example: 'Micro League Sports Association' + 5457: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 5457 + name: + type: string + example: 'Micro Power' + 5459: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 5459 + name: + type: string + example: 'Micro-partner Software GmbH' + 9944: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 9944 + name: + type: string + example: 'Microïds' + 5461: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 5461 + name: + type: string + example: 'Microblast Games' + 10207: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 10207 + name: + type: string + example: 'MicroCabin' + 5464: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 5464 + name: + type: string + example: 'Microcomputer Games, Inc.' + 5466: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 5466 + name: + type: string + example: 'Microdeal' + 5467: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 5467 + name: + type: string + example: 'MicroDeal Ltd.' + 5468: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 5468 + name: + type: string + example: 'Microdigital' + 5469: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 5469 + name: + type: string + example: 'Microforum' + 5470: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 5470 + name: + type: string + example: 'Microids' + 5472: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 5472 + name: + type: string + example: 'MicroIllusions' + 5473: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 5473 + name: + type: string + example: 'MicroMagic Inc.' + 5474: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 5474 + name: + type: string + example: 'Micromania' + 5458: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 5458 + name: + type: string + example: 'Micromega' + 5477: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 5477 + name: + type: string + example: 'Micronet Co. Ltd.' + 5479: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 5479 + name: + type: string + example: 'Micronics' + 5480: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 5480 + name: + type: string + example: 'Microplay Software' + 5481: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 5481 + name: + type: string + example: 'Micropose' + 10174: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 10174 + name: + type: string + example: 'MicroProse Software' + 5483: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 5483 + name: + type: string + example: 'MicroProse Software, Inc.' + 5487: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 5487 + name: + type: string + example: 'Micros' + 5488: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 5488 + name: + type: string + example: 'Microsmith' + 5489: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 5489 + name: + type: string + example: 'Microsmiths Inc.' + 10176: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 10176 + name: + type: string + example: 'Microsoft' + 5491: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 5491 + name: + type: string + example: 'Microsoft Studios' + 5495: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 5495 + name: + type: string + example: 'Microsphere Computer Services Ltd.' + 5496: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 5496 + name: + type: string + example: 'Microvalue' + 5497: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 5497 + name: + type: string + example: 'Microvision' + 5498: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 5498 + name: + type: string + example: 'Mid Carolina Media' + 5500: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 5500 + name: + type: string + example: 'Midas games' + 5499: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 5499 + name: + type: string + example: 'Midas Interactive Entertainment' + 5502: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 5502 + name: + type: string + example: 'MidBoss' + 5503: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 5503 + name: + type: string + example: 'Midcoin' + 5504: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 5504 + name: + type: string + example: 'Midnight Games' + 5505: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 5505 + name: + type: string + example: 'Midnight Status' + 5506: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 5506 + name: + type: string + example: 'MidNite Software' + 5507: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 5507 + name: + type: string + example: 'Midway' + 5509: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 5509 + name: + type: string + example: 'Midway Acclaim EA' + 5511: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 5511 + name: + type: string + example: 'Midway Chicago' + 5512: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 5512 + name: + type: string + example: 'Midway Games' + 5515: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 5515 + name: + type: string + example: 'Midway Manufacturing Co.' + 5517: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 5517 + name: + type: string + example: 'Midway Studios' + 5518: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 5518 + name: + type: string + example: 'Midway Studios - Austin' + 5520: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 5520 + name: + type: string + example: 'Midway Studios - San Diego' + 5510: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 5510 + name: + type: string + example: 'Midway Studios -- Austin' + 5519: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 5519 + name: + type: string + example: 'Midway Studios -- Los Angeles' + 5516: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 5516 + name: + type: string + example: 'Midway Studios -- Newcastle' + 5524: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 5524 + name: + type: string + example: 'mif2000' + 5525: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 5525 + name: + type: string + example: 'MIG' + 5526: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 5526 + name: + type: string + example: 'Might and Delight' + 5527: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 5527 + name: + type: string + example: 'Mighty Craft' + 5528: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 5528 + name: + type: string + example: 'Mighty Fox Studio' + 5529: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 5529 + name: + type: string + example: 'Mighty Rabbit Studios' + 5531: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 5531 + name: + type: string + example: 'Miika Virpioja' + 5532: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 5532 + name: + type: string + example: 'Mijin' + 5533: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 5533 + name: + type: string + example: 'Mike Bithell' + 5534: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 5534 + name: + type: string + example: 'Mike Bithell Games' + 5535: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 5535 + name: + type: string + example: 'Mike Davis' + 5536: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 5536 + name: + type: string + example: 'Mike Hommel Seth Robinson' + 5537: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 5537 + name: + type: string + example: 'Mike Hutchinson' + 10178: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 10178 + name: + type: string + example: 'Mike Lamb' + 5539: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 5539 + name: + type: string + example: 'Mike MacDee' + 5540: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 5540 + name: + type: string + example: 'Mike Singleton' + 5541: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 5541 + name: + type: string + example: 'Mike Webb' + 10181: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 10181 + name: + type: string + example: 'Mike Woodroffe' + 5543: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 5543 + name: + type: string + example: 'Mikev Design' + 5544: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 5544 + name: + type: string + example: 'Mikoishi' + 5545: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 5545 + name: + type: string + example: 'Mikro-Gen' + 5548: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 5548 + name: + type: string + example: 'Milestone Inc.' + 5547: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 5547 + name: + type: string + example: 'Milestone S.r.l.' + 5552: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 5552 + name: + type: string + example: 'Milkstone Studios' + 5553: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 5553 + name: + type: string + example: 'Milky Tea Studios' + 5554: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 5554 + name: + type: string + example: 'Millennium Interactive Ltd' + 5560: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 5560 + name: + type: string + example: 'Millennium Kitchen' + 5561: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 5561 + name: + type: string + example: 'Million' + 5329: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 5329 + name: + type: string + example: 'Milton Bradley' + 5563: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 5563 + name: + type: string + example: 'Milton Guasti (DoctorM64)' + 5564: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 5564 + name: + type: string + example: 'Mimi Pro' + 5565: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 5565 + name: + type: string + example: 'Mimi-Pro' + 5566: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 5566 + name: + type: string + example: 'Mimimi' + 5567: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 5567 + name: + type: string + example: 'Mimimi Productions' + 5568: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 5568 + name: + type: string + example: 'Min' + 5569: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 5569 + name: + type: string + example: 'Min Corp' + 5570: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 5570 + name: + type: string + example: 'Min Corporation' + 5572: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 5572 + name: + type: string + example: 'Minakuchi Engineering' + 5571: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 5571 + name: + type: string + example: 'Minato Giken' + 5575: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 5575 + name: + type: string + example: 'Minato Soft' + 5576: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 5576 + name: + type: string + example: 'Mind Candy' + 5577: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 5577 + name: + type: string + example: 'Mind''s Eye' + 5579: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 5579 + name: + type: string + example: 'Mindcraft' + 5580: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 5580 + name: + type: string + example: 'Mindcraft Software, Inc.' + 5581: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 5581 + name: + type: string + example: 'mindFactory' + 5582: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 5582 + name: + type: string + example: 'MindRec' + 5583: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 5583 + name: + type: string + example: 'Minds Eye' + 5578: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 5578 + name: + type: string + example: 'Minds-Eye Productions' + 5586: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 5586 + name: + type: string + example: 'Mindscape' + 5588: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 5588 + name: + type: string + example: 'Mindscape International' + 5589: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 5589 + name: + type: string + example: 'Mindscape International Ltd' + 5587: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 5587 + name: + type: string + example: 'Mindscape, Inc.' + 5591: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 5591 + name: + type: string + example: 'MindSpan' + 5594: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 5594 + name: + type: string + example: 'Mindware' + 5595: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 5595 + name: + type: string + example: 'Mindware Studios' + 5596: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 5596 + name: + type: string + example: 'Mine Loader Software' + 5597: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 5597 + name: + type: string + example: 'MiniBoss' + 5598: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 5598 + name: + type: string + example: 'Miniclip.com' + 5599: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 5599 + name: + type: string + example: 'MiniVisions' + 10376: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 10376 + name: + type: string + example: 'MinMax Games' + 5600: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 5600 + name: + type: string + example: 'MinMax Games' + 5601: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 5601 + name: + type: string + example: 'Mino Games' + 5602: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 5602 + name: + type: string + example: 'Minor Key Games' + 5604: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 5604 + name: + type: string + example: 'Minoraxis' + 5605: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 5605 + name: + type: string + example: 'Minority Media' + 5606: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 5606 + name: + type: string + example: 'Mint Co.' + 5607: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 5607 + name: + type: string + example: 'Miracle Designs' + 5608: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 5608 + name: + type: string + example: 'Miracle Games' + 5609: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 5609 + name: + type: string + example: 'Miracle Kidz' + 5610: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 5610 + name: + type: string + example: 'Miracle Positive' + 5611: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 5611 + name: + type: string + example: 'Mirage' + 5612: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 5612 + name: + type: string + example: 'Mirage Graphics, Inc.' + 5613: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 5613 + name: + type: string + example: 'Mirage Studios' + 5615: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 5615 + name: + type: string + example: 'Mirage Technologies (Multimedia) Ltd.' + 5617: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 5617 + name: + type: string + example: 'Mirinae Software' + 5618: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 5618 + name: + type: string + example: 'Mirrorsoft' + 5619: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 5619 + name: + type: string + example: 'Misfits Attic' + 5620: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 5620 + name: + type: string + example: 'MissScripter' + 5621: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 5621 + name: + type: string + example: 'Mister Chip' + 5622: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 5622 + name: + type: string + example: 'Mistic Software' + 5624: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 5624 + name: + type: string + example: 'Mistwalker' + 5626: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 5626 + name: + type: string + example: 'Mitchell Corporation' + 5629: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 5629 + name: + type: string + example: 'Mitchelle' + 5630: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 5630 + name: + type: string + example: 'Mitec' + 5631: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 5631 + name: + type: string + example: 'Mithis Games' + 5633: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 5633 + name: + type: string + example: 'Mix Max' + 5634: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 5634 + name: + type: string + example: 'MixedBag Sri' + 5635: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 5635 + name: + type: string + example: 'Miyazaki' + 5636: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 5636 + name: + type: string + example: 'MLB AM' + 5637: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 5637 + name: + type: string + example: 'MLB.com' + 5638: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 5638 + name: + type: string + example: 'mlin Graphics Software Ltd.' + 5639: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 5639 + name: + type: string + example: 'MNM Software' + 5640: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 5640 + name: + type: string + example: 'MoaCube' + 5641: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 5641 + name: + type: string + example: 'Mobage' + 5642: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 5642 + name: + type: string + example: 'Mobigame' + 5643: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 5643 + name: + type: string + example: 'Mobile21' + 5646: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 5646 + name: + type: string + example: 'MobilityWare' + 5647: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 5647 + name: + type: string + example: 'Mobius Entertainment' + 5648: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 5648 + name: + type: string + example: 'Mode 7 Games' + 5650: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 5650 + name: + type: string + example: 'Model Racing' + 5651: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 5651 + name: + type: string + example: 'Modern Dream' + 5652: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 5652 + name: + type: string + example: 'Moderngroove' + 5653: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 5653 + name: + type: string + example: 'MoFunZone Inc' + 5654: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 5654 + name: + type: string + example: 'MogoTXT' + 5655: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 5655 + name: + type: string + example: 'Mogul Communications' + 5656: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 5656 + name: + type: string + example: 'Mohawk Games' + 5657: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 5657 + name: + type: string + example: 'Mohsen Rahimifar' + 5658: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 5658 + name: + type: string + example: 'Mojang' + 5661: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 5661 + name: + type: string + example: 'Mojo Bones' + 5664: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 5664 + name: + type: string + example: 'Mokus' + 5665: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 5665 + name: + type: string + example: 'Momentum Digital Media Technologies' + 5666: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 5666 + name: + type: string + example: 'Mommy''s Best Games' + 5667: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 5667 + name: + type: string + example: 'mondial Games' + 5668: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 5668 + name: + type: string + example: 'Mondo Productions' + 5670: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 5670 + name: + type: string + example: 'Monk James' + 5669: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 5669 + name: + type: string + example: 'Monkey Bar Games' + 5672: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 5672 + name: + type: string + example: 'Monkey Do Productions' + 5674: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 5674 + name: + type: string + example: 'Monkey Stories Games' + 5675: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 5675 + name: + type: string + example: 'Monkeystone' + 5676: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 5676 + name: + type: string + example: 'Monochrome LLC' + 5677: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 5677 + name: + type: string + example: 'Monolight' + 5678: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 5678 + name: + type: string + example: 'Monolith' + 5679: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 5679 + name: + type: string + example: 'Monolith Productions, Inc.' + 10186: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 10186 + name: + type: string + example: 'Monolith Soft' + 5681: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 5681 + name: + type: string + example: 'Monolith Software, Inc.' + 5686: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 5686 + name: + type: string + example: 'Monomi Park' + 5687: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 5687 + name: + type: string + example: 'Monster Games, Inc.' + 5692: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 5692 + name: + type: string + example: 'Monsterland' + 5693: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 5693 + name: + type: string + example: 'Monte Cristo Multimedia' + 5695: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 5695 + name: + type: string + example: 'MoNTE Soft' + 5696: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 5696 + name: + type: string + example: 'Monumental Games' + 5697: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 5697 + name: + type: string + example: 'Moon Studios' + 5698: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 5698 + name: + type: string + example: 'Moonlight' + 5699: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 5699 + name: + type: string + example: 'Moonlite Software' + 5700: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 5700 + name: + type: string + example: 'Moonpod' + 5701: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 5701 + name: + type: string + example: 'Mooosh' + 5702: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 5702 + name: + type: string + example: 'Moppet Video' + 5703: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 5703 + name: + type: string + example: 'Moppin' + 5704: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 5704 + name: + type: string + example: 'Morenatsu Project' + 5705: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 5705 + name: + type: string + example: 'Morgen Studios' + 5706: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 5706 + name: + type: string + example: 'Morning Star Multimedia' + 5708: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 5708 + name: + type: string + example: 'Morpheus' + 5709: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 5709 + name: + type: string + example: 'Mortis Ghost' + 5710: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 5710 + name: + type: string + example: 'Moss' + 5711: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 5711 + name: + type: string + example: 'Moss Co., Ltd.' + 5714: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 5714 + name: + type: string + example: 'Mossmouth' + 5715: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 5715 + name: + type: string + example: 'Most Wanted Entertainment' + 5716: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 5716 + name: + type: string + example: 'Mota Softworks' + 5717: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 5717 + name: + type: string + example: 'Motelsoft' + 5718: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 5718 + name: + type: string + example: 'Mothership Entertainment' + 5719: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 5719 + name: + type: string + example: 'Mothership Entertainment' + 5720: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 5720 + name: + type: string + example: 'Motion Picture House' + 5721: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 5721 + name: + type: string + example: 'Motion Twin' + 5722: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 5722 + name: + type: string + example: 'Motive Studios, EA Digital Illusions CE, Criterion Games' + 5723: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 5723 + name: + type: string + example: 'Motivetime Ltd.' + 9963: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 9963 + name: + type: string + example: 'Motivetime Sega Mega Drive Elite Systems' + 5726: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 5726 + name: + type: string + example: 'MotiveTime, Ltd.' + 5727: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 5727 + name: + type: string + example: 'Motown' + 5728: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 5728 + name: + type: string + example: 'Mouldy Toof Studios' + 5729: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 5729 + name: + type: string + example: 'Mountain Sheep' + 5730: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 5730 + name: + type: string + example: 'Mousechief' + 5731: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 5731 + name: + type: string + example: 'MOVIC' + 5732: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 5732 + name: + type: string + example: 'Movie Interactive' + 5733: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 5733 + name: + type: string + example: 'Movie Software' + 5734: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 5734 + name: + type: string + example: 'Movietime' + 5735: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 5735 + name: + type: string + example: 'MovieTime Ltd.' + 5736: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 5736 + name: + type: string + example: 'MowseChao' + 5737: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 5737 + name: + type: string + example: 'MP Soft' + 5738: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 5738 + name: + type: string + example: 'MPS Labs' + 5740: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 5740 + name: + type: string + example: 'Mr Chip Software' + 5742: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 5742 + name: + type: string + example: 'Mr Qwak' + 5743: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 5743 + name: + type: string + example: 'MR Software' + 5739: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 5739 + name: + type: string + example: 'Mr. Chip Software' + 5741: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 5741 + name: + type: string + example: 'Mr. Micro' + 5747: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 5747 + name: + type: string + example: 'Mr. Weird Guy' + 5749: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 5749 + name: + type: string + example: 'mSeed Games' + 5750: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 5750 + name: + type: string + example: 'MSX Area' + 5751: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 5751 + name: + type: string + example: 'Msx Magazine' + 5752: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 5752 + name: + type: string + example: 'MTM Games' + 5753: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 5753 + name: + type: string + example: 'MTO' + 5754: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 5754 + name: + type: string + example: 'MTV Games' + 5755: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 5755 + name: + type: string + example: 'Mucky Foot Productions' + 5757: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 5757 + name: + type: string + example: 'Mud Duck Productions' + 5759: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 5759 + name: + type: string + example: 'MuHa Games' + 5760: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 5760 + name: + type: string + example: 'Multimedia Intelligence Transfer' + 5762: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 5762 + name: + type: string + example: 'Multivision' + 5763: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 5763 + name: + type: string + example: 'MumboJumbo, LLC' + 5766: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 5766 + name: + type: string + example: 'Mundfish' + 5767: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 5767 + name: + type: string + example: 'Murudai' + 5768: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 5768 + name: + type: string + example: 'muse' + 5769: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 5769 + name: + type: string + example: 'Muse Games' + 5770: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 5770 + name: + type: string + example: 'Muse Software' + 5771: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 5771 + name: + type: string + example: 'Musical Plan' + 5773: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 5773 + name: + type: string + example: 'Mutant Games' + 5774: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 5774 + name: + type: string + example: 'Mutation Sodtware' + 5775: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 5775 + name: + type: string + example: 'Mutech' + 5776: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 5776 + name: + type: string + example: 'Muteki' + 5777: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 5777 + name: + type: string + example: 'Muteki Corporation' + 5778: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 5778 + name: + type: string + example: 'Muzzy Lane' + 5779: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 5779 + name: + type: string + example: 'My Wife Rocks' + 5780: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 5780 + name: + type: string + example: 'Mylstar' + 5781: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 5781 + name: + type: string + example: 'Mystic Box' + 5782: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 5782 + name: + type: string + example: 'Mystic Software' + 5783: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 5783 + name: + type: string + example: 'Mystique' + 5784: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 5784 + name: + type: string + example: 'Mythic' + 5785: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 5785 + name: + type: string + example: 'Mythicon' + 5786: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 5786 + name: + type: string + example: 'Mythos Games' + 5788: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 5788 + name: + type: string + example: 'Mythos Games LTD' + 5789: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 5789 + name: + type: string + example: 'Mythos Software, Inc.' + 5791: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 5791 + name: + type: string + example: 'N-Fusion Interactive' + 5793: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 5793 + name: + type: string + example: 'n-Space, Inc' + 5795: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 5795 + name: + type: string + example: 'N3V Games' + 5797: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 5797 + name: + type: string + example: 'NAC Geographic Products Inc.' + 5798: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 5798 + name: + type: string + example: 'Nacoty' + 5799: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 5799 + name: + type: string + example: 'Nadeo' + 5800: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 5800 + name: + type: string + example: 'Nagi-P Soft' + 5801: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 5801 + name: + type: string + example: 'Nai''a Digital Works' + 5802: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 5802 + name: + type: string + example: 'Nakanihon' + 5803: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 5803 + name: + type: string + example: 'Naked Sky Entertainment' + 5804: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 5804 + name: + type: string + example: 'Namco' + 10001: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 10001 + name: + type: string + example: 'Namco Bandai Games Europe SAS' + 5809: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 5809 + name: + type: string + example: 'Namco Hometek' + 5812: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 5812 + name: + type: string + example: 'Namco Splatter Team' + 5813: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 5813 + name: + type: string + example: 'Namco Tales Studio' + 5818: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 5818 + name: + type: string + example: 'Namcot' + 5820: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 5820 + name: + type: string + example: 'Nanao' + 5819: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 5819 + name: + type: string + example: 'NanaOn-Sha Co., Ltd.' + 5824: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 5824 + name: + type: string + example: 'Nano Games sp. z o.o.' + 5825: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 5825 + name: + type: string + example: 'NAP Consumer Electronics Corp.' + 5826: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 5826 + name: + type: string + example: 'NAPS Team' + 5827: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 5827 + name: + type: string + example: 'Nasco' + 5828: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 5828 + name: + type: string + example: 'Nate Schmold' + 5829: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 5829 + name: + type: string + example: 'Nathan Seedhouse' + 5830: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 5830 + name: + type: string + example: 'Nathan Tolbert & Chris Hildenbrand' + 5831: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 5831 + name: + type: string + example: 'Natsu System' + 5833: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 5833 + name: + type: string + example: 'Natsume' + 5834: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 5834 + name: + type: string + example: 'NATSUME ATARI Inc.' + 5838: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 5838 + name: + type: string + example: 'Natural Motion' + 5839: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 5839 + name: + type: string + example: 'Naughty Dog Software' + 5841: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 5841 + name: + type: string + example: 'Nauris Amatnieks' + 5842: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 5842 + name: + type: string + example: 'Nautilus' + 5843: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 5843 + name: + type: string + example: 'Navarone' + 5844: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 5844 + name: + type: string + example: 'Navarre Corp' + 5846: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 5846 + name: + type: string + example: 'NAXAT Soft' + 10190: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 10190 + name: + type: string + example: 'Nayma Software' + 5849: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 5849 + name: + type: string + example: 'Nazca' + 5850: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 5850 + name: + type: string + example: 'NC Soft' + 10118: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 10118 + name: + type: string + example: 'NCS' + 5851: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 5851 + name: + type: string + example: 'NCS Corporation' + 5860: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 5860 + name: + type: string + example: 'ND Games' + 5858: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 5858 + name: + type: string + example: 'NDCube' + 5862: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 5862 + name: + type: string + example: 'Ndemic Creations' + 5863: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 5863 + name: + type: string + example: 'NDOORS Corporation' + 5864: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 5864 + name: + type: string + example: 'NDS Software' + 1998: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 1998 + name: + type: string + example: 'NEC' + 5867: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 5867 + name: + type: string + example: 'nec adventure' + 5868: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 5868 + name: + type: string + example: 'NEC AVENUE' + 5872: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 5872 + name: + type: string + example: 'NEC Home Electronics' + 5873: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 5873 + name: + type: string + example: 'NEC Interchannel, Ltd.' + 5874: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 5874 + name: + type: string + example: 'Neckbolt' + 5875: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 5875 + name: + type: string + example: 'Necrophone Games' + 10105: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 10105 + name: + type: string + example: 'Neil Coxhead' + 5876: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 5876 + name: + type: string + example: 'Neil Laird' + 5877: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 5877 + name: + type: string + example: 'NEKKI' + 5878: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 5878 + name: + type: string + example: 'Neko Entertainment' + 5880: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 5880 + name: + type: string + example: 'NEKO WORKs' + 5881: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 5881 + name: + type: string + example: 'neko.works' + 5882: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 5882 + name: + type: string + example: 'Nekogumi' + 5884: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 5884 + name: + type: string + example: 'Nemesys Games' + 5886: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 5886 + name: + type: string + example: 'Nemoid' + 10195: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 10195 + name: + type: string + example: 'Nenefranz' + 5889: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 5889 + name: + type: string + example: 'Neo Art Deca Team' + 5890: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 5890 + name: + type: string + example: 'Neo Conception International' + 5891: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 5891 + name: + type: string + example: 'Neo Geo' + 5888: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 5888 + name: + type: string + example: 'neo software' + 5893: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 5893 + name: + type: string + example: 'neo Software Produktions GmbH' + 5894: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 5894 + name: + type: string + example: 'NeoBards Entertainment' + 5895: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 5895 + name: + type: string + example: 'NeoCore Games' + 5898: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 5898 + name: + type: string + example: 'NeoDev Corporation' + 5899: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 5899 + name: + type: string + example: 'Neon' + 5900: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 5900 + name: + type: string + example: 'NEON Software GmbH' + 5902: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 5902 + name: + type: string + example: 'Neon Studios' + 5903: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 5903 + name: + type: string + example: 'Neopica' + 5904: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 5904 + name: + type: string + example: 'Neople' + 10232: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 10232 + name: + type: string + example: 'Neowiz Mobile' + 5905: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 5905 + name: + type: string + example: 'Nerdook Productions' + 5906: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 5906 + name: + type: string + example: 'Nerjyzed Entertainment' + 5907: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 5907 + name: + type: string + example: 'Nerve Software' + 5908: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 5908 + name: + type: string + example: 'Nessylum Games' + 5909: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 5909 + name: + type: string + example: 'NetDevil' + 5910: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 5910 + name: + type: string + example: 'NetEase Games' + 5911: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 5911 + name: + type: string + example: 'Netherock' + 5865: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 5865 + name: + type: string + example: 'NetherRealm Studios' + 5913: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 5913 + name: + type: string + example: 'Netmarble Games' + 5914: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 5914 + name: + type: string + example: 'Network 23' + 5916: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 5916 + name: + type: string + example: 'Neudelsoft' + 5917: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 5917 + name: + type: string + example: 'NeuralGames' + 5918: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 5918 + name: + type: string + example: 'Neuron Age' + 5919: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 5919 + name: + type: string + example: 'Neurostone' + 5920: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 5920 + name: + type: string + example: 'Neutron Games' + 5921: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 5921 + name: + type: string + example: 'Never Ending Soft Team' + 5922: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 5922 + name: + type: string + example: 'Never-Land Company' + 5924: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 5924 + name: + type: string + example: 'Neverland' + 5925: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 5925 + name: + type: string + example: 'Neverland Co.' + 5926: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 5926 + name: + type: string + example: 'Neversoft Entertainment' + 5930: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 5930 + name: + type: string + example: 'Nevrax' + 5931: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 5931 + name: + type: string + example: 'New 8-bit Heroes' + 5932: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 5932 + name: + type: string + example: 'New Bits On The RAM' + 5933: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 5933 + name: + type: string + example: 'New Corporation' + 5934: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 5934 + name: + type: string + example: 'New Egg' + 5935: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 5935 + name: + type: string + example: 'New Generation Software' + 5936: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 5936 + name: + type: string + example: 'New Level Software' + 5938: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 5938 + name: + type: string + example: 'New Star Games Ltd' + 5939: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 5939 + name: + type: string + example: 'New System House Oh!' + 5940: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 5940 + name: + type: string + example: 'New World Computing, Inc.' + 5942: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 5942 + name: + type: string + example: 'New World Ideas' + 5943: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 5943 + name: + type: string + example: 'New World Interactive' + 5944: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 5944 + name: + type: string + example: 'NewKidCo' + 5945: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 5945 + name: + type: string + example: 'Nex Entertainment' + 5946: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 5946 + name: + type: string + example: 'Nexa Corporation' + 5948: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 5948 + name: + type: string + example: 'Nexat Soft' + 5949: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 5949 + name: + type: string + example: 'Nexoft' + 5950: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 5950 + name: + type: string + example: 'Nexon' + 5951: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 5951 + name: + type: string + example: 'NEXON M Inc.' + 5952: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 5952 + name: + type: string + example: 'Next Level Games' + 5955: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 5955 + name: + type: string + example: 'Next Wave Team' + 5956: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 5956 + name: + type: string + example: 'Nextech' + 5958: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 5958 + name: + type: string + example: 'Nexus' + 5959: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 5959 + name: + type: string + example: 'Nexus Game Studio' + 5960: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 5960 + name: + type: string + example: 'Nexus Interact' + 5961: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 5961 + name: + type: string + example: 'Nexus Productions Ltd' + 10198: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 10198 + name: + type: string + example: 'nFusion Interactive LLC' + 5963: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 5963 + name: + type: string + example: 'NG:DEV.TEAM' + 5964: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 5964 + name: + type: string + example: 'NGD Studios' + 5965: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 5965 + name: + type: string + example: 'NGM Productions' + 5966: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 5966 + name: + type: string + example: 'ngmoco' + 5967: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 5967 + name: + type: string + example: 'NHK' + 5968: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 5968 + name: + type: string + example: 'NHN Games' + 5969: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 5969 + name: + type: string + example: 'Niantic, Inc.' + 5970: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 5970 + name: + type: string + example: 'NianticLabs@Google' + 5971: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 5971 + name: + type: string + example: 'Nic Ford' + 10200: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 10200 + name: + type: string + example: 'Nicalis' + 5972: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 5972 + name: + type: string + example: 'Nicalis, Inc.' + 5975: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 5975 + name: + type: string + example: 'Nice Ideas' + 5976: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 5976 + name: + type: string + example: 'Nicesoft' + 5977: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 5977 + name: + type: string + example: 'Nichibutsu' + 5981: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 5981 + name: + type: string + example: 'Nick Games' + 5982: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 5982 + name: + type: string + example: 'Nick Jones' + 5983: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 5983 + name: + type: string + example: 'Nick Jones, Marc Eason, Malcolm Smith' + 5984: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 5984 + name: + type: string + example: 'Nickervision Studios' + 5985: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 5985 + name: + type: string + example: 'Nicolas Games Intoxicate' + 5986: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 5986 + name: + type: string + example: 'NICS Co. Ltd.' + 5987: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 5987 + name: + type: string + example: 'Nidecom' + 5988: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 5988 + name: + type: string + example: 'Niels Bauer Games' + 5989: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 5989 + name: + type: string + example: 'Nifflas' + 5990: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 5990 + name: + type: string + example: 'Nifflas Games' + 5991: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 5991 + name: + type: string + example: 'Nifflas'' Games' + 5992: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 5992 + name: + type: string + example: 'Night Dive Studios' + 5993: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 5993 + name: + type: string + example: 'Night Light Interactive' + 5994: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 5994 + name: + type: string + example: 'Night Owl Design' + 5995: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 5995 + name: + type: string + example: 'Night School Studio' + 5996: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 5996 + name: + type: string + example: 'Night School Studios' + 5997: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 5997 + name: + type: string + example: 'Nighthawk Interactive' + 5998: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 5998 + name: + type: string + example: 'Nightingale' + 5999: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 5999 + name: + type: string + example: 'NIGORO' + 6000: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 6000 + name: + type: string + example: 'Nihilistic Software' + 6003: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 6003 + name: + type: string + example: 'Nihilocrat' + 6004: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 6004 + name: + type: string + example: 'Nihon Application' + 10201: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 10201 + name: + type: string + example: 'Nihon Bussan' + 6006: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 6006 + name: + type: string + example: 'Nihon Bussan Co' + 6005: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 6005 + name: + type: string + example: 'Nihon Bussan Co., Ltd.' + 6009: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 6009 + name: + type: string + example: 'Nihon Bussan/AV Japan' + 6010: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 6010 + name: + type: string + example: 'Nihon Falcom Corp.' + 6014: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 6014 + name: + type: string + example: 'Nihon System' + 6016: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 6016 + name: + type: string + example: 'Nihon Telenet' + 6017: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 6017 + name: + type: string + example: 'Nike, Inc.' + 6018: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 6018 + name: + type: string + example: 'Nikita' + 6019: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 6019 + name: + type: string + example: 'Nikita Online' + 6020: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 6020 + name: + type: string + example: 'Nikitova' + 6021: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 6021 + name: + type: string + example: 'Nikolay Goncharov' + 6022: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 6022 + name: + type: string + example: 'Nikson.' + 6023: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 6023 + name: + type: string + example: 'Nimblebit' + 6025: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 6025 + name: + type: string + example: 'Nimbly Games' + 6026: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 6026 + name: + type: string + example: 'Ninai' + 6027: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 6027 + name: + type: string + example: 'Nine Dragons Software' + 6028: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 6028 + name: + type: string + example: 'Ninja Bee' + 6029: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 6029 + name: + type: string + example: 'ninja kiwi' + 6030: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 6030 + name: + type: string + example: 'Ninja Pig Studios' + 6031: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 6031 + name: + type: string + example: 'Ninja Studio' + 6032: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 6032 + name: + type: string + example: 'Ninja Theory' + 6033: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 6033 + name: + type: string + example: 'NinjaBee' + 6034: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 6034 + name: + type: string + example: 'Ninjalex' + 6035: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 6035 + name: + type: string + example: 'NinjaTheory' + 6036: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 6036 + name: + type: string + example: 'NinjaxGames' + 6037: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 6037 + name: + type: string + example: 'Nintendo' + 6041: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 6041 + name: + type: string + example: 'Nintendo Co., Ltd.' + 6042: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 6042 + name: + type: string + example: 'Nintendo Creative Department' + 6043: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 6043 + name: + type: string + example: 'Nintendo EAD' + 6044: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 6044 + name: + type: string + example: 'Nintendo EAD Group No. 1' + 6045: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 6045 + name: + type: string + example: 'Nintendo EAD Tokyo' + 6048: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 6048 + name: + type: string + example: 'Nintendo Entertainment Analysis & Development' + 10297: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 10297 + name: + type: string + example: 'Nintendo EPD' + 6049: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 6049 + name: + type: string + example: 'Nintendo IRD' + 6050: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 6050 + name: + type: string + example: 'Nintendo of America' + 6051: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 6051 + name: + type: string + example: 'Nintendo R&D1' + 6052: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 6052 + name: + type: string + example: 'Nintendo R&D1, TOSE' + 6053: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 6053 + name: + type: string + example: 'Nintendo R&D2' + 6054: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 6054 + name: + type: string + example: 'Nintendo R&D3' + 6055: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 6055 + name: + type: string + example: 'Nintendo R&D4' + 6056: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 6056 + name: + type: string + example: 'Nintendo Research' + 6057: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 6057 + name: + type: string + example: 'Nintendo Research & Development 1' + 6058: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 6058 + name: + type: string + example: 'Nintendo Retro Stuios' + 6059: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 6059 + name: + type: string + example: 'Nintendo Software Technology' + 6060: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 6060 + name: + type: string + example: 'Nintendo SPD Group No.1' + 6061: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 6061 + name: + type: string + example: 'Nintendo SPD, Red Entertainment, M2, and Artdink' + 6066: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 6066 + name: + type: string + example: 'Nioreh' + 6067: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 6067 + name: + type: string + example: 'Nippon' + 6068: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 6068 + name: + type: string + example: 'Nippon Bcom' + 6069: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 6069 + name: + type: string + example: 'NIPPON COLUMBIA' + 6072: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 6072 + name: + type: string + example: 'Nippon Create' + 6073: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 6073 + name: + type: string + example: 'Nippon Dexter Co.' + 6075: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 6075 + name: + type: string + example: 'Nippon Ichi Software Inc.' + 6080: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 6080 + name: + type: string + example: 'Nippon Telenet' + 6082: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 6082 + name: + type: string + example: 'Nirvana Systems' + 6084: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 6084 + name: + type: string + example: 'NIS' + 6085: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 6085 + name: + type: string + example: 'NIS America' + 6086: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 6086 + name: + type: string + example: 'Nissimo' + 6087: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 6087 + name: + type: string + example: 'nisso' + 6088: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 6088 + name: + type: string + example: 'Nitchibutsu' + 6089: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 6089 + name: + type: string + example: 'Nitro Games' + 10250: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 10250 + name: + type: string + example: 'Nitro Games (PC Version)' + 6090: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 6090 + name: + type: string + example: 'Nitroplus' + 6092: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 6092 + name: + type: string + example: 'Nival' + 6093: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 6093 + name: + type: string + example: 'Nival - N-Game Studios' + 6094: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 6094 + name: + type: string + example: 'Nival Interactive' + 6095: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 6095 + name: + type: string + example: 'Nix' + 6096: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 6096 + name: + type: string + example: 'Nixxes Software' + 10000: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 10000 + name: + type: string + example: 'Nixxes Software BV' + 6097: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 6097 + name: + type: string + example: 'NK System' + 6098: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 6098 + name: + type: string + example: 'NLABSOFT Co., Ltd.' + 10304: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 10304 + name: + type: string + example: 'NMK' + 6099: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 6099 + name: + type: string + example: 'NMK Co. Ltd.' + 6102: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 6102 + name: + type: string + example: 'NMN Software' + 6103: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 6103 + name: + type: string + example: 'NMS Software' + 6106: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 6106 + name: + type: string + example: 'No Brakes Games' + 6107: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 6107 + name: + type: string + example: 'No Code' + 6108: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 6108 + name: + type: string + example: 'No More Room in Hell Team' + 6109: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 6109 + name: + type: string + example: 'No Way Studio' + 6110: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 6110 + name: + type: string + example: 'Noa' + 6111: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 6111 + name: + type: string + example: 'Nobilis' + 6112: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 6112 + name: + type: string + example: 'Noble Empire Corp.' + 6113: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 6113 + name: + type: string + example: 'NoClip' + 6114: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 6114 + name: + type: string + example: 'Nocturnal' + 6115: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 6115 + name: + type: string + example: 'Nocturnal Works' + 6116: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 6116 + name: + type: string + example: 'Noio' + 6117: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 6117 + name: + type: string + example: 'Noio, Licorice' + 6118: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 6118 + name: + type: string + example: 'Noise' + 6120: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 6120 + name: + type: string + example: 'Noise Factory' + 6122: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 6122 + name: + type: string + example: 'Nomad Games' + 6123: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 6123 + name: + type: string + example: 'Noodlecake Studios Inc' + 6124: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 6124 + name: + type: string + example: 'Nooskewl' + 6127: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 6127 + name: + type: string + example: 'Nordcurrent' + 6128: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 6128 + name: + type: string + example: 'Nordic Games Publishing' + 6130: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 6130 + name: + type: string + example: 'Norse' + 6131: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 6131 + name: + type: string + example: 'North of Earth' + 6132: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 6132 + name: + type: string + example: 'North Pole Studios' + 6133: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 6133 + name: + type: string + example: 'Northway Games' + 6134: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 6134 + name: + type: string + example: 'Northwest Software' + 6135: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 6135 + name: + type: string + example: 'Nosebleed Interactive' + 6136: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 6136 + name: + type: string + example: 'NoSense' + 6137: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 6137 + name: + type: string + example: 'Notung Software' + 6138: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 6138 + name: + type: string + example: 'Noumena Studios' + 6139: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 6139 + name: + type: string + example: 'Noumenon Games' + 6140: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 6140 + name: + type: string + example: 'Nova Co., Ltd.' + 6142: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 6142 + name: + type: string + example: 'Nova du Canada' + 6147: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 6147 + name: + type: string + example: 'Novagen Software Ltd' + 6149: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 6149 + name: + type: string + example: 'Novalicious' + 6146: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 6146 + name: + type: string + example: 'NovaLogic, Inc.' + 6152: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 6152 + name: + type: string + example: 'Novarama' + 6153: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 6153 + name: + type: string + example: 'Novitas' + 6154: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 6154 + name: + type: string + example: 'Novomatic' + 6155: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 6155 + name: + type: string + example: 'Novotrade International' + 10188: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 10188 + name: + type: string + example: 'NOW Production' + 6161: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 6161 + name: + type: string + example: 'Now Production | System Supply N-Tech' + 6158: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 6158 + name: + type: string + example: 'Now Production Co.' + 6160: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 6160 + name: + type: string + example: 'Now Production Co., Ltd.' + 6163: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 6163 + name: + type: string + example: 'NP Cube' + 6164: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 6164 + name: + type: string + example: 'NS STUDIO' + 6165: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 6165 + name: + type: string + example: 'nSpace' + 6166: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 6166 + name: + type: string + example: 'NST' + 6167: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 6167 + name: + type: string + example: 'NStorm' + 6168: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 6168 + name: + type: string + example: 'NTDEC' + 6169: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 6169 + name: + type: string + example: 'Ntreev Soft' + 6171: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 6171 + name: + type: string + example: 'Ntronium Games' + 10209: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 10209 + name: + type: string + example: 'Nuclear Monkey Software' + 6173: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 6173 + name: + type: string + example: 'Nuclear Scorpions' + 6174: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 6174 + name: + type: string + example: 'NuClearVision' + 6175: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 6175 + name: + type: string + example: 'Nucleosys Digital Studio' + 6176: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 6176 + name: + type: string + example: 'Nuclide' + 6177: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 6177 + name: + type: string + example: 'Nuevo Retro Games' + 6178: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 6178 + name: + type: string + example: 'NuFX' + 6179: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 6179 + name: + type: string + example: 'nuGAME' + 6180: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 6180 + name: + type: string + example: 'Numantian Games' + 6181: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 6181 + name: + type: string + example: 'Number None Inc.' + 6182: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 6182 + name: + type: string + example: 'Numinous Games' + 10211: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 10211 + name: + type: string + example: 'NumLock Software' + 6184: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 6184 + name: + type: string + example: 'Nurijoy' + 10352: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 10352 + name: + type: string + example: 'Nussoft' + 6185: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 6185 + name: + type: string + example: 'Nuvatec' + 6186: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 6186 + name: + type: string + example: 'NVIDIA Lightspeed Studios' + 6187: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 6187 + name: + type: string + example: 'nWay' + 6188: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 6188 + name: + type: string + example: 'Nyamyam' + 6189: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 6189 + name: + type: string + example: 'O-Games' + 6190: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 6190 + name: + type: string + example: 'O.T.K Games' + 6191: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 6191 + name: + type: string + example: 'O2 Games' + 6192: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 6192 + name: + type: string + example: 'OA Team' + 6193: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 6193 + name: + type: string + example: 'Oberon Games' + 6194: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 6194 + name: + type: string + example: 'Oberon Media' + 6195: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 6195 + name: + type: string + example: 'Obsidian Entertainment' + 10214: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 10214 + name: + type: string + example: 'Ocean' + 6199: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 6199 + name: + type: string + example: 'Ocean America' + 10213: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 10213 + name: + type: string + example: 'Ocean Software Ltd.' + 6202: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 6202 + name: + type: string + example: 'Ocean, Enigma Variations Ltd' + 10294: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 10294 + name: + type: string + example: 'Ochi' + 6203: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 6203 + name: + type: string + example: 'Octane Games' + 6204: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 6204 + name: + type: string + example: 'Octopus Studios' + 6205: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 6205 + name: + type: string + example: 'Odan MicroDesign' + 6206: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 6206 + name: + type: string + example: 'Odd Tales' + 6207: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 6207 + name: + type: string + example: 'Oddworld Inhabitants' + 6209: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 6209 + name: + type: string + example: 'Oddy Arts' + 6210: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 6210 + name: + type: string + example: 'ODENIS Studio' + 6211: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 6211 + name: + type: string + example: 'Odin' + 6212: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 6212 + name: + type: string + example: 'Odin Computer Graphics' + 6214: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 6214 + name: + type: string + example: 'Odin Computer Graphics Ltd.' + 6215: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 6215 + name: + type: string + example: 'Odin Game Studio' + 6216: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 6216 + name: + type: string + example: 'Odisea Software' + 6218: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 6218 + name: + type: string + example: 'Odysseus' + 10336: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 10336 + name: + type: string + example: 'Odysseus Software' + 6219: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 6219 + name: + type: string + example: 'Odyssey Software' + 6220: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 6220 + name: + type: string + example: 'OeRSTED' + 6221: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 6221 + name: + type: string + example: 'Oetinger' + 6222: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 6222 + name: + type: string + example: 'Off The Wall Productions' + 6223: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 6223 + name: + type: string + example: 'Office 1' + 6224: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 6224 + name: + type: string + example: 'Office Create' + 6225: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 6225 + name: + type: string + example: 'Office Koukan' + 6226: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 6226 + name: + type: string + example: 'Offworld industries' + 6227: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 6227 + name: + type: string + example: 'OhNoo Studio' + 6228: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 6228 + name: + type: string + example: 'OKAM Studio' + 6229: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 6229 + name: + type: string + example: 'Okashi Studios' + 6230: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 6230 + name: + type: string + example: 'Okomotive' + 6231: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 6231 + name: + type: string + example: 'Oksan' + 6232: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 6232 + name: + type: string + example: 'Old School Games' + 6233: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 6233 + name: + type: string + example: 'Oldblood' + 6234: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 6234 + name: + type: string + example: 'Ole Lange' + 6235: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 6235 + name: + type: string + example: 'Oleg Moscalenco' + 6236: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 6236 + name: + type: string + example: 'Oleg Sergeev, Andrey Rumak, Do My Best' + 6237: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 6237 + name: + type: string + example: 'Oliver Kirwa' + 6239: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 6239 + name: + type: string + example: 'Oliver Wittchow' + 10216: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 10216 + name: + type: string + example: 'Olli Harjola' + 6241: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 6241 + name: + type: string + example: 'OLM, Inc.' + 6242: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 6242 + name: + type: string + example: 'Omega Force' + 6244: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 6244 + name: + type: string + example: 'Omega Micott' + 6246: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 6246 + name: + type: string + example: 'Omiya' + 10220: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 10220 + name: + type: string + example: 'Omiya Soft.' + 6248: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 6248 + name: + type: string + example: 'OmiyaSoft' + 6249: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 6249 + name: + type: string + example: 'Omni Creative Group' + 6250: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 6250 + name: + type: string + example: 'Omniconnection' + 6251: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 6251 + name: + type: string + example: 'Omnigon Games' + 6252: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 6252 + name: + type: string + example: 'Omori Electric' + 6253: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 6253 + name: + type: string + example: 'Omori Electric Co.' + 6256: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 6256 + name: + type: string + example: 'On Games' + 10126: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 10126 + name: + type: string + example: 'On-Core Software' + 6257: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 6257 + name: + type: string + example: 'On-Line Systems' + 6258: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 6258 + name: + type: string + example: 'ond Head' + 6259: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 6259 + name: + type: string + example: 'One Bit Beyond' + 6260: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 6260 + name: + type: string + example: 'One Loop Games' + 6261: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 6261 + name: + type: string + example: 'One of the Bruces' + 6262: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 6262 + name: + type: string + example: 'One or Eight' + 6263: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 6263 + name: + type: string + example: 'One Week Productions' + 6264: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 6264 + name: + type: string + example: 'One Wing Cicada' + 6265: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 6265 + name: + type: string + example: 'OneNine Studios' + 6266: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 6266 + name: + type: string + example: 'ONEONE1' + 6267: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 6267 + name: + type: string + example: 'OneOrEight' + 6268: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 6268 + name: + type: string + example: 'Onion Software' + 6269: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 6269 + name: + type: string + example: 'Online Warmongers Group Inc.' + 6270: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 6270 + name: + type: string + example: 'Only Human Studios' + 6271: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 6271 + name: + type: string + example: 'Ons On Soft' + 6272: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 6272 + name: + type: string + example: 'Oovee Game Studios' + 6273: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 6273 + name: + type: string + example: 'Oozoo Inc.' + 6274: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 6274 + name: + type: string + example: 'OP Productions' + 6275: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 6275 + name: + type: string + example: 'Open Corp' + 6277: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 6277 + name: + type: string + example: 'Open Emotion Studios' + 6278: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 6278 + name: + type: string + example: 'Open Mind Gaming' + 6279: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 6279 + name: + type: string + example: 'Open Sesame' + 6280: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 6280 + name: + type: string + example: 'Open System' + 6281: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 6281 + name: + type: string + example: 'Open-Reset' + 6282: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 6282 + name: + type: string + example: 'OpenBook Co., Ltd.' + 6283: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 6283 + name: + type: string + example: 'OPeNNook9003' + 6284: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 6284 + name: + type: string + example: 'Opera House' + 6287: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 6287 + name: + type: string + example: 'Opera Soft' + 6288: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 6288 + name: + type: string + example: 'Opera Soft S.A.' + 6289: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 6289 + name: + type: string + example: 'Optimum Resource' + 6290: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 6290 + name: + type: string + example: 'Optimus Software' + 6291: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 6291 + name: + type: string + example: 'Opus Studio' + 10050: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 10050 + name: + type: string + example: 'Orange Games' + 6295: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 6295 + name: + type: string + example: 'Orange Pixel' + 6294: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 6294 + name: + type: string + example: 'ORANGE_JUICE' + 6297: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 6297 + name: + type: string + example: 'Orbital Media, Inc.' + 6299: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 6299 + name: + type: string + example: 'Orca' + 6300: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 6300 + name: + type: string + example: 'Orca Corporation' + 6301: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 6301 + name: + type: string + example: 'Oriental Soft' + 6302: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 6302 + name: + type: string + example: 'Origin Systems' + 6306: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 6306 + name: + type: string + example: 'Orion_' + 6305: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 6305 + name: + type: string + example: 'OrionSoft' + 6307: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 6307 + name: + type: string + example: 'Ornith' + 6308: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 6308 + name: + type: string + example: 'Orpheck Inc' + 6309: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 6309 + name: + type: string + example: 'Orpheus' + 6310: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 6310 + name: + type: string + example: 'Oryx Design Lab' + 6311: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 6311 + name: + type: string + example: 'Osiris Software Design Studios' + 6312: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 6312 + name: + type: string + example: 'OSome Studio' + 6313: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 6313 + name: + type: string + example: 'Ostrich Banditos' + 6314: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 6314 + name: + type: string + example: 'Other Ocean Interactive' + 6315: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 6315 + name: + type: string + example: 'Otomate' + 10217: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 10217 + name: + type: string + example: 'Otto Hantula' + 6316: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 6316 + name: + type: string + example: 'OUAT Entertainment' + 6317: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 6317 + name: + type: string + example: 'Out Fit 7 Ltd.' + 6318: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 6318 + name: + type: string + example: 'Outback' + 6320: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 6320 + name: + type: string + example: 'Outerlight' + 6321: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 6321 + name: + type: string + example: 'OutLook Entertainment' + 6322: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 6322 + name: + type: string + example: 'Outrage Games' + 6324: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 6324 + name: + type: string + example: 'Outrigger Koubou' + 6325: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 6325 + name: + type: string + example: 'OutSide Director' + 6326: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 6326 + name: + type: string + example: 'OutSide Directors Company' + 6327: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 6327 + name: + type: string + example: 'Over The Moon' + 6328: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 6328 + name: + type: string + example: 'Over The Top Games' + 6329: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 6329 + name: + type: string + example: 'Overdrive' + 6330: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 6330 + name: + type: string + example: 'Overhaul Games' + 6331: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 6331 + name: + type: string + example: 'Overkill Software' + 10224: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 10224 + name: + type: string + example: 'OVERTUNE' + 6334: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 6334 + name: + type: string + example: 'Overworks' + 6335: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 6335 + name: + type: string + example: 'Ovilex Software' + 6336: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 6336 + name: + type: string + example: 'Ovosonico' + 6337: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 6337 + name: + type: string + example: 'Owen Thomas' + 6338: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 6338 + name: + type: string + example: 'Owlchemy Labs' + 6339: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 6339 + name: + type: string + example: 'Oxeye Game Studio' + 6340: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 6340 + name: + type: string + example: 'Oxford Digital Enterprises' + 6342: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 6342 + name: + type: string + example: 'Oxford Digital Enterprises, The Mystery Machine' + 6343: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 6343 + name: + type: string + example: 'Oxide Games' + 6344: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 6344 + name: + type: string + example: 'Oxygen' + 6345: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 6345 + name: + type: string + example: 'Oxygen Games' + 6346: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 6346 + name: + type: string + example: 'Oxygen Interactive' + 6347: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 6347 + name: + type: string + example: 'OXYGENE MEDIA' + 6348: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 6348 + name: + type: string + example: 'Oxyron' + 6349: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 6349 + name: + type: string + example: 'Oyaji Games' + 6350: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 6350 + name: + type: string + example: 'Ozark Softscape' + 6353: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 6353 + name: + type: string + example: 'P & P Marketing' + 6355: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 6355 + name: + type: string + example: 'P.A Soft' + 6356: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 6356 + name: + type: string + example: 'P.Z Karen' + 6357: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 6357 + name: + type: string + example: 'P.Z.K. Development Group' + 10157: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 10157 + name: + type: string + example: 'P.Z.Karen Co. Development Group' + 6354: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 6354 + name: + type: string + example: 'P&P Marketing' + 6358: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 6358 + name: + type: string + example: 'p1x3l.net' + 6359: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 6359 + name: + type: string + example: 'Pac-ManPlus' + 6360: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 6360 + name: + type: string + example: 'Pacific Century Cyber Works' + 6361: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 6361 + name: + type: string + example: 'Pacific Century Cyber Works Japan' + 6362: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 6362 + name: + type: string + example: 'Pacific Coast Power & Light' + 6363: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 6363 + name: + type: string + example: 'Pacific Coast Power & Light' + 6365: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 6365 + name: + type: string + example: 'Pacific Dataworks' + 6366: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 6366 + name: + type: string + example: 'Pacific Kougyou' + 6367: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 6367 + name: + type: string + example: 'Pacific Novelty' + 6368: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 6368 + name: + type: string + example: 'Pacific Softscape' + 6369: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 6369 + name: + type: string + example: 'Pacific Softspace' + 6370: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 6370 + name: + type: string + example: 'Pack-In-Video Co., Ltd' + 10226: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 10226 + name: + type: string + example: 'Paco Menendez' + 9932: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 9932 + name: + type: string + example: 'Paco Zarco' + 6376: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 6376 + name: + type: string + example: 'Padded Cell Studios' + 6377: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 6377 + name: + type: string + example: 'Padworld Entertainment' + 6378: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 6378 + name: + type: string + example: 'Page 44 Studios' + 6380: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 6380 + name: + type: string + example: 'Pagoda Software' + 6381: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 6381 + name: + type: string + example: 'Painting by Numbers' + 6382: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 6382 + name: + type: string + example: 'PAL Developments' + 6384: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 6384 + name: + type: string + example: 'Palace' + 6385: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 6385 + name: + type: string + example: 'Palace Software, LTD.' + 6387: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 6387 + name: + type: string + example: 'Palco' + 6388: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 6388 + name: + type: string + example: 'Palcom' + 6389: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 6389 + name: + type: string + example: 'Paleo Entertainment' + 6390: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 6390 + name: + type: string + example: 'Palladium Interactive' + 6391: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 6391 + name: + type: string + example: 'Pallas' + 6392: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 6392 + name: + type: string + example: 'Palmple Inc.' + 6393: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 6393 + name: + type: string + example: 'Palsoft' + 6394: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 6394 + name: + type: string + example: 'Pam Development' + 6395: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 6395 + name: + type: string + example: 'Panasoft' + 6396: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 6396 + name: + type: string + example: 'Panda' + 6397: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 6397 + name: + type: string + example: 'Panda Entertainment Technology' + 6398: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 6398 + name: + type: string + example: 'Pandemic Studios' + 6400: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 6400 + name: + type: string + example: 'Pandora' + 6401: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 6401 + name: + type: string + example: 'Pandora Box' + 6402: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 6402 + name: + type: string + example: 'PanelComp' + 6403: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 6403 + name: + type: string + example: 'Panesian' + 6404: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 6404 + name: + type: string + example: 'Pangea Software' + 6405: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 6405 + name: + type: string + example: 'Panic Button' + 6406: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 6406 + name: + type: string + example: 'Panic Button Games' + 6407: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 6407 + name: + type: string + example: 'Panoramic' + 6408: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 6408 + name: + type: string + example: 'Pantera Entertainment' + 6409: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 6409 + name: + type: string + example: 'Pantheon' + 6410: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 6410 + name: + type: string + example: 'Panther' + 6411: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 6411 + name: + type: string + example: 'Panther Software' + 6412: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 6412 + name: + type: string + example: 'Panzar Studio' + 10073: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 10073 + name: + type: string + example: 'Paolo Malnati' + 6413: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 6413 + name: + type: string + example: 'Paon Corporation' + 10077: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 10077 + name: + type: string + example: 'Papa and team' + 6415: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 6415 + name: + type: string + example: 'Papaya Studios' + 10365: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 10365 + name: + type: string + example: 'Paper Cult' + 6417: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 6417 + name: + type: string + example: 'Papyrus Design Group, Inc.' + 6420: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 6420 + name: + type: string + example: 'Papyrus Publishing' + 6421: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 6421 + name: + type: string + example: 'Para JP' + 6422: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 6422 + name: + type: string + example: 'Parabole' + 6423: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 6423 + name: + type: string + example: 'Paradigm Entertainment Inc.' + 6427: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 6427 + name: + type: string + example: 'Paradise Co. Ltd.' + 6428: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 6428 + name: + type: string + example: 'Paradise Programming' + 6429: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 6429 + name: + type: string + example: 'Paradox' + 10212: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 10212 + name: + type: string + example: 'Paradox Arctic' + 6430: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 6430 + name: + type: string + example: 'Paradox Development' + 6431: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 6431 + name: + type: string + example: 'Paradox Development Studio' + 6432: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 6432 + name: + type: string + example: 'Paradox Entertainment' + 6433: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 6433 + name: + type: string + example: 'Paradox Interactive' + 6436: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 6436 + name: + type: string + example: 'Paragon 5' + 6438: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 6438 + name: + type: string + example: 'Paragon Programming' + 6435: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 6435 + name: + type: string + example: 'Paragon Software' + 6440: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 6440 + name: + type: string + example: 'Paragon Software Corporation' + 6441: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 6441 + name: + type: string + example: 'Parahna Bytes' + 6443: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 6443 + name: + type: string + example: 'Parallax Art Studios' + 6442: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 6442 + name: + type: string + example: 'Parallax Software' + 6445: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 6445 + name: + type: string + example: 'Param' + 6446: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 6446 + name: + type: string + example: 'PARANOIA TEAM' + 6447: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 6447 + name: + type: string + example: 'Paranoid Software' + 6448: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 6448 + name: + type: string + example: 'ParaPhray' + 6449: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 6449 + name: + type: string + example: 'ParityBit' + 6451: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 6451 + name: + type: string + example: 'Park Place Productions' + 6453: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 6453 + name: + type: string + example: 'Parker Brothers' + 6456: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 6456 + name: + type: string + example: 'Parkstar Software' + 6457: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 6457 + name: + type: string + example: 'Parroty Interactive' + 6458: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 6458 + name: + type: string + example: 'Parsec Productions' + 6459: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 6459 + name: + type: string + example: 'Particle Systems' + 6461: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 6461 + name: + type: string + example: 'Parun' + 6462: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 6462 + name: + type: string + example: 'Pascal Bosquet' + 6463: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 6463 + name: + type: string + example: 'Passtech Games' + 6464: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 6464 + name: + type: string + example: 'Pasta Games' + 6466: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 6466 + name: + type: string + example: 'Pathea Games' + 6467: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 6467 + name: + type: string + example: 'Patrick Aalto' + 6468: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 6468 + name: + type: string + example: 'Patrick Bass' + 6469: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 6469 + name: + type: string + example: 'Patrick Quinn' + 6470: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 6470 + name: + type: string + example: 'Patrick Walsh & Kez Gray' + 6471: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 6471 + name: + type: string + example: 'Paul Clansey' + 6472: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 6472 + name: + type: string + example: 'Paul Cole' + 6473: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 6473 + name: + type: string + example: 'Paul Cuisset' + 6474: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 6474 + name: + type: string + example: 'Paul Griffiths' + 10229: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 10229 + name: + type: string + example: 'Paul Holmes' + 6476: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 6476 + name: + type: string + example: 'Paul Koller' + 6477: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 6477 + name: + type: string + example: 'Paul Kooistra' + 6478: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 6478 + name: + type: string + example: 'Paul Lowrance' + 6479: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 6479 + name: + type: string + example: 'Paul Marrable' + 6480: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 6480 + name: + type: string + example: 'Paul Norman' + 6481: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 6481 + name: + type: string + example: 'Paul O''Malley' + 6482: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 6482 + name: + type: string + example: 'Paul Reiche III' + 6483: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 6483 + name: + type: string + example: 'Paul Schneider' + 6484: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 6484 + name: + type: string + example: 'Paul Slocum' + 6485: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 6485 + name: + type: string + example: 'Paul Stephenson' + 6486: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 6486 + name: + type: string + example: 'Paul Woakes' + 6487: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 6487 + name: + type: string + example: 'Pax Softnica' + 6489: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 6489 + name: + type: string + example: 'Paxon' + 6490: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 6490 + name: + type: string + example: 'Payload Studios' + 6491: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 6491 + name: + type: string + example: 'PC Globe, Inc.' + 6492: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 6492 + name: + type: string + example: 'PCSL' + 6493: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 6493 + name: + type: string + example: 'PD Design Studio Pte Ltd' + 6494: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 6494 + name: + type: string + example: 'Peaceful Games' + 6495: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 6495 + name: + type: string + example: 'Peach Pie Productions' + 6496: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 6496 + name: + type: string + example: 'Peakstar Software' + 6497: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 6497 + name: + type: string + example: 'PearFiction Studios Inc.' + 6498: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 6498 + name: + type: string + example: 'Pearl Abyss' + 6499: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 6499 + name: + type: string + example: 'Pedro Ruiz' + 6500: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 6500 + name: + type: string + example: 'Pegasus Japan' + 6501: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 6501 + name: + type: string + example: 'Pekaro Software' + 6502: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 6502 + name: + type: string + example: 'Pekka Rantanen' + 10152: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 10152 + name: + type: string + example: 'Pelc, Janusz' + 6503: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 6503 + name: + type: string + example: 'Pelican Accessories' + 6504: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 6504 + name: + type: string + example: 'Pencil Test Studios' + 6505: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 6505 + name: + type: string + example: 'Pendulo Studios' + 6506: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 6506 + name: + type: string + example: 'Peni' + 6507: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 6507 + name: + type: string + example: 'Peninsula Gameworks' + 6508: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 6508 + name: + type: string + example: 'PennyPop' + 6509: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 6509 + name: + type: string + example: 'Pentavision' + 6510: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 6510 + name: + type: string + example: 'Pentavision Entertainment' + 6512: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 6512 + name: + type: string + example: 'People Can Fly' + 6514: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 6514 + name: + type: string + example: 'Perfect 10 Productions' + 6515: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 6515 + name: + type: string + example: 'Perfect Entertainment' + 6516: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 6516 + name: + type: string + example: 'Perfect World Entertainment' + 6518: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 6518 + name: + type: string + example: 'Perfect World Shanghai' + 6519: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 6519 + name: + type: string + example: 'Perkins Engineering' + 6520: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 6520 + name: + type: string + example: 'Perpetual' + 6521: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 6521 + name: + type: string + example: 'Perpetual FX Creative' + 6522: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 6522 + name: + type: string + example: 'Perpetual Motion Developers' + 6523: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 6523 + name: + type: string + example: 'Personal Software Services' + 6525: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 6525 + name: + type: string + example: 'PES Productions' + 6526: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 6526 + name: + type: string + example: 'Pesina' + 10101: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 10101 + name: + type: string + example: 'Pestoforce' + 6527: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 6527 + name: + type: string + example: 'PETA' + 6528: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 6528 + name: + type: string + example: 'Petaco S.A.' + 10233: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 10233 + name: + type: string + example: 'Pete Cooke' + 9942: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 9942 + name: + type: string + example: 'Pete James' + 6530: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 6530 + name: + type: string + example: 'Peter Adams' + 6531: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 6531 + name: + type: string + example: 'Peter C. Niday' + 6532: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 6532 + name: + type: string + example: 'Peter Cook' + 6533: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 6533 + name: + type: string + example: 'Peter Engelbrite' + 6534: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 6534 + name: + type: string + example: 'Peter Harrap' + 6535: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 6535 + name: + type: string + example: 'Peter J. Favaro' + 6536: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 6536 + name: + type: string + example: 'Peter Johnson' + 6537: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 6537 + name: + type: string + example: 'Peter Liepa' + 9983: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 9983 + name: + type: string + example: 'Peter M. Harrap' + 6538: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 6538 + name: + type: string + example: 'Peter Moorhead' + 6539: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 6539 + name: + type: string + example: 'Peter Stock' + 6540: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 6540 + name: + type: string + example: 'Petite Games' + 6541: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 6541 + name: + type: string + example: 'Petroglyph Games' + 6543: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 6543 + name: + type: string + example: 'PF Magic' + 6544: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 6544 + name: + type: string + example: 'pgil' + 6545: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 6545 + name: + type: string + example: 'Phant' + 6546: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 6546 + name: + type: string + example: 'Phantagram' + 6547: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 6547 + name: + type: string + example: 'Phantom 8 Studio' + 6548: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 6548 + name: + type: string + example: 'Phantom Compass' + 6549: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 6549 + name: + type: string + example: 'Phantom Software' + 6550: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 6550 + name: + type: string + example: 'Phantomery Interactive' + 6551: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 6551 + name: + type: string + example: 'Phebus' + 6552: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 6552 + name: + type: string + example: 'phenomedia publishing gmbh' + 6555: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 6555 + name: + type: string + example: 'Phenomenon Games' + 6556: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 6556 + name: + type: string + example: 'Phenomic' + 6558: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 6558 + name: + type: string + example: 'Phenomic, THQ Nordic' + 6560: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 6560 + name: + type: string + example: 'Phil Lloyd, John Robinson' + 6561: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 6561 + name: + type: string + example: 'Phil Ruston' + 6562: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 6562 + name: + type: string + example: 'Philidor Software' + 6563: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 6563 + name: + type: string + example: 'Philip Bak' + 10235: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 10235 + name: + type: string + example: 'Philip Oliver' + 9943: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 9943 + name: + type: string + example: 'Philip Taglione' + 6565: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 6565 + name: + type: string + example: 'Philippe Poulin' + 6567: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 6567 + name: + type: string + example: 'Philips Fantasy Factory' + 6559: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 6559 + name: + type: string + example: 'Philips Interactive Media' + 6569: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 6569 + name: + type: string + example: 'Philips POV' + 6570: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 6570 + name: + type: string + example: 'Philips Sidewalk Studio' + 6571: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 6571 + name: + type: string + example: 'Philko' + 6572: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 6572 + name: + type: string + example: 'Phipps Associates' + 6573: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 6573 + name: + type: string + example: 'PHL Collective' + 6574: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 6574 + name: + type: string + example: 'Phoenix' + 6575: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 6575 + name: + type: string + example: 'Phoenix Games' + 6576: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 6576 + name: + type: string + example: 'Phoenix Games Ltd' + 6577: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 6577 + name: + type: string + example: 'Phoenix Games Studio' + 6579: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 6579 + name: + type: string + example: 'Phoenix Interactive' + 6580: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 6580 + name: + type: string + example: 'Phoenix Online Studios' + 6581: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 6581 + name: + type: string + example: 'Phoenix Software, Inc.' + 6582: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 6582 + name: + type: string + example: 'Phoenix Studio' + 6584: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 6584 + name: + type: string + example: 'Phosphor Games' + 6587: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 6587 + name: + type: string + example: 'Photar' + 6588: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 6588 + name: + type: string + example: 'Phr00t''s Software' + 6589: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 6589 + name: + type: string + example: 'Physmo' + 6590: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 6590 + name: + type: string + example: 'Pi Studios' + 6591: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 6591 + name: + type: string + example: 'PicPac-Airreal' + 6592: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 6592 + name: + type: string + example: 'Picroma' + 6593: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 6593 + name: + type: string + example: 'Pieces Interactive' + 6594: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 6594 + name: + type: string + example: 'Pieces Interactive AB' + 6595: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 6595 + name: + type: string + example: 'Pieces Interactive, THQ Nordic' + 6596: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 6596 + name: + type: string + example: 'Piere Cavina' + 6597: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 6597 + name: + type: string + example: 'Piero Cavina' + 6598: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 6598 + name: + type: string + example: 'Pierre Giroud' + 6599: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 6599 + name: + type: string + example: 'Piko Interactive' + 6600: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 6600 + name: + type: string + example: 'Pilgrim Adventures, GrabTheGames Studios' + 6601: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 6601 + name: + type: string + example: 'Pillow Pig Games' + 6602: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 6602 + name: + type: string + example: 'Pin Change' + 6603: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 6603 + name: + type: string + example: 'Pine Studio' + 6604: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 6604 + name: + type: string + example: 'Pinegrow' + 6605: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 6605 + name: + type: string + example: 'Pinokl Games' + 6606: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 6606 + name: + type: string + example: 'Pioneer LDC' + 6607: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 6607 + name: + type: string + example: 'Pioneer Productions' + 6608: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 6608 + name: + type: string + example: 'Pipe Dream Interactive' + 10237: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 10237 + name: + type: string + example: 'Pipeworks' + 6611: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 6611 + name: + type: string + example: 'Pipeworks Software, Inc.' + 6615: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 6615 + name: + type: string + example: 'Pipeworks Studio' + 6617: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 6617 + name: + type: string + example: 'Piranha Bytes' + 6619: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 6619 + name: + type: string + example: 'Piranha Games' + 6620: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 6620 + name: + type: string + example: 'Pirate Games' + 10366: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 10366 + name: + type: string + example: 'Pirate Software' + 6621: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 6621 + name: + type: string + example: 'PirateHearts' + 6622: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 6622 + name: + type: string + example: 'Pitbull Syndicate' + 6624: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 6624 + name: + type: string + example: 'Pivotal Games Ltd.' + 6627: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 6627 + name: + type: string + example: 'Pixel' + 6628: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 6628 + name: + type: string + example: 'Pixel Crow' + 6629: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 6629 + name: + type: string + example: 'Pixel Dash Studios' + 6630: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 6630 + name: + type: string + example: 'Pixel Dash Studios, EQgames' + 6631: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 6631 + name: + type: string + example: 'Pixel Feather' + 6632: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 6632 + name: + type: string + example: 'Pixel Ferrets' + 6633: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 6633 + name: + type: string + example: 'Pixel Painters' + 6634: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 6634 + name: + type: string + example: 'Pixel Perfect' + 6635: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 6635 + name: + type: string + example: 'Pixel Storm' + 6636: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 6636 + name: + type: string + example: 'Pixel Studios' + 6637: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 6637 + name: + type: string + example: 'Pixel Tales' + 6638: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 6638 + name: + type: string + example: 'Pixel Technologies' + 6639: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 6639 + name: + type: string + example: 'Pixel Titans' + 6640: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 6640 + name: + type: string + example: 'Pixel Toys' + 6642: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 6642 + name: + type: string + example: 'Pixelante Game Studios' + 6643: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 6643 + name: + type: string + example: 'Pixelarts' + 6644: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 6644 + name: + type: string + example: 'Pixelated Milk' + 6645: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 6645 + name: + type: string + example: 'Pixelbite' + 10347: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 10347 + name: + type: string + example: 'Pixelglass games' + 6646: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 6646 + name: + type: string + example: 'Pixeljam' + 6647: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 6647 + name: + type: string + example: 'Pixellevel' + 6648: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 6648 + name: + type: string + example: 'Pixelogic' + 6649: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 6649 + name: + type: string + example: 'Pixeloplus' + 6650: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 6650 + name: + type: string + example: 'PixelOpus' + 6651: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 6651 + name: + type: string + example: 'Pixelstorm' + 6652: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 6652 + name: + type: string + example: 'PixelTail Games' + 6653: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 6653 + name: + type: string + example: 'Pixwerk' + 6654: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 6654 + name: + type: string + example: 'Planet Interactive Development' + 6656: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 6656 + name: + type: string + example: 'Planet Moon Studios' + 6659: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 6659 + name: + type: string + example: 'Plastic' + 6660: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 6660 + name: + type: string + example: 'Plastic Reality Technologies' + 6661: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 6661 + name: + type: string + example: 'Platine Dispositif' + 6662: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 6662 + name: + type: string + example: 'Platinum Egg' + 6666: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 6666 + name: + type: string + example: 'Platinum Productions Ltd.' + 1829: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 1829 + name: + type: string + example: 'PlatinumGames' + 6669: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 6669 + name: + type: string + example: 'Plato' + 6670: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 6670 + name: + type: string + example: 'PlattSoft' + 6671: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 6671 + name: + type: string + example: 'Play Avenue' + 6672: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 6672 + name: + type: string + example: 'Play Byte' + 6673: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 6673 + name: + type: string + example: 'Play It' + 6674: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 6674 + name: + type: string + example: 'Play X Europe' + 6675: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 6675 + name: + type: string + example: 'Playaround' + 10240: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 10240 + name: + type: string + example: 'Playbox' + 6676: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 6676 + name: + type: string + example: 'Playbox Limited' + 6678: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 6678 + name: + type: string + example: 'Playboy' + 6679: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 6679 + name: + type: string + example: 'Playbrains' + 6680: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 6680 + name: + type: string + example: 'Playdead' + 6681: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 6681 + name: + type: string + example: 'Playdemic' + 6682: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 6682 + name: + type: string + example: 'Playdigious' + 6683: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 6683 + name: + type: string + example: 'Player 1' + 6684: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 6684 + name: + type: string + example: 'Players' + 6686: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 6686 + name: + type: string + example: 'Playerthree' + 6687: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 6687 + name: + type: string + example: 'PlayEveryWare' + 6688: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 6688 + name: + type: string + example: 'PlayFirst' + 6689: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 6689 + name: + type: string + example: 'Playful Corp.' + 6690: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 6690 + name: + type: string + example: 'Playgeneration' + 6691: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 6691 + name: + type: string + example: 'Playground Games' + 6693: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 6693 + name: + type: string + example: 'Playlogic' + 6694: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 6694 + name: + type: string + example: 'Playmark' + 6695: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 6695 + name: + type: string + example: 'Playmates Interactive' + 6696: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 6696 + name: + type: string + example: 'Playmobil' + 6698: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 6698 + name: + type: string + example: 'Playrix Entertainment' + 6699: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 6699 + name: + type: string + example: 'Playsaurus' + 6700: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 6700 + name: + type: string + example: 'PLAYSOFT' + 10258: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 10258 + name: + type: string + example: 'Playstation C.A.M.P.' + 6702: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 6702 + name: + type: string + example: 'Playstos Entertainment' + 6703: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 6703 + name: + type: string + example: 'playtonic' + 6704: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 6704 + name: + type: string + example: 'Playtonic Games' + 6705: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 6705 + name: + type: string + example: 'Playtronic' + 6706: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 6706 + name: + type: string + example: 'playus soft' + 6707: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 6707 + name: + type: string + example: 'PlayWay S.A.' + 6709: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 6709 + name: + type: string + example: 'Playzone' + 6710: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 6710 + name: + type: string + example: 'Plug In Digital' + 6711: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 6711 + name: + type: string + example: 'Plukit' + 6712: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 6712 + name: + type: string + example: 'Plunge Interactive' + 10238: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 10238 + name: + type: string + example: 'Pluto 13' + 6713: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 6713 + name: + type: string + example: 'PM Studios' + 6714: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 6714 + name: + type: string + example: 'PM Studios Inc.' + 6715: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 6715 + name: + type: string + example: 'Pocket Direct, L.L.C.' + 6716: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 6716 + name: + type: string + example: 'Pocket Studios' + 6717: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 6717 + name: + type: string + example: 'Pocketeers' + 6718: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 6718 + name: + type: string + example: 'Pocketwatch Games' + 6719: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 6719 + name: + type: string + example: 'Point Five Projects' + 6720: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 6720 + name: + type: string + example: 'Point of View, Inc.' + 6724: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 6724 + name: + type: string + example: 'Poisoft' + 6725: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 6725 + name: + type: string + example: 'Polarbit' + 6726: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 6726 + name: + type: string + example: 'Polestar' + 6727: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 6727 + name: + type: string + example: 'Policy' + 6728: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 6728 + name: + type: string + example: 'Pollux Gamelabs' + 6729: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 6729 + name: + type: string + example: 'Polyarc' + 6730: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 6730 + name: + type: string + example: 'Polydor' + 6731: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 6731 + name: + type: string + example: 'Polygames' + 6732: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 6732 + name: + type: string + example: 'Polygon Games' + 6733: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 6733 + name: + type: string + example: 'Polygon Magic' + 6735: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 6735 + name: + type: string + example: 'Polygram Magic of Japan' + 6736: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 6736 + name: + type: string + example: 'PolyKid, LLC' + 6737: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 6737 + name: + type: string + example: 'PolyMedia Communications' + 6738: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 6738 + name: + type: string + example: 'polynation games ltd' + 6739: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 6739 + name: + type: string + example: 'Polyphony Digital Inc.' + 6741: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 6741 + name: + type: string + example: 'PolyPusher Studios' + 6742: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 6742 + name: + type: string + example: 'Polytron' + 6745: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 6745 + name: + type: string + example: 'Pomelo Games' + 6746: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 6746 + name: + type: string + example: 'PomPom Games' + 6748: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 6748 + name: + type: string + example: 'Pond Software & RGCD' + 6749: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 6749 + name: + type: string + example: 'Pony Canyon' + 6750: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 6750 + name: + type: string + example: 'Pop Software' + 6751: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 6751 + name: + type: string + example: 'PopCap Games' + 6753: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 6753 + name: + type: string + example: 'Poponchi' + 6754: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 6754 + name: + type: string + example: 'PopTop Software Inc.' + 6757: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 6757 + name: + type: string + example: 'Popy' + 6758: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 6758 + name: + type: string + example: 'Positech Games' + 6759: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 6759 + name: + type: string + example: 'Positive' + 6760: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 6760 + name: + type: string + example: 'Positron' + 6761: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 6761 + name: + type: string + example: 'PostMod Softworks' + 6762: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 6762 + name: + type: string + example: 'POV Entertainment' + 6763: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 6763 + name: + type: string + example: 'Pow' + 6765: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 6765 + name: + type: string + example: 'Power & Magic Development' + 6764: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 6764 + name: + type: string + example: 'Power & Magic Development' + 6766: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 6766 + name: + type: string + example: 'Power of 2' + 6767: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 6767 + name: + type: string + example: 'Powerhead Games' + 6768: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 6768 + name: + type: string + example: 'Powerhoof' + 10102: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 10102 + name: + type: string + example: 'Pox Box' + 6769: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 6769 + name: + type: string + example: 'PQube' + 6770: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 6770 + name: + type: string + example: 'Pre Stage' + 6771: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 6771 + name: + type: string + example: 'Premier Technology' + 6772: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 6772 + name: + type: string + example: 'Premium Agency' + 6773: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 6773 + name: + type: string + example: 'Presage Software, Inc' + 6775: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 6775 + name: + type: string + example: 'Press Play' + 6776: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 6776 + name: + type: string + example: 'Prestige Softwareentwicklung GmbH' + 6777: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 6777 + name: + type: string + example: 'Presto Studios' + 6778: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 6778 + name: + type: string + example: 'Prideful Sloth' + 6779: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 6779 + name: + type: string + example: 'Primal' + 6780: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 6780 + name: + type: string + example: 'Primetek' + 6781: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 6781 + name: + type: string + example: 'Princess Soft' + 6782: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 6782 + name: + type: string + example: 'Prior Art' + 6783: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 6783 + name: + type: string + example: 'Prism Kikaku' + 6785: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 6785 + name: + type: string + example: 'Prism Studios' + 6786: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 6786 + name: + type: string + example: 'Private Moon Studios' + 10177: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 10177 + name: + type: string + example: 'Probe' + 6787: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 6787 + name: + type: string + example: 'Probe Entertainment' + 10041: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 10041 + name: + type: string + example: 'Probe Software' + 6796: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 6796 + name: + type: string + example: 'ProceduralArts' + 6797: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 6797 + name: + type: string + example: 'Produce' + 6798: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 6798 + name: + type: string + example: 'Produce Co., Ltd., Red Company Corporation' + 6799: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 6799 + name: + type: string + example: 'Profire' + 6800: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 6800 + name: + type: string + example: 'Progaganda Games' + 6801: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 6801 + name: + type: string + example: 'ProGames Studio' + 6802: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 6802 + name: + type: string + example: 'Program-Ace' + 6803: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 6803 + name: + type: string + example: 'Programmers-3' + 6804: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 6804 + name: + type: string + example: 'Prograph Research' + 10191: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 10191 + name: + type: string + example: 'Prograph Research S.r.l.' + 6805: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 6805 + name: + type: string + example: 'Progressive Peripherals & Software' + 6806: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 6806 + name: + type: string + example: 'Project Aces' + 6808: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 6808 + name: + type: string + example: 'Project Argon' + 6809: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 6809 + name: + type: string + example: 'Project F' + 6810: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 6810 + name: + type: string + example: 'Project M Development Team' + 6811: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 6811 + name: + type: string + example: 'Project R3D' + 6812: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 6812 + name: + type: string + example: 'Project Siren' + 6813: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 6813 + name: + type: string + example: 'Project Sora' + 6814: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 6814 + name: + type: string + example: 'Project Soul' + 6815: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 6815 + name: + type: string + example: 'Prokion' + 6816: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 6816 + name: + type: string + example: 'Prolific' + 6817: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 6817 + name: + type: string + example: 'Proma' + 6818: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 6818 + name: + type: string + example: 'Promat' + 6819: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 6819 + name: + type: string + example: 'Promat Co.' + 6820: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 6820 + name: + type: string + example: 'Promethean Designs' + 6821: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 6821 + name: + type: string + example: 'Promotion Software GmbH' + 6822: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 6822 + name: + type: string + example: 'Pronto Games' + 6823: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 6823 + name: + type: string + example: 'Prope' + 6824: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 6824 + name: + type: string + example: 'Proper Games' + 6825: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 6825 + name: + type: string + example: 'Prospect Games' + 6826: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 6826 + name: + type: string + example: 'Proton Studio Inc' + 6827: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 6827 + name: + type: string + example: 'Prototype' + 6828: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 6828 + name: + type: string + example: 'Protovision' + 6829: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 6829 + name: + type: string + example: 'Provox Games' + 6830: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 6830 + name: + type: string + example: 'Pseudo Interactive' + 6831: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 6831 + name: + type: string + example: 'Psikyo' + 6834: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 6834 + name: + type: string + example: 'Psion Software Ltd.' + 6836: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 6836 + name: + type: string + example: 'Psionic Systems' + 6838: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 6838 + name: + type: string + example: 'PSS' + 6839: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 6839 + name: + type: string + example: 'Psydra Games LLC' + 10327: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 10327 + name: + type: string + example: 'Psygnosis' + 6841: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 6841 + name: + type: string + example: 'Psygnosis Camden Studio' + 6840: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 6840 + name: + type: string + example: 'Psygnosis Limited' + 6844: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 6844 + name: + type: string + example: 'Psyonix Studios' + 6846: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 6846 + name: + type: string + example: 'Psytronik Software' + 6848: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 6848 + name: + type: string + example: 'Psyworks' + 6849: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 6849 + name: + type: string + example: 'Pterodon' + 6850: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 6850 + name: + type: string + example: 'PUBG Corporation' + 6851: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 6851 + name: + type: string + example: 'Publishing International' + 6853: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 6853 + name: + type: string + example: 'Pukka Games' + 6854: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 6854 + name: + type: string + example: 'Pulltop Latte' + 6855: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 6855 + name: + type: string + example: 'Pulsar Interactive' + 6856: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 6856 + name: + type: string + example: 'Pulse Entertainment' + 6857: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 6857 + name: + type: string + example: 'Pulsetense Games' + 6858: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 6858 + name: + type: string + example: 'Pumo Co Ltd.' + 6859: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 6859 + name: + type: string + example: 'Pumpkin Software' + 6860: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 6860 + name: + type: string + example: 'Punchline' + 6861: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 6861 + name: + type: string + example: 'Punk Development' + 6863: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 6863 + name: + type: string + example: 'Punk Productions' + 6864: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 6864 + name: + type: string + example: 'Puny Human' + 6865: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 6865 + name: + type: string + example: 'Puppy Games' + 6867: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 6867 + name: + type: string + example: 'Pure Entertainment' + 6869: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 6869 + name: + type: string + example: 'Purebyte' + 6870: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 6870 + name: + type: string + example: 'Purple Hills' + 6871: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 6871 + name: + type: string + example: 'Purpleflayer' + 6872: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 6872 + name: + type: string + example: 'Push Square' + 6873: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 6873 + name: + type: string + example: 'Puzzle Lab' + 6874: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 6874 + name: + type: string + example: 'Puzzle.tv' + 6875: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 6875 + name: + type: string + example: 'Puzzlekings' + 6876: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 6876 + name: + type: string + example: 'Puzzling Dream' + 6877: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 6877 + name: + type: string + example: 'Pwnee Studios' + 6878: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 6878 + name: + type: string + example: 'PXLink' + 6879: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 6879 + name: + type: string + example: 'Pygmy Studio' + 6880: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 6880 + name: + type: string + example: 'Pyramid' + 6883: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 6883 + name: + type: string + example: 'Pyro Studios' + 6885: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 6885 + name: + type: string + example: 'Pyrotechnix' + 6886: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 6886 + name: + type: string + example: 'PZ Karen' + 6887: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 6887 + name: + type: string + example: 'Q Entertainment' + 6891: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 6891 + name: + type: string + example: 'Q-Games' + 6894: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 6894 + name: + type: string + example: 'Qi Studios' + 6895: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 6895 + name: + type: string + example: 'QLOC' + 6896: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 6896 + name: + type: string + example: 'Qooc Software' + 6897: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 6897 + name: + type: string + example: 'Quadriga Games' + 6898: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 6898 + name: + type: string + example: 'Quantic Dream' + 6900: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 6900 + name: + type: string + example: 'Quantized Bit' + 6901: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 6901 + name: + type: string + example: 'Quantum Factory' + 10192: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 10192 + name: + type: string + example: 'Quasar Soft' + 6902: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 6902 + name: + type: string + example: 'QubicGames' + 6903: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 6903 + name: + type: string + example: 'QUByte Interactive' + 6904: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 6904 + name: + type: string + example: 'Queasy Games' + 6905: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 6905 + name: + type: string + example: 'Queen Soft' + 6906: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 6906 + name: + type: string + example: 'Queentex' + 6907: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 6907 + name: + type: string + example: 'Quelle' + 6908: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 6908 + name: + type: string + example: 'quellesoft' + 6909: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 6909 + name: + type: string + example: 'Quest' + 6910: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 6910 + name: + type: string + example: 'Quest Online' + 6911: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 6911 + name: + type: string + example: 'Quest Software' + 6912: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 6912 + name: + type: string + example: 'Quest Software, Inc.' + 6913: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 6913 + name: + type: string + example: 'Quickdraw Developments' + 6914: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 6914 + name: + type: string + example: 'Quickfire Games Pte. Ltd.' + 6915: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 6915 + name: + type: string + example: 'QuickSilva' + 6916: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 6916 + name: + type: string + example: 'Quicksilver Software, Inc' + 6919: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 6919 + name: + type: string + example: 'Quintet' + 6920: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 6920 + name: + type: string + example: 'Quixel' + 6921: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 6921 + name: + type: string + example: 'Quondam Industry Company, Ltd.' + 6922: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 6922 + name: + type: string + example: 'Qute' + 6923: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 6923 + name: + type: string + example: 'QV Software' + 6925: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 6925 + name: + type: string + example: 'R.G. Kilgus' + 6926: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 6926 + name: + type: string + example: 'R.Womak' + 6927: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 6927 + name: + type: string + example: 'R/GA Interactive' + 6928: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 6928 + name: + type: string + example: 'RA Images' + 6929: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 6929 + name: + type: string + example: 'Rabbit' + 6930: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 6930 + name: + type: string + example: 'Racdym' + 6931: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 6931 + name: + type: string + example: 'Racjin Co., Ltd.' + 6933: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 6933 + name: + type: string + example: 'Rack-It' + 6934: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 6934 + name: + type: string + example: 'Radarsoft' + 10244: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 10244 + name: + type: string + example: 'Radial Games Corp.,' + 6936: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 6936 + name: + type: string + example: 'Radian Games' + 6937: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 6937 + name: + type: string + example: 'Radiance Software' + 6939: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 6939 + name: + type: string + example: 'Radiance Software, Capcom' + 6941: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 6941 + name: + type: string + example: 'Radica:' + 6942: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 6942 + name: + type: string + example: 'Radical Entertainment Inc.' + 6947: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 6947 + name: + type: string + example: 'Radical Fish Games' + 6948: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 6948 + name: + type: string + example: 'Radical Poesis' + 6949: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 6949 + name: + type: string + example: 'Radioactive Software' + 6950: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 6950 + name: + type: string + example: 'radiostatic' + 6951: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 6951 + name: + type: string + example: 'Radius9' + 6952: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 6952 + name: + type: string + example: 'Radon Labs GmbH' + 10074: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 10074 + name: + type: string + example: 'RAF' + 6954: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 6954 + name: + type: string + example: 'Rafa? ?Castillo?, John? ?McKlain' + 6955: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 6955 + name: + type: string + example: 'Raffaele Cecco' + 6957: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 6957 + name: + type: string + example: 'Rage Software' + 6963: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 6963 + name: + type: string + example: 'Ragequit Corporation' + 6964: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 6964 + name: + type: string + example: 'RageSquid' + 6965: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 6965 + name: + type: string + example: 'Rail Slave Games' + 6966: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 6966 + name: + type: string + example: 'RailSimulator.com' + 6967: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 6967 + name: + type: string + example: 'Rain' + 6968: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 6968 + name: + type: string + example: 'Rain Games' + 6969: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 6969 + name: + type: string + example: 'rainbow' + 6970: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 6970 + name: + type: string + example: 'Rainbow Arts' + 6971: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 6971 + name: + type: string + example: 'Rainbow Arts Software GmbH' + 6972: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 6972 + name: + type: string + example: 'Rainbow Games' + 6973: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 6973 + name: + type: string + example: 'Rainbow Studios' + 6977: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 6977 + name: + type: string + example: 'Rainbow Vision' + 6978: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 6978 + name: + type: string + example: 'Raising' + 6979: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 6979 + name: + type: string + example: 'Raising Hell Productions' + 6982: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 6982 + name: + type: string + example: 'Rait Electronics' + 6983: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 6983 + name: + type: string + example: 'Raizing' + 6984: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 6984 + name: + type: string + example: 'Rake In Grass' + 6985: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 6985 + name: + type: string + example: 'Ramar International' + 6986: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 6986 + name: + type: string + example: 'Rampant Games' + 6987: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 6987 + name: + type: string + example: 'RamTeK' + 6988: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 6988 + name: + type: string + example: 'Random Access' + 6989: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 6989 + name: + type: string + example: 'Random Games Inc.' + 6990: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 6990 + name: + type: string + example: 'Random House' + 6992: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 6992 + name: + type: string + example: 'Rare Big Park' + 6991: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 6991 + name: + type: string + example: 'Rare, Ltd.' + 6997: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 6997 + name: + type: string + example: 'Raspina Studio' + 6998: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 6998 + name: + type: string + example: 'RasterSoft' + 7000: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 7000 + name: + type: string + example: 'Rat King Entertainment' + 7001: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 7001 + name: + type: string + example: 'Ratbag Pty, Ltd.' + 7003: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 7003 + name: + type: string + example: 'Ratloop' + 7004: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 7004 + name: + type: string + example: 'Ratloop Asia' + 7005: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 7005 + name: + type: string + example: 'Ratrod Studio Inc.' + 7006: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 7006 + name: + type: string + example: 'Raven Software' + 7008: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 7008 + name: + type: string + example: 'Raven Software Corporation' + 7010: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 7010 + name: + type: string + example: 'Ravensburger Interactive Media GmbH' + 7012: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 7012 + name: + type: string + example: 'Raw Fury Games' + 7013: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 7013 + name: + type: string + example: 'Ray Force' + 10011: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 10011 + name: + type: string + example: 'Ray Owen' + 10281: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 10281 + name: + type: string + example: 'Ray Tredoux' + 7014: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 7014 + name: + type: string + example: 'Rayark Inc.' + 7016: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 7016 + name: + type: string + example: 'Rayforce' + 7017: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 7017 + name: + type: string + example: 'Rayland Interactive' + 7018: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 7018 + name: + type: string + example: 'Raylight Studios' + 7020: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 7020 + name: + type: string + example: 'Raymond Tobey' + 7021: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 7021 + name: + type: string + example: 'Razbor Studios' + 10017: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 10017 + name: + type: string + example: 'Raze' + 7022: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 7022 + name: + type: string + example: 'Razorback Developments' + 7023: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 7023 + name: + type: string + example: 'Razorsoft' + 7024: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 7024 + name: + type: string + example: 'Razorworks' + 6924: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 6924 + name: + type: string + example: 'RC Knight' + 7027: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 7027 + name: + type: string + example: 'RCMADIAX' + 7028: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 7028 + name: + type: string + example: 'RE-LOGIC' + 7029: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 7029 + name: + type: string + example: 'Reactor Games' + 7030: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 7030 + name: + type: string + example: 'Ready at Dawn' + 7031: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 7031 + name: + type: string + example: 'ReadySoft Incorporated' + 7033: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 7033 + name: + type: string + example: 'Reakktor Media' + 7035: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 7035 + name: + type: string + example: 'Real 3-D' + 7036: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 7036 + name: + type: string + example: 'Real Time Worlds' + 7037: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 7037 + name: + type: string + example: 'Real Vision' + 7038: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 7038 + name: + type: string + example: 'Real World based Games Lab' + 7039: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 7039 + name: + type: string + example: 'Real World Software' + 7040: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 7040 + name: + type: string + example: 'Realism' + 7041: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 7041 + name: + type: string + example: 'Realism Entertainment' + 7042: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 7042 + name: + type: string + example: 'Reality Bytes' + 7043: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 7043 + name: + type: string + example: 'Reality Pump' + 7044: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 7044 + name: + type: string + example: 'Reality Pump Studios' + 7045: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 7045 + name: + type: string + example: 'Realm Source' + 7046: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 7046 + name: + type: string + example: 'Realmforge Studios' + 7047: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 7047 + name: + type: string + example: 'Realms' + 7048: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 7048 + name: + type: string + example: 'Realta Entertainment Group' + 7049: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 7049 + name: + type: string + example: 'Realtime' + 10271: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 10271 + name: + type: string + example: 'Realtime Associates' + 7052: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 7052 + name: + type: string + example: 'Realtime Associates Seattle' + 7050: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 7050 + name: + type: string + example: 'Realtime Associates, Inc.' + 7054: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 7054 + name: + type: string + example: 'Realtime Games Software Ltd.' + 7056: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 7056 + name: + type: string + example: 'Realtime Worlds' + 7057: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 7057 + name: + type: string + example: 'Reanimated Games' + 7058: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 7058 + name: + type: string + example: 'Rebel Act Studios' + 7059: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 7059 + name: + type: string + example: 'Rebel Twins' + 7060: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 7060 + name: + type: string + example: 'rebelion' + 7061: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 7061 + name: + type: string + example: 'Rebellion' + 7064: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 7064 + name: + type: string + example: 'Rebellion Oxford' + 7067: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 7067 + name: + type: string + example: 'Reboot' + 7068: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 7068 + name: + type: string + example: 'Recloak Games' + 7069: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 7069 + name: + type: string + example: 'Recoil Games' + 7070: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 7070 + name: + type: string + example: 'Recotechnology S.L.' + 7071: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 7071 + name: + type: string + example: 'RECOTECHNOLOGY SL' + 7072: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 7072 + name: + type: string + example: 'Rectangle' + 7074: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 7074 + name: + type: string + example: 'Red 5 Studios' + 7075: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 7075 + name: + type: string + example: 'Red Barrels' + 7076: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 7076 + name: + type: string + example: 'Red Cerberus' + 7077: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 7077 + name: + type: string + example: 'Red Company' + 7079: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 7079 + name: + type: string + example: 'Red Dot Games' + 7080: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 7080 + name: + type: string + example: 'Red Duck' + 7081: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 7081 + name: + type: string + example: 'RED DUCK, INC.' + 7082: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 7082 + name: + type: string + example: 'Red Dwarf Games' + 10098: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 10098 + name: + type: string + example: 'Red Entertainment' + 7073: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 7073 + name: + type: string + example: 'Red Entertainment Corporation' + 7086: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 7086 + name: + type: string + example: 'Red Fly Studio' + 7087: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 7087 + name: + type: string + example: 'Red Hook Studios' + 7088: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 7088 + name: + type: string + example: 'Red Lemon Studios' + 7090: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 7090 + name: + type: string + example: 'Red Meat Games' + 7091: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 7091 + name: + type: string + example: 'Red Orb Entertainment' + 7093: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 7093 + name: + type: string + example: 'Red Rat Software' + 7094: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 7094 + name: + type: string + example: 'Red Redemption' + 7095: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 7095 + name: + type: string + example: 'Red Shift Ltd' + 7096: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 7096 + name: + type: string + example: 'Red Storm' + 7097: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 7097 + name: + type: string + example: 'Red Storm Entertainment, Inc.' + 7099: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 7099 + name: + type: string + example: 'Red Thread Games' + 7100: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 7100 + name: + type: string + example: 'Red Zone Interactive' + 7101: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 7101 + name: + type: string + example: 'RedBedlam' + 7102: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 7102 + name: + type: string + example: 'redhotsonic' + 7103: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 7103 + name: + type: string + example: 'Redline Games' + 7089: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 7089 + name: + type: string + example: 'Redlynx Ltd' + 7106: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 7106 + name: + type: string + example: 'Redtribe' + 7107: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 7107 + name: + type: string + example: 'Redwood Games' + 7108: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 7108 + name: + type: string + example: 'Reef Entraiment' + 7109: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 7109 + name: + type: string + example: 'Reflections Interactive' + 7113: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 7113 + name: + type: string + example: 'Reflective Designs' + 7114: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 7114 + name: + type: string + example: 'Reflexive Entertainment' + 7115: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 7115 + name: + type: string + example: 'Refract' + 7116: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 7116 + name: + type: string + example: 'Refraction Games' + 7117: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 7117 + name: + type: string + example: 'Regalis' + 7118: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 7118 + name: + type: string + example: 'Regista' + 7119: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 7119 + name: + type: string + example: 'ReignDesign' + 7120: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 7120 + name: + type: string + example: 'Reikon Games' + 7121: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 7121 + name: + type: string + example: 'Reiza Studios' + 7122: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 7122 + name: + type: string + example: 'Rejet' + 7123: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 7123 + name: + type: string + example: 'Related Designs' + 7126: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 7126 + name: + type: string + example: 'Relentless Software Ltd' + 7130: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 7130 + name: + type: string + example: 'Relevo' + 7131: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 7131 + name: + type: string + example: 'Relic Entertainment' + 7133: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 7133 + name: + type: string + example: 'Relic Entertainment, Feral Interactive (Mac), Feral Interactive (Linux)' + 7134: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 7134 + name: + type: string + example: 'reLINE Software' + 7136: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 7136 + name: + type: string + example: 'Reloaded Productions' + 7137: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 7137 + name: + type: string + example: 'Remar Games' + 7138: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 7138 + name: + type: string + example: 'Remedy Entertainment' + 7141: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 7141 + name: + type: string + example: 'Remedy Entertainment Ltd. , Mountain Sheep Inc. , Cornfox & Brothers Ltd.' + 7142: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 7142 + name: + type: string + example: 'Renaissance' + 7143: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 7143 + name: + type: string + example: 'Renard' + 7144: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 7144 + name: + type: string + example: 'RenderWare' + 7145: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 7145 + name: + type: string + example: 'Renegade Kid' + 7146: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 7146 + name: + type: string + example: 'Renegade Software' + 7147: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 7147 + name: + type: string + example: 'Renegadeware' + 7148: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 7148 + name: + type: string + example: 'Renovation Game' + 7150: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 7150 + name: + type: string + example: 'renpytom' + 7151: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 7151 + name: + type: string + example: 'Repixel8' + 7152: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 7152 + name: + type: string + example: 'Replay Games' + 7153: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 7153 + name: + type: string + example: 'Replay Studios' + 7154: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 7154 + name: + type: string + example: 'Respawn Entertainment' + 7156: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 7156 + name: + type: string + example: 'responDESIGN' + 7157: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 7157 + name: + type: string + example: 'Reto-Moto' + 7158: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 7158 + name: + type: string + example: 'Retro Affect' + 7159: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 7159 + name: + type: string + example: 'Retro Army Limited' + 7160: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 7160 + name: + type: string + example: 'Retro Studios' + 7161: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 7161 + name: + type: string + example: 'Retro Yeti Games' + 7162: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 7162 + name: + type: string + example: 'Retro64, Inc.' + 7163: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 7163 + name: + type: string + example: 'Retrocade.net' + 7164: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 7164 + name: + type: string + example: 'Retrodesign' + 7165: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 7165 + name: + type: string + example: 'Retrogene Studio' + 7166: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 7166 + name: + type: string + example: 'Retroguru' + 7167: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 7167 + name: + type: string + example: 'RetroMasters' + 7168: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 7168 + name: + type: string + example: 'RetroSouls' + 7169: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 7169 + name: + type: string + example: 'retrostark' + 7170: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 7170 + name: + type: string + example: 'RetroWare' + 7171: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 7171 + name: + type: string + example: 'Retrowax Games' + 7172: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 7172 + name: + type: string + example: 'RETROWORKS' + 7173: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 7173 + name: + type: string + example: 'Reverge Labs' + 7174: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 7174 + name: + type: string + example: 'Revistonic' + 7175: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 7175 + name: + type: string + example: 'Revistronic' + 7176: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 7176 + name: + type: string + example: 'Revival' + 7178: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 7178 + name: + type: string + example: 'Revolution Software Ltd.' + 7180: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 7180 + name: + type: string + example: 'Rewolf Software' + 7181: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 7181 + name: + type: string + example: 'Rex Soft' + 7182: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 7182 + name: + type: string + example: 'Rexet Studio' + 7183: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 7183 + name: + type: string + example: 'RezetiA' + 7184: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 7184 + name: + type: string + example: 'RFX Interactive' + 7185: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 7185 + name: + type: string + example: 'RGCD' + 7187: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 7187 + name: + type: string + example: 'Rhino Studios' + 7188: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 7188 + name: + type: string + example: 'Rhythm & Hues' + 7190: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 7190 + name: + type: string + example: 'Ricardo Puerto' + 7191: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 7191 + name: + type: string + example: 'Riccardo Dejas' + 7192: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 7192 + name: + type: string + example: 'Rich Make Game!' + 7193: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 7193 + name: + type: string + example: 'Richard Bayliss' + 7194: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 7194 + name: + type: string + example: 'Richard Bayliss & Wayne Womersley' + 10013: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 10013 + name: + type: string + example: 'Richard Darling' + 7195: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 7195 + name: + type: string + example: 'Richard Garriott' + 7196: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 7196 + name: + type: string + example: 'Richard Gibbs' + 7197: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 7197 + name: + type: string + example: 'Richard Hofmeier' + 7198: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 7198 + name: + type: string + example: 'Richard Leinfellner' + 7199: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 7199 + name: + type: string + example: 'Richard Perrin' + 7200: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 7200 + name: + type: string + example: 'Richard Seabrook' + 7201: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 7201 + name: + type: string + example: 'Richard Underhill' + 7202: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 7202 + name: + type: string + example: 'Rick Adams' + 7203: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 7203 + name: + type: string + example: 'Rick Holzgrafe' + 7204: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 7204 + name: + type: string + example: 'Rick Skrbina' + 7205: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 7205 + name: + type: string + example: 'Ricoh' + 7206: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 7206 + name: + type: string + example: 'Ride On' + 7207: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 7207 + name: + type: string + example: 'Riedel Software Productions, Inc.' + 7208: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 7208 + name: + type: string + example: 'Riff Raff Games' + 7209: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 7209 + name: + type: string + example: 'Rifter Games' + 7210: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 7210 + name: + type: string + example: 'RIGHT STUFF' + 7213: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 7213 + name: + type: string + example: 'Righteous Hammer Games' + 7214: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 7214 + name: + type: string + example: 'RIKI' + 7215: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 7215 + name: + type: string + example: 'Ringler Studios' + 7216: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 7216 + name: + type: string + example: 'Riot' + 7217: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 7217 + name: + type: string + example: 'Riot Games' + 7219: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 7219 + name: + type: string + example: 'Ripcord Games' + 7220: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 7220 + name: + type: string + example: 'Ripstone' + 7221: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 7221 + name: + type: string + example: 'Rising Star Games' + 7223: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 7223 + name: + type: string + example: 'Ritual Entertainment' + 7226: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 7226 + name: + type: string + example: 'River Hill Software' + 7227: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 7227 + name: + type: string + example: 'Riverhill Soft Inc.' + 10251: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 10251 + name: + type: string + example: 'Riverhillsoft' + 7231: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 7231 + name: + type: string + example: 'Riverman Media' + 7232: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 7232 + name: + type: string + example: 'RjB Software' + 7233: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 7233 + name: + type: string + example: 'RNC' + 7234: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 7234 + name: + type: string + example: 'Rob Fulop' + 7235: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 7235 + name: + type: string + example: 'Rob Howland' + 10012: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 10012 + name: + type: string + example: 'Rob Hubbard' + 7236: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 7236 + name: + type: string + example: 'Rob Stevens' + 9940: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 9940 + name: + type: string + example: 'Rob Toone' + 7237: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 7237 + name: + type: string + example: 'Robbie Hill' + 7238: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 7238 + name: + type: string + example: 'Robert Arnstein' + 7239: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 7239 + name: + type: string + example: 'Robert Curtiss' + 7240: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 7240 + name: + type: string + example: 'Robert DeCrescenzo' + 10252: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 10252 + name: + type: string + example: 'Robert Figgins' + 7242: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 7242 + name: + type: string + example: 'Robert G. Kilgus' + 7243: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 7243 + name: + type: string + example: 'Robert Kooima' + 7244: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 7244 + name: + type: string + example: 'Robert Neve' + 7245: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 7245 + name: + type: string + example: 'Robert Pfitzner' + 7246: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 7246 + name: + type: string + example: 'Robinson Technologies' + 7247: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 7247 + name: + type: string + example: 'Robit Games' + 7248: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 7248 + name: + type: string + example: 'Robit Studios' + 7249: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 7249 + name: + type: string + example: 'ROBLOX Corporation' + 7250: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 7250 + name: + type: string + example: 'Robomodo' + 7252: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 7252 + name: + type: string + example: 'Robot Entertainment' + 7254: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 7254 + name: + type: string + example: 'Robot Invader' + 7255: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 7255 + name: + type: string + example: 'Robot Loves Kitty' + 7256: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 7256 + name: + type: string + example: 'Robotality' + 7257: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 7257 + name: + type: string + example: 'Robotronic Games' + 7258: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 7258 + name: + type: string + example: 'RobTop Games' + 7259: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 7259 + name: + type: string + example: 'Rock Hippo Productions' + 7260: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 7260 + name: + type: string + example: 'Rock Pocket Games' + 7261: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 7261 + name: + type: string + example: 'Rock-Ola' + 7262: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 7262 + name: + type: string + example: 'Rock-Ola Mfg. Corp.' + 7263: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 7263 + name: + type: string + example: 'Rocket Bear Games' + 7264: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 7264 + name: + type: string + example: 'Rocket Company' + 7265: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 7265 + name: + type: string + example: 'Rocket Science Games' + 7267: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 7267 + name: + type: string + example: 'Rocket Studio, Inc' + 7268: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 7268 + name: + type: string + example: 'Rocketcat Games' + 7269: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 7269 + name: + type: string + example: 'Rocketcat Games, Madgarden' + 7270: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 7270 + name: + type: string + example: 'Rocketeer Games Studio, LLC' + 7271: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 7271 + name: + type: string + example: 'ROCKFISH Games' + 7272: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 7272 + name: + type: string + example: 'Rocksauce Studios' + 7273: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 7273 + name: + type: string + example: 'Rockstar Games' + 7275: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 7275 + name: + type: string + example: 'Rockstar Leeds' + 7277: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 7277 + name: + type: string + example: 'Rockstar London' + 7279: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 7279 + name: + type: string + example: 'Rockstar North' + 7283: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 7283 + name: + type: string + example: 'Rockstar San Diego' + 7285: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 7285 + name: + type: string + example: 'Rockstar Toronto' + 7286: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 7286 + name: + type: string + example: 'Rockstar Vancouver' + 10256: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 10256 + name: + type: string + example: 'Rockstar Vienna' + 7287: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 7287 + name: + type: string + example: 'Rocksteady' + 7288: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 7288 + name: + type: string + example: 'Rocksteady Studios Ltd' + 7290: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 7290 + name: + type: string + example: 'Rocky Studio' + 7291: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 7291 + name: + type: string + example: 'Rod Bowkett' + 7292: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 7292 + name: + type: string + example: 'Rodeo Games' + 7293: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 7293 + name: + type: string + example: 'Rodmar Elec' + 7294: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 7294 + name: + type: string + example: 'RodrigoT' + 9971: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 9971 + name: + type: string + example: 'Roger Carver' + 7295: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 7295 + name: + type: string + example: 'Roger Hector & Lee ACtor' + 7296: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 7296 + name: + type: string + example: 'Rogue Entertainment' + 7297: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 7297 + name: + type: string + example: 'Rogue Factor' + 7298: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 7298 + name: + type: string + example: 'Rogue Ninja' + 7299: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 7299 + name: + type: string + example: 'Rogue Snail' + 7300: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 7300 + name: + type: string + example: 'Rogue Synapse' + 7301: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 7301 + name: + type: string + example: 'ROI Games' + 7302: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 7302 + name: + type: string + example: 'Roklan' + 7303: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 7303 + name: + type: string + example: 'Roklan Software' + 7304: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 7304 + name: + type: string + example: 'Rokland' + 7305: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 7305 + name: + type: string + example: 'Rokumendo' + 7306: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 7306 + name: + type: string + example: 'Roland Studios' + 7307: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 7307 + name: + type: string + example: 'Roll7' + 7309: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 7309 + name: + type: string + example: 'ROM Hack' + 7310: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 7310 + name: + type: string + example: 'Roman Syrovatka' + 7311: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 7311 + name: + type: string + example: 'Roman-Tech' + 7312: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 7312 + name: + type: string + example: 'Romox Inc.' + 7314: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 7314 + name: + type: string + example: 'Romstar' + 7315: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 7315 + name: + type: string + example: 'Ron Gilbert and Gary Winnick' + 7316: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 7316 + name: + type: string + example: 'Ronald Pieket Weeserik' + 7317: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 7317 + name: + type: string + example: 'Ronen Habot' + 7318: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 7318 + name: + type: string + example: 'Ronimo Games' + 7322: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 7322 + name: + type: string + example: 'Ronin Entertainment' + 10179: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 10179 + name: + type: string + example: 'Ronnie Fowles' + 7323: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 7323 + name: + type: string + example: 'Ronny Wester' + 7324: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 7324 + name: + type: string + example: 'Rookie Hero Games S.L.' + 7325: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 7325 + name: + type: string + example: 'RosePortal Games' + 7326: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 7326 + name: + type: string + example: 'roseVeRte' + 7327: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 7327 + name: + type: string + example: 'Rotten Mage' + 7328: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 7328 + name: + type: string + example: 'Route 1 Games' + 7329: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 7329 + name: + type: string + example: 'Route24' + 7330: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 7330 + name: + type: string + example: 'Rovio Entertainment Ltd.' + 7332: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 7332 + name: + type: string + example: 'Rovio Mobile Ltd.' + 7334: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 7334 + name: + type: string + example: 'Rowan Software Ltd.' + 7336: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 7336 + name: + type: string + example: 'Roxor Games' + 10257: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 10257 + name: + type: string + example: 'Roy Carter' + 7338: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 7338 + name: + type: string + example: 'RSP' + 7339: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 7339 + name: + type: string + example: 'RTL Entertainment' + 7340: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 7340 + name: + type: string + example: 'RTL Interactive' + 7341: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 7341 + name: + type: string + example: 'RTL Playtainment' + 7342: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 7342 + name: + type: string + example: 'ru3ch initiative' + 7343: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 7343 + name: + type: string + example: 'Ruby Party' + 7344: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 7344 + name: + type: string + example: 'Rudolf Kremers & Alex May' + 7345: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 7345 + name: + type: string + example: 'Ruffian Games' + 7346: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 7346 + name: + type: string + example: 'Rumic Soft' + 7347: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 7347 + name: + type: string + example: 'Ruminant''s Whimper' + 7348: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 7348 + name: + type: string + example: 'Runecraft' + 7349: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 7349 + name: + type: string + example: 'Runestorm' + 7350: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 7350 + name: + type: string + example: 'Runewaker Entertainment' + 7351: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 7351 + name: + type: string + example: 'Runic Games' + 7352: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 7352 + name: + type: string + example: 'Running Dog' + 7353: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 7353 + name: + type: string + example: 'Running With Scissors' + 7355: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 7355 + name: + type: string + example: 'Runtime' + 7356: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 7356 + name: + type: string + example: 'Rupeck Games' + 7357: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 7357 + name: + type: string + example: 'Russell Babylon' + 7358: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 7358 + name: + type: string + example: 'Rusty Knights' + 7359: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 7359 + name: + type: string + example: 'Rutubo Games' + 7360: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 7360 + name: + type: string + example: 'RWS, Inc.' + 7361: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 7361 + name: + type: string + example: 'Ryan Kinnen' + 7362: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 7362 + name: + type: string + example: 'Ryu ga Gotoku Studio' + 7367: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 7367 + name: + type: string + example: 'S-Neo' + 7368: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 7368 + name: + type: string + example: 'S. Munnery' + 7369: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 7369 + name: + type: string + example: 'S.G.I.' + 7364: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 7364 + name: + type: string + example: 'S&M Software' + 7365: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 7365 + name: + type: string + example: 'S&T Online' + 7366: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 7366 + name: + type: string + example: 'S+F Productions' + 7370: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 7370 + name: + type: string + example: 'S2 Games' + 7371: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 7371 + name: + type: string + example: 'SaadaSoft' + 7372: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 7372 + name: + type: string + example: 'Saban' + 7373: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 7373 + name: + type: string + example: 'Sabarasa Entertainment' + 7374: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 7374 + name: + type: string + example: 'Saber Interactive' + 7376: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 7376 + name: + type: string + example: 'Sachen' + 7377: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 7377 + name: + type: string + example: 'Sachs Enterprises' + 7378: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 7378 + name: + type: string + example: 'Sacnoth' + 7379: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 7379 + name: + type: string + example: 'Sadato Taneda' + 7380: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 7380 + name: + type: string + example: 'Safar Games' + 7381: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 7381 + name: + type: string + example: 'Saffire Corporation' + 7383: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 7383 + name: + type: string + example: 'Sage''s Creation, Inc.' + 7385: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 7385 + name: + type: string + example: 'Sagiterian' + 7386: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 7386 + name: + type: string + example: 'Sahmon Games' + 7387: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 7387 + name: + type: string + example: 'Saibot Studios' + 7388: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 7388 + name: + type: string + example: 'Saicon' + 7389: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 7389 + name: + type: string + example: 'Sakari Indie' + 7390: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 7390 + name: + type: string + example: 'Sakata SAS' + 7392: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 7392 + name: + type: string + example: 'Sakis RG' + 7393: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 7393 + name: + type: string + example: 'Sakis25 Games' + 7394: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 7394 + name: + type: string + example: 'Sakura River Interactive' + 7397: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 7397 + name: + type: string + example: 'Salio' + 7398: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 7398 + name: + type: string + example: 'Salu' + 7399: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 7399 + name: + type: string + example: 'Sam Barlow' + 7400: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 7400 + name: + type: string + example: 'Sam Manthorpe' + 7401: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 7401 + name: + type: string + example: 'SAME Creative Inc.' + 7402: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 7402 + name: + type: string + example: 'Sammy' + 7403: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 7403 + name: + type: string + example: 'Sammy Corporation' + 7404: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 7404 + name: + type: string + example: 'Sammy Studios' + 7405: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 7405 + name: + type: string + example: 'Samsung' + 7407: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 7407 + name: + type: string + example: 'Samurai Punk' + 7408: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 7408 + name: + type: string + example: 'Sanai' + 7409: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 7409 + name: + type: string + example: 'Sanchen' + 7410: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 7410 + name: + type: string + example: 'Sancho' + 7411: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 7411 + name: + type: string + example: 'Sanctuary Woods Multimedia Corporation' + 7413: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 7413 + name: + type: string + example: 'Sand Grain Studios' + 10345: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 10345 + name: + type: string + example: 'Sand Sailor Studio' + 7415: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 7415 + name: + type: string + example: 'Sandblast Games' + 7417: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 7417 + name: + type: string + example: 'Sandbox Studios' + 7420: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 7420 + name: + type: string + example: 'Sandcastle' + 7421: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 7421 + name: + type: string + example: 'Sandcastle Productions' + 7422: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 7422 + name: + type: string + example: 'Sandlot' + 7424: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 7424 + name: + type: string + example: 'Sandlot Games' + 7425: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 7425 + name: + type: string + example: 'Sandswept Studios' + 7426: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 7426 + name: + type: string + example: 'Sandy White' + 7427: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 7427 + name: + type: string + example: 'Sankindo' + 7428: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 7428 + name: + type: string + example: 'Sanrio' + 7429: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 7429 + name: + type: string + example: 'Sanritsu' + 7432: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 7432 + name: + type: string + example: 'Santa Cruz Games' + 7434: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 7434 + name: + type: string + example: 'Santa Entertainment' + 7436: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 7436 + name: + type: string + example: 'Santa Ragione' + 7437: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 7437 + name: + type: string + example: 'Santaclaus' + 7438: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 7438 + name: + type: string + example: 'Santos' + 7439: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 7439 + name: + type: string + example: 'Sanuk Games' + 7440: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 7440 + name: + type: string + example: 'Sanuk Games SARL' + 7441: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 7441 + name: + type: string + example: 'Sanyo' + 7442: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 7442 + name: + type: string + example: 'Sanzaru Games' + 7444: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 7444 + name: + type: string + example: 'Sara International' + 7445: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 7445 + name: + type: string + example: 'Sarah Northway' + 7446: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 7446 + name: + type: string + example: 'Sarbakan' + 7447: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 7447 + name: + type: string + example: 'Sarbakan Inc.' + 7448: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 7448 + name: + type: string + example: 'Sarepta studio' + 7449: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 7449 + name: + type: string + example: 'SaruPro' + 7450: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 7450 + name: + type: string + example: 'SAS Sakata' + 7451: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 7451 + name: + type: string + example: 'Sasha Darko' + 7452: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 7452 + name: + type: string + example: 'Saucer Software' + 7453: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 7453 + name: + type: string + example: 'Sauerbraten.org' + 10148: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 10148 + name: + type: string + example: 'Saul Cross' + 7454: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 7454 + name: + type: string + example: 'Saurus' + 7455: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 7455 + name: + type: string + example: 'Savage Entertainment' + 7457: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 7457 + name: + type: string + example: 'Saw-Fish' + 7458: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 7458 + name: + type: string + example: 'Sayonara Software' + 7459: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 7459 + name: + type: string + example: 'sc0tt games' + 7460: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 7460 + name: + type: string + example: 'Scangames Norway' + 7461: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 7461 + name: + type: string + example: 'ScapTrust' + 7463: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 7463 + name: + type: string + example: 'Scarab' + 7464: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 7464 + name: + type: string + example: 'Scary Bee LLC' + 7465: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 7465 + name: + type: string + example: 'ScaryPotato' + 7466: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 7466 + name: + type: string + example: 'Scavenger Inc' + 7468: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 7468 + name: + type: string + example: 'Scavengers Studio' + 10070: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 10070 + name: + type: string + example: 'SCE Japan Studio' + 9986: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 9986 + name: + type: string + example: 'SCE Studios Japan' + 10338: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 10338 + name: + type: string + example: 'SCE Studios San Diego' + 7499: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 7499 + name: + type: string + example: 'Schell Games' + 7500: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 7500 + name: + type: string + example: 'Scherrer Medien GmbH' + 7501: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 7501 + name: + type: string + example: 'Scholastic Inc.' + 7503: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 7503 + name: + type: string + example: 'Scholastic Media' + 7504: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 7504 + name: + type: string + example: 'Schwartz Bonnan Productions' + 7505: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 7505 + name: + type: string + example: 'SCi Games' + 7508: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 7508 + name: + type: string + example: 'Scientifically Proven' + 7511: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 7511 + name: + type: string + example: 'Scipio' + 10260: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 10260 + name: + type: string + example: 'Scitron' + 7512: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 7512 + name: + type: string + example: 'Scitron & Art' + 7514: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 7514 + name: + type: string + example: 'Scorpio Games World' + 7515: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 7515 + name: + type: string + example: 'Scorpion Soft' + 7516: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 7516 + name: + type: string + example: 'Scott Adams' + 7517: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 7517 + name: + type: string + example: 'Scott Cawthon' + 7518: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 7518 + name: + type: string + example: 'Scott Dayton' + 7519: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 7519 + name: + type: string + example: 'Scott Nudds' + 7520: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 7520 + name: + type: string + example: 'Scott Spanburg' + 7521: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 7521 + name: + type: string + example: 'Screaming Villains' + 7522: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 7522 + name: + type: string + example: 'screen' + 7523: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 7523 + name: + type: string + example: 'Screenlife' + 7524: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 7524 + name: + type: string + example: 'Screwfly Studios' + 7525: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 7525 + name: + type: string + example: 'SCS Software' + 7527: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 7527 + name: + type: string + example: 'Sculptured Software' + 7530: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 7530 + name: + type: string + example: 'Sculptured Software, Inc.' + 7532: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 7532 + name: + type: string + example: 'SDP Games' + 7533: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 7533 + name: + type: string + example: 'Seamless Entertainment' + 9910: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 9910 + name: + type: string + example: 'Sean Connolly' + 7534: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 7534 + name: + type: string + example: 'Sean Townsend' + 7535: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 7535 + name: + type: string + example: 'Sears Roebuck and Co.' + 7536: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 7536 + name: + type: string + example: 'SeaSwallow' + 7537: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 7537 + name: + type: string + example: 'Seatongrove UK, Ltd' + 7538: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 7538 + name: + type: string + example: 'Seaven Studio' + 7539: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 7539 + name: + type: string + example: 'sebagamesdev' + 7540: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 7540 + name: + type: string + example: 'Sebastian Mihai' + 7541: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 7541 + name: + type: string + example: 'Second Wind Interactive' + 7542: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 7542 + name: + type: string + example: 'Secret Base' + 7543: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 7543 + name: + type: string + example: 'Secret Exit Ltd.' + 7544: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 7544 + name: + type: string + example: 'Secret Level Inc.' + 7546: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 7546 + name: + type: string + example: 'Secret Stash Games' + 7547: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 7547 + name: + type: string + example: 'Section Studios' + 7548: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 7548 + name: + type: string + example: 'SeedStudios' + 7549: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 7549 + name: + type: string + example: 'Sega' + 411: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 411 + name: + type: string + example: 'SEGA AM-2' + 410: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 410 + name: + type: string + example: 'Sega AM1 R&D Division' + 7555: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 7555 + name: + type: string + example: 'Sega AM3 R&D Division' + 7554: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 7554 + name: + type: string + example: 'Sega AM3 R&D Division' + 7556: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 7556 + name: + type: string + example: 'Sega AM4 R&D Division' + 7557: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 7557 + name: + type: string + example: 'Sega AM5 R&D Division' + 413: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 413 + name: + type: string + example: 'Sega AM7 R&D Division' + 7560: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 7560 + name: + type: string + example: 'Sega CS R&D 2' + 7561: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 7561 + name: + type: string + example: 'Sega CS1' + 7564: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 7564 + name: + type: string + example: 'Sega Europe' + 7565: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 7565 + name: + type: string + example: 'SEGA Games' + 7566: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 7566 + name: + type: string + example: 'SEGA Interactive Development Division' + 7568: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 7568 + name: + type: string + example: 'Sega Midwest Studio' + 7570: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 7570 + name: + type: string + example: 'Sega R&D2' + 7571: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 7571 + name: + type: string + example: 'Sega Racing Studio' + 7572: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 7572 + name: + type: string + example: 'Sega Rosso' + 7573: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 7573 + name: + type: string + example: 'Sega Studios San Francisco' + 7569: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 7569 + name: + type: string + example: 'SEGA Studios USA' + 7574: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 7574 + name: + type: string + example: 'Sega Technical Institute' + 7575: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 7575 + name: + type: string + example: 'Sega Toys' + 7576: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 7576 + name: + type: string + example: 'Sega Wow' + 7580: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 7580 + name: + type: string + example: 'Sega, Tectoy' + 7590: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 7590 + name: + type: string + example: 'Segye-ro Electronics' + 7591: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 7591 + name: + type: string + example: 'Seibu' + 7592: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 7592 + name: + type: string + example: 'Seibu Denshi' + 7593: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 7593 + name: + type: string + example: 'Seibu Kaihatsu Inc.' + 10320: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 10320 + name: + type: string + example: 'Seibu Lease' + 7595: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 7595 + name: + type: string + example: 'Seika' + 7596: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 7596 + name: + type: string + example: 'Sein-Soft' + 7597: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 7597 + name: + type: string + example: 'SeithCG' + 7598: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 7598 + name: + type: string + example: 'SEK' + 7599: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 7599 + name: + type: string + example: 'Sekarabe' + 7600: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 7600 + name: + type: string + example: 'Selchow & Righter Company' + 7601: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 7601 + name: + type: string + example: 'Select Button' + 7602: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 7602 + name: + type: string + example: 'Selen' + 7603: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 7603 + name: + type: string + example: 'Self-Published' + 7604: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 7604 + name: + type: string + example: 'Semi Logic Entertainments' + 7605: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 7605 + name: + type: string + example: 'Semi Secret Software' + 7606: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 7606 + name: + type: string + example: 'Semicom' + 7607: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 7607 + name: + type: string + example: 'Semnat Studios, LLC' + 7608: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 7608 + name: + type: string + example: 'Sen' + 7609: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 7609 + name: + type: string + example: 'Senchi Technology' + 7610: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 7610 + name: + type: string + example: 'Senile Team' + 7611: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 7611 + name: + type: string + example: 'Senko Industries' + 7612: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 7612 + name: + type: string + example: 'Sennari Interactive' + 7614: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 7614 + name: + type: string + example: 'Senori Box' + 7615: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 7615 + name: + type: string + example: 'Sensible Software' + 7616: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 7616 + name: + type: string + example: 'Sensory Sweep Studios' + 7618: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 7618 + name: + type: string + example: 'Sentient Software' + 7620: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 7620 + name: + type: string + example: 'Seppo Suorsa' + 9920: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 9920 + name: + type: string + example: 'Sergey Dvoynikov' + 7621: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 7621 + name: + type: string + example: 'Sergey Noskov' + 7622: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 7622 + name: + type: string + example: 'Serious Brew' + 7623: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 7623 + name: + type: string + example: 'Sesame Japan' + 7624: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 7624 + name: + type: string + example: 'SETA' + 7625: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 7625 + name: + type: string + example: 'SETA Corporation' + 7626: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 7626 + name: + type: string + example: 'Seven Computerized Creations' + 7627: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 7627 + name: + type: string + example: 'Seven45 Studios' + 7628: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 7628 + name: + type: string + example: 'SevenOne Intermedia' + 7629: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 7629 + name: + type: string + example: 'SFB Games' + 10313: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 10313 + name: + type: string + example: 'Shaba Games' + 7630: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 7630 + name: + type: string + example: 'Shaba Games LLC' + 7633: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 7633 + name: + type: string + example: 'Shachen' + 7634: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 7634 + name: + type: string + example: 'Shade, Inc.' + 7636: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 7636 + name: + type: string + example: 'Shadow Development' + 7637: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 7637 + name: + type: string + example: 'Shadow Planet Productions' + 7638: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 7638 + name: + type: string + example: 'Shadow Software' + 7639: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 7639 + name: + type: string + example: 'Shadow Tor Studios' + 7640: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 7640 + name: + type: string + example: 'Shadowsoft' + 7641: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 7641 + name: + type: string + example: 'Shall Luck Plus' + 7642: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 7642 + name: + type: string + example: 'Shaman Games Studio' + 7643: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 7643 + name: + type: string + example: 'ShanBlue' + 7644: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 7644 + name: + type: string + example: 'Shanghai UBI' + 7645: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 7645 + name: + type: string + example: 'Share Data' + 7646: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 7646 + name: + type: string + example: 'Sharedata' + 7647: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 7647 + name: + type: string + example: 'Sharpened Edge Studios' + 7648: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 7648 + name: + type: string + example: 'Shatterline Productions' + 9982: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 9982 + name: + type: string + example: 'Shaun Hollingworth' + 7650: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 7650 + name: + type: string + example: 'Shaun Southern' + 7651: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 7651 + name: + type: string + example: 'Shawn Hitchcock' + 7652: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 7652 + name: + type: string + example: 'Sheado.net' + 7653: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 7653 + name: + type: string + example: 'Shen' + 7654: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 7654 + name: + type: string + example: 'Shenandoah Studio' + 7655: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 7655 + name: + type: string + example: 'Sherston Software Ltd.' + 7656: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 7656 + name: + type: string + example: 'Shift' + 7657: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 7657 + name: + type: string + example: 'Shimada Kikaku' + 7660: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 7660 + name: + type: string + example: 'Shin-Nihon Laser Soft Co., Ltd.' + 7658: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 7658 + name: + type: string + example: 'Shin''en Multimedia' + 7661: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 7661 + name: + type: string + example: 'Shining Rock Software' + 7662: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 7662 + name: + type: string + example: 'Shinkai' + 7666: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 7666 + name: + type: string + example: 'Shiny Entertainment Neversoft (' + 7663: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 7663 + name: + type: string + example: 'Shiny Entertainment, Inc.' + 7668: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 7668 + name: + type: string + example: 'Shiro Games' + 7669: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 7669 + name: + type: string + example: 'Shiroko' + 7670: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 7670 + name: + type: string + example: 'Shiru' + 7671: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 7671 + name: + type: string + example: 'Shiver Games' + 7672: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 7672 + name: + type: string + example: 'Shock Developments' + 7673: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 7673 + name: + type: string + example: 'Shockwave' + 7676: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 7676 + name: + type: string + example: 'Shogakukan Productions Co., Ltd.' + 7677: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 7677 + name: + type: string + example: 'Shorebound Studios' + 7674: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 7674 + name: + type: string + example: 'Shouei System' + 7680: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 7680 + name: + type: string + example: 'Shout! Designworks' + 7681: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 7681 + name: + type: string + example: 'Shovsoft' + 7682: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 7682 + name: + type: string + example: 'Showa Tsusho' + 7683: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 7683 + name: + type: string + example: 'Shumkov Dmitriy' + 7684: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 7684 + name: + type: string + example: 'Shuttle Soft' + 7685: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 7685 + name: + type: string + example: 'Sick Puppies' + 7686: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 7686 + name: + type: string + example: 'Sickhead Games, LLC' + 7687: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 7687 + name: + type: string + example: 'Sid Meier' + 7689: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 7689 + name: + type: string + example: 'Sidebar Games' + 7690: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 7690 + name: + type: string + example: 'SideQuest Studios' + 7691: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 7691 + name: + type: string + example: 'Sidhe Interactive' + 7693: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 7693 + name: + type: string + example: 'Sidney' + 7696: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 7696 + name: + type: string + example: 'SIE San Diego Studio' + 7698: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 7698 + name: + type: string + example: 'SIEIDI Ltd' + 7699: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 7699 + name: + type: string + example: 'Sierra' + 7700: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 7700 + name: + type: string + example: 'Sierra On-Line' + 7706: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 7706 + name: + type: string + example: 'Sierra Online' + 7707: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 7707 + name: + type: string + example: 'Sierra Online Shanghai' + 7708: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 7708 + name: + type: string + example: 'Sierra Sports' + 7709: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 7709 + name: + type: string + example: 'Sigil Games Online' + 7710: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 7710 + name: + type: string + example: 'Sigma' + 7711: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 7711 + name: + type: string + example: 'Sigma Co., Ltd' + 7712: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 7712 + name: + type: string + example: 'Sigma Ent. Inc.' + 7715: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 7715 + name: + type: string + example: 'Sigma Team' + 7717: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 7717 + name: + type: string + example: 'Sigmatek' + 7718: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 7718 + name: + type: string + example: 'Signal Studios' + 7720: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 7720 + name: + type: string + example: 'Signatron USA' + 7721: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 7721 + name: + type: string + example: 'sigtrap' + 7722: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 7722 + name: + type: string + example: 'Sik' + 7723: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 7723 + name: + type: string + example: 'Silas Warner' + 7724: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 7724 + name: + type: string + example: 'Silden' + 7725: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 7725 + name: + type: string + example: 'Silent Dreams' + 7726: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 7726 + name: + type: string + example: 'Silent Software' + 7727: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 7727 + name: + type: string + example: 'Silhouette Software' + 7728: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 7728 + name: + type: string + example: 'Silicon & Synapse' + 7729: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 7729 + name: + type: string + example: 'Silicon & Synapse, Inc.' + 7730: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 7730 + name: + type: string + example: 'Silicon Beach Software' + 7731: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 7731 + name: + type: string + example: 'Silicon Beach Software, Inc.' + 7732: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 7732 + name: + type: string + example: 'Silicon Dreams Studio' + 10266: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 10266 + name: + type: string + example: 'Silicon Ice Development' + 7735: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 7735 + name: + type: string + example: 'Silicon Knights' + 7736: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 7736 + name: + type: string + example: 'Silicon Sorcery' + 7737: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 7737 + name: + type: string + example: 'Silicon Studio' + 7738: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 7738 + name: + type: string + example: 'Silicon Warriors' + 7739: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 7739 + name: + type: string + example: 'SiliconWorx' + 7740: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 7740 + name: + type: string + example: 'Silk Games' + 7741: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 7741 + name: + type: string + example: 'Silky''s' + 7742: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 7742 + name: + type: string + example: 'Silmarils' + 7743: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 7743 + name: + type: string + example: 'Silver Creek Entertainment' + 7744: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 7744 + name: + type: string + example: 'Silver Dollar Games' + 7745: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 7745 + name: + type: string + example: 'Silver Style' + 7746: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 7746 + name: + type: string + example: 'Silver Wish Games' + 7747: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 7747 + name: + type: string + example: 'Silverback Games' + 7748: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 7748 + name: + type: string + example: 'SilverBirch Studios' + 10228: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 10228 + name: + type: string + example: 'SilverBirch, Inc' + 7749: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 7749 + name: + type: string + example: 'Silverrock Productions' + 7751: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 7751 + name: + type: string + example: 'Silvio Mogno' + 7752: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 7752 + name: + type: string + example: 'Sim Tex' + 7753: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 7753 + name: + type: string + example: 'SimBin Development Team AB' + 7755: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 7755 + name: + type: string + example: 'SimBin Studios' + 7756: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 7756 + name: + type: string + example: 'Simbiosis Interactive' + 7757: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 7757 + name: + type: string + example: 'Similis Software GmbH' + 7760: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 7760 + name: + type: string + example: 'Simis' + 7761: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 7761 + name: + type: string + example: 'Simogo' + 7763: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 7763 + name: + type: string + example: 'Simon & Schuster, Studio 3' + 7764: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 7764 + name: + type: string + example: 'Simon Birrell' + 10110: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 10110 + name: + type: string + example: 'Simon Butler' + 9937: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 9937 + name: + type: string + example: 'Simon Jay' + 7765: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 7765 + name: + type: string + example: 'Simon Leck' + 7766: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 7766 + name: + type: string + example: 'Simon Nicol' + 7767: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 7767 + name: + type: string + example: 'Simon Quernhorst' + 7768: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 7768 + name: + type: string + example: 'Simone Serra' + 10289: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 10289 + name: + type: string + example: 'Sims' + 7769: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 7769 + name: + type: string + example: 'SIMS Co., Ltd.' + 7773: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 7773 + name: + type: string + example: 'Simtex Software' + 10268: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 10268 + name: + type: string + example: 'Simulated Environment Systems' + 7776: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 7776 + name: + type: string + example: 'Simulmondo' + 7777: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 7777 + name: + type: string + example: 'Simutrek' + 7778: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 7778 + name: + type: string + example: 'Singletrac' + 7781: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 7781 + name: + type: string + example: 'Sinister Design' + 7780: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 7780 + name: + type: string + example: 'Sinister Games' + 7784: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 7784 + name: + type: string + example: 'Sir-Tech Software, Inc.' + 7788: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 7788 + name: + type: string + example: 'Sirius' + 7789: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 7789 + name: + type: string + example: 'Sirius Games' + 7790: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 7790 + name: + type: string + example: 'Sirius Software, Inc.' + 7793: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 7793 + name: + type: string + example: 'Sis Co' + 7794: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 7794 + name: + type: string + example: 'Siter Skain' + 7795: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 7795 + name: + type: string + example: 'Sivak Games' + 7796: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 7796 + name: + type: string + example: 'Six by Nine Ltd' + 7798: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 7798 + name: + type: string + example: 'Six Pound Sledge' + 7799: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 7799 + name: + type: string + example: 'Sixjoy Hong Kong Limited' + 7800: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 7800 + name: + type: string + example: 'Sixteen Tons' + 7801: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 7801 + name: + type: string + example: 'Sixteen Tons Entertainment' + 7802: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 7802 + name: + type: string + example: 'Size Five Games' + 7803: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 7803 + name: + type: string + example: 'Ska Entertainment' + 7804: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 7804 + name: + type: string + example: 'Ska Studios' + 7805: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 7805 + name: + type: string + example: 'Skatanic Studios' + 7806: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 7806 + name: + type: string + example: 'SkeinGlobe Corporation' + 7807: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 7807 + name: + type: string + example: 'Sketchy Logic' + 7808: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 7808 + name: + type: string + example: 'SKH Apps' + 7809: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 7809 + name: + type: string + example: 'Skill Screen Games' + 7810: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 7810 + name: + type: string + example: 'Skills' + 7811: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 7811 + name: + type: string + example: 'Skilltree Studios' + 10340: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 10340 + name: + type: string + example: 'Skip Ltd' + 7812: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 7812 + name: + type: string + example: 'skip, Ltd.' + 7816: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 7816 + name: + type: string + example: 'Skitso Productions' + 7817: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 7817 + name: + type: string + example: 'SKOB' + 10367: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 10367 + name: + type: string + example: 'Skobbejak Games' + 7818: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 7818 + name: + type: string + example: 'SKONEC Entertainment' + 7821: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 7821 + name: + type: string + example: 'Skull Army' + 7822: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 7822 + name: + type: string + example: 'Skunk Software' + 7823: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 7823 + name: + type: string + example: 'Sky Fallen' + 7824: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 7824 + name: + type: string + example: 'Sky Think Systems' + 7825: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 7825 + name: + type: string + example: 'Sky Trail Ltd' + 7826: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 7826 + name: + type: string + example: 'Skybox Labs' + 7828: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 7828 + name: + type: string + example: 'Skydance Interactive' + 7829: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 7829 + name: + type: string + example: 'SkyGoblin' + 7830: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 7830 + name: + type: string + example: 'SKYL-COM LTD' + 7831: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 7831 + name: + type: string + example: 'SkyRiver Studios' + 7832: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 7832 + name: + type: string + example: 'Skyshine Games' + 7833: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 7833 + name: + type: string + example: 'Skyworks Interactive' + 7835: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 7835 + name: + type: string + example: 'Slak Games' + 7836: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 7836 + name: + type: string + example: 'Slam' + 10035: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 10035 + name: + type: string + example: 'Slang' + 7837: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 7837 + name: + type: string + example: 'Slant Six Games' + 10239: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 10239 + name: + type: string + example: 'Slash' + 7839: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 7839 + name: + type: string + example: 'Sledge Hammer Games' + 7840: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 7840 + name: + type: string + example: 'Sledgehammer Games' + 7841: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 7841 + name: + type: string + example: 'Sledgehammer Games, Raven Software' + 7842: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 7842 + name: + type: string + example: 'Sledgie, Richard Bayliss' + 7843: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 7843 + name: + type: string + example: 'Sleepless King' + 7844: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 7844 + name: + type: string + example: 'Slick Entertainment' + 7845: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 7845 + name: + type: string + example: 'Slightly Mad Studios' + 7846: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 7846 + name: + type: string + example: 'Slipery Snake Studio' + 7847: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 7847 + name: + type: string + example: 'Slipgate Studios' + 7848: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 7848 + name: + type: string + example: 'Slitherine' + 7849: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 7849 + name: + type: string + example: 'Sliver X' + 7850: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 7850 + name: + type: string + example: 'Sloclap' + 7851: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 7851 + name: + type: string + example: 'Sluggerfly' + 7852: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 7852 + name: + type: string + example: 'Sly Dog Studios' + 7853: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 7853 + name: + type: string + example: 'SMAC' + 7854: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 7854 + name: + type: string + example: 'Smack Down' + 7856: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 7856 + name: + type: string + example: 'Small Rockets' + 7857: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 7857 + name: + type: string + example: 'SmallRock Software, Inc.' + 7858: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 7858 + name: + type: string + example: 'Smart Bomb Interactive' + 7860: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 7860 + name: + type: string + example: 'Smart Dog' + 7861: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 7861 + name: + type: string + example: 'Smart Egg Software' + 7862: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 7862 + name: + type: string + example: 'Smart Games' + 7864: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 7864 + name: + type: string + example: 'Smash Design' + 7865: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 7865 + name: + type: string + example: 'SmashGames' + 7866: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 7866 + name: + type: string + example: 'Smashpotato Entertainment' + 7867: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 7867 + name: + type: string + example: 'SME Dynamic Systems Ltd.' + 7869: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 7869 + name: + type: string + example: 'smea' + 7870: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 7870 + name: + type: string + example: 'Smealum' + 10346: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 10346 + name: + type: string + example: 'SMG Studio' + 7871: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 7871 + name: + type: string + example: 'Smilebit' + 7872: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 7872 + name: + type: string + example: 'Smilesoft' + 7873: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 7873 + name: + type: string + example: 'Smiling Buddha Games, LLC' + 7875: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 7875 + name: + type: string + example: 'Smoking Car Productions' + 7876: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 7876 + name: + type: string + example: 'Smoking Gun Interactive' + 7877: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 7877 + name: + type: string + example: 'Smoking Gun Interactive Inc.' + 7878: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 7878 + name: + type: string + example: 'Smoking WOLF' + 7879: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 7879 + name: + type: string + example: 'Smudged Cat Games' + 7880: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 7880 + name: + type: string + example: 'Snapdragon Game Studio' + 7881: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 7881 + name: + type: string + example: 'Snapdragon Games' + 7883: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 7883 + name: + type: string + example: 'Snapshot Games Inc.' + 10044: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 10044 + name: + type: string + example: 'Snatcho' + 7884: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 7884 + name: + type: string + example: 'Sniper Studios' + 7885: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 7885 + name: + type: string + example: 'SNK' + 6697: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 6697 + name: + type: string + example: 'SNK Playmore' + 7896: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 7896 + name: + type: string + example: 'Snow Castle Games' + 7897: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 7897 + name: + type: string + example: 'Snowbird Games' + 7895: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 7895 + name: + type: string + example: 'Snowblind Studios' + 7899: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 7899 + name: + type: string + example: 'SnowBro' + 7900: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 7900 + name: + type: string + example: 'Snowcastle Games' + 7901: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 7901 + name: + type: string + example: 'Snowed In Studios' + 7902: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 7902 + name: + type: string + example: 'SnowFlame, Back To Basics Gaming' + 7903: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 7903 + name: + type: string + example: 'Snowman' + 7904: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 7904 + name: + type: string + example: 'SoapboxRally Games' + 10351: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 10351 + name: + type: string + example: 'Sobaka' + 7905: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 7905 + name: + type: string + example: 'SodiumEyes' + 7906: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 7906 + name: + type: string + example: 'SOE Austin' + 7907: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 7907 + name: + type: string + example: 'Soedesco' + 7908: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 7908 + name: + type: string + example: 'Sofel' + 7909: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 7909 + name: + type: string + example: 'Sofix' + 7910: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 7910 + name: + type: string + example: 'Sofmachine, Inc.' + 7911: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 7911 + name: + type: string + example: 'Soft Art' + 7912: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 7912 + name: + type: string + example: 'Soft Brigade' + 7913: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 7913 + name: + type: string + example: 'Soft Circle French-Bread' + 7914: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 7914 + name: + type: string + example: 'Soft Design' + 7915: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 7915 + name: + type: string + example: 'Soft Design Ltd.' + 7916: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 7916 + name: + type: string + example: 'Soft Enterprises' + 7917: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 7917 + name: + type: string + example: 'Soft Machine' + 7918: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 7918 + name: + type: string + example: 'Soft Pro International' + 7920: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 7920 + name: + type: string + example: 'Soft Vision' + 7921: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 7921 + name: + type: string + example: 'Softdisk Publishing' + 7922: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 7922 + name: + type: string + example: 'Softdisk Publishing, Inc.' + 7923: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 7923 + name: + type: string + example: 'Softedge' + 7924: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 7924 + name: + type: string + example: 'Softek International Ltd.' + 7926: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 7926 + name: + type: string + example: 'Softeyes' + 7927: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 7927 + name: + type: string + example: 'Softgold' + 10099: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 10099 + name: + type: string + example: 'SOFTIC Kft.' + 7928: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 7928 + name: + type: string + example: 'Softie, Inc.' + 7931: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 7931 + name: + type: string + example: 'Softmax' + 7932: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 7932 + name: + type: string + example: 'Softmen' + 7933: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 7933 + name: + type: string + example: 'Softsmith' + 7934: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 7934 + name: + type: string + example: 'Softstone' + 7935: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 7935 + name: + type: string + example: 'Softvision' + 7936: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 7936 + name: + type: string + example: 'Software 2000' + 7937: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 7937 + name: + type: string + example: 'Software Allies' + 7938: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 7938 + name: + type: string + example: 'Software Communications' + 7939: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 7939 + name: + type: string + example: 'Software Communications Ltd.' + 7940: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 7940 + name: + type: string + example: 'Software Creations' + 7945: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 7945 + name: + type: string + example: 'Software Foundation' + 7946: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 7946 + name: + type: string + example: 'Software Images' + 7947: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 7947 + name: + type: string + example: 'Software Invasion' + 7948: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 7948 + name: + type: string + example: 'Software of Sweden' + 7949: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 7949 + name: + type: string + example: 'Software Projects Ltd.' + 7951: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 7951 + name: + type: string + example: 'Software Specialties, Inc.' + 7952: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 7952 + name: + type: string + example: 'Software Studios' + 7954: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 7954 + name: + type: string + example: 'Software Untergrund GmbH & Co KG' + 7955: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 7955 + name: + type: string + example: 'Softwarecete' + 7956: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 7956 + name: + type: string + example: 'Softworx' + 7957: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 7957 + name: + type: string + example: 'Soji Yamakawa' + 7958: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 7958 + name: + type: string + example: 'Sokay LLC' + 7959: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 7959 + name: + type: string + example: 'Sol' + 7960: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 7960 + name: + type: string + example: 'Solar Sail Games' + 7961: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 7961 + name: + type: string + example: 'Solar Software' + 7962: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 7962 + name: + type: string + example: 'Solarlune' + 7963: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 7963 + name: + type: string + example: 'solarus' + 7964: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 7964 + name: + type: string + example: 'Soldak Entertainment' + 7965: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 7965 + name: + type: string + example: 'Solid Software' + 7967: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 7967 + name: + type: string + example: 'Solus Games' + 7968: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 7968 + name: + type: string + example: 'SolWorks' + 7969: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 7969 + name: + type: string + example: 'SomaSim' + 7970: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 7970 + name: + type: string + example: 'Sometimes You' + 7971: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 7971 + name: + type: string + example: 'Sonata' + 7972: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 7972 + name: + type: string + example: 'Songbird Productions' + 7973: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 7973 + name: + type: string + example: 'Songtly' + 7974: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 7974 + name: + type: string + example: 'Sonic Boom Games' + 7975: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 7975 + name: + type: string + example: 'Sonic Images Productions' + 7976: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 7976 + name: + type: string + example: 'Sonic Powered' + 7977: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 7977 + name: + type: string + example: 'Sonic Retro' + 7978: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 7978 + name: + type: string + example: 'Sonic Software Planning' + 7979: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 7979 + name: + type: string + example: 'Sonic Team' + 7981: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 7981 + name: + type: string + example: 'Sonic! Software Planning' + 7982: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 7982 + name: + type: string + example: 'Sonix Systems' + 7983: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 7983 + name: + type: string + example: 'Sonnori' + 7984: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 7984 + name: + type: string + example: 'Sonnori Co., Ltd.' + 7985: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 7985 + name: + type: string + example: 'Sonokong' + 7986: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 7986 + name: + type: string + example: 'Sony' + 7987: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 7987 + name: + type: string + example: 'Sony Bend' + 7470: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 7470 + name: + type: string + example: 'Sony Bend Studio' + 7471: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 7471 + name: + type: string + example: 'Sony Cambridge Studio' + 7469: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 7469 + name: + type: string + example: 'Sony Computer Entertainment' + 7490: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 7490 + name: + type: string + example: 'Sony Computer Entertainment America' + 7494: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 7494 + name: + type: string + example: 'Sony Computer Entertainment Europe' + 9975: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 9975 + name: + type: string + example: 'Sony Group Inc.' + 7992: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 7992 + name: + type: string + example: 'Sony Imagesoft' + 7993: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 7993 + name: + type: string + example: 'Sony Interactive Entertainment' + 7697: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 7697 + name: + type: string + example: 'Sony Interactive Entertainment America' + 4441: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 4441 + name: + type: string + example: 'Sony Japan Studio' + 5033: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 5033 + name: + type: string + example: 'Sony London Studio' + 7998: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 7998 + name: + type: string + example: 'Sony Music Entertainment' + 7999: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 7999 + name: + type: string + example: 'Sony Online Entertainment' + 7475: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 7475 + name: + type: string + example: 'Sony San Diego Studio' + 7435: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 7435 + name: + type: string + example: 'Sony Santa Monica Studio' + 7480: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 7480 + name: + type: string + example: 'Sony Studio Liverpool' + 7481: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 7481 + name: + type: string + example: 'Sony Studio Soho' + 10064: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 10064 + name: + type: string + example: 'Sora Ltd.' + 8003: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 8003 + name: + type: string + example: 'Sorath' + 8004: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 8004 + name: + type: string + example: 'Soren Gust' + 8005: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 8005 + name: + type: string + example: 'Sos' + 8006: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 8006 + name: + type: string + example: 'Soulframe' + 10270: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 10270 + name: + type: string + example: 'Sound Source Interactive' + 8008: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 8008 + name: + type: string + example: 'Sound Technology Japan' + 8009: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 8009 + name: + type: string + example: 'Source' + 8010: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 8010 + name: + type: string + example: 'Source Research & Development' + 8011: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 8011 + name: + type: string + example: 'Source Studio Ltd.' + 8012: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 8012 + name: + type: string + example: 'Sourcenext' + 8013: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 8013 + name: + type: string + example: 'Sourcery Development' + 8016: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 8016 + name: + type: string + example: 'South West Research' + 8017: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 8017 + name: + type: string + example: 'SouthEnd Interactive' + 8019: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 8019 + name: + type: string + example: 'Southlogic Studios' + 8014: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 8014 + name: + type: string + example: 'SouthPeak Interactive' + 8022: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 8022 + name: + type: string + example: 'souvenir circ.' + 8023: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 8023 + name: + type: string + example: 'Soviet Games' + 8024: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 8024 + name: + type: string + example: 'Space' + 8025: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 8025 + name: + type: string + example: 'Space Ape Games' + 8026: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 8026 + name: + type: string + example: 'Space Budgie' + 8027: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 8027 + name: + type: string + example: 'Space Dwarves Entertainment' + 8028: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 8028 + name: + type: string + example: 'Spaces of Play' + 8029: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 8029 + name: + type: string + example: 'Spacetime Games' + 8030: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 8030 + name: + type: string + example: 'Spacetime Studios' + 8031: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 8031 + name: + type: string + example: 'Spacy Industrial' + 8032: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 8032 + name: + type: string + example: 'Spark' + 8033: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 8033 + name: + type: string + example: 'Spark Unlimited' + 8034: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 8034 + name: + type: string + example: 'Sparpweed' + 8035: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 8035 + name: + type: string + example: 'Sparrow' + 8036: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 8036 + name: + type: string + example: 'SPC Vision' + 8037: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 8037 + name: + type: string + example: 'SPE' + 8038: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 8038 + name: + type: string + example: 'Spearhead Games' + 8039: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 8039 + name: + type: string + example: 'Special FX' + 8042: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 8042 + name: + type: string + example: 'Spectral Associates' + 8043: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 8043 + name: + type: string + example: 'Spectravideo' + 8044: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 8044 + name: + type: string + example: 'Spectravision' + 8045: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 8045 + name: + type: string + example: 'Spectrum Games Limited' + 8046: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 8046 + name: + type: string + example: 'Spectrum Holobyte' + 8047: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 8047 + name: + type: string + example: 'Spellbound' + 8049: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 8049 + name: + type: string + example: 'Spellbound Entertainment & Black Forest Games' + 8048: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 8048 + name: + type: string + example: 'Spellbound Entertainment AG' + 8051: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 8051 + name: + type: string + example: 'Spellbound Interactive' + 8052: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 8052 + name: + type: string + example: 'Sphinx' + 8053: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 8053 + name: + type: string + example: 'Spicy Horse' + 8054: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 8054 + name: + type: string + example: 'Spiderling Studios' + 8055: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 8055 + name: + type: string + example: 'Spidermonk Entertainment' + 8056: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 8056 + name: + type: string + example: 'Spiders' + 8057: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 8057 + name: + type: string + example: 'Spidersoft' + 8058: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 8058 + name: + type: string + example: 'Spidersoft Limited' + 8059: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 8059 + name: + type: string + example: 'Spiderweb Software' + 8060: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 8060 + name: + type: string + example: 'Spielkind' + 8062: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 8062 + name: + type: string + example: 'Spike Chunsoft' + 8063: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 8063 + name: + type: string + example: 'Spike Chunsoft Co., Ltd.' + 8061: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 8061 + name: + type: string + example: 'Spike Co., Ltd.' + 10079: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 10079 + name: + type: string + example: 'Spiky Caterpillar' + 8068: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 8068 + name: + type: string + example: 'Spilt Milk Studios' + 8070: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 8070 + name: + type: string + example: 'Spinnaker' + 8069: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 8069 + name: + type: string + example: 'Spinnaker Software Corporation' + 8074: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 8074 + name: + type: string + example: 'SpinTop Games' + 8075: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 8075 + name: + type: string + example: 'SpinVector' + 10317: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 10317 + name: + type: string + example: 'Spiral House' + 8076: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 8076 + name: + type: string + example: 'Spiral House Ltd' + 8078: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 8078 + name: + type: string + example: 'Spirit of Discovery' + 8079: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 8079 + name: + type: string + example: 'Splash Damage' + 8080: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 8080 + name: + type: string + example: 'Splendy Games' + 8081: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 8081 + name: + type: string + example: 'SPLine' + 8082: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 8082 + name: + type: string + example: 'Spooky Squid Games' + 8083: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 8083 + name: + type: string + example: 'Sports Interactive' + 8084: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 8084 + name: + type: string + example: 'SportTime (DesignStar)' + 8085: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 8085 + name: + type: string + example: 'Spotsoft' + 8086: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 8086 + name: + type: string + example: 'Sprite' + 8087: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 8087 + name: + type: string + example: 'Sproing Interactive Media GmbH' + 8090: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 8090 + name: + type: string + example: 'Sprout Games' + 8091: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 8091 + name: + type: string + example: 'Spry Fox, LLC' + 8093: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 8093 + name: + type: string + example: 'Sprytes' + 8094: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 8094 + name: + type: string + example: 'SPS' + 8095: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 8095 + name: + type: string + example: 'Spyn Doctor Games' + 8097: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 8097 + name: + type: string + example: 'Squad' + 2808: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 2808 + name: + type: string + example: 'Square Enix' + 8101: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 8101 + name: + type: string + example: 'Square Enix Business Division 2' + 8104: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 8104 + name: + type: string + example: 'Square Enix, PopCap Games, Inc.' + 8105: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 8105 + name: + type: string + example: 'Square PDD 5' + 8096: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 8096 + name: + type: string + example: 'Squaresoft' + 10272: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 10272 + name: + type: string + example: 'Squashy Software' + 10225: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 10225 + name: + type: string + example: 'SRRN Games' + 8110: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 8110 + name: + type: string + example: 'SSG' + 10273: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 10273 + name: + type: string + example: 'SSI' + 8114: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 8114 + name: + type: string + example: 'St Brides' + 10204: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 10204 + name: + type: string + example: 'St. GIGA' + 8115: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 8115 + name: + type: string + example: 'St0rmCat' + 8116: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 8116 + name: + type: string + example: 'Stabyourself' + 8118: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 8118 + name: + type: string + example: 'Stage 2 Studios' + 8119: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 8119 + name: + type: string + example: 'Stage Clear Studios' + 8120: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 8120 + name: + type: string + example: 'stage-nana' + 8121: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 8121 + name: + type: string + example: 'Stainless Games Ltd' + 8125: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 8125 + name: + type: string + example: 'Stainless Steel Studios' + 8126: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 8126 + name: + type: string + example: 'Stainless Studios Ltd.' + 8127: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 8127 + name: + type: string + example: 'Stairway Games' + 8128: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 8128 + name: + type: string + example: 'Stalker Entertainment' + 8129: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 8129 + name: + type: string + example: 'Star Command LLC' + 8130: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 8130 + name: + type: string + example: 'Star Games' + 8131: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 8131 + name: + type: string + example: 'Star Maid Games' + 8132: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 8132 + name: + type: string + example: 'Star Vault' + 10274: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 10274 + name: + type: string + example: 'Star-Fish' + 8134: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 8134 + name: + type: string + example: 'StarBlade' + 8135: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 8135 + name: + type: string + example: 'Starbreeze Studios AB' + 8139: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 8139 + name: + type: string + example: 'Starbyte' + 8140: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 8140 + name: + type: string + example: 'Starbyte Software' + 8141: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 8141 + name: + type: string + example: 'Starcom' + 8142: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 8142 + name: + type: string + example: 'Stardock Entertainment' + 8144: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 8144 + name: + type: string + example: 'Stardock Entertainment, Oxide Games' + 8145: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 8145 + name: + type: string + example: 'Starfish' + 8147: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 8147 + name: + type: string + example: 'Starfish SD' + 8150: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 8150 + name: + type: string + example: 'Stargate Productions' + 8151: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 8151 + name: + type: string + example: 'Starlight Marry' + 8153: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 8153 + name: + type: string + example: 'Starlight Software' + 8154: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 8154 + name: + type: string + example: 'Starpath Corporation' + 8157: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 8157 + name: + type: string + example: 'StarQuail Games' + 8158: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 8158 + name: + type: string + example: 'Starsoft' + 8159: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 8159 + name: + type: string + example: 'Starsoft Development Laboratories, Inc.' + 8160: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 8160 + name: + type: string + example: 'Starsphere Interactive' + 8161: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 8161 + name: + type: string + example: 'StarWraith 3D Games LLC' + 8162: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 8162 + name: + type: string + example: 'State of Play Games' + 8163: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 8163 + name: + type: string + example: 'Stately Snail' + 8164: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 8164 + name: + type: string + example: 'Status' + 8165: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 8165 + name: + type: string + example: 'Status Game' + 8166: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 8166 + name: + type: string + example: 'Stavros Fasoulas' + 10276: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 10276 + name: + type: string + example: 'Ste Pickford' + 8168: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 8168 + name: + type: string + example: 'Steel Crate Games' + 8169: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 8169 + name: + type: string + example: 'Steel Hearts' + 8170: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 8170 + name: + type: string + example: 'Steel Monkeys' + 8171: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 8171 + name: + type: string + example: 'Steel Penny Games' + 8172: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 8172 + name: + type: string + example: 'SteelRaven7' + 8173: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 8173 + name: + type: string + example: 'Stefan F. Ufnowski' + 8174: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 8174 + name: + type: string + example: 'Stefan Ufnowski, Ann Ufnowski' + 8175: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 8175 + name: + type: string + example: 'Stegersaurus Games' + 8176: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 8176 + name: + type: string + example: 'Stegosoft Games' + 8177: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 8177 + name: + type: string + example: 'Stellar Entertainment' + 8178: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 8178 + name: + type: string + example: 'Stellar Jockeys, Gausswerks' + 8179: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 8179 + name: + type: string + example: 'Stellar Stone' + 8180: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 8180 + name: + type: string + example: 'Steph Thirion' + 8181: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 8181 + name: + type: string + example: 'Stephen Crow' + 8182: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 8182 + name: + type: string + example: 'Stephen Garside' + 8183: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 8183 + name: + type: string + example: 'Stephen N Curtis' + 8184: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 8184 + name: + type: string + example: 'Stephen Townsend' + 8185: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 8185 + name: + type: string + example: 'Stephen Walters' + 8186: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 8186 + name: + type: string + example: 'Sterling Silver Software' + 8188: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 8188 + name: + type: string + example: 'Stern' + 8189: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 8189 + name: + type: string + example: 'Stern Electronics' + 8190: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 8190 + name: + type: string + example: 'Steve Bjork' + 8191: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 8191 + name: + type: string + example: 'Steve Burrows' + 8192: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 8192 + name: + type: string + example: 'Steve Crandall' + 8193: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 8193 + name: + type: string + example: 'Steve Engelhardt' + 8194: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 8194 + name: + type: string + example: 'Steve Estvanik' + 8195: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 8195 + name: + type: string + example: 'Steve Evans' + 9984: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 9984 + name: + type: string + example: 'Steve Kerry' + 10277: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 10277 + name: + type: string + example: 'Steve Marsden' + 8197: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 8197 + name: + type: string + example: 'Steve Meyer' + 9990: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 9990 + name: + type: string + example: 'Steve Ruddy' + 8198: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 8198 + name: + type: string + example: 'Steve Stack, Inc.' + 8199: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 8199 + name: + type: string + example: 'Steven Green' + 8200: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 8200 + name: + type: string + example: 'Steven Hanus' + 8201: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 8201 + name: + type: string + example: 'Stick Sports Ltd' + 8202: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 8202 + name: + type: string + example: 'Stickman Studios' + 8203: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 8203 + name: + type: string + example: 'Stickmen Studios' + 8204: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 8204 + name: + type: string + example: 'Still Running' + 8205: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 8205 + name: + type: string + example: 'Sting Entertainment' + 8208: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 8208 + name: + type: string + example: 'Stirfire Studios' + 8209: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 8209 + name: + type: string + example: 'Stoic' + 8210: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 8210 + name: + type: string + example: 'Stone Blade Entertainment' + 8211: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 8211 + name: + type: string + example: 'Stone Heads' + 8212: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 8212 + name: + type: string + example: 'Stone Interactive' + 8213: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 8213 + name: + type: string + example: 'Stonehenge Soft Art' + 8214: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 8214 + name: + type: string + example: 'Storm' + 8215: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 8215 + name: + type: string + example: 'Storm City Games' + 8216: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 8216 + name: + type: string + example: 'Storm Sales' + 8217: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 8217 + name: + type: string + example: 'StormBasic Games' + 8219: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 8219 + name: + type: string + example: 'Stormfront Studios' + 8221: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 8221 + name: + type: string + example: 'StormRegion' + 8222: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 8222 + name: + type: string + example: 'Stormy Mountain Games' + 8223: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 8223 + name: + type: string + example: 'Storybird' + 8224: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 8224 + name: + type: string + example: 'Stout Games' + 8225: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 8225 + name: + type: string + example: 'Straight Right' + 8226: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 8226 + name: + type: string + example: 'Strange Loop Games' + 8227: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 8227 + name: + type: string + example: 'Strangely Interactive Ltd' + 8228: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 8228 + name: + type: string + example: 'Strata' + 8230: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 8230 + name: + type: string + example: 'Strata Group Incorporated' + 8111: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 8111 + name: + type: string + example: 'Strategic Simulations, Inc.' + 8237: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 8237 + name: + type: string + example: 'Strategic Studies Group' + 8239: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 8239 + name: + type: string + example: 'Strategic Visions, Inc.' + 8240: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 8240 + name: + type: string + example: 'Strategy First, Inc.' + 8242: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 8242 + name: + type: string + example: 'Stratford' + 8243: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 8243 + name: + type: string + example: 'Strawdog' + 8244: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 8244 + name: + type: string + example: 'Strawdog Studios' + 8245: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 8245 + name: + type: string + example: 'Streko-Graphics Inc.' + 8247: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 8247 + name: + type: string + example: 'Streum On Studio' + 10280: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 10280 + name: + type: string + example: 'Stuart P. Middleton' + 8249: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 8249 + name: + type: string + example: 'Stuart Ross' + 8250: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 8250 + name: + type: string + example: 'Stuart Smith' + 8251: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 8251 + name: + type: string + example: 'Studio 3' + 8252: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 8252 + name: + type: string + example: 'Studio 33 (UK) Ltd.' + 8254: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 8254 + name: + type: string + example: 'Studio 3DO' + 8255: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 8255 + name: + type: string + example: 'Studio Alex' + 10037: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 10037 + name: + type: string + example: 'Studio Alex, Ltd.' + 8256: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 8256 + name: + type: string + example: 'Studio B' + 8257: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 8257 + name: + type: string + example: 'Studio Baikin' + 8258: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 8258 + name: + type: string + example: 'Studio Bean' + 8259: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 8259 + name: + type: string + example: 'Studio Dustmop' + 8260: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 8260 + name: + type: string + example: 'Studio E' + 8261: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 8261 + name: + type: string + example: 'Studio Evil' + 8262: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 8262 + name: + type: string + example: 'Studio Fazzy' + 8263: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 8263 + name: + type: string + example: 'Studio Fizbin' + 10285: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 10285 + name: + type: string + example: 'Studio GEN' + 8265: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 8265 + name: + type: string + example: 'Studio Gigante' + 8266: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 8266 + name: + type: string + example: 'Studio Interactive' + 8282: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 8282 + name: + type: string + example: 'Studio MDHR Entertainment Inc.' + 8268: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 8268 + name: + type: string + example: 'Studio Nonante' + 8269: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 8269 + name: + type: string + example: 'Studio Paint' + 10321: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 10321 + name: + type: string + example: 'Studio Pierrot' + 8270: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 8270 + name: + type: string + example: 'Studio Pixel' + 8271: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 8271 + name: + type: string + example: 'STUDIO RADI-8' + 8272: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 8272 + name: + type: string + example: 'Studio Saizensen' + 8273: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 8273 + name: + type: string + example: 'Studio Softmov' + 8274: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 8274 + name: + type: string + example: 'Studio Trophis Production Company' + 8275: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 8275 + name: + type: string + example: 'Studio Vetea' + 8276: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 8276 + name: + type: string + example: 'Studio VeX' + 8277: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 8277 + name: + type: string + example: 'Studio Wildcard' + 8280: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 8280 + name: + type: string + example: 'Studio69' + 8281: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 8281 + name: + type: string + example: 'StudioBlack Games' + 8283: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 8283 + name: + type: string + example: 'Stunlock Studios' + 8284: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 8284 + name: + type: string + example: 'Stunt Puppy Entertainment, Inc.' + 8285: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 8285 + name: + type: string + example: 'stupidgizmo' + 8286: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 8286 + name: + type: string + example: 'Stygian Software' + 8287: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 8287 + name: + type: string + example: 'Stywox' + 8288: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 8288 + name: + type: string + example: 'Suba Games' + 8289: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 8289 + name: + type: string + example: 'Subatomic Studios' + 8291: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 8291 + name: + type: string + example: 'Sublogic' + 8292: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 8292 + name: + type: string + example: 'Subscience Studios' + 8293: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 8293 + name: + type: string + example: 'Subset Games' + 8294: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 8294 + name: + type: string + example: 'Subsino Corp. Ltd.' + 8295: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 8295 + name: + type: string + example: 'Subsoap' + 8296: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 8296 + name: + type: string + example: 'Subtle Style' + 8297: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 8297 + name: + type: string + example: 'Success Corp.' + 9907: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 9907 + name: + type: string + example: 'Success Corporation' + 8301: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 8301 + name: + type: string + example: 'Sucker Punch' + 8302: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 8302 + name: + type: string + example: 'Sucker Punch Productions' + 8303: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 8303 + name: + type: string + example: 'SuckerFree Games' + 8304: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 8304 + name: + type: string + example: 'Sugar & Rockets' + 8305: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 8305 + name: + type: string + example: 'Sugeiya' + 8306: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 8306 + name: + type: string + example: 'Sukeban Games' + 8307: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 8307 + name: + type: string + example: 'Sulake' + 8308: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 8308 + name: + type: string + example: 'Sullivan Bluth Interactive Media, Inc.' + 8309: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 8309 + name: + type: string + example: 'Sumo Digital' + 9955: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 9955 + name: + type: string + example: 'Sumo Digital Ltd.' + 10197: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 10197 + name: + type: string + example: 'Sun' + 8312: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 8312 + name: + type: string + example: 'Sun Corp' + 8313: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 8313 + name: + type: string + example: 'Sun Electronics' + 8314: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 8314 + name: + type: string + example: 'Sun L' + 8316: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 8316 + name: + type: string + example: 'Sun Wing' + 8317: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 8317 + name: + type: string + example: 'Sun-Tec' + 8318: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 8318 + name: + type: string + example: 'SunA' + 8320: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 8320 + name: + type: string + example: 'SunA Electronics Ind. Company, Limited' + 8321: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 8321 + name: + type: string + example: 'Sunflowers' + 8322: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 8322 + name: + type: string + example: 'SunL' + 8323: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 8323 + name: + type: string + example: 'Sunlight Games' + 8324: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 8324 + name: + type: string + example: 'Sunrise Games' + 8326: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 8326 + name: + type: string + example: 'Sunrise Interactive' + 8327: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 8327 + name: + type: string + example: 'Sunrise Software' + 8328: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 8328 + name: + type: string + example: 'Sunset Entertainment' + 8329: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 8329 + name: + type: string + example: 'Sunsoft' + 8331: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 8331 + name: + type: string + example: 'Sunstorm Interactive, Inc.' + 10291: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 10291 + name: + type: string + example: 'Sunteck Co.' + 8333: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 8333 + name: + type: string + example: 'Suntek' + 8335: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 8335 + name: + type: string + example: 'Super Empire' + 8336: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 8336 + name: + type: string + example: 'Super Evil Megacorp' + 10275: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 10275 + name: + type: string + example: 'Super Fighter Team' + 8337: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 8337 + name: + type: string + example: 'Super Happy Fun Fun, Inc' + 8338: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 8338 + name: + type: string + example: 'Super Icon Ltd' + 8339: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 8339 + name: + type: string + example: 'Super Mega Team' + 8340: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 8340 + name: + type: string + example: 'Super Pig' + 8341: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 8341 + name: + type: string + example: 'Super Sting' + 8342: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 8342 + name: + type: string + example: 'Superbot Entertainment' + 8343: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 8343 + name: + type: string + example: 'Supercell' + 8344: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 8344 + name: + type: string + example: 'Superflat' + 8346: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 8346 + name: + type: string + example: 'Supergiant Games' + 8347: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 8347 + name: + type: string + example: 'SuperGNES' + 8348: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 8348 + name: + type: string + example: 'Supergonk Ltd.' + 8349: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 8349 + name: + type: string + example: 'SUPERHOT' + 8350: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 8350 + name: + type: string + example: 'Superhot Team' + 8351: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 8351 + name: + type: string + example: 'Superior Quality Software' + 8352: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 8352 + name: + type: string + example: 'Superior Software' + 8353: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 8353 + name: + type: string + example: 'Supermassive' + 8354: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 8354 + name: + type: string + example: 'Supermassive Games' + 8355: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 8355 + name: + type: string + example: 'Supermassive Games Ltd.' + 8356: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 8356 + name: + type: string + example: 'SUPERMEGAQUEST' + 8357: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 8357 + name: + type: string + example: 'SuperSet Software Corp.' + 8358: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 8358 + name: + type: string + example: 'Supersoft' + 8359: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 8359 + name: + type: string + example: 'Supersolid' + 8360: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 8360 + name: + type: string + example: 'Supersonic Software Ltd.' + 8364: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 8364 + name: + type: string + example: 'SuperTux Development Team' + 8365: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 8365 + name: + type: string + example: 'SuperVillain Studios' + 8367: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 8367 + name: + type: string + example: 'Supervision' + 8368: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 8368 + name: + type: string + example: 'Superweapon LLC' + 8369: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 8369 + name: + type: string + example: 'SupSuper' + 8370: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 8370 + name: + type: string + example: 'Sur de Wave' + 8371: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 8371 + name: + type: string + example: 'Surge' + 8372: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 8372 + name: + type: string + example: 'Surprise Attack Games' + 8373: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 8373 + name: + type: string + example: 'Surreal Software, Inc.' + 8375: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 8375 + name: + type: string + example: 'Surveyor Corp.' + 8376: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 8376 + name: + type: string + example: 'Sushee' + 8377: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 8377 + name: + type: string + example: 'Sushi Typhoon Games' + 8378: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 8378 + name: + type: string + example: 'Suspicious Developments' + 10096: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 10096 + name: + type: string + example: 'Susumu Matsushita Company' + 8379: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 8379 + name: + type: string + example: 'Suzak' + 10293: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 10293 + name: + type: string + example: 'Suzuki' + 8381: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 8381 + name: + type: string + example: 'Sven Co-op Team' + 8382: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 8382 + name: + type: string + example: 'Swing Swing Submarine' + 8383: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 8383 + name: + type: string + example: 'Swingin'' Ape Studios' + 8384: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 8384 + name: + type: string + example: 'Switchblade Monkeys' + 8385: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 8385 + name: + type: string + example: 'Swordfish Studios Limited' + 8387: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 8387 + name: + type: string + example: 'Swordtales' + 8388: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 8388 + name: + type: string + example: 'Sydney Development Corp.' + 10199: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 10199 + name: + type: string + example: 'Sylum Entertainment Ltd.' + 10295: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 10295 + name: + type: string + example: 'Symbio' + 8393: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 8393 + name: + type: string + example: 'Symtus' + 8394: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 8394 + name: + type: string + example: 'syn Sophia' + 8395: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 8395 + name: + type: string + example: 'Synapse Software Corporation' + 8398: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 8398 + name: + type: string + example: 'Syncro' + 8399: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 8399 + name: + type: string + example: 'Synergistic Software, Inc.' + 8402: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 8402 + name: + type: string + example: 'Synergy Inc.' + 8405: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 8405 + name: + type: string + example: 'Synetic GmbH' + 8407: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 8407 + name: + type: string + example: 'Synsoft' + 8408: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 8408 + name: + type: string + example: 'Synthetic Dimensions' + 8409: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 8409 + name: + type: string + example: 'Syrmex' + 8410: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 8410 + name: + type: string + example: 'Syrox Developments' + 8412: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 8412 + name: + type: string + example: 'Syscom Entertainment Inc.' + 8415: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 8415 + name: + type: string + example: 'System 3 Software Ltd.' + 8420: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 8420 + name: + type: string + example: 'System 4' + 8421: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 8421 + name: + type: string + example: 'System Era Softworks' + 8422: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 8422 + name: + type: string + example: 'System Prisma' + 8423: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 8423 + name: + type: string + example: 'System Sacom' + 8425: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 8425 + name: + type: string + example: 'System Vision' + 9979: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 9979 + name: + type: string + example: 'SystemSoft' + 8424: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 8424 + name: + type: string + example: 'SystemSoft Alpha' + 8434: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 8434 + name: + type: string + example: 'T.I.C.' + 8429: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 8429 + name: + type: string + example: 'T&E Soft' + 8430: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 8430 + name: + type: string + example: 'T&E Soft, GRC' + 8431: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 8431 + name: + type: string + example: 'T&E Soft, Inc.' + 8432: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 8432 + name: + type: string + example: 'T&ESOFT' + 8435: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 8435 + name: + type: string + example: 'Tachyon Inc.' + 8439: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 8439 + name: + type: string + example: 'Tachyon Studios Inc.' + 8440: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 8440 + name: + type: string + example: 'TACS Games' + 8441: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 8441 + name: + type: string + example: 'Tactical Development' + 8442: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 8442 + name: + type: string + example: 'TAD Corporation' + 8444: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 8444 + name: + type: string + example: 'Tag Games' + 8445: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 8445 + name: + type: string + example: 'Tago Electronics' + 8446: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 8446 + name: + type: string + example: 'Tahoe' + 8447: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 8447 + name: + type: string + example: 'Tahoe Software Productions' + 8448: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 8448 + name: + type: string + example: 'Taiko Team' + 8451: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 8451 + name: + type: string + example: 'Taito America Corporation' + 8449: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 8449 + name: + type: string + example: 'Taito Corporation' + 8456: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 8456 + name: + type: string + example: 'Taiwain Cooper' + 8457: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 8457 + name: + type: string + example: 'Taiwan Information Corporation' + 8458: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 8458 + name: + type: string + example: 'Taiyo' + 8459: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 8459 + name: + type: string + example: 'Taiyo System' + 8460: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 8460 + name: + type: string + example: 'Takara' + 8461: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 8461 + name: + type: string + example: 'Takara Tomy' + 8462: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 8462 + name: + type: string + example: 'Takarajimasha' + 8463: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 8463 + name: + type: string + example: 'Takase' + 8464: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 8464 + name: + type: string + example: 'Take' + 8465: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 8465 + name: + type: string + example: 'Take-Two Interactive' + 8470: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 8470 + name: + type: string + example: 'Takeru' + 8471: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 8471 + name: + type: string + example: 'Taki' + 8472: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 8472 + name: + type: string + example: 'Takuma Shoten' + 8473: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 8473 + name: + type: string + example: 'Takumi Corporation' + 8477: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 8477 + name: + type: string + example: 'Takuyo' + 8478: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 8478 + name: + type: string + example: 'Tale of Tales' + 8479: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 8479 + name: + type: string + example: 'Talenet Japan' + 8480: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 8480 + name: + type: string + example: 'Talentplace' + 8481: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 8481 + name: + type: string + example: 'Tales 2' + 3920: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 3920 + name: + type: string + example: 'Tales of Games' + 8482: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 8482 + name: + type: string + example: 'Taleworlds' + 8483: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 8483 + name: + type: string + example: 'Talking Stick Games' + 8484: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 8484 + name: + type: string + example: 'Talon, Inc.' + 8486: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 8486 + name: + type: string + example: 'tametick' + 8487: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 8487 + name: + type: string + example: 'Tamsoft Corporation' + 8485: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 8485 + name: + type: string + example: 'TamTam' + 8492: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 8492 + name: + type: string + example: 'Tamtex' + 8493: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 8493 + name: + type: string + example: 'Tango gameworks' + 8494: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 8494 + name: + type: string + example: 'Tangram Games' + 8495: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 8495 + name: + type: string + example: 'TangramGames' + 8496: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 8496 + name: + type: string + example: 'Taniko' + 10169: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 10169 + name: + type: string + example: 'Tantalus' + 8497: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 8497 + name: + type: string + example: 'Tantalus Media' + 8504: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 8504 + name: + type: string + example: 'Tap My Game, Inc.' + 8505: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 8505 + name: + type: string + example: 'Tarann' + 8506: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 8506 + name: + type: string + example: 'Tarantula Studios' + 8507: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 8507 + name: + type: string + example: 'Targem Games' + 8509: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 8509 + name: + type: string + example: 'Target Games' + 8510: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 8510 + name: + type: string + example: 'Target Games Ltd' + 8511: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 8511 + name: + type: string + example: 'Tarn Adams' + 8512: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 8512 + name: + type: string + example: 'Tarsier Studios' + 8513: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 8513 + name: + type: string + example: 'Tasharen Entertainment Inc.' + 8514: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 8514 + name: + type: string + example: 'Taskset Ltd.' + 8516: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 8516 + name: + type: string + example: 'Tasoft' + 8517: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 8517 + name: + type: string + example: 'Tasty Stewdios LLC' + 8518: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 8518 + name: + type: string + example: 'TastyPoisonGames' + 8519: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 8519 + name: + type: string + example: 'Tasuke' + 8520: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 8520 + name: + type: string + example: 'Tate Interactive' + 8521: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 8521 + name: + type: string + example: 'Tate Multimedia' + 10299: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 10299 + name: + type: string + example: 'Tatem Games' + 8523: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 8523 + name: + type: string + example: 'Tatsumi' + 8526: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 8526 + name: + type: string + example: 'Tatsunoko Productions' + 8527: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 8527 + name: + type: string + example: 'Tau Ceti Software' + 8528: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 8528 + name: + type: string + example: 'Tawaugeneration G.I.M' + 8529: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 8529 + name: + type: string + example: 'Taxan' + 8530: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 8530 + name: + type: string + example: 'TBC' + 8531: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 8531 + name: + type: string + example: 'TCC' + 8532: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 8532 + name: + type: string + example: 'TCH' + 8533: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 8533 + name: + type: string + example: 'TDK CORE' + 8534: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 8534 + name: + type: string + example: 'TDK Mediactive' + 8535: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 8535 + name: + type: string + example: 'TDP Electronics' + 8536: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 8536 + name: + type: string + example: 'TE Soft' + 10378: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 10378 + name: + type: string + example: 'Teal Fire' + 8537: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 8537 + name: + type: string + example: 'Team .366' + 8541: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 8541 + name: + type: string + example: 'Team 6 Studios' + 8543: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 8543 + name: + type: string + example: 'Team Andromeda' + 8544: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 8544 + name: + type: string + example: 'Team Aquila' + 8545: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 8545 + name: + type: string + example: 'Team Bioteckers' + 8546: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 8546 + name: + type: string + example: 'Team Bondi' + 8547: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 8547 + name: + type: string + example: 'Team Bughouse' + 8548: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 8548 + name: + type: string + example: 'Team Cherry' + 8549: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 8549 + name: + type: string + example: 'Team Chivalry' + 10368: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 10368 + name: + type: string + example: 'Team Fugl' + 8550: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 8550 + name: + type: string + example: 'Team Fusion' + 8551: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 8551 + name: + type: string + example: 'Team Gotham' + 8552: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 8552 + name: + type: string + example: 'Team GrisGris' + 10369: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 10369 + name: + type: string + example: 'Team HalfBeard' + 8554: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 8554 + name: + type: string + example: 'Team Hoi' + 8555: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 8555 + name: + type: string + example: 'Team Ico' + 8556: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 8556 + name: + type: string + example: 'Team IGAS' + 8557: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 8557 + name: + type: string + example: 'Team Junkfish' + 8558: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 8558 + name: + type: string + example: 'Team Meat' + 8560: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 8560 + name: + type: string + example: 'Team Megamix' + 8561: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 8561 + name: + type: string + example: 'Team Mental Care' + 8562: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 8562 + name: + type: string + example: 'Team Neo Blood' + 8563: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 8563 + name: + type: string + example: 'Team Ninja' + 8564: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 8564 + name: + type: string + example: 'Team Nitronic' + 8565: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 8565 + name: + type: string + example: 'Team Painto' + 8566: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 8566 + name: + type: string + example: 'Team Psykskallar' + 8567: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 8567 + name: + type: string + example: 'Team Reptile' + 8568: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 8568 + name: + type: string + example: 'Team Salvato' + 8569: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 8569 + name: + type: string + example: 'Team Shanghai Alice' + 8571: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 8571 + name: + type: string + example: 'Team Shifty' + 8572: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 8572 + name: + type: string + example: 'Team Shinobi' + 10302: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 10302 + name: + type: string + example: 'Team Silent' + 8574: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 8574 + name: + type: string + example: 'Team SOHO' + 8575: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 8575 + name: + type: string + example: 'Team Storm' + 8576: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 8576 + name: + type: string + example: 'Team Tachyon' + 8577: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 8577 + name: + type: string + example: 'Team Xonotic' + 8578: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 8578 + name: + type: string + example: 'Team-6' + 8538: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 8538 + name: + type: string + example: 'Team17 Software Limited' + 8584: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 8584 + name: + type: string + example: 'Team2Bit' + 8586: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 8586 + name: + type: string + example: 'TeamLava Games' + 10303: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 10303 + name: + type: string + example: 'TeamTNT' + 8588: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 8588 + name: + type: string + example: 'Tears' + 8589: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 8589 + name: + type: string + example: 'TeaSet' + 8590: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 8590 + name: + type: string + example: 'Tec Toy' + 8591: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 8591 + name: + type: string + example: 'Tecfri' + 8592: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 8592 + name: + type: string + example: 'TechFront' + 8593: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 8593 + name: + type: string + example: 'Techland Sp. z o.o' + 8596: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 8596 + name: + type: string + example: 'Technical Group Laboratory, Inc.' + 8597: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 8597 + name: + type: string + example: 'Techno Soft' + 8598: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 8598 + name: + type: string + example: 'Techno Soleil' + 8599: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 8599 + name: + type: string + example: 'TechnoCrafts Unlimited Inc.' + 8600: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 8600 + name: + type: string + example: 'Technocrat Games' + 8601: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 8601 + name: + type: string + example: 'Technology and Entertainment Software' + 8602: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 8602 + name: + type: string + example: 'Technology Associates' + 8603: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 8603 + name: + type: string + example: 'Technopolis Soft' + 8604: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 8604 + name: + type: string + example: 'Technopop, Inc.' + 8606: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 8606 + name: + type: string + example: 'Technos' + 8595: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 8595 + name: + type: string + example: 'Technōs Japan' + 8607: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 8607 + name: + type: string + example: 'Technos Japan Corp.' + 8609: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 8609 + name: + type: string + example: 'TechnoSoft' + 8611: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 8611 + name: + type: string + example: 'TechnoVision' + 8612: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 8612 + name: + type: string + example: 'Techstar' + 8613: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 8613 + name: + type: string + example: 'TecMagik' + 8614: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 8614 + name: + type: string + example: 'Tecmo' + 8615: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 8615 + name: + type: string + example: 'Tecmo Koei' + 8616: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 8616 + name: + type: string + example: 'Tecmo Koei America Corp.' + 8620: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 8620 + name: + type: string + example: 'Tecmo, Ltd.' + 8621: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 8621 + name: + type: string + example: 'Tecmo, Salio' + 8624: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 8624 + name: + type: string + example: 'Tecnosoft' + 8626: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 8626 + name: + type: string + example: 'Tectoy' + 8627: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 8627 + name: + type: string + example: 'Ted Langford' + 8628: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 8628 + name: + type: string + example: 'Teeny Weeny Games, Ltd.' + 8630: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 8630 + name: + type: string + example: 'Tehkan Ltd.' + 8632: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 8632 + name: + type: string + example: 'Teirtex' + 8633: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 8633 + name: + type: string + example: 'Tek 5' + 8634: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 8634 + name: + type: string + example: 'Tekmagic' + 8635: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 8635 + name: + type: string + example: 'Teknopants' + 10370: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 10370 + name: + type: string + example: 'Teku Studios' + 8638: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 8638 + name: + type: string + example: 'Telegames USA' + 8636: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 8636 + name: + type: string + example: 'Telegames, Inc.' + 8640: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 8640 + name: + type: string + example: 'Telenet Japan' + 8643: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 8643 + name: + type: string + example: 'Telesys' + 8644: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 8644 + name: + type: string + example: 'Telltale Games' + 9922: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 9922 + name: + type: string + example: 'Telnet Japan' + 8650: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 8650 + name: + type: string + example: 'Tempest Software' + 8651: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 8651 + name: + type: string + example: 'Template:Nowrttrap' + 8652: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 8652 + name: + type: string + example: 'Temptation' + 8653: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 8653 + name: + type: string + example: 'TEN10 Games' + 8654: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 8654 + name: + type: string + example: 'Tengen' + 8655: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 8655 + name: + type: string + example: 'Tengen Inc.' + 8656: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 8656 + name: + type: string + example: 'Tenka' + 8657: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 8657 + name: + type: string + example: 'Tenky' + 8658: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 8658 + name: + type: string + example: 'Tennen-sozai' + 8659: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 8659 + name: + type: string + example: 'Tensor Technology' + 10183: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 10183 + name: + type: string + example: 'Teoman Irmak' + 8660: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 8660 + name: + type: string + example: 'Teotl Studios' + 8663: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 8663 + name: + type: string + example: 'Teque London' + 8661: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 8661 + name: + type: string + example: 'Teque Software Development' + 8666: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 8666 + name: + type: string + example: 'Tequila Sunrise' + 8667: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 8667 + name: + type: string + example: 'Tequila Sunrise Software' + 8668: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 8668 + name: + type: string + example: 'Tequila Works' + 8670: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 8670 + name: + type: string + example: 'Terminal Reality, Inc.' + 8673: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 8673 + name: + type: string + example: 'Terminal Software' + 8674: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 8674 + name: + type: string + example: 'Ternox' + 8675: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 8675 + name: + type: string + example: 'Terraglyph Interactive Studios' + 8678: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 8678 + name: + type: string + example: 'Terramarque' + 8679: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 8679 + name: + type: string + example: 'Terratools' + 8680: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 8680 + name: + type: string + example: 'Terrible Posture Games' + 8682: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 8682 + name: + type: string + example: 'Terrible Toybox' + 8683: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 8683 + name: + type: string + example: 'Terry Cavanagh' + 10329: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 10329 + name: + type: string + example: 'Terry Gilman' + 9967: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 9967 + name: + type: string + example: 'Terry Lloyd' + 9939: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 9939 + name: + type: string + example: 'Terry Lloyd (gfx)' + 8684: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 8684 + name: + type: string + example: 'Tetragon' + 8686: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 8686 + name: + type: string + example: 'Tetris Online, Inc' + 8687: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 8687 + name: + type: string + example: 'Texas Instruments' + 8688: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 8688 + name: + type: string + example: 'Teyon' + 8689: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 8689 + name: + type: string + example: 'TGL' + 8690: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 8690 + name: + type: string + example: 'Thalamus' + 8691: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 8691 + name: + type: string + example: 'Thalion Software' + 8693: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 8693 + name: + type: string + example: 'ThatGameCompany' + 8695: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 8695 + name: + type: string + example: 'The 3DO Company' + 132: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 132 + name: + type: string + example: 'The 8th Day' + 8698: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 8698 + name: + type: string + example: 'The Adventure Company' + 8699: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 8699 + name: + type: string + example: 'The American Game Factory' + 649: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 649 + name: + type: string + example: 'The Art Department' + 729: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 729 + name: + type: string + example: 'The Assembly Line' + 8702: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 8702 + name: + type: string + example: 'The Astronauts' + 8703: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 8703 + name: + type: string + example: 'The Bartlet Jones Supernatural Detective Agency, SIE San Diego Studio' + 8704: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 8704 + name: + type: string + example: 'The Bearded Ladies Consulting' + 988: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 988 + name: + type: string + example: 'The Behemoth' + 8706: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 8706 + name: + type: string + example: 'The Big Red Software Company Ltd.' + 8707: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 8707 + name: + type: string + example: 'The Binary Mill' + 1114: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 1114 + name: + type: string + example: 'The Bitmap Brothers' + 8709: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 8709 + name: + type: string + example: 'The Brotherhood' + 8710: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 8710 + name: + type: string + example: 'The Bytebusters' + 8711: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 8711 + name: + type: string + example: 'The Cartoon Mavericks' + 8712: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 8712 + name: + type: string + example: 'The Chinese Room' + 1687: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 1687 + name: + type: string + example: 'The Climax Group' + 8713: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 8713 + name: + type: string + example: 'The Coalition' + 1720: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 1720 + name: + type: string + example: 'The Code Monkeys Ltd.' + 1760: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 1760 + name: + type: string + example: 'The Collective' + 8719: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 8719 + name: + type: string + example: 'The Connelley Group' + 1891: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 1891 + name: + type: string + example: 'The Creative Assembly' + 8721: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 8721 + name: + type: string + example: 'The Dept of Silly Stuff' + 8722: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 8722 + name: + type: string + example: 'The Digital Lounge' + 8723: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 8723 + name: + type: string + example: 'The Digital Village' + 8724: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 8724 + name: + type: string + example: 'The Dream Team' + 8725: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 8725 + name: + type: string + example: 'The Dreamers Guild' + 8726: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 8726 + name: + type: string + example: 'The Edge' + 2999: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 2999 + name: + type: string + example: 'The Farm 51' + 8728: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 8728 + name: + type: string + example: 'The Firm' + 8730: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 8730 + name: + type: string + example: 'The Fun Pimps' + 8731: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 8731 + name: + type: string + example: 'The Game Atelier' + 8732: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 8732 + name: + type: string + example: 'The Game Bakers' + 9960: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 9960 + name: + type: string + example: 'The Game Creators' + 8733: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 8733 + name: + type: string + example: 'The Game Kitchen' + 8734: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 8734 + name: + type: string + example: 'The Gentlebros' + 8735: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 8735 + name: + type: string + example: 'the Hideout' + 8736: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 8736 + name: + type: string + example: 'The House of Fables' + 8737: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 8737 + name: + type: string + example: 'The Illusions Gaming Company' + 8738: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 8738 + name: + type: string + example: 'The Image Producers' + 8739: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 8739 + name: + type: string + example: 'The Indie Stone' + 8740: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 8740 + name: + type: string + example: 'The Kremlin' + 8741: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 8741 + name: + type: string + example: 'The Learning Company' + 8742: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 8742 + name: + type: string + example: 'The Logic Factory, Inc.' + 5055: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 5055 + name: + type: string + example: 'The Lost Boys' + 8744: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 8744 + name: + type: string + example: 'The Men Who Wear Many Hats' + 5662: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 5662 + name: + type: string + example: 'The Mojon Twins' + 8746: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 8746 + name: + type: string + example: 'The Molasses Flood' + 8747: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 8747 + name: + type: string + example: 'The Muteki Corporation' + 8748: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 8748 + name: + type: string + example: 'The Mystery Machine' + 8749: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 8749 + name: + type: string + example: 'The NetHack Dev Team' + 5923: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 5923 + name: + type: string + example: 'The Neverhood, Inc.' + 8752: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 8752 + name: + type: string + example: 'The Odd Gentlemen' + 6238: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 6238 + name: + type: string + example: 'The Oliver Twins' + 8755: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 8755 + name: + type: string + example: 'The OpenRA Developers' + 8756: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 8756 + name: + type: string + example: 'The Pokemon Company' + 8757: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 8757 + name: + type: string + example: 'The Quantum Astrophysicists Guild' + 8758: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 8758 + name: + type: string + example: 'The Quinnspiracy' + 8759: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 8759 + name: + type: string + example: 'The Ramjam Corporation' + 8760: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 8760 + name: + type: string + example: 'The Removers' + 8761: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 8761 + name: + type: string + example: 'The Ring' + 7395: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 7395 + name: + type: string + example: 'The Sales Curve Ltd.' + 8764: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 8764 + name: + type: string + example: 'The Sims Studio' + 8765: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 8765 + name: + type: string + example: 'The Software Toolbox' + 7953: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 7953 + name: + type: string + example: 'The Software Toolworks' + 8767: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 8767 + name: + type: string + example: 'The Stone Soup Team' + 8768: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 8768 + name: + type: string + example: 'The Story Mechanics' + 8770: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 8770 + name: + type: string + example: 'The Tiniest Shark' + 8771: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 8771 + name: + type: string + example: 'The Vega Strike Team' + 8772: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 8772 + name: + type: string + example: 'The Vision Factory' + 8773: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 8773 + name: + type: string + example: 'The Warp Factory' + 8774: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 8774 + name: + type: string + example: 'The WheelHause' + 8775: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 8775 + name: + type: string + example: 'The Working Parts' + 8776: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 8776 + name: + type: string + example: 'The World Federation Entertainments Network' + 8777: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 8777 + name: + type: string + example: 'Thekla, Inc.' + 8778: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 8778 + name: + type: string + example: 'Theyer GFX' + 8779: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 8779 + name: + type: string + example: 'Thin Chen Enterprise' + 8782: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 8782 + name: + type: string + example: 'Thing Trunk' + 8783: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 8783 + name: + type: string + example: 'Think & Feel Inc.' + 8784: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 8784 + name: + type: string + example: 'Think Garage' + 8785: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 8785 + name: + type: string + example: 'ThinkArts' + 8786: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 8786 + name: + type: string + example: 'Thinking Cap' + 8787: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 8787 + name: + type: string + example: 'Thinking Rabbit' + 8788: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 8788 + name: + type: string + example: 'Third Law Interactive' + 8789: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 8789 + name: + type: string + example: 'Third Wire Productions' + 8790: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 8790 + name: + type: string + example: 'Thomas Automatics' + 8791: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 8791 + name: + type: string + example: 'Thomas Bowker' + 8792: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 8792 + name: + type: string + example: 'Thomas Bowler' + 8793: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 8793 + name: + type: string + example: 'Thomas Happ Games' + 8794: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 8794 + name: + type: string + example: 'Thomas Happ Games LLC' + 8795: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 8795 + name: + type: string + example: 'Thomas J. Mitchell' + 8796: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 8796 + name: + type: string + example: 'Thomas Jentzsch' + 8797: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 8797 + name: + type: string + example: 'Thorn EMI Video Ltd.' + 10371: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 10371 + name: + type: string + example: 'Those Awesome Guys' + 8799: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 8799 + name: + type: string + example: 'Thoughtquake' + 8800: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 8800 + name: + type: string + example: 'Thousand Cranes Studio' + 8433: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 8433 + name: + type: string + example: 'THQ' + 6974: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 6974 + name: + type: string + example: 'THQ Digital Phoenix' + 8803: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 8803 + name: + type: string + example: 'THQ Nordic' + 8802: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 8802 + name: + type: string + example: 'THQ Studio Australia' + 8807: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 8807 + name: + type: string + example: 'Threaks' + 8808: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 8808 + name: + type: string + example: 'Three Donkeys' + 8809: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 8809 + name: + type: string + example: 'Three Fields Entertainment' + 8810: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 8810 + name: + type: string + example: 'Three Rings Design' + 8812: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 8812 + name: + type: string + example: 'Three Sprockets' + 10305: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 10305 + name: + type: string + example: 'Threewave Software' + 8813: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 8813 + name: + type: string + example: 'Thriller New Media' + 8814: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 8814 + name: + type: string + example: 'Throughline Games' + 8815: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 8815 + name: + type: string + example: 'Throwback Games' + 8816: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 8816 + name: + type: string + example: 'Thumbspire' + 8817: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 8817 + name: + type: string + example: 'Thunder Lotus Games' + 8818: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 8818 + name: + type: string + example: 'Thunder Mountain' + 8819: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 8819 + name: + type: string + example: 'Thunderbox Entertainment' + 8820: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 8820 + name: + type: string + example: 'Thylacine Studios' + 8821: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 8821 + name: + type: string + example: 'Tiburon' + 8822: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 8822 + name: + type: string + example: 'Tiburon Entertainment' + 8823: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 8823 + name: + type: string + example: 'Tic Toc Studios' + 8824: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 8824 + name: + type: string + example: 'Tierheit' + 8825: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 8825 + name: + type: string + example: 'Tierra' + 8826: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 8826 + name: + type: string + example: 'Tiertex Design Studios' + 8832: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 8832 + name: + type: string + example: 'tiger & squid' + 8833: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 8833 + name: + type: string + example: 'Tiger and Squid ,Team17 Digital Ltd' + 8831: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 8831 + name: + type: string + example: 'Tiger Electronics' + 8835: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 8835 + name: + type: string + example: 'Tiger Hill Entertainment' + 8836: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 8836 + name: + type: string + example: 'Tiger Style' + 8837: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 8837 + name: + type: string + example: 'Tiger Style Games' + 8838: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 8838 + name: + type: string + example: 'Tigervision' + 8839: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 8839 + name: + type: string + example: 'Tigon' + 8840: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 8840 + name: + type: string + example: 'Tigrido Inc' + 8842: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 8842 + name: + type: string + example: 'Tik Games, LLC' + 8843: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 8843 + name: + type: string + example: 'TikGames, LLC' + 8845: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 8845 + name: + type: string + example: 'Tikipod' + 8847: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 8847 + name: + type: string + example: 'Tilted Mill Entertainment' + 8849: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 8849 + name: + type: string + example: 'Tim Ancel' + 10307: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 10307 + name: + type: string + example: 'Tim Gilberts' + 8851: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 8851 + name: + type: string + example: 'Tim Martin' + 8852: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 8852 + name: + type: string + example: 'Tim Skelly' + 8853: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 8853 + name: + type: string + example: 'Tim Stryker' + 8854: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 8854 + name: + type: string + example: 'Time Warner Interactive' + 8856: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 8856 + name: + type: string + example: 'Time Warp' + 8857: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 8857 + name: + type: string + example: 'Time Warp Productions' + 8858: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 8858 + name: + type: string + example: 'TimeGate Studios' + 8860: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 8860 + name: + type: string + example: 'Timeline Computer Entertainment' + 9921: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 9921 + name: + type: string + example: 'Timofey Shargorodskiy' + 8861: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 8861 + name: + type: string + example: 'Timothy Closs' + 8862: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 8862 + name: + type: string + example: 'Tin Man Games' + 8863: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 8863 + name: + type: string + example: 'Tindalos Interactive' + 8865: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 8865 + name: + type: string + example: 'tinyBuild' + 8866: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 8866 + name: + type: string + example: 'Tirnanog' + 8867: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 8867 + name: + type: string + example: 'Titanium Studios' + 8868: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 8868 + name: + type: string + example: 'Titus' + 8869: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 8869 + name: + type: string + example: 'Titus France SA' + 8871: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 8871 + name: + type: string + example: 'Titus Interactive Studios' + 8873: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 8873 + name: + type: string + example: 'Titus Interactive, S.A..' + 8874: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 8874 + name: + type: string + example: 'Titus Software' + 8875: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 8875 + name: + type: string + example: 'Tivola' + 8876: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 8876 + name: + type: string + example: 'Tiwak' + 8877: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 8877 + name: + type: string + example: 'TML Studios' + 8878: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 8878 + name: + type: string + example: 'TMQ Software' + 8879: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 8879 + name: + type: string + example: 'TNN' + 9946: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 9946 + name: + type: string + example: 'TNSsoft' + 8880: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 8880 + name: + type: string + example: 'TNT Games' + 8881: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 8881 + name: + type: string + example: 'TNT Team' + 8882: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 8882 + name: + type: string + example: 'Toadman Interactive' + 8503: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 8503 + name: + type: string + example: 'Toaplan Co., Ltd.' + 8887: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 8887 + name: + type: string + example: 'Toast Dept.' + 8888: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 8888 + name: + type: string + example: 'Tobi Komi' + 8889: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 8889 + name: + type: string + example: 'TobiKomi' + 8890: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 8890 + name: + type: string + example: 'Toby Fox' + 8892: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 8892 + name: + type: string + example: 'Toco Games' + 8893: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 8893 + name: + type: string + example: 'Todd Holcomb' + 8894: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 8894 + name: + type: string + example: 'Toei Animation' + 8897: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 8897 + name: + type: string + example: 'ToeJam & Earl Productions' + 8898: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 8898 + name: + type: string + example: 'Toho Company Ltd' + 8900: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 8900 + name: + type: string + example: 'Toho Company Ltd.' + 8901: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 8901 + name: + type: string + example: 'Toka' + 8902: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 8902 + name: + type: string + example: 'Toka Loka Games' + 8903: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 8903 + name: + type: string + example: 'Tokai Engineering' + 8905: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 8905 + name: + type: string + example: 'Tokuma Shoten Intermedia' + 8907: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 8907 + name: + type: string + example: 'Tokyo Denshi Sekkei' + 8908: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 8908 + name: + type: string + example: 'Tokyo Design Center' + 8909: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 8909 + name: + type: string + example: 'Tokyo Electron' + 8910: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 8910 + name: + type: string + example: 'Tokyo RPG Factory' + 8911: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 8911 + name: + type: string + example: 'Tokyo Shoseki' + 8913: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 8913 + name: + type: string + example: 'Tom Bombadil''s Software Emporium & House of Curiosisities' + 8914: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 8914 + name: + type: string + example: 'Tom Create' + 8915: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 8915 + name: + type: string + example: 'Tom Happ' + 10218: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 10218 + name: + type: string + example: 'Tom Jubert' + 8916: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 8916 + name: + type: string + example: 'Tom Livak' + 8917: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 8917 + name: + type: string + example: 'Tom Mix' + 8918: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 8918 + name: + type: string + example: 'Tom Snyder Productions' + 8919: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 8919 + name: + type: string + example: 'Tomahawk' + 8920: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 8920 + name: + type: string + example: 'Tomas Kozelek' + 8921: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 8921 + name: + type: string + example: 'Tomasz Wacławek' + 8922: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 8922 + name: + type: string + example: 'Tomcat System' + 8924: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 8924 + name: + type: string + example: 'Tome' + 8925: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 8925 + name: + type: string + example: 'Tomi Maarela, Elias Viglione' + 8926: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 8926 + name: + type: string + example: 'Tomkorp Computer Solutions' + 8927: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 8927 + name: + type: string + example: 'Tommo' + 8928: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 8928 + name: + type: string + example: 'Tommy Xie' + 8929: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 8929 + name: + type: string + example: 'Tomoaki Sugeno' + 8930: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 8930 + name: + type: string + example: 'Tomorrow Corporation' + 8931: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 8931 + name: + type: string + example: 'Tomsoft' + 8932: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 8932 + name: + type: string + example: 'TOMY' + 8934: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 8934 + name: + type: string + example: 'Tomytronic' + 8935: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 8935 + name: + type: string + example: 'Tong Electronic' + 8936: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 8936 + name: + type: string + example: 'Tonika Games' + 8937: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 8937 + name: + type: string + example: 'Tonkin House' + 8938: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 8938 + name: + type: string + example: 'Tony Crowther' + 8939: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 8939 + name: + type: string + example: 'Tony Kelly' + 8940: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 8940 + name: + type: string + example: 'Tony Pomfret' + 8941: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 8941 + name: + type: string + example: 'Toolbox Design' + 8942: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 8942 + name: + type: string + example: 'ToonTRAXX Studios' + 8944: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 8944 + name: + type: string + example: 'Top Job GmbH' + 8943: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 8943 + name: + type: string + example: 'Topheavy' + 8946: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 8946 + name: + type: string + example: 'Topia' + 8947: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 8947 + name: + type: string + example: 'Topics Entertainment' + 8948: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 8948 + name: + type: string + example: 'Topilot' + 8949: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 8949 + name: + type: string + example: 'Topo Soft' + 8951: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 8951 + name: + type: string + example: 'TopWare Interactive' + 8953: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 8953 + name: + type: string + example: 'TORaIKI' + 8954: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 8954 + name: + type: string + example: 'TORCS Team' + 8955: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 8955 + name: + type: string + example: 'Torn Banner Studios' + 8956: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 8956 + name: + type: string + example: 'Tornado Studios' + 8957: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 8957 + name: + type: string + example: 'Torquemada Games' + 8958: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 8958 + name: + type: string + example: 'Torus Games' + 10042: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 10042 + name: + type: string + example: 'Tose' + 8959: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 8959 + name: + type: string + example: 'Tose Co., Ltd.' + 8964: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 8964 + name: + type: string + example: 'Toshiba' + 8965: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 8965 + name: + type: string + example: 'Toshiba EMI' + 8966: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 8966 + name: + type: string + example: 'Total Vision' + 8967: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 8967 + name: + type: string + example: 'Totally Games' + 8969: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 8969 + name: + type: string + example: 'Touchdown Entertainment' + 8970: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 8970 + name: + type: string + example: 'Towa Chiki' + 8971: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 8971 + name: + type: string + example: 'Toxic Games' + 8972: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 8972 + name: + type: string + example: 'Toybox' + 8974: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 8974 + name: + type: string + example: 'Toydea' + 8975: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 8975 + name: + type: string + example: 'Toylogic Inc.' + 8977: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 8977 + name: + type: string + example: 'Toyo Recording Group' + 8978: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 8978 + name: + type: string + example: 'Toys for Bob' + 10311: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 10311 + name: + type: string + example: 'Tozai' + 8983: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 8983 + name: + type: string + example: 'Tozai Games' + 8985: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 8985 + name: + type: string + example: 'Tradewest' + 8986: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 8986 + name: + type: string + example: 'Tragnarion Studios' + 8987: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 8987 + name: + type: string + example: 'Trainwreck Studios' + 8988: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 8988 + name: + type: string + example: 'TRANS Fiction Systems' + 8989: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 8989 + name: + type: string + example: 'TransGaming Inc.' + 8990: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 8990 + name: + type: string + example: 'TransMedia Productions, Inc.' + 8991: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 8991 + name: + type: string + example: 'Transmission Games' + 8993: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 8993 + name: + type: string + example: 'Trapdoor' + 8994: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 8994 + name: + type: string + example: 'Trash' + 8997: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 8997 + name: + type: string + example: 'Traveling Bits Production' + 8995: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 8995 + name: + type: string + example: 'Traveller''s Tales Ltd.' + 9002: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 9002 + name: + type: string + example: 'Traveller''s Tales Oxford Studios' + 9005: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 9005 + name: + type: string + example: 'Travellers Tales (UK) Ltd.' + 9007: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 9007 + name: + type: string + example: 'Travelling Bits' + 9008: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 9008 + name: + type: string + example: 'Treasure' + 9009: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 9009 + name: + type: string + example: 'Treasure C. Ltd.' + 10203: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 10203 + name: + type: string + example: 'Treasure Co., Ltd.' + 9014: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 9014 + name: + type: string + example: 'TreeFall Studios' + 9016: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 9016 + name: + type: string + example: 'TreeFortress Games' + 9017: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 9017 + name: + type: string + example: 'Trek Industries, Inc' + 9018: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 9018 + name: + type: string + example: 'Tremor' + 9019: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 9019 + name: + type: string + example: 'Tremor Entertainment' + 9020: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 9020 + name: + type: string + example: 'Trendy Entertainment' + 9021: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 9021 + name: + type: string + example: 'TrerPlay' + 10372: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 10372 + name: + type: string + example: 'Trese Brothers' + 10253: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 10253 + name: + type: string + example: 'Trevor Figgins' + 9023: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 9023 + name: + type: string + example: 'Trevor Storey' + 9024: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 9024 + name: + type: string + example: 'Trevor Storey & Georg Rottensteiner' + 9025: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 9025 + name: + type: string + example: 'Treyarch' + 9029: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 9029 + name: + type: string + example: 'tri-Ace' + 9031: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 9031 + name: + type: string + example: 'Tri-crescendo' + 9032: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 9032 + name: + type: string + example: 'Triangle' + 9033: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 9033 + name: + type: string + example: 'Triangle Service' + 9034: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 9034 + name: + type: string + example: 'Triangle studio' + 9035: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 9035 + name: + type: string + example: 'Triangle Studios' + 9036: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 9036 + name: + type: string + example: 'Tribal Dreams' + 9037: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 9037 + name: + type: string + example: 'Tribeca Interactive' + 9038: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 9038 + name: + type: string + example: 'Tribute Games' + 9040: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 9040 + name: + type: string + example: 'Trickstar Games' + 9041: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 9041 + name: + type: string + example: 'Tricktale' + 9042: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 9042 + name: + type: string + example: 'Triffix Entertainment Inc.' + 9043: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 9043 + name: + type: string + example: 'Trigger Lab' + 9044: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 9044 + name: + type: string + example: 'Trilobyte' + 9045: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 9045 + name: + type: string + example: 'Trine Games' + 9046: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 9046 + name: + type: string + example: 'Trinity Team srls' + 9047: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 9047 + name: + type: string + example: 'Trinket Studios' + 9048: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 9048 + name: + type: string + example: 'TriNodE Entertainment' + 9049: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 9049 + name: + type: string + example: 'Trion Worlds' + 9053: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 9053 + name: + type: string + example: 'Trip Media' + 10316: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 10316 + name: + type: string + example: 'Triple Eh?' + 9055: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 9055 + name: + type: string + example: 'Triple Hat Productions' + 9056: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 9056 + name: + type: string + example: 'Triple-B-Titles' + 9057: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 9057 + name: + type: string + example: 'Trips' + 9058: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 9058 + name: + type: string + example: 'Triptych Games, 3D Realms' + 9059: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 9059 + name: + type: string + example: 'Triptychon Software' + 9060: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 9060 + name: + type: string + example: 'Tripwire Interactive' + 9061: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 9061 + name: + type: string + example: 'Triskell Interactive' + 9062: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 9062 + name: + type: string + example: 'Tristar & Red Sector Incorporated' + 9063: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 9063 + name: + type: string + example: 'Trite Games' + 9064: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 9064 + name: + type: string + example: 'Triumph Software' + 9065: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 9065 + name: + type: string + example: 'Triumph Studios' + 9066: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 9066 + name: + type: string + example: 'Troika Games' + 9068: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 9068 + name: + type: string + example: 'Tron Software' + 9070: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 9070 + name: + type: string + example: 'Troo Gaming' + 9071: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 9071 + name: + type: string + example: 'Troutman' + 9072: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 9072 + name: + type: string + example: 'Troy Lyndon' + 9073: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 9073 + name: + type: string + example: 'Tru Blu Entertainment' + 9074: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 9074 + name: + type: string + example: 'True Axis' + 9075: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 9075 + name: + type: string + example: 'True Emotions' + 9076: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 9076 + name: + type: string + example: 'True Emotions Software' + 9077: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 9077 + name: + type: string + example: 'TRY' + 9078: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 9078 + name: + type: string + example: 'Tryfirst' + 9079: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 9079 + name: + type: string + example: 'TSi, Inc.' + 9080: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 9080 + name: + type: string + example: 'tsone' + 9081: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 9081 + name: + type: string + example: 'TSR' + 9082: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 9082 + name: + type: string + example: 'Tsuburaya Prod.' + 9083: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 9083 + name: + type: string + example: 'Tsuji Jimusho' + 9084: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 9084 + name: + type: string + example: 'Tsukuda Ideal' + 9085: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 9085 + name: + type: string + example: 'Tsukuda Original' + 9086: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 9086 + name: + type: string + example: 'Tsunami Media' + 9088: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 9088 + name: + type: string + example: 'Tsunami Media, Inc.' + 8428: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 8428 + name: + type: string + example: 'TT Fusion' + 9091: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 9091 + name: + type: string + example: 'TT Games' + 9093: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 9093 + name: + type: string + example: 'TTR' + 9094: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 9094 + name: + type: string + example: 'Tubbygames' + 9095: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 9095 + name: + type: string + example: 'Tuna' + 9096: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 9096 + name: + type: string + example: 'Tuna Technologies' + 9097: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 9097 + name: + type: string + example: 'Tuning Electronic' + 9098: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 9098 + name: + type: string + example: 'Tuque Games' + 9099: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 9099 + name: + type: string + example: 'Turbine, Inc' + 9103: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 9103 + name: + type: string + example: 'Turbo Button' + 9104: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 9104 + name: + type: string + example: 'Turbo Technologies, Inc.' + 9105: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 9105 + name: + type: string + example: 'Turcan Research Systems Limited' + 9106: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 9106 + name: + type: string + example: 'Turn 10 Studios' + 9108: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 9108 + name: + type: string + example: 'Turtle Cream & PokPoong Games' + 9109: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 9109 + name: + type: string + example: 'Turtle Rock Studios' + 9110: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 9110 + name: + type: string + example: 'Twice Circled' + 9111: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 9111 + name: + type: string + example: 'Twilight' + 9112: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 9112 + name: + type: string + example: 'Twilight Frontier' + 9114: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 9114 + name: + type: string + example: 'Twilight Games' + 9116: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 9116 + name: + type: string + example: 'Twisted Jenius' + 9117: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 9117 + name: + type: string + example: 'Twisted Minds' + 9118: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 9118 + name: + type: string + example: 'Twisted Pixel Games' + 9121: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 9121 + name: + type: string + example: 'Twitchy Fingers' + 10288: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 10288 + name: + type: string + example: 'Twitchy Hands' + 9122: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 9122 + name: + type: string + example: 'Two Tribes' + 9124: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 9124 + name: + type: string + example: 'TwoFiveSix' + 9125: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 9125 + name: + type: string + example: 'TXC Corp' + 10373: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 10373 + name: + type: string + example: 'Ty Taylor' + 9126: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 9126 + name: + type: string + example: 'Tycoon' + 9127: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 9127 + name: + type: string + example: 'Tycoon Games' + 10034: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 10034 + name: + type: string + example: 'Tyler Glaiel' + 9128: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 9128 + name: + type: string + example: 'TYMAC (UK) Ltd.' + 9129: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 9129 + name: + type: string + example: 'Tynesoft Computer Software' + 9131: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 9131 + name: + type: string + example: 'TYO' + 9132: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 9132 + name: + type: string + example: 'Type-Moon' + 9133: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 9133 + name: + type: string + example: 'Tyrell Laboratory' + 9134: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 9134 + name: + type: string + example: 'U-Play online' + 9136: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 9136 + name: + type: string + example: 'U.S. Army' + 9137: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 9137 + name: + type: string + example: 'U.S. Games' + 9135: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 9135 + name: + type: string + example: 'U.S. Gold Ltd.' + 9141: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 9141 + name: + type: string + example: 'UA Limited' + 9144: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 9144 + name: + type: string + example: 'Uber Entertainment' + 9150: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 9150 + name: + type: string + example: 'Ubisoft' + 9151: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 9151 + name: + type: string + example: 'Ubisoft Annecy' + 9948: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 9948 + name: + type: string + example: 'Ubisoft Annecy Studios' + 9152: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 9152 + name: + type: string + example: 'UbiSoft Barcelona' + 9153: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 9153 + name: + type: string + example: 'Ubisoft Casablanca' + 9143: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 9143 + name: + type: string + example: 'Ubisoft Entertainment' + 9155: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 9155 + name: + type: string + example: 'Ubisoft France' + 9156: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 9156 + name: + type: string + example: 'Ubisoft Milan' + 9157: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 9157 + name: + type: string + example: 'Ubisoft Montpellier' + 9149: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 9149 + name: + type: string + example: 'Ubisoft Montreal' + 9165: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 9165 + name: + type: string + example: 'Ubisoft Nagoya' + 9147: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 9147 + name: + type: string + example: 'Ubisoft Paris' + 9168: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 9168 + name: + type: string + example: 'Ubisoft Porto Alegre' + 9169: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 9169 + name: + type: string + example: 'Ubisoft Quebec' + 9171: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 9171 + name: + type: string + example: 'Ubisoft Reflections' + 9172: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 9172 + name: + type: string + example: 'Ubisoft Romania' + 9173: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 9173 + name: + type: string + example: 'Ubisoft San Francisco' + 9175: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 9175 + name: + type: string + example: 'Ubisoft Sao Paulo' + 9176: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 9176 + name: + type: string + example: 'Ubisoft Shanghai' + 10343: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 10343 + name: + type: string + example: 'Ubisoft Singapore' + 9177: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 9177 + name: + type: string + example: 'Ubisoft Sofia' + 9178: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 9178 + name: + type: string + example: 'Ubisoft Tiwak' + 9179: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 9179 + name: + type: string + example: 'Ubisoft Toronto' + 9180: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 9180 + name: + type: string + example: 'Ubisoft Vancouver' + 9181: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 9181 + name: + type: string + example: 'Ubisoft, Disney Interactive Studios' + 9182: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 9182 + name: + type: string + example: 'Uchida' + 9183: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 9183 + name: + type: string + example: 'uclick' + 9184: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 9184 + name: + type: string + example: 'UCS' + 9185: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 9185 + name: + type: string + example: 'Udo Gertz' + 9187: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 9187 + name: + type: string + example: 'UEA Game Lab' + 9188: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 9188 + name: + type: string + example: 'UEP Systems' + 9189: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 9189 + name: + type: string + example: 'UFO Interactive' + 9191: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 9191 + name: + type: string + example: 'UGA' + 9192: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 9192 + name: + type: string + example: 'UGC D.A. International' + 9194: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 9194 + name: + type: string + example: 'UIG Entertainment' + 9195: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 9195 + name: + type: string + example: 'UK Magic' + 9196: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 9196 + name: + type: string + example: 'Ukiyotei' + 9197: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 9197 + name: + type: string + example: 'Ukiyotei, Fine' + 9198: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 9198 + name: + type: string + example: 'Ultimate' + 9199: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 9199 + name: + type: string + example: 'Ultimate Play The Game' + 9201: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 9201 + name: + type: string + example: 'Ultimate Pro' + 9203: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 9203 + name: + type: string + example: 'Ultra' + 9204: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 9204 + name: + type: string + example: 'Ultra Runaway Games' + 9205: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 9205 + name: + type: string + example: 'Ultravision' + 9206: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 9206 + name: + type: string + example: 'UMAX' + 9207: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 9207 + name: + type: string + example: 'umbrella-isle' + 9208: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 9208 + name: + type: string + example: 'Umitsuki Production' + 9209: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 9209 + name: + type: string + example: 'Unconscious Minds' + 9210: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 9210 + name: + type: string + example: 'Undead Labs' + 9211: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 9211 + name: + type: string + example: 'Underground Development' + 9212: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 9212 + name: + type: string + example: 'Unexpected Development' + 9214: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 9214 + name: + type: string + example: 'Unfinished Pixel' + 9215: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 9215 + name: + type: string + example: 'Unico' + 9218: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 9218 + name: + type: string + example: 'Unicorn Games Studio' + 9220: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 9220 + name: + type: string + example: 'Unigine Corp' + 9221: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 9221 + name: + type: string + example: 'UNIPACC' + 9186: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 9186 + name: + type: string + example: 'Unique Development Studios' + 9225: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 9225 + name: + type: string + example: 'Unit' + 9226: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 9226 + name: + type: string + example: 'Unit 4 Games' + 9227: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 9227 + name: + type: string + example: 'United Coders' + 9228: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 9228 + name: + type: string + example: 'United Front Games' + 9229: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 9229 + name: + type: string + example: 'United Game Artists' + 9230: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 9230 + name: + type: string + example: 'United Independent Entertainment GmbH' + 9231: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 9231 + name: + type: string + example: 'United Microware Industries, Inc.' + 10206: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 10206 + name: + type: string + example: 'Universal' + 9234: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 9234 + name: + type: string + example: 'Universal Co., Ltd.' + 9236: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 9236 + name: + type: string + example: 'Universal Digital Arts, Inc.' + 9237: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 9237 + name: + type: string + example: 'Universal Entertainment Corporation' + 9233: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 9233 + name: + type: string + example: 'Universal Interactive' + 9239: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 9239 + name: + type: string + example: 'Universal USA' + 9240: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 9240 + name: + type: string + example: 'University of Games' + 9241: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 9241 + name: + type: string + example: 'Universomo' + 9242: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 9242 + name: + type: string + example: 'Unknown' + 9243: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 9243 + name: + type: string + example: 'Unknown Worlds Entertainment' + 9245: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 9245 + name: + type: string + example: 'Unlimited Software' + 9244: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 9244 + name: + type: string + example: 'Unlimited Software (USI)' + 9247: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 9247 + name: + type: string + example: 'UnlimitedStar23' + 9248: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 9248 + name: + type: string + example: 'Unnyhog' + 9249: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 9249 + name: + type: string + example: 'Unreal Voodoo' + 9250: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 9250 + name: + type: string + example: 'Untame' + 9251: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 9251 + name: + type: string + example: 'Untold Games' + 9252: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 9252 + name: + type: string + example: 'Up iGames' + 9253: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 9253 + name: + type: string + example: 'UPL Co., Ltd' + 9256: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 9256 + name: + type: string + example: 'Upper Byte Studio' + 9257: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 9257 + name: + type: string + example: 'Upper One Games' + 9259: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 9259 + name: + type: string + example: 'Uppercut Games Pty Ltd' + 9260: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 9260 + name: + type: string + example: 'Uppercut Games, Pty Ltd' + 9261: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 9261 + name: + type: string + example: 'Urban Games' + 9262: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 9262 + name: + type: string + example: 'Uri' + 9264: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 9264 + name: + type: string + example: 'US Billiards' + 9267: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 9267 + name: + type: string + example: 'US Gold Sports' + 9268: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 9268 + name: + type: string + example: 'Use' + 9269: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 9269 + name: + type: string + example: 'Use Corporation' + 9270: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 9270 + name: + type: string + example: 'usebox.net' + 9271: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 9271 + name: + type: string + example: 'USM' + 9272: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 9272 + name: + type: string + example: 'ustwo' + 9274: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 9274 + name: + type: string + example: 'Utopia Software' + 9273: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 9273 + name: + type: string + example: 'Utopia Technologies' + 9276: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 9276 + name: + type: string + example: 'UTV Ignition Entertainment' + 9277: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 9277 + name: + type: string + example: 'V-System' + 9278: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 9278 + name: + type: string + example: 'Vagabond Dog' + 9279: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 9279 + name: + type: string + example: 'Vaill' + 9280: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 9280 + name: + type: string + example: 'Valadon Automation' + 9283: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 9283 + name: + type: string + example: 'Valhalla Game Studio' + 9284: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 9284 + name: + type: string + example: 'Valkyrie Studios' + 9285: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 9285 + name: + type: string + example: 'Valleycrest Productions' + 9286: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 9286 + name: + type: string + example: 'Valorware' + 9287: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 9287 + name: + type: string + example: 'Valusoft' + 9288: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 9288 + name: + type: string + example: 'ValuSoft Cosmi' + 10210: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 10210 + name: + type: string + example: 'Valve' + 9289: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 9289 + name: + type: string + example: 'Valve Corporation' + 9292: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 9292 + name: + type: string + example: 'Valve Software' + 9293: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 9293 + name: + type: string + example: 'Valyron' + 9294: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 9294 + name: + type: string + example: 'Vanguard Games' + 9296: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 9296 + name: + type: string + example: 'Vanguard Works' + 9297: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 9297 + name: + type: string + example: 'Vanillaware' + 9298: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 9298 + name: + type: string + example: 'Vanja Utne' + 9299: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 9299 + name: + type: string + example: 'Vanpool' + 9300: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 9300 + name: + type: string + example: 'Vap' + 9302: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 9302 + name: + type: string + example: 'VaragtP' + 9303: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 9303 + name: + type: string + example: 'Variable State' + 9304: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 9304 + name: + type: string + example: 'Varie' + 9305: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 9305 + name: + type: string + example: 'Various' + 9306: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 9306 + name: + type: string + example: 'Vast Fame' + 9307: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 9307 + name: + type: string + example: 'Vatra' + 9308: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 9308 + name: + type: string + example: 'VBlank Entertainment' + 9310: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 9310 + name: + type: string + example: 'VCC Entertainment' + 9311: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 9311 + name: + type: string + example: 'VD-Dev' + 9312: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 9312 + name: + type: string + example: 'VEB Polytechnik' + 9313: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 9313 + name: + type: string + example: 'Vector Games' + 9314: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 9314 + name: + type: string + example: 'Vector Unit' + 9315: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 9315 + name: + type: string + example: 'Vector Unit Inc' + 9316: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 9316 + name: + type: string + example: 'Vector Unit Inc.' + 9317: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 9317 + name: + type: string + example: 'Vectorbeam' + 9318: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 9318 + name: + type: string + example: 'VectorCell' + 9319: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 9319 + name: + type: string + example: 'Vectordean Ltd' + 9322: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 9322 + name: + type: string + example: 'Vectorpark' + 9323: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 9323 + name: + type: string + example: 'Vektor Grafix' + 9324: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 9324 + name: + type: string + example: 'Vektor Grafix Ltd' + 9325: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 9325 + name: + type: string + example: 'Velez & Dubail' + 9326: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 9326 + name: + type: string + example: 'Velocity Inc.' + 9327: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 9327 + name: + type: string + example: 'Venan Entertainment' + 9328: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 9328 + name: + type: string + example: 'Vendor Unit' + 9329: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 9329 + name: + type: string + example: 'Venom Games' + 9330: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 9330 + name: + type: string + example: 'Venture Line, Inc.' + 9332: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 9332 + name: + type: string + example: 'Venture Vision' + 9333: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 9333 + name: + type: string + example: 'VentureVision' + 9334: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 9334 + name: + type: string + example: 'Verant Interactive' + 9335: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 9335 + name: + type: string + example: 'vertexpop' + 9336: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 9336 + name: + type: string + example: 'Vertigo Games' + 9339: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 9339 + name: + type: string + example: 'Vertigo Gaming' + 9340: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 9340 + name: + type: string + example: 'Vertigo Gaming Inc.' + 9341: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 9341 + name: + type: string + example: 'Very Simple Idea Studios' + 9342: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 9342 + name: + type: string + example: 'Viacom New Media' + 9344: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 9344 + name: + type: string + example: 'Vic Tokai' + 9348: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 9348 + name: + type: string + example: 'Vicarious Visions' + 9354: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 9354 + name: + type: string + example: 'Viccom' + 9355: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 9355 + name: + type: string + example: 'Vicious Cycle Software, Inc.' + 9360: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 9360 + name: + type: string + example: 'Victor Entertainment' + 9363: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 9363 + name: + type: string + example: 'Victor Interactive' + 9364: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 9364 + name: + type: string + example: 'Victor Interactive Software, Inc.' + 9366: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 9366 + name: + type: string + example: 'Victor Musical Industries' + 9369: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 9369 + name: + type: string + example: 'Vid Kidz' + 9370: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 9370 + name: + type: string + example: 'Vidco' + 9371: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 9371 + name: + type: string + example: 'Videa' + 9372: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 9372 + name: + type: string + example: 'Video Games GmbH' + 9373: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 9373 + name: + type: string + example: 'Video Gems' + 9374: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 9374 + name: + type: string + example: 'Video Soft' + 9375: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 9375 + name: + type: string + example: 'Video System Co., Ltd.' + 9379: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 9379 + name: + type: string + example: 'Videogame Electrogame' + 9380: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 9380 + name: + type: string + example: 'Videosoft' + 9382: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 9382 + name: + type: string + example: 'Vidtec' + 9383: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 9383 + name: + type: string + example: 'Vigil Games' + 9386: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 9386 + name: + type: string + example: 'Vile Monarch' + 9387: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 9387 + name: + type: string + example: 'Vilkalizer' + 9388: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 9388 + name: + type: string + example: 'Villa Gorilla' + 9389: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 9389 + name: + type: string + example: 'VillaVanilla' + 9391: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 9391 + name: + type: string + example: 'Ville Krumlinde' + 9392: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 9392 + name: + type: string + example: 'Vincent Jouillat' + 9393: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 9393 + name: + type: string + example: 'Ving' + 9394: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 9394 + name: + type: string + example: 'Vingt-et-un Systems' + 9396: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 9396 + name: + type: string + example: 'Vinyl Pixels' + 9397: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 9397 + name: + type: string + example: 'VipaGames' + 9398: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 9398 + name: + type: string + example: 'Vir2L Studios' + 9399: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 9399 + name: + type: string + example: 'Virgin Interactive Entertainment' + 9404: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 9404 + name: + type: string + example: 'Virgin Interactive Entertainment, Inc.' + 9405: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 9405 + name: + type: string + example: 'Virgin Mastertronic' + 9406: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 9406 + name: + type: string + example: 'Viridis' + 9407: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 9407 + name: + type: string + example: 'Virtual Air Guitar Company' + 10287: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 10287 + name: + type: string + example: 'Virtual Basement' + 9408: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 9408 + name: + type: string + example: 'Virtual Concepts' + 9409: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 9409 + name: + type: string + example: 'Virtual Heroes, Inc.' + 9410: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 9410 + name: + type: string + example: 'VIRTUAL MUSIC' + 9411: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 9411 + name: + type: string + example: 'Virtual Play Inc.' + 10323: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 10323 + name: + type: string + example: 'Virtual Playground' + 9413: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 9413 + name: + type: string + example: 'Virtual Studio' + 9414: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 9414 + name: + type: string + example: 'Virtual Toys' + 9415: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 9415 + name: + type: string + example: 'Virtual Toys SL' + 9416: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 9416 + name: + type: string + example: 'Virtual X-Perience' + 9417: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 9417 + name: + type: string + example: 'Virtuality Entertainment Ltd.' + 9418: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 9418 + name: + type: string + example: 'Virtucraft Ltd.' + 9420: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 9420 + name: + type: string + example: 'Virtuos' + 9422: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 9422 + name: + type: string + example: 'Virtys Inc.' + 9423: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 9423 + name: + type: string + example: 'VIS' + 9425: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 9425 + name: + type: string + example: 'VIS Entertainment' + 9428: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 9428 + name: + type: string + example: 'Visceral Games' + 9432: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 9432 + name: + type: string + example: 'Visco Corp' + 9431: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 9431 + name: + type: string + example: 'Visco Corporation' + 9435: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 9435 + name: + type: string + example: 'Vision' + 9436: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 9436 + name: + type: string + example: 'Vision Games' + 9438: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 9438 + name: + type: string + example: 'Vision Scape Interactive' + 9440: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 9440 + name: + type: string + example: 'Vision Software' + 9441: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 9441 + name: + type: string + example: 'Vision Software, Inc.' + 9442: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 9442 + name: + type: string + example: 'Vision Works' + 9443: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 9443 + name: + type: string + example: 'Visionary Design' + 9444: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 9444 + name: + type: string + example: 'Visionary Media' + 9445: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 9445 + name: + type: string + example: 'Visions Software' + 9446: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 9446 + name: + type: string + example: 'Visit' + 9447: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 9447 + name: + type: string + example: 'Visiware' + 9448: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 9448 + name: + type: string + example: 'Vistec' + 9449: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 9449 + name: + type: string + example: 'Visual Arts' + 9450: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 9450 + name: + type: string + example: 'Visual Concept Yukes' + 9451: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 9451 + name: + type: string + example: 'Visual Concepts' + 9459: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 9459 + name: + type: string + example: 'Visual Concepts, Yuke''s Co., LTD' + 9460: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 9460 + name: + type: string + example: 'Visual Delight' + 9424: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 9424 + name: + type: string + example: 'Visual Imagination Software' + 9463: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 9463 + name: + type: string + example: 'Visual Impact' + 9465: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 9465 + name: + type: string + example: 'Visual Sciences' + 10071: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 10071 + name: + type: string + example: 'Visual Sciences Ltd.' + 9466: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 9466 + name: + type: string + example: 'Vitamin G Studios' + 9467: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 9467 + name: + type: string + example: 'Viva Media, LLC' + 9468: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 9468 + name: + type: string + example: 'VIVARIUM' + 9470: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 9470 + name: + type: string + example: 'Vivendi Games' + 9472: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 9472 + name: + type: string + example: 'Vivendi Universal Games' + 9474: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 9474 + name: + type: string + example: 'Vivid Games' + 9476: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 9476 + name: + type: string + example: 'Vivid Helix' + 9477: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 9477 + name: + type: string + example: 'Vivid Image' + 9479: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 9479 + name: + type: string + example: 'Vivid Interactive' + 9480: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 9480 + name: + type: string + example: 'Viz Kidz' + 9481: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 9481 + name: + type: string + example: 'vlambeer' + 9482: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 9482 + name: + type: string + example: 'Vogd3' + 9483: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 9483 + name: + type: string + example: 'Vogster' + 9484: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 9484 + name: + type: string + example: 'Vogster Entertainment' + 9485: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 9485 + name: + type: string + example: 'Voidpoint, LLC' + 9486: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 9486 + name: + type: string + example: 'Volatile Games' + 9487: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 9487 + name: + type: string + example: 'Volition, Inc.' + 9491: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 9491 + name: + type: string + example: 'Voltex, Inc.' + 9492: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 9492 + name: + type: string + example: 'VooFoo Studios' + 9493: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 9493 + name: + type: string + example: 'Vortex Software' + 9494: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 9494 + name: + type: string + example: 'Voxel Agents' + 9495: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 9495 + name: + type: string + example: 'VR Sports' + 9496: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 9496 + name: + type: string + example: 'Vridge' + 9497: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 9497 + name: + type: string + example: 'Vridge Inc.' + 9498: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 9498 + name: + type: string + example: 'VRWERX' + 9499: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 9499 + name: + type: string + example: 'VSC' + 9500: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 9500 + name: + type: string + example: 'VSS, Inc.' + 9503: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 9503 + name: + type: string + example: 'Vtech' + 9504: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 9504 + name: + type: string + example: 'Vulcan' + 9505: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 9505 + name: + type: string + example: 'Vulcan Software Limited' + 9506: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 9506 + name: + type: string + example: 'W!Games' + 9508: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 9508 + name: + type: string + example: 'Wadjet Eye Games' + 9509: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 9509 + name: + type: string + example: 'Wahoo' + 9510: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 9510 + name: + type: string + example: 'Waixing' + 9511: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 9511 + name: + type: string + example: 'Wales Interactive' + 9513: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 9513 + name: + type: string + example: 'Walk Thru Walls Studios' + 9514: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 9514 + name: + type: string + example: 'Walking Circles' + 9516: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 9516 + name: + type: string + example: 'Walt Disney Productions' + 9517: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 9517 + name: + type: string + example: 'Wanadoo' + 9518: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 9518 + name: + type: string + example: 'Wanadoo Edition' + 9520: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 9520 + name: + type: string + example: 'Wanako Studios' + 9521: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 9521 + name: + type: string + example: 'Wanderlust Interactive' + 9522: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 9522 + name: + type: string + example: 'War Drum Studios' + 9524: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 9524 + name: + type: string + example: 'Warashi' + 9525: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 9525 + name: + type: string + example: 'WarfareSims' + 9526: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 9526 + name: + type: string + example: 'Wargaming Asia' + 9527: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 9527 + name: + type: string + example: 'Wargaming.net' + 9528: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 9528 + name: + type: string + example: 'Warhorse Studios' + 9529: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 9529 + name: + type: string + example: 'Warm Lamp Games' + 9535: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 9535 + name: + type: string + example: 'Warner Bros. International Enterprises' + 9538: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 9538 + name: + type: string + example: 'Warp Inc.' + 9541: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 9541 + name: + type: string + example: 'Warped Minds' + 9542: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 9542 + name: + type: string + example: 'Warren Robinett' + 9543: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 9543 + name: + type: string + example: 'Warren Schwader' + 10374: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 10374 + name: + type: string + example: 'WarSaw Games' + 9544: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 9544 + name: + type: string + example: 'Warsow team' + 9545: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 9545 + name: + type: string + example: 'WARTEAM' + 9546: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 9546 + name: + type: string + example: 'Warthog' + 9548: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 9548 + name: + type: string + example: 'Warvene LLC' + 9549: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 9549 + name: + type: string + example: 'Wasted Brilliance' + 9550: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 9550 + name: + type: string + example: 'Wastelands Interactive' + 9551: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 9551 + name: + type: string + example: 'Watanabe Seisakujo' + 9552: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 9552 + name: + type: string + example: 'Watermelon' + 9555: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 9555 + name: + type: string + example: 'Wave Corp.' + 9557: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 9557 + name: + type: string + example: 'WaveQuest' + 9559: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 9559 + name: + type: string + example: 'WayForward Technologies' + 9562: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 9562 + name: + type: string + example: 'Waylimit' + 9563: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 9563 + name: + type: string + example: 'Wayne J. Smithson Design' + 10328: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 10328 + name: + type: string + example: 'Wayne Westmoreland' + 9565: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 9565 + name: + type: string + example: 'Waystone Games' + 9566: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 9566 + name: + type: string + example: 'Wayward Design' + 9530: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 9530 + name: + type: string + example: 'WB Games' + 9532: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 9532 + name: + type: string + example: 'WB Games Montreal' + 9569: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 9569 + name: + type: string + example: 'We Are Museli' + 9570: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 9570 + name: + type: string + example: 'We Games' + 9571: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 9571 + name: + type: string + example: 'Weappy Studio' + 9572: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 9572 + name: + type: string + example: 'Weather Factory' + 9573: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 9573 + name: + type: string + example: 'Webfoot Technologies' + 9575: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 9575 + name: + type: string + example: 'Webzen' + 9577: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 9577 + name: + type: string + example: 'Weebee Games' + 9578: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 9578 + name: + type: string + example: 'wefiends' + 9579: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 9579 + name: + type: string + example: 'Weird and Wry' + 9580: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 9580 + name: + type: string + example: 'Weltenschmiede' + 9581: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 9581 + name: + type: string + example: 'WeMade' + 9582: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 9582 + name: + type: string + example: 'WeMade Entertainment' + 9583: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 9583 + name: + type: string + example: 'Werk' + 9584: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 9584 + name: + type: string + example: 'West One' + 9585: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 9585 + name: + type: string + example: 'Western Technologies Inc.' + 9589: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 9589 + name: + type: string + example: 'Westka Interactive' + 10097: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 10097 + name: + type: string + example: 'Westone' + 9590: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 9590 + name: + type: string + example: 'Westone Co., Ltd.' + 9596: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 9596 + name: + type: string + example: 'Westwood Associates' + 9597: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 9597 + name: + type: string + example: 'Westwood Pacific' + 10027: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 10027 + name: + type: string + example: 'Westwood Studios' + 9595: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 9595 + name: + type: string + example: 'Westwood Studios, Inc.' + 9601: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 9601 + name: + type: string + example: 'White Birds Productions' + 9602: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 9602 + name: + type: string + example: 'White Box' + 9603: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 9603 + name: + type: string + example: 'White Giant RPG Studios' + 9604: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 9604 + name: + type: string + example: 'White Lotus Interactive' + 9605: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 9605 + name: + type: string + example: 'White Paper Games' + 9606: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 9606 + name: + type: string + example: 'White Rabbit' + 9607: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 9607 + name: + type: string + example: 'White Wizard Games' + 9608: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 9608 + name: + type: string + example: 'Whiteboard' + 9609: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 9609 + name: + type: string + example: 'Whole Hog Games' + 9610: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 9610 + name: + type: string + example: 'Wholesale Algorithms' + 9611: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 9611 + name: + type: string + example: 'Whoopee Camp' + 9612: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 9612 + name: + type: string + example: 'Wicked Studios' + 9613: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 9613 + name: + type: string + example: 'Wicked Witch Software' + 9616: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 9616 + name: + type: string + example: 'Wide Games' + 9618: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 9618 + name: + type: string + example: 'Wide Pixel Games' + 9619: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 9619 + name: + type: string + example: 'Wideload Games, Inc.' + 9622: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 9622 + name: + type: string + example: 'WideScreen Games' + 9623: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 9623 + name: + type: string + example: 'Wigant Interactive' + 9624: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 9624 + name: + type: string + example: 'Wild Games Studio' + 9626: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 9626 + name: + type: string + example: 'Wild Shadow Studios' + 9627: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 9627 + name: + type: string + example: 'Wildfire Games' + 9628: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 9628 + name: + type: string + example: 'Wildfire Studios' + 9629: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 9629 + name: + type: string + example: 'WildTangent' + 9630: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 9630 + name: + type: string + example: 'Wiliams Electronics' + 9631: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 9631 + name: + type: string + example: 'Will' + 9632: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 9632 + name: + type: string + example: 'Will Brighton' + 9633: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 9633 + name: + type: string + example: 'Will Crowther' + 9634: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 9634 + name: + type: string + example: 'Will Nicholes' + 9635: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 9635 + name: + type: string + example: 'Williams' + 9636: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 9636 + name: + type: string + example: 'Williams Electronics, Inc.' + 9640: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 9640 + name: + type: string + example: 'Williams Entertainment' + 9643: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 9643 + name: + type: string + example: 'Wind Jester Games' + 9644: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 9644 + name: + type: string + example: 'Windmill Software' + 9645: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 9645 + name: + type: string + example: 'Winds' + 10331: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 10331 + name: + type: string + example: 'Winds Co., Ltd.' + 9647: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 9647 + name: + type: string + example: 'Winged Cloud' + 9648: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 9648 + name: + type: string + example: 'Wingman Games' + 9649: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 9649 + name: + type: string + example: 'Wings Simulations' + 9650: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 9650 + name: + type: string + example: 'Winkdot' + 9651: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 9651 + name: + type: string + example: 'WinkySoft' + 9654: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 9654 + name: + type: string + example: 'Winning Eleven Productions' + 9655: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 9655 + name: + type: string + example: 'Winsen' + 9656: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 9656 + name: + type: string + example: 'Wintechno' + 9657: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 9657 + name: + type: string + example: 'Wired Productions' + 9658: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 9658 + name: + type: string + example: 'Wisdom Tree, Inc' + 9660: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 9660 + name: + type: string + example: 'Wise' + 9661: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 9661 + name: + type: string + example: 'Witan Entertainment BV' + 9662: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 9662 + name: + type: string + example: 'Witch Beam' + 9663: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 9663 + name: + type: string + example: 'Witch Craft' + 9664: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 9664 + name: + type: string + example: 'WiZ Co., Ltd' + 9665: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 9665 + name: + type: string + example: 'WizarBox' + 9666: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 9666 + name: + type: string + example: 'Wizard' + 9667: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 9667 + name: + type: string + example: 'Wizard Development' + 9668: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 9668 + name: + type: string + example: 'Wizard Video' + 9669: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 9669 + name: + type: string + example: 'Wizards of the Coast' + 9671: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 9671 + name: + type: string + example: 'WizardSoft' + 9672: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 9672 + name: + type: string + example: 'WizardWorks' + 9673: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 9673 + name: + type: string + example: 'WizBang! Sotware Productions' + 9674: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 9674 + name: + type: string + example: 'Wizet' + 9507: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 9507 + name: + type: string + example: 'WJS Design' + 9677: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 9677 + name: + type: string + example: 'Wolf Brew Games' + 9678: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 9678 + name: + type: string + example: 'Wolf Team' + 9679: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 9679 + name: + type: string + example: 'Wolfire' + 9681: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 9681 + name: + type: string + example: 'Wolfire Software' + 9683: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 9683 + name: + type: string + example: 'Wonder Amusement Studio' + 9684: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 9684 + name: + type: string + example: 'Wood Place Inc.' + 9686: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 9686 + name: + type: string + example: 'Working Designs' + 9687: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 9687 + name: + type: string + example: 'WorkJam' + 9688: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 9688 + name: + type: string + example: 'Workss' + 9689: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 9689 + name: + type: string + example: 'Workyrie Game Studio' + 9690: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 9690 + name: + type: string + example: 'World Games' + 9691: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 9691 + name: + type: string + example: 'World Software' + 9692: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 9692 + name: + type: string + example: 'World Tree Games Productions' + 9693: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 9693 + name: + type: string + example: 'Worldwide Studios' + 9694: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 9694 + name: + type: string + example: 'Wormwood Studios' + 9695: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 9695 + name: + type: string + example: 'Worthless Bums' + 9696: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 9696 + name: + type: string + example: 'WOW Entertainment' + 9699: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 9699 + name: + type: string + example: 'WRF Studios' + 9700: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 9700 + name: + type: string + example: 'WTFOMGames' + 9701: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 9701 + name: + type: string + example: 'Wunderkind' + 10125: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 10125 + name: + type: string + example: 'WWS America' + 9702: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 9702 + name: + type: string + example: 'WXP Inc.' + 9706: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 9706 + name: + type: string + example: 'X LanD Computer Games' + 9707: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 9707 + name: + type: string + example: 'X-Ample Architectures Productions' + 9708: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 9708 + name: + type: string + example: 'X-Bow Software' + 9710: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 9710 + name: + type: string + example: 'X-Box' + 9711: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 9711 + name: + type: string + example: 'X-Legend' + 9712: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 9712 + name: + type: string + example: 'X-Ray' + 9713: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 9713 + name: + type: string + example: 'X-Road' + 9714: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 9714 + name: + type: string + example: 'X-Troll' + 9715: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 9715 + name: + type: string + example: 'Xain Soft' + 9717: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 9717 + name: + type: string + example: 'Xantera' + 9718: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 9718 + name: + type: string + example: 'Xanth Software F/X' + 9720: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 9720 + name: + type: string + example: 'Xatrix Entertainment' + 9721: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 9721 + name: + type: string + example: 'Xaviant' + 9723: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 9723 + name: + type: string + example: 'XDEV' + 9724: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 9724 + name: + type: string + example: 'Xdra' + 9725: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 9725 + name: + type: string + example: 'XENDEX HOLDING GMBH' + 9726: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 9726 + name: + type: string + example: 'XeniosVision' + 9727: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 9727 + name: + type: string + example: 'Xgen Studios' + 9728: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 9728 + name: + type: string + example: 'Xibalba Studios' + 9729: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 9729 + name: + type: string + example: 'Xicat Interactive' + 9730: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 9730 + name: + type: string + example: 'Xigma Games' + 10333: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 10333 + name: + type: string + example: 'Xilam' + 9732: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 9732 + name: + type: string + example: 'Xing Entertainment' + 9734: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 9734 + name: + type: string + example: 'XL Games' + 9735: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 9735 + name: + type: string + example: 'Xonox' + 9736: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 9736 + name: + type: string + example: 'Xortrapa Soft' + 10310: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 10310 + name: + type: string + example: 'XPEC' + 9737: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 9737 + name: + type: string + example: 'XPEC Entertainment' + 10309: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 10309 + name: + type: string + example: 'XPEC Entertainment, Inc.' + 9739: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 9739 + name: + type: string + example: 'XS Games' + 9740: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 9740 + name: + type: string + example: 'XSEED' + 9741: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 9741 + name: + type: string + example: 'Xtal Sword' + 9742: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 9742 + name: + type: string + example: 'Xtalsoft' + 9743: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 9743 + name: + type: string + example: 'XYLA Entertainment' + 9744: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 9744 + name: + type: string + example: 'Xype' + 9745: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 9745 + name: + type: string + example: 'XYZ Productions' + 9747: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 9747 + name: + type: string + example: 'Y''s K' + 9748: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 9748 + name: + type: string + example: 'Ya2' + 9749: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 9749 + name: + type: string + example: 'Yachiyo Electronics' + 9750: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 9750 + name: + type: string + example: 'Yacht Club Games' + 9751: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 9751 + name: + type: string + example: 'Yager Development' + 9754: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 9754 + name: + type: string + example: 'Yakiniku Banzai' + 9755: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 9755 + name: + type: string + example: 'Yakuza Studio' + 9756: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 9756 + name: + type: string + example: 'Yal' + 9757: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 9757 + name: + type: string + example: 'Yang Cheng' + 9758: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 9758 + name: + type: string + example: 'Yangyang Mobile' + 9759: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 9759 + name: + type: string + example: 'Yankee Game Technology' + 9760: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 9760 + name: + type: string + example: 'Ybarra Productions' + 10344: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 10344 + name: + type: string + example: 'Yeli Orog' + 9761: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 9761 + name: + type: string + example: 'Yellow Horn' + 9762: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 9762 + name: + type: string + example: 'Yellowbelly Corporation' + 9763: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 9763 + name: + type: string + example: 'Yeti Trunk' + 9764: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 9764 + name: + type: string + example: 'YGGDRAZIL' + 9765: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 9765 + name: + type: string + example: 'Yih Lung' + 9766: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 9766 + name: + type: string + example: 'YJM Games' + 9767: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 9767 + name: + type: string + example: 'YMCAT' + 10330: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 10330 + name: + type: string + example: 'Ymir' + 9768: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 9768 + name: + type: string + example: 'Yoostar Entertainment' + 9769: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 9769 + name: + type: string + example: 'Yosemite Entertainment' + 9770: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 9770 + name: + type: string + example: 'Yoshidayama Workshop' + 9771: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 9771 + name: + type: string + example: 'YOTSUBANE' + 9772: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 9772 + name: + type: string + example: 'Youda Games' + 9773: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 9773 + name: + type: string + example: 'Young Horses' + 9775: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 9775 + name: + type: string + example: 'Yoyo Entertainment' + 9776: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 9776 + name: + type: string + example: 'YoYo Games' + 9777: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 9777 + name: + type: string + example: 'Ys Net' + 9778: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 9778 + name: + type: string + example: 'Yuan Works' + 9953: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 9953 + name: + type: string + example: 'Yuji Koga' + 10325: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 10325 + name: + type: string + example: 'Yuke''s' + 9779: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 9779 + name: + type: string + example: 'Yuke''s Co. Ltd.' + 9784: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 9784 + name: + type: string + example: 'Yuke''s Future Media Creations' + 9785: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 9785 + name: + type: string + example: 'Yuke''s Future Media Creators' + 9786: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 9786 + name: + type: string + example: 'Yuke''s Media Creations' + 9789: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 9789 + name: + type: string + example: 'Yuki Enterprise' + 9791: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 9791 + name: + type: string + example: 'Yukito Products' + 9792: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 9792 + name: + type: string + example: 'Yumekobo Co., Ltd.' + 9794: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 9794 + name: + type: string + example: 'YummyYummyTummy' + 9795: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 9795 + name: + type: string + example: 'YUMMYYUMMYTUMMY / INC.' + 9796: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 9796 + name: + type: string + example: 'Yun Sung' + 9797: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 9797 + name: + type: string + example: 'Yutaka' + 9798: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 9798 + name: + type: string + example: 'Yuto Ramon' + 9799: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 9799 + name: + type: string + example: 'Yuu Yuu' + 9800: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 9800 + name: + type: string + example: 'Z Production' + 9801: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 9801 + name: + type: string + example: 'Z-Axis, Ltd.' + 9805: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 9805 + name: + type: string + example: 'Z2, Inc' + 10334: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 10334 + name: + type: string + example: 'Z4G0' + 9807: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 9807 + name: + type: string + example: 'Zaccaria' + 9808: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 9808 + name: + type: string + example: 'Zach Matley' + 9809: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 9809 + name: + type: string + example: 'Zachtronics Industries' + 9811: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 9811 + name: + type: string + example: 'ZackBellGames' + 9812: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 9812 + name: + type: string + example: 'Zafiro' + 9813: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 9813 + name: + type: string + example: 'Zamastyle' + 9814: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 9814 + name: + type: string + example: 'Zamuse' + 9815: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 9815 + name: + type: string + example: 'Zap' + 9816: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 9816 + name: + type: string + example: 'Zaratustra Productions' + 9817: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 9817 + name: + type: string + example: 'ZCT Systems' + 9818: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 9818 + name: + type: string + example: 'Zeal' + 9820: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 9820 + name: + type: string + example: 'Zealsoft' + 9821: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 9821 + name: + type: string + example: 'Zeboyd Games' + 9822: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 9822 + name: + type: string + example: 'Zedtwo Game Design Studio' + 9825: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 9825 + name: + type: string + example: 'Zeiva Inc' + 9826: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 9826 + name: + type: string + example: 'Zellers' + 9827: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 9827 + name: + type: string + example: 'Zemi Interactive' + 9828: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 9828 + name: + type: string + example: 'Zemina' + 9829: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 9829 + name: + type: string + example: 'Zen Studios' + 9830: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 9830 + name: + type: string + example: 'Zener Works' + 9831: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 9831 + name: + type: string + example: 'ZeniMax Media' + 9832: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 9832 + name: + type: string + example: 'Zenith Blue' + 9833: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 9833 + name: + type: string + example: 'Zenitone Microsec Ltd.' + 9834: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 9834 + name: + type: string + example: 'Zeno Rogue' + 9835: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 9835 + name: + type: string + example: 'ZenSoft' + 9836: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 9836 + name: + type: string + example: 'zep' + 9837: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 9837 + name: + type: string + example: 'Zepetto' + 9838: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 9838 + name: + type: string + example: 'Zeppelin' + 9839: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 9839 + name: + type: string + example: 'Zeppelin Games Limited' + 9842: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 9842 + name: + type: string + example: 'Zeppelin Studio' + 9843: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 9843 + name: + type: string + example: 'ZeptoLab' + 9844: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 9844 + name: + type: string + example: 'Zero Hour' + 9845: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 9845 + name: + type: string + example: 'Zero One' + 9846: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 9846 + name: + type: string + example: 'Zero Point Software' + 9847: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 9847 + name: + type: string + example: 'Zero Sum Games' + 9848: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 9848 + name: + type: string + example: 'Zerodiv' + 9849: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 9849 + name: + type: string + example: 'Zeroscale' + 9850: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 9850 + name: + type: string + example: 'Zeus Software' + 9852: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 9852 + name: + type: string + example: 'Zhong Chongren' + 9853: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 9853 + name: + type: string + example: 'Zieldak' + 9854: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 9854 + name: + type: string + example: 'Zig Zag Creations' + 9855: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 9855 + name: + type: string + example: 'Zig Zag Software' + 9856: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 9856 + name: + type: string + example: 'ZiggySoft' + 9857: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 9857 + name: + type: string + example: 'Zigurat' + 9858: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 9858 + name: + type: string + example: 'ZigZagIsland' + 9859: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 9859 + name: + type: string + example: 'Zilec-Zenitone' + 9861: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 9861 + name: + type: string + example: 'Zima Software' + 9862: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 9862 + name: + type: string + example: 'Zimag' + 10337: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 10337 + name: + type: string + example: 'Zindagi Games' + 9864: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 9864 + name: + type: string + example: 'Zinkia Entertainment' + 9865: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 9865 + name: + type: string + example: 'Zip Technologies' + 9866: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 9866 + name: + type: string + example: 'Zipper Interactive' + 9868: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 9868 + name: + type: string + example: 'Zippo Games' + 9869: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 9869 + name: + type: string + example: 'Zoe Mode' + 9870: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 9870 + name: + type: string + example: 'Zoetrope Interactive' + 9871: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 9871 + name: + type: string + example: 'Zogo' + 9872: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 9872 + name: + type: string + example: 'Zoink' + 9873: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 9873 + name: + type: string + example: 'Zoink!' + 9874: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 9874 + name: + type: string + example: 'Zojoi' + 9876: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 9876 + name: + type: string + example: 'Zombie Cow Studios' + 9875: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 9875 + name: + type: string + example: 'Zombie Studios' + 9879: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 9879 + name: + type: string + example: 'Zonitron Productions' + 9880: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 9880 + name: + type: string + example: 'Zono Inc.' + 9883: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 9883 + name: + type: string + example: 'ZOO Corporation' + 9884: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 9884 + name: + type: string + example: 'Zoo Digital Publishing' + 9882: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 9882 + name: + type: string + example: 'Zoo Entertainment' + 9887: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 9887 + name: + type: string + example: 'Zoo Games' + 9888: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 9888 + name: + type: string + example: 'Zoom' + 10130: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 10130 + name: + type: string + example: 'Zoom Out Games' + 9889: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 9889 + name: + type: string + example: 'Zoonami' + 9890: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 9890 + name: + type: string + example: 'ZootFly' + 9891: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 9891 + name: + type: string + example: 'Zordix' + 9892: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 9892 + name: + type: string + example: 'zSlide' + 9893: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 9893 + name: + type: string + example: 'ZUN Soft' + 10298: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 10298 + name: + type: string + example: 'Zuxxez Entertainment' + 9895: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 9895 + name: + type: string + example: 'Zynga' + 9896: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 9896 + name: + type: string + example: 'Zyrinx' + 9897: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 9897 + name: + type: string + example: 'ZyX' + 143: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 143 + name: + type: string + example: '三协资讯' + remaining_monthly_allowance: + type: integer + minimum: 0 + example: 258 + extra_allowance: + type: integer + minimum: 0 + example: 0 + Publishers: + type: object + required: + - code + - status + - data + - remaining_monthly_allowance + - extra_allowance + properties: + code: + type: integer + minimum: 0 + example: 200 + status: + type: string + example: 'Success' + data: + type: object + required: + - count + - publishers + properties: + count: + type: integer + minimum: 0 + example: 4271 + publishers: + type: object + required: + - "2374" + - "2090" + - "4045" + - "5898" + - "3542" + - "1188" + - "2557" + - "4313" + - "3796" + - "3610" + - "402" + - "1770" + - "8301" + - "1233" + - "448" + - "2349" + - "523" + - "2103" + - "1612" + - "4626" + - "250" + - "5831" + - "3688" + - "825" + - "8" + - "957" + - "498" + - "1733" + - "3760" + - "1719" + - "1569" + - "3181" + - "2044" + - "1343" + - "4198" + - "5537" + - "1891" + - "3250" + - "2458" + - "5443" + - "63" + - "1114" + - "1649" + - "4568" + - "5716" + - "2173" + - "4714" + - "4257" + - "5919" + - "2496" + - "3201" + - "1745" + - "3197" + - "670" + - "3400" + - "1433" + - "2486" + - "4431" + - "5660" + - "8219" + - "2441" + - "5713" + - "1305" + - "3340" + - "3591" + - "8253" + - "1327" + - "381" + - "839" + - "879" + - "1004" + - "2274" + - "2263" + - "1982" + - "765" + - "2830" + - "5175" + - "5148" + - "4041" + - "907" + - "1020" + - "3922" + - "2421" + - "4091" + - "3944" + - "3644" + - "2111" + - "3975" + - "3140" + - "1752" + - "4187" + - "5167" + - "4158" + - "3615" + - "5570" + - "5145" + - "211" + - "3118" + - "5795" + - "1147" + - "28" + - "4179" + - "1532" + - "2941" + - "113" + - "3190" + - "2646" + - "4578" + - "4421" + - "1155" + - "1194" + - "8316" + - "5250" + - "3211" + - "2027" + - "5146" + - "4128" + - "1075" + - "289" + - "1441" + - "33" + - "622" + - "186" + - "680" + - "200" + - "4325" + - "3708" + - "3953" + - "5277" + - "2640" + - "1694" + - "4119" + - "4351" + - "707" + - "5461" + - "3398" + - "1154" + - "8228" + - "3275" + - "2403" + - "2404" + - "3747" + - "1726" + - "3890" + - "5757" + - "2808" + - "2734" + - "8224" + - "5698" + - "497" + - "2407" + - "2382" + - "1482" + - "1899" + - "2045" + - "3253" + - "8243" + - "4167" + - "4086" + - "8226" + - "3719" + - "4245" + - "917" + - "4672" + - "354" + - "5925" + - "5807" + - "1333" + - "4290" + - "5194" + - "1006" + - "5400" + - "1838" + - "3447" + - "3535" + - "2988" + - "2833" + - "1215" + - "5462" + - "4963" + - "3995" + - "310" + - "5658" + - "5244" + - "720" + - "3831" + - "1146" + - "1054" + - "1286" + - "5111" + - "428" + - "5470" + - "4827" + - "4358" + - "1080" + - "5852" + - "1526" + - "361" + - "8225" + - "5918" + - "3299" + - "733" + - "2037" + - "266" + - "2453" + - "575" + - "207" + - "83" + - "312" + - "3973" + - "245" + - "3951" + - "5151" + - "3315" + - "3274" + - "2355" + - "4211" + - "4044" + - "5642" + - "1216" + - "3015" + - "8236" + - "5520" + - "3252" + - "5252" + - "736" + - "3822" + - "1090" + - "1366" + - "3462" + - "1940" + - "2294" + - "4605" + - "4811" + - "746" + - "2261" + - "3939" + - "5455" + - "2030" + - "3636" + - "3268" + - "4886" + - "2460" + - "1153" + - "4047" + - "1905" + - "363" + - "1764" + - "8317" + - "1780" + - "2409" + - "5842" + - "1679" + - "1126" + - "790" + - "5849" + - "267" + - "2596" + - "229" + - "5041" + - "3261" + - "2681" + - "1439" + - "4878" + - "3405" + - "1642" + - "159" + - "4590" + - "1972" + - "3057" + - "3282" + - "747" + - "5497" + - "4907" + - "1751" + - "4727" + - "2893" + - "573" + - "677" + - "1698" + - "2776" + - "2166" + - "1707" + - "3041" + - "5844" + - "4175" + - "3989" + - "5198" + - "759" + - "4417" + - "1504" + - "3642" + - "237" + - "142" + - "263" + - "2650" + - "3978" + - "1846" + - "4338" + - "1943" + - "1529" + - "314" + - "241" + - "2483" + - "5560" + - "698" + - "5641" + - "3206" + - "3332" + - "2269" + - "3579" + - "8220" + - "4959" + - "179" + - "2855" + - "5724" + - "2310" + - "70" + - "5612" + - "3179" + - "506" + - "30" + - "593" + - "743" + - "2525" + - "5553" + - "281" + - "4490" + - "58" + - "141" + - "4819" + - "5632" + - "5084" + - "5183" + - "5806" + - "3889" + - "4716" + - "709" + - "802" + - "5215" + - "3185" + - "1620" + - "8310" + - "5357" + - "352" + - "1622" + - "8212" + - "755" + - "5480" + - "4624" + - "1595" + - "2260" + - "4817" + - "3295" + - "5676" + - "3532" + - "3164" + - "4854" + - "3955" + - "2869" + - "1275" + - "5691" + - "8318" + - "5037" + - "5089" + - "4025" + - "3251" + - "3531" + - "518" + - "3894" + - "139" + - "4" + - "1381" + - "232" + - "2743" + - "4459" + - "248" + - "57" + - "3234" + - "6" + - "1414" + - "3732" + - "1993" + - "2806" + - "995" + - "8204" + - "474" + - "3884" + - "5575" + - "5685" + - "5752" + - "4140" + - "1729" + - "4960" + - "4549" + - "4800" + - "3687" + - "3159" + - "5528" + - "5507" + - "1013" + - "4410" + - "456" + - "3127" + - "3086" + - "918" + - "4378" + - "1671" + - "2128" + - "1743" + - "3122" + - "5418" + - "2629" + - "4809" + - "4918" + - "5201" + - "5163" + - "3202" + - "8235" + - "1910" + - "5486" + - "1500" + - "4274" + - "2824" + - "4846" + - "2545" + - "1163" + - "3754" + - "5610" + - "34" + - "748" + - "5130" + - "2898" + - "3273" + - "5380" + - "5717" + - "5060" + - "2594" + - "4302" + - "1853" + - "1430" + - "598" + - "5393" + - "4612" + - "1630" + - "1536" + - "562" + - "5207" + - "5370" + - "2658" + - "1487" + - "417" + - "2106" + - "1984" + - "2765" + - "1555" + - "1908" + - "3133" + - "4996" + - "410" + - "1796" + - "1573" + - "348" + - "1499" + - "803" + - "1082" + - "4935" + - "2117" + - "1831" + - "1221" + - "114" + - "4366" + - "4401" + - "5739" + - "4451" + - "3982" + - "3522" + - "3703" + - "1663" + - "8319" + - "830" + - "1797" + - "5063" + - "1597" + - "1851" + - "47" + - "1712" + - "3427" + - "3155" + - "3867" + - "3786" + - "1773" + - "2761" + - "638" + - "2779" + - "2033" + - "1097" + - "4921" + - "5569" + - "399" + - "5289" + - "5673" + - "1728" + - "1231" + - "1638" + - "3402" + - "3281" + - "5192" + - "4498" + - "2749" + - "4842" + - "2158" + - "2356" + - "4962" + - "1521" + - "1094" + - "4144" + - "5762" + - "1677" + - "2867" + - "1601" + - "4570" + - "5366" + - "2772" + - "3694" + - "2364" + - "3440" + - "3654" + - "5749" + - "979" + - "1564" + - "5078" + - "2316" + - "2415" + - "2564" + - "1725" + - "5080" + - "3816" + - "105" + - "626" + - "3458" + - "1784" + - "4830" + - "4922" + - "5789" + - "531" + - "327" + - "5269" + - "4754" + - "3148" + - "3306" + - "5973" + - "5577" + - "2139" + - "5458" + - "335" + - "565" + - "299" + - "4850" + - "178" + - "2894" + - "2548" + - "5364" + - "1419" + - "4520" + - "3357" + - "5076" + - "1596" + - "3559" + - "2322" + - "3669" + - "1518" + - "2003" + - "3827" + - "8195" + - "3099" + - "3757" + - "284" + - "2318" + - "2692" + - "2146" + - "9" + - "615" + - "616" + - "588" + - "1030" + - "2078" + - "1565" + - "8320" + - "4966" + - "1266" + - "1602" + - "5854" + - "2378" + - "5519" + - "5091" + - "954" + - "4064" + - "3895" + - "2555" + - "5625" + - "3394" + - "5177" + - "3892" + - "4288" + - "4774" + - "4936" + - "1340" + - "258" + - "4931" + - "2865" + - "991" + - "2540" + - "819" + - "5131" + - "8207" + - "3509" + - "5777" + - "2619" + - "3145" + - "640" + - "407" + - "1071" + - "5710" + - "1646" + - "2335" + - "4514" + - "2251" + - "2718" + - "4367" + - "851" + - "1345" + - "4494" + - "3284" + - "2256" + - "5031" + - "1241" + - "5184" + - "1978" + - "2987" + - "2632" + - "2413" + - "2393" + - "1570" + - "3630" + - "5903" + - "2083" + - "2400" + - "376" + - "5827" + - "3386" + - "4218" + - "4739" + - "2265" + - "8252" + - "5464" + - "5256" + - "2233" + - "8200" + - "8248" + - "4509" + - "5374" + - "3874" + - "1874" + - "704" + - "4462" + - "192" + - "4441" + - "2511" + - "4162" + - "452" + - "242" + - "2221" + - "1220" + - "1261" + - "4001" + - "1835" + - "2340" + - "3724" + - "1432" + - "5181" + - "4260" + - "1556" + - "3051" + - "3091" + - "2514" + - "1470" + - "3854" + - "3008" + - "1616" + - "5516" + - "5881" + - "5732" + - "3042" + - "473" + - "1143" + - "2982" + - "5871" + - "1991" + - "1640" + - "16" + - "1387" + - "3411" + - "3602" + - "2617" + - "881" + - "2136" + - "1893" + - "1395" + - "536" + - "257" + - "5203" + - "1781" + - "8232" + - "5684" + - "1654" + - "1834" + - "269" + - "2907" + - "4270" + - "4824" + - "2479" + - "1319" + - "5771" + - "3354" + - "5273" + - "5437" + - "712" + - "3377" + - "832" + - "5410" + - "657" + - "1966" + - "5389" + - "4230" + - "4058" + - "5866" + - "3866" + - "5591" + - "3425" + - "5165" + - "4159" + - "4637" + - "4385" + - "4906" + - "527" + - "1359" + - "2859" + - "5706" + - "5655" + - "2148" + - "4136" + - "1185" + - "515" + - "4138" + - "5850" + - "3174" + - "4363" + - "4615" + - "4893" + - "1178" + - "3647" + - "774" + - "4300" + - "3119" + - "3925" + - "5599" + - "1999" + - "5127" + - "1903" + - "4398" + - "8237" + - "4050" + - "1435" + - "2163" + - "5589" + - "3168" + - "1522" + - "4040" + - "68" + - "3374" + - "2538" + - "4203" + - "2396" + - "1687" + - "1850" + - "1226" + - "897" + - "5628" + - "3373" + - "4108" + - "5451" + - "5171" + - "2050" + - "2051" + - "2177" + - "2289" + - "5555" + - "3368" + - "721" + - "1650" + - "5811" + - "5033" + - "5848" + - "5179" + - "2519" + - "4353" + - "1069" + - "3954" + - "27" + - "4877" + - "4567" + - "1053" + - "4416" + - "341" + - "4137" + - "1318" + - "5281" + - "3297" + - "3690" + - "270" + - "316" + - "3285" + - "3519" + - "3917" + - "2278" + - "2919" + - "1909" + - "4460" + - "2000" + - "1867" + - "5361" + - "1135" + - "2968" + - "73" + - "3238" + - "4694" + - "4625" + - "2763" + - "5897" + - "2603" + - "4805" + - "1005" + - "1547" + - "3516" + - "4466" + - "31" + - "2202" + - "2145" + - "8242" + - "3048" + - "1413" + - "4781" + - "4333" + - "3946" + - "5424" + - "4182" + - "3843" + - "2140" + - "5761" + - "5447" + - "5558" + - "2890" + - "1015" + - "3709" + - "2878" + - "4307" + - "902" + - "5000" + - "969" + - "3173" + - "611" + - "5419" + - "1631" + - "55" + - "1058" + - "5160" + - "4083" + - "741" + - "1920" + - "3541" + - "600" + - "2702" + - "4986" + - "1938" + - "5258" + - "8234" + - "5678" + - "5670" + - "4336" + - "3198" + - "2576" + - "5493" + - "1830" + - "150" + - "2385" + - "980" + - "3167" + - "2835" + - "1686" + - "1854" + - "5694" + - "2291" + - "3826" + - "4506" + - "1293" + - "37" + - "815" + - "567" + - "4686" + - "2834" + - "2320" + - "4956" + - "539" + - "5081" + - "1076" + - "3544" + - "4479" + - "3189" + - "2829" + - "4209" + - "3598" + - "1551" + - "273" + - "4719" + - "8210" + - "2828" + - "4172" + - "4151" + - "1998" + - "3839" + - "2737" + - "1207" + - "3556" + - "4043" + - "369" + - "375" + - "5354" + - "3131" + - "2739" + - "1836" + - "5254" + - "1429" + - "5951" + - "1176" + - "4310" + - "5890" + - "3941" + - "4572" + - "8249" + - "1724" + - "1683" + - "873" + - "2686" + - "2072" + - "5839" + - "1746" + - "861" + - "5383" + - "2703" + - "8216" + - "760" + - "1485" + - "4771" + - "5843" + - "2569" + - "1626" + - "4709" + - "5005" + - "572" + - "3963" + - "1619" + - "1180" + - "4207" + - "2245" + - "1223" + - "2807" + - "5804" + - "5473" + - "628" + - "1044" + - "3289" + - "3069" + - "1782" + - "1050" + - "4265" + - "5257" + - "171" + - "1559" + - "1463" + - "5253" + - "5840" + - "394" + - "5105" + - "4670" + - "3043" + - "1855" + - "629" + - "2506" + - "3421" + - "3396" + - "3107" + - "5768" + - "424" + - "2001" + - "3916" + - "3885" + - "3507" + - "2716" + - "3144" + - "2957" + - "1989" + - "2384" + - "922" + - "2956" + - "1027" + - "2679" + - "4432" + - "8245" + - "3873" + - "2094" + - "4067" + - "2306" + - "1737" + - "8215" + - "457" + - "4816" + - "160" + - "5586" + - "4873" + - "1639" + - "3834" + - "4724" + - "2361" + - "8321" + - "336" + - "182" + - "3618" + - "4087" + - "3833" + - "2759" + - "715" + - "4206" + - "2872" + - "4149" + - "1839" + - "2952" + - "1535" + - "4949" + - "4276" + - "4677" + - "578" + - "5882" + - "2437" + - "3700" + - "2325" + - "4169" + - "1517" + - "5602" + - "2977" + - "1351" + - "1350" + - "500" + - "35" + - "1676" + - "1025" + - "82" + - "786" + - "3573" + - "2523" + - "5356" + - "3903" + - "4729" + - "2790" + - "4326" + - "1352" + - "843" + - "2539" + - "4037" + - "4879" + - "5371" + - "2246" + - "3533" + - "1540" + - "4928" + - "1227" + - "4487" + - "3473" + - "807" + - "4773" + - "2073" + - "8312" + - "899" + - "8262" + - "997" + - "5753" + - "1024" + - "3739" + - "3265" + - "2362" + - "5517" + - "5526" + - "2527" + - "1453" + - "1603" + - "26" + - "398" + - "1842" + - "2224" + - "2431" + - "5872" + - "5436" + - "3742" + - "4381" + - "4348" + - "3264" + - "1862" + - "1074" + - "4418" + - "690" + - "3308" + - "4948" + - "5421" + - "2346" + - "209" + - "8280" + - "4439" + - "2868" + - "2" + - "987" + - "1872" + - "3835" + - "4720" + - "1009" + - "4019" + - "2905" + - "8218" + - "1436" + - "5431" + - "5428" + - "5701" + - "8241" + - "3356" + - "309" + - "1765" + - "2447" + - "4705" + - "2900" + - "251" + - "1800" + - "1722" + - "5924" + - "1495" + - "717" + - "2326" + - "927" + - "1841" + - "3620" + - "2216" + - "1321" + - "2647" + - "482" + - "4539" + - "1046" + - "78" + - "4644" + - "1503" + - "1488" + - "723" + - "3016" + - "5237" + - "1921" + - "5496" + - "3007" + - "1922" + - "3508" + - "2022" + - "4836" + - "749" + - "2888" + - "3583" + - "486" + - "4157" + - "320" + - "3585" + - "8201" + - "2816" + - "3030" + - "5677" + - "2066" + - "3070" + - "5320" + - "3329" + - "679" + - "3111" + - "1272" + - "4732" + - "1549" + - "185" + - "2922" + - "5074" + - "2471" + - "222" + - "5332" + - "8246" + - "2665" + - "4135" + - "3182" + - "3749" + - "3493" + - "1701" + - "3498" + - "2100" + - "3412" + - "4512" + - "4174" + - "804" + - "4255" + - "4943" + - "2690" + - "1199" + - "5221" + - "1934" + - "4329" + - "525" + - "2240" + - "5816" + - "836" + - "1696" + - "4267" + - "3693" + - "4427" + - "8214" + - "4184" + - "115" + - "3530" + - "1486" + - "4171" + - "4486" + - "4360" + - "5085" + - "1623" + - "4941" + - "5679" + - "385" + - "872" + - "1753" + - "1981" + - "2738" + - "4026" + - "2532" + - "914" + - "4525" + - "2271" + - "3697" + - "2704" + - "4950" + - "3024" + - "3146" + - "1964" + - "4178" + - "3165" + - "1665" + - "1062" + - "3009" + - "2062" + - "96" + - "2773" + - "1271" + - "3722" + - "3776" + - "3463" + - "540" + - "5967" + - "4543" + - "3106" + - "5948" + - "4112" + - "731" + - "2339" + - "5230" + - "883" + - "2387" + - "210" + - "2392" + - "8276" + - "5876" + - "8250" + - "641" + - "5774" + - "2330" + - "770" + - "5776" + - "3365" + - "8302" + - "5227" + - "3094" + - "4681" + - "3966" + - "4228" + - "118" + - "3097" + - "632" + - "4415" + - "53" + - "1681" + - "4006" + - "4521" + - "3864" + - "1876" + - "2832" + - "542" + - "4882" + - "2820" + - "3998" + - "132" + - "2918" + - "5726" + - "5415" + - "4762" + - "4088" + - "4161" + - "3912" + - "3631" + - "3384" + - "4622" + - "3002" + - "2717" + - "1560" + - "2383" + - "5583" + - "5546" + - "4808" + - "400" + - "2081" + - "2945" + - "2369" + - "919" + - "126" + - "563" + - "2312" + - "2789" + - "1827" + - "3752" + - "416" + - "889" + - "1911" + - "4801" + - "4120" + - "282" + - "5767" + - "2860" + - "5826" + - "3701" + - "295" + - "4450" + - "5571" + - "3207" + - "4932" + - "3524" + - "2846" + - "4013" + - "1884" + - "29" + - "1997" + - "1363" + - "2351" + - "4079" + - "5574" + - "2098" + - "4412" + - "2644" + - "1666" + - "2467" + - "1324" + - "2844" + - "3887" + - "8292" + - "4788" + - "8265" + - "2892" + - "1539" + - "2861" + - "5874" + - "1923" + - "5401" + - "2901" + - "3063" + - "3366" + - "1320" + - "3237" + - "829" + - "3679" + - "3721" + - "4021" + - "1859" + - "2541" + - "5972" + - "2944" + - "543" + - "2002" + - "471" + - "2474" + - "2929" + - "4320" + - "1365" + - "3823" + - "4770" + - "3035" + - "5690" + - "3800" + - "3696" + - "1106" + - "2386" + - "777" + - "4190" + - "1815" + - "8244" + - "5539" + - "2129" + - "1268" + - "2331" + - "3787" + - "951" + - "1803" + - "2171" + - "1837" + - "4347" + - "2304" + - "5026" + - "3208" + - "2687" + - "1865" + - "1119" + - "5550" + - "80" + - "5796" + - "4621" + - "2551" + - "4142" + - "3779" + - "796" + - "5532" + - "3931" + - "8209" + - "2191" + - "3545" + - "4258" + - "3136" + - "5438" + - "898" + - "168" + - "4373" + - "8240" + - "5028" + - "3413" + - "2847" + - "3772" + - "2376" + - "4132" + - "2110" + - "1647" + - "8264" + - "5126" + - "4759" + - "5521" + - "3549" + - "109" + - "5595" + - "5782" + - "5013" + - "5798" + - "4902" + - "5834" + - "1840" + - "4259" + - "8385" + - "1424" + - "2693" + - "4914" + - "3741" + - "1955" + - "5224" + - "3713" + - "2698" + - "862" + - "3290" + - "4697" + - "4471" + - "462" + - "4548" + - "4537" + - "3848" + - "8193" + - "1198" + - "2706" + - "763" + - "8277" + - "108" + - "1624" + - "3877" + - "1759" + - "5088" + - "974" + - "2923" + - "8260" + - "4814" + - "3248" + - "5492" + - "2074" + - "388" + - "467" + - "1347" + - "3375" + - "1166" + - "1461" + - "3215" + - "4834" + - "4666" + - "4883" + - "1270" + - "5246" + - "3480" + - "757" + - "3673" + - "2713" + - "4913" + - "4008" + - "4738" + - "1550" + - "1026" + - "3771" + - "2724" + - "5680" + - "2683" + - "2764" + - "5644" + - "4789" + - "5723" + - "3489" + - "4541" + - "1785" + - "3169" + - "5681" + - "4170" + - "121" + - "4648" + - "2313" + - "2631" + - "5152" + - "1262" + - "1772" + - "4682" + - "1819" + - "553" + - "5904" + - "5952" + - "2696" + - "3220" + - "3838" + - "1519" + - "167" + - "2503" + - "505" + - "333" + - "5541" + - "1089" + - "2341" + - "4204" + - "5233" + - "2990" + - "3646" + - "372" + - "5057" + - "5565" + - "4150" + - "268" + - "91" + - "205" + - "1557" + - "4513" + - "1407" + - "5556" + - "2515" + - "3730" + - "2063" + - "2980" + - "2127" + - "4616" + - "2708" + - "2925" + - "1926" + - "1187" + - "5912" + - "2651" + - "146" + - "2721" + - "926" + - "8205" + - "1667" + - "2560" + - "2359" + - "1492" + - "3586" + - "4084" + - "3932" + - "1714" + - "2056" + - "1527" + - "2039" + - "1792" + - "4334" + - "392" + - "1437" + - "5069" + - "4629" + - "3576" + - "315" + - "3187" + - "5035" + - "4853" + - "303" + - "2709" + - "3488" + - "332" + - "4407" + - "1203" + - "4596" + - "4469" + - "754" + - "253" + - "426" + - "8256" + - "2873" + - "925" + - "4904" + - "1735" + - "1900" + - "5457" + - "2230" + - "4756" + - "2536" + - "464" + - "4797" + - "5460" + - "4499" + - "5832" + - "2628" + - "5284" + - "4246" + - "5469" + - "5958" + - "5367" + - "8238" + - "2189" + - "345" + - "5533" + - "8257" + - "3624" + - "1760" + - "3614" + - "2134" + - "5955" + - "1987" + - "3370" + - "4753" + - "265" + - "1217" + - "3859" + - "3844" + - "4755" + - "3674" + - "3292" + - "74" + - "4744" + - "5038" + - "377" + - "2389" + - "5542" + - "3660" + - "1493" + - "2746" + - "5751" + - "3260" + - "2282" + - "3665" + - "2875" + - "2059" + - "5188" + - "4791" + - "487" + - "2767" + - "8221" + - "1010" + - "5837" + - "1823" + - "8233" + - "2720" + - "2288" + - "3900" + - "2084" + - "5260" + - "1079" + - "1604" + - "591" + - "8275" + - "2126" + - "166" + - "5735" + - "3446" + - "1967" + - "2684" + - "4881" + - "2319" + - "3191" + - "472" + - "8290" + - "643" + - "3175" + - "4003" + - "4481" + - "3613" + - "4015" + - "2581" + - "4403" + - "1189" + - "325" + - "3322" + - "4283" + - "1035" + - "4736" + - "260" + - "718" + - "218" + - "2903" + - "4200" + - "2428" + - "2857" + - "2196" + - "1112" + - "2147" + - "2985" + - "8286" + - "4420" + - "5699" + - "2610" + - "5653" + - "3756" + - "1159" + - "5138" + - "1339" + - "3566" + - "1706" + - "820" + - "4349" + - "5161" + - "4225" + - "4010" + - "3105" + - "2793" + - "2798" + - "5695" + - "1060" + - "3060" + - "2735" + - "5340" + - "5648" + - "4372" + - "2518" + - "4665" + - "5875" + - "4517" + - "880" + - "344" + - "8213" + - "72" + - "813" + - "2021" + - "871" + - "4785" + - "5189" + - "3656" + - "3737" + - "3451" + - "5845" + - "3052" + - "5853" + - "4056" + - "2924" + - "4076" + - "2604" + - "1177" + - "2315" + - "4007" + - "2433" + - "1789" + - "2159" + - "5110" + - "3223" + - "1145" + - "3675" + - "5214" + - "5025" + - "1158" + - "4995" + - "3061" + - "4085" + - "3876" + - "3648" + - "2461" + - "2102" + - "2309" + - "702" + - "1148" + - "8271" + - "62" + - "5518" + - "1088" + - "3952" + - "1478" + - "1965" + - "2343" + - "2762" + - "3692" + - "868" + - "330" + - "1657" + - "4405" + - "2849" + - "397" + - "933" + - "4212" + - "2948" + - "1544" + - "801" + - "42" + - "908" + - "1775" + - "4792" + - "1787" + - "1758" + - "909" + - "3525" + - "3920" + - "5456" + - "671" + - "4761" + - "3707" + - "5902" + - "1763" + - "1615" + - "4969" + - "5930" + - "2417" + - "1983" + - "4220" + - "681" + - "1913" + - "1501" + - "2004" + - "94" + - "663" + - "4344" + - "5825" + - "2449" + - "5908" + - "2397" + - "2589" + - "5064" + - "3101" + - "4848" + - "4496" + - "3381" + - "3974" + - "2328" + - "3263" + - "3961" + - "2802" + - "3104" + - "3503" + - "8294" + - "3886" + - "3095" + - "1064" + - "5674" + - "4649" + - "4692" + - "3128" + - "4106" + - "5008" + - "1661" + - "2444" + - "4768" + - "3984" + - "5529" + - "2533" + - "5968" + - "189" + - "5905" + - "2851" + - "1768" + - "4757" + - "4760" + - "5823" + - "3563" + - "3947" + - "1956" + - "5551" + - "1688" + - "4497" + - "3484" + - "3259" + - "5578" + - "3495" + - "243" + - "2611" + - "4282" + - "2676" + - "4242" + - "3997" + - "393" + - "1230" + - "1659" + - "2966" + - "5637" + - "3753" + - "1033" + - "412" + - "8272" + - "1374" + - "3562" + - "8269" + - "116" + - "3134" + - "1695" + - "4241" + - "2093" + - "5971" + - "8255" + - "5219" + - "3481" + - "4399" + - "3255" + - "2664" + - "3205" + - "2099" + - "1590" + - "81" + - "2254" + - "5202" + - "1953" + - "1605" + - "4235" + - "1481" + - "2902" + - "4767" + - "2283" + - "4370" + - "4795" + - "1808" + - "4750" + - "4321" + - "5963" + - "3769" + - "2401" + - "3949" + - "2904" + - "4892" + - "4201" + - "686" + - "2736" + - "3605" + - "1086" + - "5704" + - "4160" + - "576" + - "5585" + - "1912" + - "3465" + - "8197" + - "4826" + - "4340" + - "2463" + - "3967" + - "4502" + - "1606" + - "8270" + - "5896" + - "8322" + - "624" + - "4953" + - "2036" + - "5021" + - "1829" + - "1474" + - "2967" + - "3277" + - "2176" + - "50" + - "1309" + - "998" + - "3879" + - "3929" + - "5868" + - "1051" + - "4874" + - "4688" + - "5087" + - "23" + - "140" + - "5355" + - "633" + - "431" + - "2258" + - "3942" + - "1250" + - "4829" + - "2153" + - "1124" + - "2812" + - "3044" + - "4269" + - "2484" + - "1950" + - "3855" + - "3039" + - "1475" + - "3515" + - "2411" + - "517" + - "5754" + - "3735" + - "8202" + - "496" + - "3740" + - "4532" + - "1003" + - "304" + - "2659" + - "934" + - "2863" + - "291" + - "3882" + - "5935" + - "5116" + - "3914" + - "3802" + - "2130" + - "5733" + - "2973" + - "623" + - "3616" + - "4862" + - "3658" + - "5190" + - "4569" + - "4278" + - "661" + - "3981" + - "4807" + - "4387" + - "2733" + - "1458" + - "3718" + - "228" + - "4647" + - "4696" + - "4446" + - "767" + - "1368" + - "4604" + - "3296" + - "3363" + - "4656" + - "2908" + - "2601" + - "1680" + - "2423" + - "2211" + - "4661" + - "1553" + - "1113" + - "4312" + - "1985" + - "4016" + - "8323" + - "645" + - "4793" + - "4143" + - "8239" + - "2791" + - "1128" + - "1400" + - "1254" + - "2275" + - "5809" + - "4812" + - "2041" + - "5251" + - "3733" + - "4409" + - "2485" + - "4772" + - "3047" + - "5584" + - "3075" + - "3476" + - "8324" + - "1892" + - "5342" + - "4991" + - "89" + - "594" + - "8314" + - "8273" + - "4790" + - "4743" + - "4392" + - "3685" + - "2742" + - "932" + - "5316" + - "903" + - "2488" + - "2420" + - "1401" + - "4535" + - "2219" + - "475" + - "2837" + - "2264" + - "5120" + - "4062" + - "1847" + - "4799" + - "4967" + - "25" + - "5205" + - "8192" + - "45" + - "2406" + - "2667" + - "942" + - "4840" + - "5906" + - "8325" + - "2653" + - "1711" + - "966" + - "2741" + - "967" + - "1093" + - "1656" + - "5124" + - "993" + - "3393" + - "2071" + - "3911" + - "4216" + - "3811" + - "4060" + - "2958" + - "2170" + - "5432" + - "8313" + - "5173" + - "2217" + - "5122" + - "2826" + - "2520" + - "5929" + - "5773" + - "2621" + - "3677" + - "1546" + - "2507" + - "3723" + - "2499" + - "766" + - "5270" + - "4735" + - "4803" + - "4315" + - "5032" + - "2822" + - "1817" + - "3863" + - "3246" + - "2443" + - "5503" + - "1021" + - "630" + - "201" + - "8231" + - "5196" + - "3080" + - "1771" + - "276" + - "4332" + - "3691" + - "5564" + - "4511" + - "4713" + - "659" + - "2225" + - "1970" + - "2391" + - "5675" + - "3112" + - "4699" + - "533" + - "8274" + - "8326" + - "5321" + - "1717" + - "716" + - "8267" + - "279" + - "1621" + - "4341" + - "4733" + - "413" + - "4444" + - "4009" + - "5703" + - "5103" + - "764" + - "4124" + - "788" + - "331" + - "5639" + - "1580" + - "579" + - "2091" + - "2034" + - "3664" + - "343" + - "867" + - "4383" + - "3117" + - "1133" + - "940" + - "1476" + - "124" + - "2296" + - "4017" + - "1858" + - "4860" + - "5292" + - "846" + - "3750" + - "4564" + - "597" + - "2970" + - "1864" + - "5899" + - "1232" + - "805" + - "3479" + - "4751" + - "2823" + - "1977" + - "2377" + - "2024" + - "5954" + - "2121" + - "5950" + - "2048" + - "5050" + - "2975" + - "3986" + - "5011" + - "2597" + - "4436" + - "714" + - "1402" + - "337" + - "4077" + - "4523" + - "3066" + - "887" + - "3333" + - "4885" + - "516" + - "1111" + - "415" + - "2416" + - "1791" + - "2887" + - "1866" + - "2055" + - "4263" + - "838" + - "1096" + - "4718" + - "4563" + - "465" + - "1513" + - "1104" + - "2559" + - "2043" + - "3983" + - "1186" + - "2228" + - "5217" + - "5568" + - "4749" + - "4068" + - "2212" + - "2701" + - "3805" + - "3258" + - "2854" + - "4395" + - "4468" + - "2670" + - "3426" + - "3464" + - "4181" + - "206" + - "4213" + - "3436" + - "1287" + - "2723" + - "2468" + - "5082" + - "5007" + - "1845" + - "554" + - "1036" + - "196" + - "1" + - "1852" + - "2663" + - "1078" + - "5652" + - "5581" + - "672" + - "3619" + - "2783" + - "2184" + - "2363" + - "5065" + - "41" + - "1774" + - "1310" + - "1697" + - "4831" + - "1411" + - "1644" + - "3913" + - "982" + - "3305" + - "3328" + - "1693" + - "1083" + - "1736" + - "2434" + - "2697" + - "4973" + - "555" + - "3870" + - "5083" + - "97" + - "4702" + - "4376" + - "4114" + - "8229" + - "4234" + - "1871" + - "3734" + - "5396" + - "5615" + - "3017" + - "90" + - "3434" + - "2181" + - "4786" + - "8386" + - "4536" + - "2257" + - "4533" + - "1632" + - "2897" + - "3582" + - "758" + - "5962" + - "507" + - "1813" + - "1700" + - "2237" + - "383" + - "3348" + - "2675" + - "5847" + - "4443" + - "3055" + - "2482" + - "5055" + - "1918" + - "3695" + - "3852" + - "833" + - "5647" + - "2052" + - "88" + - "5552" + - "756" + - "5891" + - "2476" + - "2213" + - "1868" + - "990" + - "3672" + - "1067" + - "962" + - "4740" + - "2446" + - "3072" + - "5580" + - "3766" + - "1066" + - "2338" + - "4849" + - "4875" + - "306" + - "2780" + - "5002" + - "4226" + - "3376" + - "4891" + - "5323" + - "3336" + - "5112" + - "4516" + - "4833" + - "4277" + - "4680" + - "2031" + - "423" + - "2978" + - "674" + - "5226" + - "1116" + - "5484" + - "391" + - "1988" + - "1906" + - "5755" + - "3229" + - "1954" + - "2200" + - "2811" + - "1337" + - "8196" + - "1727" + - "2118" + - "1515" + - "1002" + - "1091" + - "3807" + - "5879" + - "39" + - "1000" + - "3746" + - "3964" + - "5525" + - "259" + - "5294" + - "8251" + - "2267" + - "130" + - "5923" + - "1405" + - "4858" + - "1173" + - "988" + - "3129" + - "158" + - "18" + - "1543" + - "5243" + - "2215" + - "2214" + - "3001" + - "3031" + - "1946" + - "294" + - "8279" + - "1092" + - "4527" + - "4314" + - "3203" + - "2809" + - "1778" + - "5465" + - "1131" + - "8307" + - "1689" + - "5508" + - "2995" + - "3422" + - "1703" + - "2113" + - "1995" + - "2454" + - "3149" + - "1933" + - "4701" + - "557" + - "5390" + - "2398" + - "133" + - "246" + - "174" + - "1633" + - "1790" + - "2912" + - "728" + - "1200" + - "3188" + - "706" + - "3778" + - "4813" + - "885" + - "840" + - "8303" + - "5195" + - "900" + - "3980" + - "3814" + - "2107" + - "8288" + - "3666" + - "4748" + - "2969" + - "1225" + - "3307" + - "2057" + - "2699" + - "3856" + - "5467" + - "2165" + - "4703" + - "1627" + - "964" + - "5267" + - "3581" + - "3523" + - "4957" + - "4946" + - "5239" + - "3" + - "252" + - "8285" + - "3938" + - "2856" + - "3071" + - "4145" + - "3930" + - "1344" + - "3813" + - "676" + - "3575" + - "648" + - "4391" + - "3027" + - "5232" + - "2262" + - "4445" + - "3667" + - "5204" + - "4783" + - "989" + - "4671" + - "175" + - "2247" + - "1690" + - "2885" + - "1655" + - "2487" + - "3339" + - "2673" + - "176" + - "3475" + - "2069" + - "3410" + - "5172" + - "5324" + - "1801" + - "841" + - "5430" + - "3875" + - "738" + - "687" + - "8315" + - "4354" + - "4576" + - "4769" + - "1204" + - "3862" + - "911" + - "1288" + - "658" + - "5121" + - "2079" + - "3548" + - "5548" + - "5023" + - "373" + - "3715" + - "3965" + - "513" + - "3311" + - "2054" + - "4185" + - "2241" + - "478" + - "5712" + - "5965" + - "5241" + - "1440" + - "4609" + - "5821" + - "2817" + - "43" + - "1167" + - "4518" + - "4122" + - "3627" + - "5743" + - "5634" + - "920" + - "3388" + - "2450" + - "5764" + - "5003" + - "8268" + - "5414" + - "4899" + - "5914" + - "2972" + - "2489" + - "953" + - "1963" + - "4561" + - "1682" + - "1818" + - "948" + - "5885" + - "627" + - "1833" + - "4602" + - "4784" + - "2135" + - "2060" + - "1192" + - "3000" + - "2201" + - "5936" + - "5959" + - "490" + - "3240" + - "4152" + - "382" + - "131" + - "2803" + - "5446" + - "2505" + - "5044" + - "5353" + - "4467" + - "8298" + - "3684" + - "5300" + - "795" + - "2298" + - "1253" + - "3414" + - "1793" + - "2390" + - "8261" + - "1822" + - "1730" + - "4636" + - "5006" + - "2137" + - "655" + - "3650" + - "1563" + - "4782" + - "1382" + - "323" + - "3461" + - "4547" + - "1077" + - "711" + - "4328" + - "317" + - "958" + - "2585" + - "1523" + - "3819" + - "3574" + - "571" + - "3102" + - "3865" + - "2879" + - "4864" + - "5398" + - "328" + - "5665" + - "5720" + - "3728" + - "2666" + - "2365" + - "1298" + - "860" + - "8300" + - "8327" + - "5485" + - "4552" + - "3770" + - "4419" + - "2745" + - "170" + - "411" + - "1049" + - "2732" + - "1566" + - "2965" + - "156" + - "4295" + - "3103" + - "2580" + - "2399" + - "5688" + - "4033" + - "2947" + - "4611" + - "1857" + - "4968" + - "4796" + - "4865" + - "3313" + - "4331" + - "1218" + - "3652" + - "4947" + - "177" + - "4613" + - "5949" + - "2402" + - "2512" + - "2648" + - "8222" + - "4440" + - "4958" + - "1184" + - "3584" + - "1120" + - "5422" + - "3077" + - "5623" + - "8198" + - "5490" + - "2913" + - "2042" + - "1777" + - "4134" + - "1520" + - "3034" + - "5115" + - "2207" + - "1894" + - "1814" + - "5097" + - "3761" + - "2494" + - "1028" + - "4188" + - "4476" + - "1742" + - "3558" + - "4987" + - "3056" + - "2457" + - "1258" + - "745" + - "8328" + - "2800" + - "2630" + - "4261" + - "8289" + - "5657" + - "4092" + - "2917" + - "2242" + - "5937" + - "3218" + - "4489" + - "5944" + - "3546" + - "3589" + - "4582" + - "3726" + - "1530" + - "669" + - "5911" + - "2350" + - "1748" + - "682" + - "8308" + - "3014" + - "2141" + - "1779" + - "3588" + - "3353" + - "2232" + - "975" + - "3087" + - "144" + - "8217" + - "61" + - "5969" + - "5661" + - "1860" + - "3572" + - "3547" + - "1625" + - "3428" + - "4806" + - "4195" + - "2162" + - "8247" + - "3294" + - "1542" + - "660" + - "2999" + - "2524" + - "1658" + - "4587" + - "3156" + - "5920" + - "3578" + - "5296" + - "2623" + - "1672" + - "888" + - "5907" + - "2123" + - "4442" + - "439" + - "4065" + - "444" + - "972" + - "631" + - "3125" + - "884" + - "3910" + - "5159" + - "4221" + - "3716" + - "3026" + - "5280" + - "2951" + - "8223" + - "3235" + - "4551" + - "1191" + - "3918" + - "5784" + - "5440" + - "3330" + - "3138" + - "5645" + - "4397" + - "4232" + - "5113" + - "646" + - "3898" + - "5335" + - "5626" + - "4377" + - "5730" + - "3011" + - "2932" + - "1243" + - "1123" + - "4717" + - "5887" + - "3183" + - "3283" + - "5010" + - "387" + - "3139" + - "3902" + - "1029" + - "3204" + - "135" + - "3113" + - "4117" + - "2838" + - "4109" + - "2337" + - "5141" + - "5805" + - "1099" + - "2777" + - "977" + - "2637" + - "3904" + - "5305" + - "4779" + - "959" + - "2344" + - "4071" + - "3710" + - "2425" + - "3861" + - "2615" + - "5187" + - "4022" + - "1767" + - "530" + - "2810" + - "3801" + - "2070" + - "4628" + - "3236" + - "5117" + - "3020" + - "4433" + - "4199" + - "1629" + - "4544" + - "3419" + - "3543" + - "2624" + - "2625" + - "2381" + - "4437" + - "2068" + - "4659" + - "1045" + - "713" + - "2108" + - "4965" + - "5711" + - "2771" + - "2549" + - "2853" + - "3067" + - "2848" + - "4560" + - "3199" + - "3457" + - "1315" + - "51" + - "1125" + - "4345" + - "5957" + - "1614" + - "4505" + - "3022" + - "5593" + - "4810" + - "3358" + - "275" + - "2236" + - "3490" + - "8211" + - "547" + - "4323" + - "912" + - "3909" + - "570" + - "2961" + - "4597" + - "2023" + - "5363" + - "1431" + - "362" + - "2562" + - "1645" + - "1914" + - "120" + - "3151" + - "180" + - "5096" + - "5861" + - "1219" + - "5860" + - "1807" + - "869" + - "5734" + - "2953" + - "2781" + - "3214" + - "921" + - "1208" + - "5071" + - "147" + - "4559" + - "1418" + - "1190" + - "752" + - "2018" + - "4475" + - "1508" + - "5176" + - "1129" + - "4317" + - "5530" + - "2955" + - "3492" + - "4623" + - "1904" + - "984" + - "1710" + - "1038" + - "450" + - "119" + - "1877" + - "3577" + - "5483" + - "4715" + - "5801" + - "1798" + - "2657" + - "3049" + - "4780" + - "3655" + - "5208" + - "5829" + - "3907" + - "2994" + - "4876" + - "4105" + - "1825" + - "5559" + - "1213" + - "1574" + - "2521" + - "3943" + - "1127" + - "3482" + - "3437" + - "4988" + - "3074" + - "3820" + - "3445" + - "2989" + - "5274" + - "3845" + - "2712" + - "5222" + - "5489" + - "5306" + - "1357" + - "190" + - "1257" + - "5830" + - "2424" + - "1289" + - "4843" + - "1179" + - "2626" + - "3121" + - "1578" + - "3355" + - "4631" + - "4821" + - "2573" + - "1267" + - "3487" + - "1986" + - "2439" + - "2574" + - "1209" + - "1346" + - "2517" + - "4667" + - "3705" + - "583" + - "5604" + - "5740" + - "4455" + - "1575" + - "3881" + - "17" + - "4438" + - "5491" + - "4102" + - "3763" + - "5758" + - "3114" + - "4222" + - "944" + - "1976" + - "4425" + - "5046" + - "4080" + - "302" + - "3407" + - "955" + - "2500" + - "5855" + - "2227" + - "5794" + - "4577" + - "735" + - "1949" + - "1572" + - "5012" + - "3392" + - "4579" + - "828" + - "2239" + - "1282" + - "8281" + - "3968" + - "2114" + - "8266" + - "4039" + - "519" + - "1652" + - "319" + - "5276" + - "4859" + - "5477" + - "157" + - "1932" + - "5093" + - "5014" + - "1713" + - "3803" + - "2064" + - "5500" + - "441" + - "1674" + - "290" + - "4855" + - "2192" + - "3888" + - "4095" + - "4632" + - "2602" + - "2466" + - "3622" + - "1670" + - "3341" + - "664" + - "3040" + - "2187" + - "2358" + - "3592" + - "2143" + - "3448" + - "4723" + - "1653" + - "3362" + - "5786" + - "2290" + - "2782" + - "1172" + - "5472" + - "3611" + - "3233" + - "2005" + - "5750" + - "614" + - "2321" + - "8329" + - "1507" + - "5386" + - "38" + - "20" + - "127" + - "3474" + - "2866" + - "1423" + - "561" + - "3391" + - "2429" + - "3985" + - "5425" + - "2600" + - "5813" + - "8282" + - "776" + - "2197" + - "1738" + - "1497" + - "277" + - "254" + - "4531" + - "2229" + - "5501" + - "1628" + - "1794" + - "816" + - "15" + - "4194" + - "366" + - "346" + - "1055" + - "1806" + - "3793" + - "1274" + - "4464" + - "386" + - "454" + - "3896" + - "112" + - "558" + - "2430" + - "4180" + - "2799" + - "4365" + - "2366" + - "504" + - "1242" + - "3192" + - "2889" + - "4669" + - "3609" + - "5838" + - "4461" + - "3327" + - "3725" + - "5587" + - "4887" + - "76" + - "8311" + - "3347" + - "2906" + - "3098" + - "4610" + - "1383" + - "193" + - "396" + - "3262" + - "3689" + - "3976" + - "2279" + - "3568" + - "5635" + - "2852" + - "1635" + - "2997" + - "1554" + - "8208" + - "4734" + - "3312" + - "349" + - "1692" + - "3486" + - "1702" + - "2920" + - "2300" + - "4867" + - "2843" + - "3257" + - "4337" + - "5359" + - "5933" + - "538" + - "5579" + - "4452" + - "4054" + - "4251" + - "32" + - "145" + - "1314" + - "8287" + - "1975" + - "1636" + - "2405" + - "4327" + - "3293" + - "3657" + - "2976" + - "4524" + - "2513" + - "5608" + - "2654" + - "1447" + - "8284" + - "4125" + - "3417" + - "8291" + - "4997" + - "5671" + - "653" + - "2546" + - "3123" + - "688" + - "5672" + - "3625" + - "2077" + - "1332" + - "4248" + - "202" + - "5225" + - "1108" + - "5312" + - "5271" + - "4038" + - "4871" + - "5315" + - "965" + - "3878" + - "5700" + - "3977" + - "1342" + - "3304" + - "5454" + - "5961" + - "3999" + - "4964" + - "1643" + - "4529" + - "5785" + - "1769" + - "5392" + - "2649" + - "1579" + - "3054" + - "3720" + - "4296" + - "817" + - "2936" + - "1804" + - "3994" + - "2993" + - "2992" + - "5941" + - "4500" + - "4944" + - "1259" + - "2231" + - "4802" + - "5139" + - "4250" + - "60" + - "727" + - "503" + - "3758" + - "2996" + - "5020" + - "2478" + - "3254" + - "298" + - "5245" + - "326" + - "1935" + - "1334" + - "1234" + - "5119" + - "2840" + - "8299" + - "4825" + - "1915" + - "5800" + - "4123" + - "1467" + - "2248" + - "5549" + - "5009" + - "722" + - "5738" + - "3349" + - "4256" + - "2046" + - "4165" + - "5318" + - "3157" + - "4591" + - "3085" + - "1832" + - "5582" + - "1882" + - "5391" + - "3517" + - "1849" + - "2174" + - "3554" + - "952" + - "4163" + - "4002" + - "2927" + - "3178" + - "1404" + - "21" + - "8331" + - "8332" + - "14" + - "8333" + - "520" + - "1939" + - "8334" + - "8335" + - "8336" + - "8337" + - "19" + - "2542" + - "1364" + - "835" + - "8338" + - "1239" + - "8339" + - "8340" + - "8341" + - "8342" + - "1937" + - "2537" + - "4219" + - "8343" + - "8344" + - "8345" + - "1980" + - "8296" + - "8346" + - "1591" + - "8347" + - "8348" + - "77" + - "8349" + - "5554" + - "4048" + - "8351" + - "4954" + - "8352" + - "4346" + - "8353" + - "8354" + - "8355" + - "8356" + - "8357" + - "8358" + - "8359" + - "3078" + - "8360" + - "8361" + - "8362" + - "3645" + - "8364" + - "683" + - "8365" + - "8366" + - "8367" + - "8368" + - "8369" + - "8370" + - "8371" + - "8372" + - "8373" + - "8374" + - "8375" + - "3846" + - "8377" + - "3821" + - "1734" + - "1278" + - "2345" + - "5603" + - "896" + - "1668" + - "3160" + - "4284" + - "4369" + - "67" + - "5931" + - "2475" + - "1931" + - "2688" + - "1600" + - "3364" + - "4683" + - "4847" + - "5070" + - "1907" + - "4098" + - "1294" + - "2451" + - "3406" + - "2751" + - "4841" + - "3352" + - "1156" + - "395" + - "5765" + - "1673" + - "2561" + - "2792" + - "1228" + - "2194" + - "799" + - "3477" + - "5697" + - "1799" + - "3227" + - "2101" + - "5478" + - "2766" + - "5867" + - "5297" + - "1723" + - "556" + - "1494" + - "136" + - "12" + - "8304" + - "4057" + - "1373" + - "11" + - "2456" + - "149" + - "2827" + - "2728" + - "2787" + - "3759" + - "5090" + - "4868" + - "2563" + - "5747" + - "4838" + - "1138" + - "353" + - "1755" + - "3321" + - "8297" + - "3310" + - "4430" + - "3637" + - "4676" + - "2301" + - "2329" + - "719" + - "5178" + - "5352" + - "356" + - "3350" + - "4619" + - "4388" + - "8254" + - "2464" + - "5656" + - "5197" + - "595" + - "2092" + - "968" + - "2991" + - "4728" + - "3520" + - "1942" + - "937" + - "2125" + - "3351" + - "2884" + - "447" + - "79" + - "560" + - "2797" + - "1122" + - "5200" + - "2180" + - "4034" + - "5153" + - "2928" + - "3222" + - "882" + - "5286" + - "3059" + - "4798" + - "1056" + - "2132" + - "4196" + - "3661" + - "1422" + - "3452" + - "1669" + - "2535" + - "1001" + - "2481" + - "4608" + - "1805" + - "4645" + - "2786" + - "983" + - "104" + - "371" + - "3109" + - "5452" + - "639" + - "2895" + - "605" + - "2710" + - "1157" + - "4981" + - "75" + - "3512" + - "2104" + - "4018" + - "3194" + - "2203" + - "5387" + - "2755" + - "3643" + - "5728" + - "1675" + - "1251" + - "2195" + - "3242" + - "3744" + - "4940" + - "3176" + - "2502" + - "1137" + - "4901" + - "3629" + - "1307" + - "2204" + - "1721" + - "3736" + - "5408" + - "2379" + - "2566" + - "2636" + - "5630" + - "3659" + - "603" + - "599" + - "286" + - "1118" + - "1117" + - "4992" + - "5036" + - "3731" + - "4183" + - "585" + - "3897" + - "3804" + - "1586" + - "483" + - "5302" + - "4691" + - "2208" + - "4594" + - "1329" + - "2862" + - "1322" + - "1466" + - "56" + - "4097" + - "3608" + - "4298" + - "2530" + - "280" + - "3018" + - "5531" + - "123" + - "5488" + - "3564" + - "4971" + - "4362" + - "313" + - "950" + - "1951" + - "5828" + - "866" + - "5909" + - "2635" + - "5433" + - "3420" + - "3416" + - "3969" + - "4955" + - "2864" + - "4787" + - "2509" + - "2691" + - "3706" + - "3539" + - "2032" + - "3792" + - "4820" + - "848" + - "4794" + - "87" + - "5572" + - "2784" + - "463" + - "8387" + - "4589" + - "3580" + - "8378" + - "8379" + - "4164" + - "4979" + - "360" + - "2874" + - "2357" + - "2634" + - "5314" + - "821" + - "915" + - "370" + - "422" + - "4356" + - "1788" + - "3836" + - "2747" + - "3915" + - "3699" + - "5310" + - "95" + - "137" + - "3639" + - "3239" + - "2881" + - "389" + - "24" + - "5242" + - "1691" + - "2490" + - "342" + - "1960" + - "8293" + - "1065" + - "8380" + - "1757" + - "459" + - "652" + - "2352" + - "2285" + - "606" + - "1023" + - "3390" + - "4153" + - "5662" + - "111" + - "5883" + - "4837" + - "708" + - "1238" + - "5964" + - "5708" + - "742" + - "5649" + - "5514" + - "5718" + - "4746" + - "4726" + - "625" + - "2643" + - "4078" + - "4000" + - "2394" + - "2528" + - "730" + - "1007" + - "1061" + - "569" + - "339" + - "1875" + - "3540" + - "2138" + - "1290" + - "1824" + - "5210" + - "5228" + - "5062" + - "1014" + - "5395" + - "2234" + - "2616" + - "5319" + - "773" + - "792" + - "895" + - "2284" + - "3433" + - "1810" + - "2133" + - "2731" + - "823" + - "2606" + - "1648" + - "734" + - "1201" + - "2342" + - "3438" + - "5833" + - "2998" + - "8309" + - "4662" + - "5325" + - "3389" + - "1292" + - "5301" + - "4675" + - "2504" + - "5164" + - "703" + - "1162" + - "510" + - "288" + - "2959" + - "3162" + - "5790" + - "5417" + - "4818" + - "4072" + - "3081" + - "4872" + - "5426" + - "3088" + - "2937" + - "5682" + - "4215" + - "4693" + - "5846" + - "2295" + - "40" + - "1279" + - "2087" + - "3526" + - "4322" + - "2633" + - "2841" + - "5722" + - "4804" + - "3338" + - "2655" + - "5956" + - "511" + - "5358" + - "4942" + - "2725" + - "1973" + - "3380" + - "1634" + - "261" + - "5721" + - "2142" + - "2652" + - "3316" + - "3714" + - "155" + - "3158" + - "1222" + - "4601" + - "5763" + - "1826" + - "2292" + - "2501" + - "5079" + - "64" + - "878" + - "4343" + - "5640" + - "8227" + - "4073" + - "1761" + - "808" + - "2571" + - "3331" + - "247" + - "5638" + - "244" + - "5835" + - "4335" + - "2459" + - "4485" + - "2674" + - "2979" + - "1008" + - "949" + - "234" + - "4545" + - "1592" + - "4542" + - "780" + - "4020" + - "5236" + - "440" + - "484" + - "4641" + - "5596" + - "3851" + - "618" + - "1870" + - "1664" + - "5687" + - "5775" + - "4036" + - "1019" + - "2883" + - "2986" + - "5851" + - "2570" + - "4673" + - "5769" + - "164" + - "5505" + - "5381" + - "2472" + - "5643" + - "2605" + - "552" + - "4982" + - "3467" + - "4828" + - "855" + - "5375" + - "8382" + - "617" + - "1100" + - "1017" + - "1462" + - "324" + - "4394" + - "1302" + - "408" + - "1828" + - "4189" + - "4368" + - "901" + - "5633" + - "3857" + - "5209" + - "2151" + - "3280" + - "978" + - "5468" + - "4264" + - "2836" + - "2819" + - "2931" + - "2795" + - "847" + - "3812" + - "5524" + - "4352" + - "183" + - "5884" + - "649" + - "3050" + - "3137" + - "8295" + - "824" + - "1992" + - "1776" + - "1577" + - "701" + - "8383" + - "2226" + - "8263" + - "2839" + - "4166" + - "3045" + - "5499" + - "2080" + - "1212" + - "976" + - "1472" + - "8194" + - "110" + - "910" + - "4566" + - "7" + - "8305" + - "8306" + - "2223" + - "3893" + - "3090" + - "797" + - "2169" + - "5808" + - "1844" + - "98" + - "338" + - "992" + - "5802" + - "4522" + - "4614" + - "5411" + - "2729" + - "1901" + - "1331" + - "3478" + - "4845" + - "1016" + - "5873" + - "2188" + - "2327" + - "2082" + - "194" + - "4406" + - "8283" + - "3343" + - "1581" + - "5689" + - "3797" + - "2368" + - "5921" + - "4297" + - "512" + - "5557" + - "3698" + - "2825" + - "5513" + - "2694" + - "945" + - "943" + - "4229" + - "3082" + - "1325" + - "8199" + - "973" + - "4121" + - "3195" + - "2168" + - "1052" + - "13" + - "970" + - "3808" + - "322" + - "3775" + - "2185" + - "219" + - "1426" + - "1809" + - "8258" + - "5193" + - "2558" + - "1326" + - "1059" + - "4480" + - "2097" + - "1369" + - "4103" + - "2299" + - "4599" + - "693" + - "3653" + - "86" + - "151" + - "1109" + - "1087" + - "278" + - "2842" + - "5344" + - "3279" + - "2758" + - "3971" + - "2757" + - "3815" + - "165" + - "5439" + - "2199" + - "4070" + - "3314" + - "2641" + - "4888" + - "117" + - "358" + - "48" + - "1450" + - "3224" + - "5259" + - "1552" + - "4823" + - "4024" + - "3153" + - "725" + - "1110" + - "5966" + - "5051" + - "1715" + - "3840" + - "2218" + - "311" + - "769" + - "184" + - "521" + - "153" + - "635" + - "8206" + - "5481" + - "3727" + - "913" + - "906" + - "5598" + - "1152" + - "5099" + - "4177" + - "5351" + - "1316" + - "5527" + - "809" + - "3513" + - "169" + - "4447" + - "1063" + - "4752" + - "1452" + - "2119" + - "4005" + - "1101" + - "2164" + - "8384" + - "5745" + - "1072" + - "4880" + - "5180" + - "2568" + - "3058" + - "2179" + - "2896" + - "5960" + - "1593" + - "152" + - "2740" + - "5946" + - "5886" + - "3318" + - "1598" + - "2831" + - "4113" + - "4285" + - "1105" + - "996" + - "8278" + - "2544" + - "3267" + - "4674" + - "2553" + - "1448" + - "3455" + - "4927" + - "5600" + - "1979" + - "4457" + - "935" + - "853" + - "197" + - "3247" + - "4422" + - "3538" + - "1449" + - "5255" + - "3298" + - "2886" + - "2238" + - "2960" + - "292" + - "4607" + - "2353" + - "537" + - "1246" + - "590" + - "1252" + - "1516" + - "4129" + - "122" + - "3837" + - "2495" + - "4291" + - "859" + - "2926" + - "3603" + - "5953" + - "2682" + - "4937" + - "2452" + - "5405" + - "2656" + - "3126" + - "4279" + - "1255" + - "1211" + - "8203" + - "1371" + - "5238" + - "1149" + - "5926" + - "2025" + - "586" + - "647" + - "3587" + - "4630" + - "5169" + - "3300" + - "2273" + - "8230" + - "3798" + - "5857" + - "5248" + - "4492" + - "495" + - "5940" + - "665" + - "5182" + - "4698" + - "4870" + - "5199" + - "2821" + - "2845" + - "5865" + - "2040" + - "5566" + - "2813" + - "4974" + - "4131" + - "2680" + - "4700" + - "3511" + - "5856" + - "4342" + - "1011" + - "2172" + - "4573" + - "5696" + - "1919" + - "4252" + - "1945" + - "5067" + - "2067" + - "1214" + - "2876" + - "612" + - "5741" + - "2880" + - "3773" + - "4028" + - "4742" + - "5607" + - "5629" + - "2419" + - "2432" + - "3005" + - "3096" + - "4915" + - "5592" + - "1795" + - "2754" + - "5787" + - "3891" + - "4463" + - "3037" + - "2354" + - "3244" + - "1568" + - "4293" + - "2183" + - "673" + - "782" + - "3560" + - "5938" + - "2552" + - "3470" + - "4822" + - "4657" + - "634" + - "2410" + - "4141" + - "3046" + - "5453" + properties: + 2374: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 2374 + name: + type: string + example: '.GEARS Studios' + 2090: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 2090 + name: + type: string + example: '1-Pup Games' + 4045: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 4045 + name: + type: string + example: '10 out of 10' + 5898: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 5898 + name: + type: string + example: '10Ants Hill' + 3542: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 3542 + name: + type: string + example: '10tons Ltd.' + 1188: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 1188 + name: + type: string + example: '11 bit studios' + 2557: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 2557 + name: + type: string + example: '1337 & Senri LLC' + 4313: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 4313 + name: + type: string + example: '13AM Games' + 3796: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 3796 + name: + type: string + example: '17-BIT' + 3610: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 3610 + name: + type: string + example: '1985 Alternativo' + 402: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 402 + name: + type: string + example: '1C Company' + 1770: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 1770 + name: + type: string + example: '1C-Softclub' + 8301: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 8301 + name: + type: string + example: '1st Playable Productions, LLC' + 1233: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 1233 + name: + type: string + example: '2 Dawn Games' + 448: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 448 + name: + type: string + example: '2015, Inc' + 2349: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 2349 + name: + type: string + example: '20th Century Fox' + 523: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 523 + name: + type: string + example: '21st Century Entertainment Ltd.' + 2103: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 2103 + name: + type: string + example: '22 Cans' + 1612: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 1612 + name: + type: string + example: '24 Caret Games' + 4626: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 4626 + name: + type: string + example: '2600 Connection' + 250: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 250 + name: + type: string + example: '2D Boy' + 5831: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 5831 + name: + type: string + example: '2D-Retroperspectives' + 3688: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 3688 + name: + type: string + example: '2DEngine' + 825: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 825 + name: + type: string + example: '2K' + 8: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 8 + name: + type: string + example: '2K Games' + 957: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 957 + name: + type: string + example: '2K Play' + 498: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 498 + name: + type: string + example: '2K Sports' + 1733: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 1733 + name: + type: string + example: '2Play' + 3760: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 3760 + name: + type: string + example: '2tainment' + 1719: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 1719 + name: + type: string + example: '3 Sprockets' + 1569: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 1569 + name: + type: string + example: '3 Sprockets Pty Ltd' + 3181: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 3181 + name: + type: string + example: '30/30' + 2044: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 2044 + name: + type: string + example: '3000AD, Inc.' + 1343: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 1343 + name: + type: string + example: '345 Games' + 4198: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 4198 + name: + type: string + example: '34BigThings srl' + 5537: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 5537 + name: + type: string + example: '39 Steps' + 1891: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 1891 + name: + type: integer + minimum: 0 + example: 3909 + 3250: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 3250 + name: + type: string + example: '3BLACKDOT' + 2458: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 2458 + name: + type: string + example: '3D Realms Entertainment' + 5443: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 5443 + name: + type: string + example: '3D-Ages' + 63: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 63 + name: + type: string + example: '3DO' + 1114: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 1114 + name: + type: string + example: '3DO Company' + 1649: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 1649 + name: + type: string + example: '3f Interactive' + 4568: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 4568 + name: + type: string + example: '4 a.m. Crack' + 5716: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 5716 + name: + type: string + example: '4 Dimension Games' + 2173: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 2173 + name: + type: string + example: '4 Play' + 4714: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 4714 + name: + type: string + example: '49Games' + 4257: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 4257 + name: + type: string + example: '4CLRC Soft' + 5919: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 5919 + name: + type: string + example: '4HIT LTD' + 2496: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 2496 + name: + type: string + example: '4JStudios' + 3201: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 3201 + name: + type: string + example: '4Play/ScatoLogic' + 1745: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 1745 + name: + type: string + example: '4sdk' + 3197: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 3197 + name: + type: string + example: '5 Lives Studios' + 670: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 670 + name: + type: string + example: '505 Games' + 3400: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 3400 + name: + type: string + example: '576 KByte' + 1433: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 1433 + name: + type: string + example: '5pb.' + 2486: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 2486 + name: + type: string + example: '5th Planet Games' + 4431: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 4431 + name: + type: string + example: '64''er' + 5660: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 5660 + name: + type: string + example: '64G' + 8219: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 8219 + name: + type: string + example: '777 Studios' + 2441: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 2441 + name: + type: string + example: '7dfps.com' + 5713: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 5713 + name: + type: string + example: '7Levels' + 1305: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 1305 + name: + type: string + example: '7th Level' + 3340: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 3340 + name: + type: string + example: '7th Sense' + 3591: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 3591 + name: + type: string + example: '819kids' + 8253: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 8253 + name: + type: string + example: '8Floor Ltd.' + 1327: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 1327 + name: + type: string + example: '8ing' + 381: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 381 + name: + type: string + example: '8ing/Raizing' + 839: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 839 + name: + type: integer + minimum: 0 + example: 989 + 879: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 879 + name: + type: string + example: '989 Sports' + 1004: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 1004 + name: + type: string + example: '989 Studios' + 2274: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 2274 + name: + type: string + example: '9heads Game Studios' + 2263: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 2263 + name: + type: string + example: 'A Sharp, LLC' + 1982: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 1982 + name: + type: string + example: 'A Squared' + 765: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 765 + name: + type: string + example: 'A&F Software' + 2830: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 2830 + name: + type: string + example: 'A-Wave' + 5175: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 5175 + name: + type: string + example: 'A.E. Charlish' + 5148: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 5148 + name: + type: string + example: 'A.R. Software' + 4041: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 4041 + name: + type: string + example: 'A.R.E. System' + 907: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 907 + name: + type: string + example: 'A.S.K. Homework' + 1020: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 1020 + name: + type: string + example: 'A1 Games' + 3922: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 3922 + name: + type: string + example: 'Aackosoft International BV' + 2421: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 2421 + name: + type: string + example: 'Aardman Animations' + 4091: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 4091 + name: + type: string + example: 'Aardvark Action Software' + 3944: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 3944 + name: + type: string + example: 'Aaronix' + 3644: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 3644 + name: + type: string + example: 'Aatlantis Code' + 2111: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 2111 + name: + type: string + example: 'ABA Games' + 3975: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 3975 + name: + type: string + example: 'ABAB Soft' + 3140: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 3140 + name: + type: string + example: 'Abbex' + 1752: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 1752 + name: + type: string + example: 'Abbey Games' + 4187: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 4187 + name: + type: string + example: 'ABC Soft' + 5167: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 5167 + name: + type: string + example: 'Abersoft Limited' + 4158: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 4158 + name: + type: string + example: 'Able Co.' + 3615: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 3615 + name: + type: string + example: 'ABM' + 5570: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 5570 + name: + type: string + example: 'Abrakam' + 5145: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 5145 + name: + type: string + example: 'Abrasco Ltd.' + 211: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 211 + name: + type: string + example: 'Absolute Entertainment' + 3118: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 3118 + name: + type: string + example: 'Abstraction Games' + 5795: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 5795 + name: + type: string + example: 'Abylight' + 1147: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 1147 + name: + type: string + example: 'Access Software, Inc.' + 28: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 28 + name: + type: string + example: 'Acclaim Entertainment, Inc.' + 4179: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 4179 + name: + type: string + example: 'Acclaim Japan' + 1532: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 1532 + name: + type: string + example: 'Acclaim Sports' + 2941: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 2941 + name: + type: string + example: 'Accolade Europe Ltd.' + 113: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 113 + name: + type: string + example: 'Accolade, Inc.' + 3190: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 3190 + name: + type: string + example: 'Accurate Research, Inc.' + 2646: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 2646 + name: + type: string + example: 'ACE' + 4578: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 4578 + name: + type: string + example: 'Ace Games' + 4421: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 4421 + name: + type: string + example: 'Ace International Co., Ltd.' + 1155: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 1155 + name: + type: string + example: 'ACID' + 1194: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 1194 + name: + type: string + example: 'Acid Software' + 8316: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 8316 + name: + type: string + example: 'Acid Wizard Studio' + 5250: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 5250 + name: + type: string + example: 'Acom' + 3211: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 3211 + name: + type: string + example: 'Acornsoft' + 2027: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 2027 + name: + type: string + example: 'Acquire' + 5146: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 5146 + name: + type: string + example: 'Action Graphics' + 4128: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 4128 + name: + type: string + example: 'Actionsoft' + 1075: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 1075 + name: + type: string + example: 'Actionware Corporation' + 289: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 289 + name: + type: string + example: 'Active Enterprises Ltd.' + 1441: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 1441 + name: + type: string + example: 'Active Gaming Media' + 33: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 33 + name: + type: string + example: 'Activision' + 622: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 622 + name: + type: string + example: 'Activision (UK) Limited' + 186: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 186 + name: + type: string + example: 'Activision Blizzard, Inc.' + 680: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 680 + name: + type: string + example: 'Activision Value Publishing, Inc.' + 200: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 200 + name: + type: string + example: 'Actoz Soft' + 4325: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 4325 + name: + type: string + example: 'acttil' + 3708: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 3708 + name: + type: string + example: 'Actualize Ltd.' + 3953: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 3953 + name: + type: string + example: 'Addictive Games' + 5277: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 5277 + name: + type: string + example: 'Addison-Wesley Publishing Company, Inc.' + 2640: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 2640 + name: + type: string + example: 'Adrenalin Entertainment' + 1694: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 1694 + name: + type: string + example: 'Adult Swim Games' + 4119: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 4119 + name: + type: string + example: 'Advance Software Ltd.' + 4351: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 4351 + name: + type: string + example: 'Advanced Microcomputer Systems' + 707: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 707 + name: + type: string + example: 'Advanced Productions' + 5461: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 5461 + name: + type: string + example: 'Advantage Artworx' + 3398: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 3398 + name: + type: string + example: 'Adventure International' + 1154: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 1154 + name: + type: string + example: 'Adventure Soft Publishing Ltd.' + 8228: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 8228 + name: + type: string + example: 'Aegis Interactive Software' + 3275: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 3275 + name: + type: string + example: 'Aegis International' + 2403: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 2403 + name: + type: string + example: 'Aeria Games & Entertainment' + 2404: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 2404 + name: + type: string + example: 'Aerosoft GmbH' + 3747: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 3747 + name: + type: string + example: 'Aetherbyte Team' + 1726: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 1726 + name: + type: string + example: 'AFA Interactive' + 3890: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 3890 + name: + type: string + example: 'Afega' + 5757: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 5757 + name: + type: string + example: 'Affect Co.,Ltd' + 2808: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 2808 + name: + type: string + example: 'Agatsuma Entertainment' + 2734: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 2734 + name: + type: string + example: 'AGD Interactive' + 8224: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 8224 + name: + type: string + example: 'Age' + 5698: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 5698 + name: + type: string + example: 'Age of Fear' + 497: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 497 + name: + type: string + example: 'Agetec, Inc.' + 2407: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 2407 + name: + type: string + example: 'Agharta Studio' + 2382: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 2382 + name: + type: string + example: 'AGM Playism' + 1482: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 1482 + name: + type: string + example: 'AIA USA, Ltd.' + 1899: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 1899 + name: + type: string + example: 'Aicom Corporation' + 2045: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 2045 + name: + type: string + example: 'Airtight Games' + 3253: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 3253 + name: + type: string + example: 'Airwalk Studios' + 8243: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 8243 + name: + type: string + example: 'Aisystem Tokyo' + 4167: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 4167 + name: + type: string + example: 'Ajinomoto Co., Inc.' + 4086: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 4086 + name: + type: string + example: 'ak tronic Software & Services GmbH' + 8226: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 8226 + name: + type: string + example: 'Akabei Soft2' + 3719: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 3719 + name: + type: string + example: 'Akaei plc' + 4245: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 4245 + name: + type: string + example: 'Akaoni Studio' + 917: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 917 + name: + type: string + example: 'Akella' + 4672: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 4672 + name: + type: string + example: 'Akinai Games' + 354: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 354 + name: + type: string + example: 'Aksys Games' + 5925: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 5925 + name: + type: string + example: 'Akupara Games' + 5807: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 5807 + name: + type: string + example: 'Al Alamiah' + 1333: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 1333 + name: + type: string + example: 'Alari' + 4290: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 4290 + name: + type: string + example: 'Alawar Entertainment, Inc.' + 5194: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 5194 + name: + type: string + example: 'Alawar Premium' + 1006: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 1006 + name: + type: string + example: 'Alchemist' + 5400: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 5400 + name: + type: string + example: 'Alda Games' + 1838: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 1838 + name: + type: string + example: 'Aldorlea Games' + 3447: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 3447 + name: + type: string + example: 'Alexandr Oresco' + 3535: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 3535 + name: + type: string + example: 'Alfa System' + 2988: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 2988 + name: + type: string + example: 'Alfred Lam' + 2833: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 2833 + name: + type: string + example: 'Alice Soft' + 1215: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 1215 + name: + type: string + example: 'Alientrap' + 5462: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 5462 + name: + type: string + example: 'Alim' + 4963: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 4963 + name: + type: string + example: 'Alkterios Games LLC' + 3995: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 3995 + name: + type: string + example: 'All Seeing Eye Games' + 310: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 310 + name: + type: string + example: 'Allan' + 5658: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 5658 + name: + type: string + example: 'Alliance Digital Media' + 5244: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 5244 + name: + type: string + example: 'Allied Leisure Industries, Inc.' + 720: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 720 + name: + type: string + example: 'Alligata Software Ltd.' + 3831: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 3831 + name: + type: string + example: 'Allumer, Ltd.' + 1146: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 1146 + name: + type: string + example: 'Almathera Systems' + 1054: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 1054 + name: + type: string + example: 'Almost Human' + 1286: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 1286 + name: + type: string + example: 'Alpes Soft' + 5111: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 5111 + name: + type: string + example: 'alpha' + 428: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 428 + name: + type: string + example: 'Alpha Denshi Co., Ltd.' + 5470: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 5470 + name: + type: string + example: 'Alpha-Omega Software' + 4827: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 4827 + name: + type: string + example: 'Alpha-Unit' + 4358: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 4358 + name: + type: string + example: 'Alta Co., Ltd.' + 1080: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 1080 + name: + type: string + example: 'Alternative Software Ltd.' + 5852: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 5852 + name: + type: string + example: 'Alti' + 1526: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 1526 + name: + type: string + example: 'Altron Corporation' + 361: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 361 + name: + type: string + example: 'Amanita Design' + 8225: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 8225 + name: + type: string + example: 'Amaterasu Software' + 5918: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 5918 + name: + type: string + example: 'AMC' + 3299: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 3299 + name: + type: string + example: 'Amenip' + 733: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 733 + name: + type: string + example: 'American Action AB' + 2037: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 2037 + name: + type: string + example: 'American Bishoujo' + 266: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 266 + name: + type: string + example: 'American Game Cartridges, Inc.' + 2453: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 2453 + name: + type: string + example: 'American Interactive Media' + 575: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 575 + name: + type: string + example: 'American Laser Games, Inc.' + 207: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 207 + name: + type: string + example: 'American Sammy Corporation' + 83: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 83 + name: + type: string + example: 'American Softworks Corporation' + 312: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 312 + name: + type: string + example: 'American Technos, Inc.' + 3973: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 3973 + name: + type: string + example: 'American Treco Corporation' + 245: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 245 + name: + type: string + example: 'American Video Entertainment' + 3951: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 3951 + name: + type: string + example: 'Americana Software Limited' + 5151: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 5151 + name: + type: string + example: 'AmeriCorp' + 3315: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 3315 + name: + type: string + example: 'Amersoft' + 3274: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 3274 + name: + type: string + example: 'AMI Co., Ltd.' + 2355: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 2355 + name: + type: string + example: 'Amiga Corporation' + 4211: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 4211 + name: + type: string + example: 'Amiga Fun' + 4044: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 4044 + name: + type: string + example: 'Amiganuts United' + 5642: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 5642 + name: + type: string + example: 'Ample Software' + 1216: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 1216 + name: + type: string + example: 'Amplitude Studios' + 3015: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 3015 + name: + type: string + example: 'Amsoft' + 8236: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 8236 + name: + type: string + example: 'Amstar Electronics' + 5520: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 5520 + name: + type: string + example: 'AmstradGamer' + 3252: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 3252 + name: + type: string + example: 'Amtex' + 5252: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 5252 + name: + type: string + example: 'Amuse World' + 736: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 736 + name: + type: string + example: 'ANACONDA' + 3822: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 3822 + name: + type: string + example: 'Anarchy Enterprises' + 1090: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 1090 + name: + type: string + example: 'Anco Software Ltd.' + 1366: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 1366 + name: + type: string + example: 'Anda Miro Entertainment Co. LTD' + 3462: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 3462 + name: + type: string + example: 'AndrewWatt96' + 1940: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 1940 + name: + type: string + example: 'Angel' + 2294: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 2294 + name: + type: string + example: 'Angry Mob Games' + 4605: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 4605 + name: + type: string + example: 'Anima Game Studio' + 4811: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 4811 + name: + type: string + example: 'Animoca XL' + 746: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 746 + name: + type: string + example: 'Anirog Software' + 2261: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 2261 + name: + type: string + example: 'Ankama Games' + 3939: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 3939 + name: + type: string + example: 'ANMA' + 5455: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 5455 + name: + type: string + example: 'Annapurna Interactive' + 2030: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 2030 + name: + type: string + example: 'Anozor SARL' + 3636: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 3636 + name: + type: string + example: 'Answer Software' + 3268: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 3268 + name: + type: string + example: 'Antagonist' + 4886: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 4886 + name: + type: string + example: 'AntonioND' + 2460: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 2460 + name: + type: string + example: 'Anuman Interactive' + 1153: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 1153 + name: + type: string + example: 'Apache Software Limited' + 4047: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 4047 + name: + type: string + example: 'APC&TCP' + 1905: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 1905 + name: + type: string + example: 'Apex Computer Productions' + 363: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 363 + name: + type: string + example: 'Apogee Software, Ltd.' + 1764: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 1764 + name: + type: string + example: 'Apollo, Inc.' + 8317: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 8317 + name: + type: string + example: 'Application Systems Heidelberg' + 1780: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 1780 + name: + type: string + example: 'Apus Software' + 2409: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 2409 + name: + type: string + example: 'Aquaplus' + 5842: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 5842 + name: + type: string + example: 'Aquiris Game Studio' + 1679: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 1679 + name: + type: string + example: 'Arachnid Games' + 1126: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 1126 + name: + type: string + example: 'Arc Developments' + 790: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 790 + name: + type: string + example: 'Arc System Works Co., Ltd.' + 5849: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 5849 + name: + type: string + example: 'Arcade Distillery LLC' + 267: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 267 + name: + type: string + example: 'Arcadia' + 2596: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 2596 + name: + type: string + example: 'Arcadia Corporation' + 229: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 229 + name: + type: string + example: 'Arcadia Systems, Inc.' + 5041: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 5041 + name: + type: string + example: 'Arcana Software Limited' + 3261: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 3261 + name: + type: string + example: 'Arcane Kids' + 2681: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 2681 + name: + type: string + example: 'Arcanum Computing' + 1439: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 1439 + name: + type: string + example: 'Arcen Games' + 4878: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 4878 + name: + type: string + example: 'Arch' + 3405: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 3405 + name: + type: string + example: 'Archive Entertainment' + 1642: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 1642 + name: + type: string + example: 'Arctic Anteater' + 159: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 159 + name: + type: string + example: 'Arena Entertainment' + 4590: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 4590 + name: + type: string + example: 'Arena Graphics' + 1972: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 1972 + name: + type: string + example: 'Argus Press Software Ltd.' + 3057: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 3057 + name: + type: string + example: 'Arika Co., Ltd.' + 3282: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 3282 + name: + type: string + example: 'Ariolasoft' + 747: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 747 + name: + type: string + example: 'Ariolasoft UK' + 5497: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 5497 + name: + type: string + example: 'Aristocrat' + 4907: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 4907 + name: + type: string + example: 'Armenia Ltd.' + 1751: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 1751 + name: + type: string + example: 'Armor Games' + 4727: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 4727 + name: + type: string + example: 'Aroma' + 2893: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 2893 + name: + type: string + example: 'Art & Magic' + 573: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 573 + name: + type: string + example: 'Art Data Interactive, Inc.' + 677: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 677 + name: + type: string + example: 'Artdink' + 1698: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 1698 + name: + type: string + example: 'Artery Studios' + 2776: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 2776 + name: + type: string + example: 'Artic Computing' + 2166: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 2166 + name: + type: string + example: 'Artifex Mundi' + 1707: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 1707 + name: + type: string + example: 'Artifice Studio' + 3041: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 3041 + name: + type: string + example: 'Artificial Hair Bros. Production' + 5844: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 5844 + name: + type: string + example: 'Artificial Studios, Inc.' + 4175: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 4175 + name: + type: string + example: 'Artillery Games, Inc.' + 3989: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 3989 + name: + type: string + example: 'Artix Entertainment' + 5198: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 5198 + name: + type: string + example: 'Artnumeris' + 759: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 759 + name: + type: string + example: 'Artronic Limited' + 4417: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 4417 + name: + type: string + example: 'Artworx Software Co, Inc.' + 1504: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 1504 + name: + type: string + example: 'ARUSH Entertainment' + 3642: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 3642 + name: + type: string + example: 'Aruze Corp.' + 237: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 237 + name: + type: string + example: 'ASCII Corporation' + 142: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 142 + name: + type: string + example: 'ASCII Entertainment Software, Inc.' + 263: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 263 + name: + type: string + example: 'Asciiware' + 2650: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 2650 + name: + type: string + example: 'Ascon GmbH' + 3978: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 3978 + name: + type: string + example: 'Asder' + 1846: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 1846 + name: + type: string + example: 'Ashby Computers and Graphics Ltd.' + 4338: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 4338 + name: + type: string + example: 'Asixa' + 1943: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 1943 + name: + type: string + example: 'ASK Co. Ltd.' + 1529: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 1529 + name: + type: string + example: 'Ask Kodansha' + 314: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 314 + name: + type: string + example: 'Asmik Ace Entertainment' + 241: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 241 + name: + type: string + example: 'Asmik Corp. of America' + 2483: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 2483 + name: + type: string + example: 'Asobimo, Inc.' + 5560: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 5560 + name: + type: string + example: 'Aspect Co. Ltd.' + 698: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 698 + name: + type: string + example: 'Aspyr Media, Inc.' + 5641: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 5641 + name: + type: string + example: 'Assemble Entertainment' + 3206: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 3206 + name: + type: string + example: 'Asteristic Game Studio' + 3332: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 3332 + name: + type: string + example: 'Asteroid Base' + 2269: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 2269 + name: + type: string + example: 'Astragon' + 3579: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 3579 + name: + type: string + example: 'astragon Entertainment GmbH' + 8220: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 8220 + name: + type: string + example: 'Astragon Software' + 4959: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 4959 + name: + type: string + example: 'Astrosaurus Games' + 179: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 179 + name: + type: string + example: 'Astrum Nival' + 2855: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 2855 + name: + type: string + example: 'Asylum Entertainment Ltd.' + 5724: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 5724 + name: + type: string + example: 'Asymmetric Publications' + 2310: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 2310 + name: + type: string + example: 'Atari Corp. (UK) Ltd.' + 70: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 70 + name: + type: string + example: 'Atari Games' + 5612: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 5612 + name: + type: string + example: 'Atari Germany' + 3179: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 3179 + name: + type: string + example: 'Atari Program Exchange' + 506: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 506 + name: + type: string + example: 'Atari SA' + 30: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 30 + name: + type: string + example: 'Atari, Inc.' + 593: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 593 + name: + type: string + example: 'AtariAge' + 743: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 743 + name: + type: string + example: 'Atarisoft' + 2525: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 2525 + name: + type: string + example: 'Ateam Inc.' + 5553: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 5553 + name: + type: string + example: 'Atelier 801' + 281: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 281 + name: + type: string + example: 'Athena Co., Ltd.' + 4490: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 4490 + name: + type: string + example: 'Atlantis Software Limited' + 58: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 58 + name: + type: string + example: 'Atlus Co., Ltd.' + 141: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 141 + name: + type: string + example: 'Atlus U.S.A., Inc.' + 4819: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 4819 + name: + type: string + example: 'Atmark' + 5632: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 5632 + name: + type: string + example: 'Atom Team' + 5084: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 5084 + name: + type: string + example: 'Atomic Planet Entertainment Limited' + 5183: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 5183 + name: + type: string + example: 'AtomicTorch Studio' + 5806: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 5806 + name: + type: string + example: 'Atooi LLC' + 3889: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 3889 + name: + type: string + example: 'Atto Entertainment' + 4716: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 4716 + name: + type: string + example: 'ATW USA' + 709: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 709 + name: + type: string + example: 'Audiogenic Software Ltd.' + 802: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 802 + name: + type: string + example: 'Auran Games Pty Ltd.' + 5215: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 5215 + name: + type: string + example: 'Auroch Digital' + 3185: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 3185 + name: + type: string + example: 'Automata UK' + 1620: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 1620 + name: + type: string + example: 'Autumn Games' + 8310: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 8310 + name: + type: string + example: 'AV Japan' + 5357: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 5357 + name: + type: string + example: 'Avalanche' + 352: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 352 + name: + type: string + example: 'Avalon Hill' + 1622: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 1622 + name: + type: string + example: 'Avanquest' + 8212: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 8212 + name: + type: string + example: 'Avanquest Software' + 755: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 755 + name: + type: string + example: 'Avantage Software' + 5480: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 5480 + name: + type: string + example: 'Avenged Sevenfold' + 4624: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 4624 + name: + type: string + example: 'Aventuras AD' + 1595: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 1595 + name: + type: string + example: 'Awesome Games Studio' + 2260: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 2260 + name: + type: string + example: 'AwesomeBlade' + 4817: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 4817 + name: + type: string + example: 'Awfully Nice Studios' + 3295: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 3295 + name: + type: string + example: 'Axela' + 5676: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 5676 + name: + type: string + example: 'Axlon' + 3532: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 3532 + name: + type: string + example: 'Axyos Games' + 3164: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 3164 + name: + type: string + example: 'Ayyo Games' + 4854: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 4854 + name: + type: string + example: 'Azeroth, Inc.' + 3955: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 3955 + name: + type: string + example: 'Azure' + 2869: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 2869 + name: + type: string + example: 'B-AI' + 1275: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 1275 + name: + type: string + example: 'B-Factory' + 5691: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 5691 + name: + type: string + example: 'Back To Basics Gaming' + 8318: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 8318 + name: + type: string + example: 'Backwoods Entertainment' + 5037: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 5037 + name: + type: string + example: 'Bad Taste Software' + 5089: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 5089 + name: + type: string + example: 'Bad2TheBone' + 4025: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 4025 + name: + type: string + example: 'Badland Games' + 3251: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 3251 + name: + type: string + example: 'Baggy Cat Ltd' + 3531: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 3531 + name: + type: string + example: 'Baka-Yo! Softcorp' + 518: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 518 + name: + type: string + example: 'Balance Games' + 3894: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 3894 + name: + type: string + example: 'Balanced Alternative Techniques' + 139: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 139 + name: + type: string + example: 'Ballistic' + 4: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 4 + name: + type: string + example: 'Bally Mfg. Corp.' + 1381: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 1381 + name: + type: string + example: 'Bally Sente' + 232: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 232 + name: + type: string + example: 'BAM! Entertainment, Inc.' + 2743: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 2743 + name: + type: string + example: 'Banalex' + 4459: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 4459 + name: + type: string + example: 'Banana Development' + 248: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 248 + name: + type: string + example: 'Bandai America, Inc.' + 57: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 57 + name: + type: string + example: 'Bandai Co., Ltd.' + 3234: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 3234 + name: + type: string + example: 'Bandai Namco America' + 6: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 6 + name: + type: string + example: 'Bandai Namco Entertainment' + 1414: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 1414 + name: + type: string + example: 'Bandai Namco of America' + 3732: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 3732 + name: + type: string + example: 'Bandai Namco Studios' + 1993: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 1993 + name: + type: string + example: 'Bandai S.A.' + 2806: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 2806 + name: + type: string + example: 'Bandai Shinsei' + 995: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 995 + name: + type: string + example: 'Bandai Visual' + 8204: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 8204 + name: + type: string + example: 'Bandai-Namco Entertainment' + 474: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 474 + name: + type: string + example: 'Banpresto Co., Ltd.' + 3884: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 3884 + name: + type: string + example: 'Barko Co., Ltd.' + 5575: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 5575 + name: + type: string + example: 'Baroque Decay' + 5685: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 5685 + name: + type: string + example: 'Baroque Gaming' + 5752: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 5752 + name: + type: string + example: 'Basaltic Studio' + 4140: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 4140 + name: + type: string + example: 'Basho House' + 1729: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 1729 + name: + type: string + example: 'Basilisk Games' + 4960: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 4960 + name: + type: string + example: 'Batafurai' + 4549: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 4549 + name: + type: string + example: 'Baton Technologies' + 4800: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 4800 + name: + type: string + example: 'Batovi Games Studio' + 3687: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 3687 + name: + type: string + example: 'Batterystaple Games' + 3159: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 3159 + name: + type: string + example: 'Battlefront.com' + 5528: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 5528 + name: + type: string + example: 'Battlestate Games' + 5507: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 5507 + name: + type: string + example: 'Baudville' + 1013: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 1013 + name: + type: string + example: 'Bay 12 Games' + 4410: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 4410 + name: + type: string + example: 'Bay Area Multimedia' + 456: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 456 + name: + type: string + example: 'BBC Multimedia' + 3127: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 3127 + name: + type: string + example: 'BC Verlags und Medien' + 3086: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 3086 + name: + type: string + example: 'Beach Interactive LLC' + 918: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 918 + name: + type: string + example: 'Beamdog' + 4378: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 4378 + name: + type: string + example: 'BearWare' + 1671: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 1671 + name: + type: string + example: 'Beatnik Games Ltd.' + 2128: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 2128 + name: + type: string + example: 'Beatshapers' + 1743: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 1743 + name: + type: string + example: 'BEC Co., Ltd.' + 3122: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 3122 + name: + type: string + example: 'Bedtime Digital Games' + 5418: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 5418 + name: + type: string + example: 'Bee-Oh' + 2629: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 2629 + name: + type: string + example: 'Beemoov' + 4809: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 4809 + name: + type: string + example: 'BeeWorks Co., Ltd.' + 4918: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 4918 + name: + type: string + example: 'Behaviour Interactive' + 5201: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 5201 + name: + type: string + example: 'Behold Studios' + 5163: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 5163 + name: + type: string + example: 'Bellflower Software' + 3202: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 3202 + name: + type: string + example: 'Ben Bishop' + 8235: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 8235 + name: + type: string + example: 'Ben Ibach' + 1910: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 1910 + name: + type: string + example: 'Ben Johnson' + 5486: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 5486 + name: + type: string + example: 'Ben Larson' + 1500: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 1500 + name: + type: string + example: 'Benjamin Rivers' + 4274: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 4274 + name: + type: string + example: 'Bergsala' + 2824: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 2824 + name: + type: string + example: 'Berkeley Systems' + 4846: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 4846 + name: + type: string + example: 'Berliner Morgenpost' + 2545: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 2545 + name: + type: string + example: 'Berserk Games' + 1163: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 1163 + name: + type: string + example: 'Best Software' + 3754: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 3754 + name: + type: string + example: 'Best Way Soft' + 5610: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 5610 + name: + type: string + example: 'Bestmedia Co., Ltd.' + 34: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 34 + name: + type: string + example: 'Bethesda Softworks' + 748: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 748 + name: + type: string + example: 'Beyond' + 5130: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 5130 + name: + type: string + example: 'Beyond Software, Inc.' + 2898: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 2898 + name: + type: string + example: 'bhv Software GmbH & Co. KG' + 3273: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 3273 + name: + type: string + example: 'Bi-Fi Roll' + 5380: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 5380 + name: + type: string + example: 'Biart Studio' + 5717: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 5717 + name: + type: string + example: 'Bifrost Entertainment' + 5060: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 5060 + name: + type: string + example: 'Big Ant Studios Pty Ltd' + 2594: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 2594 + name: + type: string + example: 'Big Blue Bubble Inc.' + 4302: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 4302 + name: + type: string + example: 'Big Club' + 1853: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 1853 + name: + type: string + example: 'Big Fat Alien' + 1430: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 1430 + name: + type: string + example: 'Big Fish Games' + 598: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 598 + name: + type: string + example: 'Big Five Software' + 5393: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 5393 + name: + type: string + example: 'Big Head Games' + 4612: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 4612 + name: + type: string + example: 'Big John Games' + 1630: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 1630 + name: + type: string + example: 'Big Sandwich Games' + 1536: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 1536 + name: + type: string + example: 'Bigben Interactive GmbH' + 562: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 562 + name: + type: string + example: 'Bignet U.S.A., Inc.' + 5207: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 5207 + name: + type: string + example: 'Bimboosoft' + 5370: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 5370 + name: + type: string + example: 'Binary Asylum' + 2658: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 2658 + name: + type: string + example: 'Binary Takeover' + 1487: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 1487 + name: + type: string + example: 'BioWare' + 417: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 417 + name: + type: string + example: 'Bit Blot, LLC.' + 2106: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 2106 + name: + type: string + example: 'Bit Corporation' + 1984: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 1984 + name: + type: string + example: 'Bit Managers' + 2765: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 2765 + name: + type: string + example: 'Bitbox Games' + 1555: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 1555 + name: + type: string + example: 'bitComposer Games' + 1908: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 1908 + name: + type: string + example: 'Bitfighter Industries' + 3133: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 3133 + name: + type: string + example: 'Bits Productions' + 4996: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 4996 + name: + type: string + example: 'Blaby Computer Games' + 410: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 410 + name: + type: string + example: 'Black Bean' + 1796: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 1796 + name: + type: string + example: 'Black Forest Games' + 1573: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 1573 + name: + type: string + example: 'Black Inc.' + 348: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 348 + name: + type: string + example: 'Black Isle Studios' + 1499: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 1499 + name: + type: string + example: 'Black Jacket Studios' + 803: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 803 + name: + type: string + example: 'Black Label Games' + 1082: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 1082 + name: + type: string + example: 'Black Legend Ltd.' + 4935: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 4935 + name: + type: string + example: 'Black Legend Software GmbH' + 2117: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 2117 + name: + type: string + example: 'Black Maple Games' + 1831: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 1831 + name: + type: string + example: 'Black Market Games' + 1221: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 1221 + name: + type: string + example: 'Black Pants Game Studios' + 114: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 114 + name: + type: string + example: 'Black Pearl Software' + 4366: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 4366 + name: + type: string + example: 'Black Shell Media' + 4401: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 4401 + name: + type: string + example: 'Blackfire Games' + 5739: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 5739 + name: + type: string + example: 'Blackspot Entertainment' + 4451: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 4451 + name: + type: string + example: 'Blade Software Ltd.' + 3982: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 3982 + name: + type: string + example: 'Blah Blah Woof Woof' + 3522: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 3522 + name: + type: string + example: 'Blast Entertainment Ltd.' + 3703: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 3703 + name: + type: string + example: 'Blaze Epic' + 1663: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 1663 + name: + type: string + example: 'Blazing Griffin' + 8319: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 8319 + name: + type: string + example: 'Blender Games' + 830: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 830 + name: + type: string + example: 'Blendo Games' + 1797: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 1797 + name: + type: string + example: 'BlinkWorks Media' + 5063: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 5063 + name: + type: string + example: 'BlitWorks' + 1597: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 1597 + name: + type: string + example: 'Blitz 1UP' + 1851: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 1851 + name: + type: string + example: 'Blitz Games Studios' + 47: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 47 + name: + type: string + example: 'Blizzard Entertainment' + 1712: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 1712 + name: + type: string + example: 'Blockland LLC' + 3427: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 3427 + name: + type: string + example: 'Bloober Team' + 3155: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 3155 + name: + type: string + example: 'Bloodhouse Ltd.' + 3867: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 3867 + name: + type: string + example: 'Bloodlust Software' + 3786: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 3786 + name: + type: string + example: 'Blooming Buds' + 1773: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 1773 + name: + type: string + example: 'BluBee Games' + 2761: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 2761 + name: + type: string + example: 'Blue Bottle Games' + 638: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 638 + name: + type: string + example: 'Blue Byte – studio Mainz' + 2779: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 2779 + name: + type: string + example: 'Blue Planet Software, Inc.' + 2033: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 2033 + name: + type: string + example: 'Bluebutton Games' + 1097: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 1097 + name: + type: string + example: 'BlueEagle Productions' + 4921: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 4921 + name: + type: string + example: 'Bluehole Studio' + 5569: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 5569 + name: + type: string + example: 'Blyts' + 399: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 399 + name: + type: string + example: 'BMG Interactive Entertainment' + 5289: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 5289 + name: + type: string + example: 'Bob DeCrescenzo' + 5673: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 5673 + name: + type: string + example: 'Bob Montgomery' + 1728: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 1728 + name: + type: string + example: 'Boco' + 1231: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 1231 + name: + type: string + example: 'Bohemia Interactive Studio' + 1638: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 1638 + name: + type: string + example: 'Bold Games' + 3402: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 3402 + name: + type: string + example: 'Bollaware' + 3281: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 3281 + name: + type: string + example: 'Bomb' + 5192: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 5192 + name: + type: string + example: 'Bomb Shelter Games' + 4498: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 4498 + name: + type: string + example: 'BomberDev' + 2749: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 2749 + name: + type: string + example: 'BoMbErGaMeS' + 4842: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 4842 + name: + type: string + example: 'Bomico Entertainment Software' + 2158: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 2158 + name: + type: string + example: 'Boolat' + 2356: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 2356 + name: + type: string + example: 'Bootsnake Games' + 4962: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 4962 + name: + type: string + example: 'Borealys Games' + 1521: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 1521 + name: + type: string + example: 'Born Ready Games' + 1094: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 1094 + name: + type: string + example: 'Boss Baddie' + 4144: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 4144 + name: + type: string + example: 'Boss Communications' + 5762: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 5762 + name: + type: string + example: 'Boss Key Productions' + 1677: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 1677 + name: + type: string + example: 'Bossa Studios' + 2867: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 2867 + name: + type: string + example: 'Bothtec' + 1601: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 1601 + name: + type: string + example: 'Bottom Up' + 4570: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 4570 + name: + type: string + example: 'Box Office, Inc.' + 5366: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 5366 + name: + type: string + example: 'Boxelware' + 2772: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 2772 + name: + type: string + example: 'Brace Yourself Games' + 3694: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 3694 + name: + type: string + example: 'Brainbox Software' + 2364: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 2364 + name: + type: string + example: 'BrainGame Publishing, GmbH' + 3440: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 3440 + name: + type: string + example: 'Braingames' + 3654: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 3654 + name: + type: string + example: 'BrainGoodGames' + 5749: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 5749 + name: + type: string + example: 'Brainseed Factory' + 979: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 979 + name: + type: string + example: 'Brash Entertainment' + 1564: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 1564 + name: + type: string + example: 'Brawsome' + 5078: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 5078 + name: + type: string + example: 'Breadhill Software' + 2316: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 2316 + name: + type: string + example: 'BreakAway Games Ltd.' + 2415: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 2415 + name: + type: string + example: 'Breakfall' + 2564: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 2564 + name: + type: string + example: 'BrezzaSoft' + 1725: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 1725 + name: + type: string + example: 'Brilliant Blue-G' + 5080: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 5080 + name: + type: string + example: 'Britannia Software Ltd.' + 3816: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 3816 + name: + type: string + example: 'BROCCOLI Co., Ltd.' + 105: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 105 + name: + type: string + example: 'Broderbund Software, Inc.' + 626: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 626 + name: + type: string + example: 'Broken Rules' + 3458: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 3458 + name: + type: string + example: 'Brother Kougyou' + 1784: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 1784 + name: + type: string + example: 'Bruce Films' + 4830: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 4830 + name: + type: string + example: 'Bruno R. Marcos' + 4922: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 4922 + name: + type: string + example: 'Bubble Bus Software' + 5789: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 5789 + name: + type: string + example: 'Buddy Productions GmbH' + 531: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 531 + name: + type: string + example: 'Buena Vista Games, Inc.' + 327: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 327 + name: + type: string + example: 'Buena Vista Interactive' + 5269: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 5269 + name: + type: string + example: 'Buena Vista Software' + 4754: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 4754 + name: + type: string + example: 'BuffStone., Ltd.' + 3148: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 3148 + name: + type: string + example: 'Bug-Byte Software Ltd.' + 3306: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 3306 + name: + type: string + example: 'BugFactory' + 5973: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 5973 + name: + type: string + example: 'Buka Entertainment' + 5577: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 5577 + name: + type: string + example: 'Bulkhead Interactive' + 2139: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 2139 + name: + type: string + example: 'Bulkypix' + 5458: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 5458 + name: + type: string + example: 'Bulldog Software' + 335: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 335 + name: + type: string + example: 'Bullet-Proof Software, Inc.' + 565: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 565 + name: + type: string + example: 'Bullfrog Productions, Ltd.' + 299: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 299 + name: + type: string + example: 'Bunch Games' + 4850: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 4850 + name: + type: string + example: 'Bundesministerium des Inneren' + 178: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 178 + name: + type: string + example: 'Bungie' + 2894: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 2894 + name: + type: string + example: 'Bushiroad' + 2548: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 2548 + name: + type: string + example: 'Butterscotch Shenanigans' + 5364: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 5364 + name: + type: string + example: 'Byte Back' + 1419: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 1419 + name: + type: string + example: 'C&E INC.' + 4520: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 4520 + name: + type: string + example: 'C''s Ware' + 3357: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 3357 + name: + type: string + example: 'C-Lab' + 5076: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 5076 + name: + type: string + example: 'C-Tech' + 1596: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 1596 + name: + type: string + example: 'Cadenza Interactive' + 3559: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 3559 + name: + type: string + example: 'caiysware' + 2322: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 2322 + name: + type: string + example: 'Caldera' + 3669: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 3669 + name: + type: string + example: 'Calibre Studios' + 1518: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 1518 + name: + type: string + example: 'California Dreams' + 2003: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 2003 + name: + type: string + example: 'California Pacific Computer' + 3827: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 3827 + name: + type: string + example: 'California Pacific Computer Co.' + 8195: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 8195 + name: + type: string + example: 'Caltron' + 3099: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 3099 + name: + type: string + example: 'Caltron Industries, Inc.' + 3757: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 3757 + name: + type: string + example: 'Calvino Noir Limited' + 284: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 284 + name: + type: string + example: 'Camerica' + 2318: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 2318 + name: + type: string + example: 'Canal+ Multimedia' + 2692: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 2692 + name: + type: string + example: 'Canceled' + 2146: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 2146 + name: + type: string + example: 'Candystand' + 9: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 9 + name: + type: string + example: 'Capcom' + 615: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 615 + name: + type: string + example: 'Capcom Production Studio 3' + 616: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 616 + name: + type: string + example: 'Capcom USA, Inc.' + 588: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 588 + name: + type: string + example: 'Capitol Disc Interactive Corporation' + 1030: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 1030 + name: + type: string + example: 'Capstone Software' + 2078: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 2078 + name: + type: string + example: 'Captain Games' + 1565: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 1565 + name: + type: string + example: 'Capybara Games Inc.' + 8320: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 8320 + name: + type: string + example: 'Caracal Games' + 4966: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 4966 + name: + type: string + example: 'Carbon Fire Studio' + 1266: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 1266 + name: + type: string + example: 'Carbon Games' + 1602: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 1602 + name: + type: string + example: 'Cardboard Computer' + 5854: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 5854 + name: + type: string + example: 'Cardboard Utopia' + 2378: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 2378 + name: + type: string + example: 'Carlos Coronado' + 5519: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 5519 + name: + type: string + example: 'Carlos Sevila' + 5091: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 5091 + name: + type: string + example: 'Carnell Software' + 954: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 954 + name: + type: string + example: 'Carpe Fulgur' + 4064: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 4064 + name: + type: string + example: 'Carrozzeria' + 3895: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 3895 + name: + type: string + example: 'Carry Lab' + 2555: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 2555 + name: + type: string + example: 'Cartoon Network Games' + 5625: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 5625 + name: + type: string + example: 'Cartoon Studios' + 3394: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 3394 + name: + type: string + example: 'Cascade Games' + 5177: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 5177 + name: + type: string + example: 'Cascade software' + 3892: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 3892 + name: + type: string + example: 'Casio Co. Ltd.' + 4288: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 4288 + name: + type: string + example: 'Catapult Entertainment' + 4774: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 4774 + name: + type: string + example: 'CatfishBlues Games' + 4936: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 4936 + name: + type: string + example: 'Causa Creations' + 1340: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 1340 + name: + type: string + example: 'CAVE Co., Ltd.' + 258: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 258 + name: + type: string + example: 'CBS Electronics' + 4931: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 4931 + name: + type: string + example: 'CBS Software' + 2865: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 2865 + name: + type: string + example: 'CBS/Sony Group Inc.' + 991: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 991 + name: + type: string + example: 'CCE' + 2540: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 2540 + name: + type: string + example: 'CClub Flying Column Party' + 819: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 819 + name: + type: string + example: 'CCP Games' + 5131: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 5131 + name: + type: string + example: 'CCS (UK)' + 8207: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 8207 + name: + type: string + example: 'CD Projekt' + 3509: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 3509 + name: + type: string + example: 'CD Projekt Red' + 5777: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 5777 + name: + type: string + example: 'CD Projekt SA' + 2619: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 2619 + name: + type: string + example: 'CD-I Systems' + 3145: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 3145 + name: + type: string + example: 'CDS Software Ltd' + 640: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 640 + name: + type: string + example: 'CDV Software Entertainment AG' + 407: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 407 + name: + type: string + example: 'CDV Software Entertainment USA, Inc.' + 1071: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 1071 + name: + type: string + example: 'CE Software' + 5710: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 5710 + name: + type: string + example: 'Cedic Vifi' + 1646: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 1646 + name: + type: string + example: 'Ceiphren' + 2335: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 2335 + name: + type: string + example: 'Cellar Door Games' + 4514: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 4514 + name: + type: string + example: 'Cellnavi Corp.' + 2251: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 2251 + name: + type: string + example: 'Cenega Publishing, s.r.o.' + 2718: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 2718 + name: + type: string + example: 'Čeněk Svoboda' + 4367: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 4367 + name: + type: string + example: 'Central Systems' + 851: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 851 + name: + type: string + example: 'Centuri, Inc.' + 1345: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 1345 + name: + type: string + example: 'Century Electronics' + 4494: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 4494 + name: + type: string + example: 'cerasus.media GmbH' + 3284: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 3284 + name: + type: string + example: 'CGE Services Corporation' + 2256: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 2256 + name: + type: string + example: 'Chad Alan Cuddigan' + 5031: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 5031 + name: + type: string + example: 'Chainsawesome Games' + 1241: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 1241 + name: + type: string + example: 'Chair Entertainment' + 5184: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 5184 + name: + type: string + example: 'Challenge Software' + 1978: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 1978 + name: + type: string + example: 'ChaosEsque Team' + 2987: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 2987 + name: + type: string + example: 'Chaosoft Games' + 2632: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 2632 + name: + type: string + example: 'Character Soft' + 2413: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 2413 + name: + type: string + example: 'Charles Jacobi' + 2393: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 2393 + name: + type: string + example: 'Charlie''s Games' + 1570: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 1570 + name: + type: string + example: 'Chasseur de Bots' + 3630: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 3630 + name: + type: string + example: 'Chat Noir' + 5903: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 5903 + name: + type: string + example: 'Cheetah Games' + 2083: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 2083 + name: + type: string + example: 'Cherry Pop Games' + 2400: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 2400 + name: + type: string + example: 'ChessBase GmbH' + 376: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 376 + name: + type: string + example: 'Chillingo' + 5827: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 5827 + name: + type: string + example: 'Chilly Willy' + 3386: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 3386 + name: + type: string + example: 'Chip' + 4218: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 4218 + name: + type: string + example: 'Choice Provisions' + 4739: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 4739 + name: + type: string + example: 'Chou Co. Ltd' + 2265: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 2265 + name: + type: string + example: 'Chris Davis' + 8252: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 8252 + name: + type: string + example: 'Chris Hildenbrand' + 5464: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 5464 + name: + type: string + example: 'Chris Read' + 5256: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 5256 + name: + type: string + example: 'Christian Reuter' + 2233: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 2233 + name: + type: string + example: 'Christine Love' + 8200: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 8200 + name: + type: string + example: 'Chronic Logic LLC' + 8248: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 8248 + name: + type: string + example: 'Chrono Moogle' + 4509: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 4509 + name: + type: string + example: 'ChuanPu Technology Co.' + 5374: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 5374 + name: + type: string + example: 'Chubby Pixel' + 3874: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 3874 + name: + type: string + example: 'Chuck' + 1874: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 1874 + name: + type: string + example: 'Chucklefish Games' + 704: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 704 + name: + type: string + example: 'Chunsoft' + 4462: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 4462 + name: + type: string + example: 'Chuo Co. Ltd' + 192: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 192 + name: + type: string + example: 'CI Games' + 4441: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 4441 + name: + type: string + example: 'Cidelsa' + 2511: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 2511 + name: + type: string + example: 'Cie Games, Inc.' + 4162: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 4162 + name: + type: string + example: 'Ciematronics Inc.' + 452: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 452 + name: + type: string + example: 'Cinematronics' + 242: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 242 + name: + type: string + example: 'Cinemaware' + 2221: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 2221 + name: + type: string + example: 'CINEMAX, s.r.o.' + 1220: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 1220 + name: + type: string + example: 'Cipher Prime Studios' + 1261: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 1261 + name: + type: string + example: 'CipSoft GmbH' + 4001: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 4001 + name: + type: string + example: 'Circle Entertainment' + 1835: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 1835 + name: + type: string + example: 'Citeremis' + 2340: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 2340 + name: + type: string + example: 'Classified Games' + 3724: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 3724 + name: + type: string + example: 'Claws of Lorek' + 1432: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 1432 + name: + type: string + example: 'Clear Crown Studios' + 5181: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 5181 + name: + type: string + example: 'Clever Endeavour' + 4260: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 4260 + name: + type: string + example: 'Clever Plays Studio' + 1556: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 1556 + name: + type: string + example: 'ClickGamer' + 3051: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 3051 + name: + type: string + example: 'Cliffhanger Productions' + 3091: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 3091 + name: + type: string + example: 'Climax Entertainment' + 2514: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 2514 + name: + type: string + example: 'Climax Studios' + 1470: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 1470 + name: + type: string + example: 'Cloud Imperium Games Corporation' + 3854: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 3854 + name: + type: string + example: 'Clover' + 3008: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 3008 + name: + type: string + example: 'CMC Games' + 1616: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 1616 + name: + type: string + example: 'CMY Multimedia' + 5516: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 5516 + name: + type: string + example: 'CNGSOFT' + 5881: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 5881 + name: + type: string + example: 'CO2-PRO' + 5732: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 5732 + name: + type: string + example: 'Coatsink Software' + 3042: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 3042 + name: + type: string + example: 'Cobra Soft' + 473: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 473 + name: + type: string + example: 'Cobra Team' + 1143: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 1143 + name: + type: string + example: 'Cockroach Inc.' + 2982: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 2982 + name: + type: string + example: 'Cocktail Soft' + 5871: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 5871 + name: + type: string + example: 'Coconut Island Games' + 1991: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 1991 + name: + type: string + example: 'Coconuts Japan Entertainment Co., Ltd.' + 1640: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 1640 + name: + type: string + example: 'CodeBrush Games' + 16: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 16 + name: + type: string + example: 'Codemasters' + 1387: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 1387 + name: + type: string + example: 'Codemasters USA' + 3411: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 3411 + name: + type: string + example: 'Codename Entertainment' + 3602: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 3602 + name: + type: string + example: 'CodePlex' + 2617: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 2617 + name: + type: string + example: 'CoderChild' + 881: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 881 + name: + type: string + example: 'Coffee Stain Studios' + 2136: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 2136 + name: + type: string + example: 'Cohort Studios Ltd' + 1893: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 1893 + name: + type: string + example: 'CokeM Interactive' + 1395: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 1395 + name: + type: string + example: 'Coktel Vision' + 536: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 536 + name: + type: string + example: 'Cold Beam Games' + 257: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 257 + name: + type: string + example: 'Coleco' + 5203: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 5203 + name: + type: string + example: 'ColePowered Games' + 1781: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 1781 + name: + type: string + example: 'Colibri Games' + 8232: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 8232 + name: + type: string + example: 'Colin Ajayi-Obe' + 5684: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 5684 + name: + type: string + example: 'Colin Hughes' + 1654: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 1654 + name: + type: string + example: 'colinshark' + 1834: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 1834 + name: + type: string + example: 'Collectif Nemoid' + 269: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 269 + name: + type: string + example: 'Color Dreams, Inc.' + 2907: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 2907 + name: + type: string + example: 'Colosoftware' + 4270: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 4270 + name: + type: string + example: 'Colpax' + 4824: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 4824 + name: + type: string + example: 'Columbus Circle' + 2479: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 2479 + name: + type: string + example: 'Com2Us' + 1319: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 1319 + name: + type: string + example: 'Comad' + 5771: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 5771 + name: + type: string + example: 'Comedy Central' + 3354: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 3354 + name: + type: string + example: 'CommaVid, Inc.' + 5273: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 5273 + name: + type: string + example: 'Commercial Data Systems' + 5437: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 5437 + name: + type: string + example: 'Commin' + 712: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 712 + name: + type: string + example: 'Commodore' + 3377: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 3377 + name: + type: string + example: 'Commodore (UK)' + 832: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 832 + name: + type: string + example: 'Commodore Japan' + 5410: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 5410 + name: + type: string + example: 'Commodore Spain' + 657: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 657 + name: + type: string + example: 'Compile' + 1966: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 1966 + name: + type: string + example: 'Compile Heart, Inc.' + 5389: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 5389 + name: + type: string + example: 'COMPLETE-IT' + 4230: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 4230 + name: + type: string + example: 'Compulogical' + 4058: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 4058 + name: + type: string + example: 'Compulsion Games' + 5866: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 5866 + name: + type: string + example: 'Compute! Publications' + 3866: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 3866 + name: + type: string + example: 'Computer & Entertainment' + 5591: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 5591 + name: + type: string + example: 'Computer and Video Games Magazine' + 3425: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 3425 + name: + type: string + example: 'Computer Tutorial Services' + 5165: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 5165 + name: + type: string + example: 'Computerworld (UK)' + 4159: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 4159 + name: + type: string + example: 'Comsoft/Game World' + 4637: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 4637 + name: + type: string + example: 'Conatus Creative' + 4385: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 4385 + name: + type: string + example: 'Conexus, Inc.' + 4906: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 4906 + name: + type: string + example: 'Cong Xu' + 527: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 527 + name: + type: string + example: 'Conspiracy Entertainment Corp.' + 1359: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 1359 + name: + type: string + example: 'Conspiracy Entertainment Corporation' + 2859: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 2859 + name: + type: string + example: 'Cony Soft' + 5706: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 5706 + name: + type: string + example: 'Coombe Valley Software' + 5655: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 5655 + name: + type: string + example: 'Cooper Sky' + 2148: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 2148 + name: + type: string + example: 'Copenhagen Game Collective' + 4136: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 4136 + name: + type: string + example: 'Copysoft' + 1185: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 1185 + name: + type: string + example: 'COR Entertainment, LLC' + 515: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 515 + name: + type: string + example: 'Core Design Ltd.' + 4138: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 4138 + name: + type: string + example: 'Core Magazine' + 5850: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 5850 + name: + type: string + example: 'Corecell Technology Co. Ltd.' + 3174: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 3174 + name: + type: string + example: 'Coredumping' + 4363: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 4363 + name: + type: string + example: 'Coreland' + 4615: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 4615 + name: + type: string + example: 'Coresoft, Inc.' + 4893: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 4893 + name: + type: string + example: 'Cornfox & Bros.' + 1178: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 1178 + name: + type: string + example: 'Corvus5' + 3647: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 3647 + name: + type: string + example: 'COSEN' + 774: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 774 + name: + type: string + example: 'Cosmi Corporation' + 4300: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 4300 + name: + type: string + example: 'Cosmic Logic Inc.' + 3119: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 3119 + name: + type: string + example: 'Cosmonaut Games' + 3925: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 3925 + name: + type: string + example: 'Cosmos Computer' + 5599: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 5599 + name: + type: string + example: 'Coven Games' + 1999: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 1999 + name: + type: string + example: 'Cowboy Rodeo' + 5127: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 5127 + name: + type: string + example: 'CP software' + 1903: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 1903 + name: + type: string + example: 'CP Verlag' + 4398: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 4398 + name: + type: string + example: 'CP Verlag/Golden Disk 64' + 8237: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 8237 + name: + type: string + example: 'CPC Amstrad International' + 4050: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 4050 + name: + type: string + example: 'cpcretrodev.byterealms' + 1435: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 1435 + name: + type: string + example: 'Crack dot Com' + 2163: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 2163 + name: + type: string + example: 'Crackshell' + 5589: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 5589 + name: + type: string + example: 'Craig Communications' + 3168: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 3168 + name: + type: string + example: 'Craneballs Studio' + 1522: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 1522 + name: + type: string + example: 'Crankshaft Games' + 4040: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 4040 + name: + type: string + example: 'Crash Magazine' + 68: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 68 + name: + type: string + example: 'Crave Entertainment' + 3374: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 3374 + name: + type: string + example: 'Crazy Monkey Studios' + 2538: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 2538 + name: + type: string + example: 'Crazy Moo Games' + 4203: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 4203 + name: + type: string + example: 'Crazy Viking Studios' + 2396: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 2396 + name: + type: string + example: 'Creability' + 1687: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 1687 + name: + type: string + example: 'Creat Studios, Inc.' + 1850: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 1850 + name: + type: string + example: 'Creative Assembly Sofia' + 1226: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 1226 + name: + type: string + example: 'Creative Dimensions' + 897: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 897 + name: + type: string + example: 'Creative Edge Studios, Inc.' + 5628: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 5628 + name: + type: string + example: 'Creative Juices' + 3373: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 3373 + name: + type: string + example: 'Creative Software' + 4108: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 4108 + name: + type: string + example: 'Creative Sparks' + 5451: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 5451 + name: + type: string + example: 'Creaton Softech Inc.' + 5171: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 5171 + name: + type: string + example: 'Creed Games' + 2050: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 2050 + name: + type: string + example: 'CremaGames' + 2051: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 2051 + name: + type: string + example: 'Crescent Moon Games' + 2177: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 2177 + name: + type: string + example: 'CRI Middleware Co., Ltd.' + 2289: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 2289 + name: + type: string + example: 'Crian Soft' + 5555: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 5555 + name: + type: string + example: 'Criterion Games' + 3368: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 3368 + name: + type: string + example: 'Critical Force Oy' + 721: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 721 + name: + type: string + example: 'CRL Group PLC' + 1650: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 1650 + name: + type: string + example: 'Crocodile Entertainment' + 5811: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 5811 + name: + type: string + example: 'Cronosoft' + 5033: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 5033 + name: + type: string + example: 'Cross Talk' + 5848: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 5848 + name: + type: string + example: 'CrossFunction Co., Ltd.' + 5179: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 5179 + name: + type: string + example: 'Croteam Ltd.' + 2519: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 2519 + name: + type: string + example: 'Crunching Koalas' + 4353: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 4353 + name: + type: string + example: 'Crux' + 1069: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 1069 + name: + type: string + example: 'Cryo Interactive Entertainment' + 3954: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 3954 + name: + type: string + example: 'Crystal Computing' + 27: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 27 + name: + type: string + example: 'Crystal Dynamics, Inc.' + 4877: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 4877 + name: + type: string + example: 'Crystal Shard' + 4567: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 4567 + name: + type: string + example: 'Crysys Software' + 1053: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 1053 + name: + type: string + example: 'Crytek GmbH' + 4416: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 4416 + name: + type: string + example: 'CSDb' + 341: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 341 + name: + type: string + example: 'CSG Imagesoft Inc.' + 4137: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 4137 + name: + type: string + example: 'CSK Software Products' + 1318: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 1318 + name: + type: string + example: 'CSR-Studios' + 5281: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 5281 + name: + type: string + example: 'CU Amiga' + 3297: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 3297 + name: + type: string + example: 'Cult Games' + 3690: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 3690 + name: + type: string + example: 'Culture Attack Studio' + 270: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 270 + name: + type: string + example: 'Culture Brain Inc.' + 316: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 316 + name: + type: string + example: 'Culture Brain USA, Inc.' + 3285: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 3285 + name: + type: string + example: 'Culture Publishers' + 3519: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 3519 + name: + type: string + example: 'Curious Panda Games' + 3917: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 3917 + name: + type: string + example: 'Current Technology Inc.' + 2278: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 2278 + name: + type: string + example: 'Curve Digital' + 2919: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 2919 + name: + type: string + example: 'Curve Digital Entertainment' + 1909: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 1909 + name: + type: string + example: 'Cuve Games' + 4460: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 4460 + name: + type: string + example: 'CVS' + 2000: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 2000 + name: + type: string + example: 'Cyan' + 1867: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 1867 + name: + type: string + example: 'Cyanide Studio' + 5361: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 5361 + name: + type: string + example: 'Cyber Rhino Studios' + 1135: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 1135 + name: + type: string + example: 'Cyberdreams, Inc.' + 2968: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 2968 + name: + type: string + example: 'CyberFront Corporation' + 73: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 73 + name: + type: string + example: 'Cybersoft, Inc.' + 3238: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 3238 + name: + type: string + example: 'CyberStep' + 4694: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 4694 + name: + type: string + example: 'Cydex Software' + 4625: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 4625 + name: + type: string + example: 'Cygames, Inc.' + 2763: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 2763 + name: + type: string + example: 'Cygnus Software Inc.' + 5897: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 5897 + name: + type: string + example: 'Cymbal Software, Inc.' + 2603: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 2603 + name: + type: string + example: 'Cypronia' + 4805: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 4805 + name: + type: string + example: 'Cyscorpions Inc.' + 1005: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 1005 + name: + type: string + example: 'D-Dub Software' + 1547: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 1547 + name: + type: string + example: 'D. Gottlieb & Co.' + 3516: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 3516 + name: + type: string + example: 'D.O. Corp.' + 4466: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 4466 + name: + type: string + example: 'D.R.Korea' + 31: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 31 + name: + type: string + example: 'D3 Publisher Inc.' + 2202: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 2202 + name: + type: string + example: 'D3 Publisher of America' + 2145: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 2145 + name: + type: string + example: 'D3 Publisher of Europe Ltd.' + 8242: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 8242 + name: + type: string + example: 'D4 Enterprise, Inc.' + 3048: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 3048 + name: + type: string + example: 'D5.' + 1413: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 1413 + name: + type: string + example: 'Daedalic Entertainment' + 4781: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 4781 + name: + type: string + example: 'Daewon Media' + 4333: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 4333 + name: + type: string + example: 'Dagestan Technology' + 3946: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 3946 + name: + type: string + example: 'DahJee' + 5424: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 5424 + name: + type: string + example: 'Daigom Games Corp.' + 4182: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 4182 + name: + type: string + example: 'Daikoku' + 3843: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 3843 + name: + type: string + example: 'Daina' + 2140: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 2140 + name: + type: string + example: 'Dakko Dakko' + 5761: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 5761 + name: + type: string + example: 'Dan & Gary Games' + 5447: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 5447 + name: + type: string + example: 'Dan Fornace' + 5558: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 5558 + name: + type: string + example: 'Dan Games' + 2890: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 2890 + name: + type: string + example: 'Danbi System' + 1015: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 1015 + name: + type: string + example: 'danmaq' + 3709: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 3709 + name: + type: string + example: 'danteg9' + 2878: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 2878 + name: + type: string + example: 'Daou Infosys Corp.' + 4307: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 4307 + name: + type: string + example: 'Dark Biohazard' + 902: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 902 + name: + type: string + example: 'Dark Energy Digital' + 5000: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 5000 + name: + type: string + example: 'Dark Roast Entertainment' + 969: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 969 + name: + type: string + example: 'Dark Water Studios' + 3173: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 3173 + name: + type: string + example: 'DarkSeas Games' + 611: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 611 + name: + type: string + example: 'Data Age, Inc.' + 5419: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 5419 + name: + type: string + example: 'Data Amusement' + 1631: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 1631 + name: + type: string + example: 'Data Design Interactive' + 55: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 55 + name: + type: string + example: 'Data East Corporation' + 1058: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 1058 + name: + type: string + example: 'Data Realms' + 5160: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 5160 + name: + type: string + example: 'Database Publications' + 4083: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 4083 + name: + type: string + example: 'DataBiotics' + 741: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 741 + name: + type: string + example: 'Databyte' + 1920: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 1920 + name: + type: string + example: 'Datam Polystar' + 3541: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 3541 + name: + type: string + example: 'Datamost, Inc.' + 600: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 600 + name: + type: string + example: 'Datasoft, Inc.' + 2702: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 2702 + name: + type: string + example: 'DataWest' + 4986: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 4986 + name: + type: string + example: 'Datel' + 1938: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 1938 + name: + type: string + example: 'Datie Digital Entertainment' + 5258: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 5258 + name: + type: string + example: 'DATT Japan Inc.' + 8234: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 8234 + name: + type: string + example: 'Dave Ibach' + 5678: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 5678 + name: + type: string + example: 'Dave Neuman' + 5670: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 5670 + name: + type: string + example: 'David Crane' + 4336: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 4336 + name: + type: string + example: 'David Newton' + 3198: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 3198 + name: + type: string + example: 'David O’Reilly' + 2576: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 2576 + name: + type: string + example: 'David Szymanski' + 5493: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 5493 + name: + type: string + example: 'David Weavil' + 1830: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 1830 + name: + type: string + example: 'David Williamson' + 150: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 150 + name: + type: string + example: 'Davidson & Associates, Inc.' + 2385: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 2385 + name: + type: string + example: 'Davilex Games B.V.' + 980: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 980 + name: + type: string + example: 'Daybreak Games' + 3167: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 3167 + name: + type: string + example: 'Daylight Studios' + 2835: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 2835 + name: + type: string + example: 'dB-SOFT' + 1686: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 1686 + name: + type: string + example: 'DC Studios, Inc.' + 1854: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 1854 + name: + type: string + example: 'Dead Mage' + 5694: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 5694 + name: + type: string + example: 'Dead Shark Triplepunch' + 2291: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 2291 + name: + type: string + example: 'Deadly Sin Studios' + 3826: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 3826 + name: + type: string + example: 'Deck13 Interactive GmbH' + 4506: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 4506 + name: + type: string + example: 'Deco Digital' + 1293: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 1293 + name: + type: string + example: 'DEEP Games' + 37: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 37 + name: + type: string + example: 'Deep Silver' + 815: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 815 + name: + type: string + example: 'Deep Silver Vienna' + 567: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 567 + name: + type: string + example: 'Deep Water' + 4686: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 4686 + name: + type: string + example: 'Deep-Sea Prisoner' + 2834: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 2834 + name: + type: string + example: 'Defiant Development' + 2320: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 2320 + name: + type: string + example: 'Degica Games' + 4956: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 4956 + name: + type: string + example: 'Deimos Games' + 539: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 539 + name: + type: string + example: 'Dejobaan Games' + 5081: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 5081 + name: + type: string + example: 'Delirium Studios' + 1076: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 1076 + name: + type: string + example: 'Delphine Software International' + 3544: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 3544 + name: + type: string + example: 'Delve Interactive' + 4479: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 4479 + name: + type: string + example: 'Demian' + 3189: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 3189 + name: + type: string + example: 'Demiforce LLC' + 2829: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 2829 + name: + type: string + example: 'Demon Wagon Studios' + 4209: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 4209 + name: + type: string + example: 'Demonware Softwarehaus GmbH' + 3598: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 3598 + name: + type: string + example: 'Dempa Micomsoft' + 1551: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 1551 + name: + type: string + example: 'Demruth' + 273: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 273 + name: + type: string + example: 'Den''Z' + 4719: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 4719 + name: + type: string + example: 'DeNA' + 8210: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 8210 + name: + type: string + example: 'Denby' + 2828: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 2828 + name: + type: string + example: 'Denda Multimedia' + 4172: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 4172 + name: + type: string + example: 'Deniam Corp.' + 4151: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 4151 + name: + type: string + example: 'Denki Onyko' + 1998: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 1998 + name: + type: string + example: 'Dennaton' + 3839: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 3839 + name: + type: string + example: 'Dennou Club' + 2737: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 2737 + name: + type: string + example: 'DePaul University' + 1207: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 1207 + name: + type: string + example: 'Derek Yu' + 3556: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 3556 + name: + type: string + example: 'Design Design' + 4043: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 4043 + name: + type: string + example: 'Despairgames' + 369: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 369 + name: + type: string + example: 'Destination Software, Inc.' + 375: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 375 + name: + type: string + example: 'Destineer' + 5354: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 5354 + name: + type: string + example: 'Destiny Software Productions, Inc.' + 3131: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 3131 + name: + type: string + example: 'Destructive Creations' + 2739: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 2739 + name: + type: string + example: 'Detn8 Games Ltd' + 1836: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 1836 + name: + type: string + example: 'Devlin' + 5254: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 5254 + name: + type: string + example: 'Devol' + 1429: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 1429 + name: + type: string + example: 'Devolver Digital' + 5951: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 5951 + name: + type: string + example: 'DevolverDigital' + 1176: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 1176 + name: + type: string + example: 'Dextell Ltd.' + 4310: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 4310 + name: + type: string + example: 'DHG games' + 5890: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 5890 + name: + type: string + example: 'Diatec' + 3941: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 3941 + name: + type: string + example: 'DICE' + 4572: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 4572 + name: + type: string + example: 'Didatech Software Ltd.' + 8249: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 8249 + name: + type: string + example: 'Dieter von Laser' + 1724: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 1724 + name: + type: string + example: 'Different Tuna Ltd.' + 1683: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 1683 + name: + type: string + example: 'Digerati Distribution' + 873: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 873 + name: + type: string + example: 'DigiPen Institute of Technology' + 2686: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 2686 + name: + type: string + example: 'Digital Confectioners' + 2072: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 2072 + name: + type: string + example: 'Digital Dreams' + 5839: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 5839 + name: + type: string + example: 'Digital Eclipse Software, Inc.' + 1746: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 1746 + name: + type: string + example: 'Digital Eel' + 861: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 861 + name: + type: string + example: 'Digital Extremes' + 5383: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 5383 + name: + type: string + example: 'Digital Goldfish, Ltd.' + 2703: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 2703 + name: + type: string + example: 'Digital Happiness' + 8216: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 8216 + name: + type: string + example: 'Digital Illusions, Inc.' + 760: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 760 + name: + type: string + example: 'Digital Integration Ltd.' + 1485: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 1485 + name: + type: string + example: 'Digital Jesters Ltd.' + 4771: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 4771 + name: + type: string + example: 'Digital Kids Co. Ltd.' + 5843: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 5843 + name: + type: string + example: 'Digital Kingdom Sarl' + 2569: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 2569 + name: + type: string + example: 'Digital Legends Entertainment' + 1626: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 1626 + name: + type: string + example: 'Digital Leisure Inc.' + 4709: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 4709 + name: + type: string + example: 'Digital Magic' + 5005: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 5005 + name: + type: string + example: 'Digital Monastery' + 572: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 572 + name: + type: string + example: 'Digital Pictures, Inc.' + 3963: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 3963 + name: + type: string + example: 'Digital Press Publishing' + 1619: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 1619 + name: + type: string + example: 'Digital Reality Publishing' + 1180: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 1180 + name: + type: string + example: 'Digital Reality Software' + 4207: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 4207 + name: + type: string + example: 'Digital Smash' + 2245: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 2245 + name: + type: string + example: 'Digital Tentacle' + 1223: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 1223 + name: + type: string + example: 'Digital Tribe' + 2807: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 2807 + name: + type: string + example: 'Digital Worldwide' + 5804: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 5804 + name: + type: string + example: 'Digitalmindsoft' + 5473: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 5473 + name: + type: string + example: 'DigiTek Software' + 628: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 628 + name: + type: string + example: 'Dinamic Multimedia' + 1044: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 1044 + name: + type: string + example: 'Dinamic Software' + 3289: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 3289 + name: + type: string + example: 'Dingaling' + 3069: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 3069 + name: + type: string + example: 'Dinine' + 1782: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 1782 + name: + type: string + example: 'Dischan Media' + 1050: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 1050 + name: + type: string + example: 'Discovery' + 4265: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 4265 + name: + type: string + example: 'Discovery Software International, Inc.' + 5257: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 5257 + name: + type: string + example: 'Disiplement Studio' + 171: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 171 + name: + type: string + example: 'Disney Interactive' + 1559: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 1559 + name: + type: string + example: 'Disney Mobile' + 1463: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 1463 + name: + type: string + example: 'Disney Software' + 5253: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 5253 + name: + type: string + example: 'Dispatch Games' + 5840: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 5840 + name: + type: string + example: 'divagante' + 394: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 394 + name: + type: string + example: 'DivoGames Ltd' + 5105: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 5105 + name: + type: string + example: 'DJL Software Ltd.' + 4670: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 4670 + name: + type: string + example: 'DK Games' + 3043: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 3043 + name: + type: string + example: 'dk’tronics' + 1855: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 1855 + name: + type: string + example: 'Dmitriy Uvarov' + 629: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 629 + name: + type: string + example: 'DnS Development' + 2506: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 2506 + name: + type: string + example: 'Doctor Entertainment' + 3421: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 3421 + name: + type: string + example: 'DOG' + 3396: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 3396 + name: + type: string + example: 'Dogenzaka Lab' + 3107: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 3107 + name: + type: string + example: 'Dolphin Barn' + 5768: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 5768 + name: + type: string + example: 'DolphinBarn' + 424: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 424 + name: + type: string + example: 'Domark Group Ltd.' + 2001: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 2001 + name: + type: string + example: 'Domark Software' + 3916: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 3916 + name: + type: string + example: 'Dong Gue La Mi Ltd.' + 3885: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 3885 + name: + type: string + example: 'Dongsung' + 3507: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 3507 + name: + type: string + example: 'Dooyong' + 2716: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 2716 + name: + type: string + example: 'Doppler Interactive' + 3144: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 3144 + name: + type: string + example: 'Doric Computer Services' + 2957: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 2957 + name: + type: string + example: 'Dot Warrior Games' + 1989: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 1989 + name: + type: string + example: 'DotEmu' + 2384: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 2384 + name: + type: string + example: 'Double Eleven' + 922: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 922 + name: + type: string + example: 'Double Fine Productions, Inc.' + 2956: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 2956 + name: + type: string + example: 'DoubleBear Productions' + 1027: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 1027 + name: + type: string + example: 'doublesix' + 2679: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 2679 + name: + type: string + example: 'Dovetail Games' + 4432: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 4432 + name: + type: string + example: 'Dr. Wuro Industries' + 8245: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 8245 + name: + type: string + example: 'Dragon Data Ltd.' + 3873: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 3873 + name: + type: string + example: 'Dragonfeet' + 2094: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 2094 + name: + type: string + example: 'Dragonhead Games' + 4067: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 4067 + name: + type: string + example: 'Dreadlocks' + 2306: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 2306 + name: + type: string + example: 'Dream Factory Co., Ltd.' + 1737: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 1737 + name: + type: string + example: 'Dreamatrix' + 8215: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 8215 + name: + type: string + example: 'DreamCatcher Interactive' + 457: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 457 + name: + type: string + example: 'DreamCatcher Interactive Inc.' + 4816: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 4816 + name: + type: string + example: 'Dreamsky' + 160: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 160 + name: + type: string + example: 'DreamWorks Interactive L.L.C.' + 5586: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 5586 + name: + type: string + example: 'Dreamworlds' + 4873: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 4873 + name: + type: string + example: 'DreamyTyper' + 1639: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 1639 + name: + type: string + example: 'Drinkbox Studios' + 3834: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 3834 + name: + type: string + example: 'Dro Soft' + 4724: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 4724 + name: + type: string + example: 'Drool' + 2361: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 2361 + name: + type: string + example: 'Droqen' + 8321: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 8321 + name: + type: string + example: 'DRUNKEN APES' + 336: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 336 + name: + type: string + example: 'DTMC, Inc.' + 182: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 182 + name: + type: string + example: 'dtp entertainment AG' + 3618: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 3618 + name: + type: string + example: 'dtp young entertainment GmbH & Co. KG' + 4087: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 4087 + name: + type: string + example: 'Dual' + 3833: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 3833 + name: + type: string + example: 'Duintronic' + 2759: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 2759 + name: + type: string + example: 'Duncan Brown' + 715: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 715 + name: + type: string + example: 'Durell Software Ltd.' + 4206: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 4206 + name: + type: string + example: 'Dusenberry Martin Racing' + 2872: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 2872 + name: + type: string + example: 'DVS' + 4149: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 4149 + name: + type: string + example: 'DYA Games' + 1839: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 1839 + name: + type: string + example: 'Dylan Fitterer' + 2952: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 2952 + name: + type: string + example: 'Dylan Loney' + 1535: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 1535 + name: + type: string + example: 'Dynabyte' + 4949: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 4949 + name: + type: string + example: 'Dynacom' + 4276: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 4276 + name: + type: string + example: 'Dynadata' + 4677: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 4677 + name: + type: string + example: 'Dynamics Marketing' + 578: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 578 + name: + type: string + example: 'Dynamix, Inc.' + 5882: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 5882 + name: + type: string + example: 'Dynax' + 2437: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 2437 + name: + type: string + example: 'E-Line Media' + 3700: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 3700 + name: + type: string + example: 'E-Scape EnterMedia' + 2325: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 2325 + name: + type: string + example: 'E. C. Horvath' + 4169: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 4169 + name: + type: string + example: 'E.G. Felaco' + 1517: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 1517 + name: + type: string + example: 'e.p.i.c. interactive entertainment gmbh' + 5602: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 5602 + name: + type: string + example: 'E.S.C. Co. Ltd' + 2977: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 2977 + name: + type: string + example: 'E3 Staff' + 1351: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 1351 + name: + type: string + example: 'EA Arts' + 1350: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 1350 + name: + type: string + example: 'EA Black Box' + 500: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 500 + name: + type: string + example: 'EA Canada' + 35: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 35 + name: + type: string + example: 'EA Games' + 1676: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 1676 + name: + type: string + example: 'EA Mobile' + 1025: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 1025 + name: + type: string + example: 'EA Partners' + 82: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 82 + name: + type: string + example: 'EA Sports' + 786: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 786 + name: + type: string + example: 'EA Sports BIG' + 3573: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 3573 + name: + type: string + example: 'EA Swiss Sarl' + 2523: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 2523 + name: + type: string + example: 'EA Tiburon' + 5356: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 5356 + name: + type: string + example: 'Eagle Marketing Corporation' + 3903: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 3903 + name: + type: string + example: 'Eaglesoft' + 4729: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 4729 + name: + type: string + example: 'East Cube' + 2790: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 2790 + name: + type: string + example: 'East Entertainment Media GmbH' + 4326: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 4326 + name: + type: string + example: 'East Techonology Corp.' + 1352: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 1352 + name: + type: string + example: 'eastasiasoft' + 843: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 843 + name: + type: string + example: 'Eastern Micro Electronics Inc.' + 2539: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 2539 + name: + type: string + example: 'EasyGameStation' + 4037: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 4037 + name: + type: string + example: 'EasyRPG' + 4879: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 4879 + name: + type: string + example: 'Eat Create Sleep' + 5371: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 5371 + name: + type: string + example: 'Ebivision' + 2246: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 2246 + name: + type: string + example: 'Eclipse Productions' + 3533: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 3533 + name: + type: string + example: 'Eclipse Software Design' + 1540: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 1540 + name: + type: string + example: 'Ecole Software' + 4928: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 4928 + name: + type: string + example: 'Ecseco Development' + 1227: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 1227 + name: + type: string + example: 'Eden Industries' + 4487: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 4487 + name: + type: string + example: 'Edgar M. Vigdal' + 3473: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 3473 + name: + type: string + example: 'Edge Case Games' + 807: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 807 + name: + type: string + example: 'Edge Games' + 4773: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 4773 + name: + type: string + example: 'Edge Interact' + 2073: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 2073 + name: + type: string + example: 'Edge of Reality, Ltd.' + 8312: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 8312 + name: + type: string + example: 'Edigamma S.r.l.' + 899: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 899 + name: + type: string + example: 'Edmund McMillen' + 8262: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 8262 + name: + type: string + example: 'Edmund MicMillen' + 997: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 997 + name: + type: string + example: 'ED_X // XLAN CLUB' + 5753: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 5753 + name: + type: string + example: 'Eforb Pte. Ltd.' + 1024: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 1024 + name: + type: string + example: 'eFUSION GmbH' + 3739: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 3739 + name: + type: string + example: 'eGames, Inc.' + 3265: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 3265 + name: + type: string + example: 'Eggcode' + 2362: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 2362 + name: + type: string + example: 'Egosoft' + 5517: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 5517 + name: + type: string + example: 'EgoTrip' + 5526: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 5526 + name: + type: string + example: 'EHTechnology' + 2527: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 2527 + name: + type: string + example: 'Eiconic Games Ltd' + 1453: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 1453 + name: + type: string + example: 'Eidetic, Inc.' + 1603: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 1603 + name: + type: string + example: 'Eidos Interactive' + 26: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 26 + name: + type: string + example: 'Eidos Interactive' + 398: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 398 + name: + type: string + example: 'Eidos Studios Hungary' + 1842: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 1842 + name: + type: string + example: 'Eidos-Montreal' + 2224: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 2224 + name: + type: string + example: 'EightyEight Games' + 2431: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 2431 + name: + type: string + example: 'eigoMANGA' + 5872: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 5872 + name: + type: string + example: 'Eiji Hashimoto' + 5436: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 5436 + name: + type: string + example: 'EIM Ltd.' + 3742: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 3742 + name: + type: string + example: 'Einar Odinn Holm' + 4381: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 4381 + name: + type: string + example: 'Einar Saukas' + 4348: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 4348 + name: + type: string + example: 'Elastic Games' + 3264: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 3264 + name: + type: string + example: 'Elder Games' + 1862: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 1862 + name: + type: string + example: 'Elecorn' + 1074: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 1074 + name: + type: string + example: 'Electra' + 4418: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 4418 + name: + type: string + example: 'Electric Boys Entertainment Software' + 690: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 690 + name: + type: string + example: 'Electric Dreams Inc.' + 3308: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 3308 + name: + type: string + example: 'Electric Harem' + 4948: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 4948 + name: + type: string + example: 'Electric Software Limited' + 5421: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 5421 + name: + type: string + example: 'Electro Design Company' + 2346: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 2346 + name: + type: string + example: 'Electro Source, LLC.' + 209: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 209 + name: + type: string + example: 'Electro-Brain' + 8280: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 8280 + name: + type: string + example: 'Electrocoin' + 4439: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 4439 + name: + type: string + example: 'Electrogame' + 2868: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 2868 + name: + type: string + example: 'electrolyte' + 2: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 2 + name: + type: string + example: 'Electronic Arts' + 987: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 987 + name: + type: string + example: 'Electronic Arts Sports' + 1872: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 1872 + name: + type: string + example: 'Electronic Arts Victor' + 3835: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 3835 + name: + type: string + example: 'Electronic Devices SRL Italy' + 4720: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 4720 + name: + type: string + example: 'Electronic Dreams Software' + 1009: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 1009 + name: + type: string + example: 'Electronic Zoo' + 4019: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 4019 + name: + type: string + example: 'Electronika' + 2905: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 2905 + name: + type: string + example: 'Elektrogames Limited Company' + 8218: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 8218 + name: + type: string + example: 'Elelphant Entertainment, LLC' + 1436: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 1436 + name: + type: string + example: 'Elephant Entertainment, LLC' + 5431: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 5431 + name: + type: string + example: 'Elettronica Video-Games' + 5428: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 5428 + name: + type: string + example: 'Elettronolo' + 5701: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 5701 + name: + type: string + example: 'Elev8 Games' + 8241: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 8241 + name: + type: string + example: 'Eleven' + 3356: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 3356 + name: + type: string + example: 'Elf Co., Ltd.' + 309: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 309 + name: + type: string + example: 'Elite Systems Ltd.' + 1765: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 1765 + name: + type: string + example: 'Emerson Radio Corporation' + 2447: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 2447 + name: + type: string + example: 'EMI Records' + 4705: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 4705 + name: + type: string + example: 'Emil Macko' + 2900: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 2900 + name: + type: string + example: 'Emphasys' + 251: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 251 + name: + type: string + example: 'Empire Interactive Entertainment' + 1800: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 1800 + name: + type: string + example: 'Empires' + 1722: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 1722 + name: + type: string + example: 'Empty Clip Studios' + 5924: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 5924 + name: + type: string + example: 'EMV Software' + 1495: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 1495 + name: + type: string + example: 'En Masse Entertainment' + 717: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 717 + name: + type: string + example: 'Encore' + 2326: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 2326 + name: + type: string + example: 'Encore Software, Inc.' + 927: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 927 + name: + type: string + example: 'Encore, Inc.' + 1841: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 1841 + name: + type: string + example: 'Endless Fluff Games' + 3620: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 3620 + name: + type: string + example: 'Endless Loop Studios' + 2216: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 2216 + name: + type: string + example: 'Endnight Games' + 1321: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 1321 + name: + type: string + example: 'Enerdyne Technologies' + 2647: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 2647 + name: + type: string + example: 'Energize' + 482: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 482 + name: + type: string + example: 'Engine Software B.V.' + 4539: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 4539 + name: + type: string + example: 'Enhance Games' + 1046: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 1046 + name: + type: string + example: 'Enigma Variations Ltd.' + 78: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 78 + name: + type: string + example: 'Enix Corporation' + 4644: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 4644 + name: + type: string + example: 'Enjoy Gaming Ltd' + 1503: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 1503 + name: + type: string + example: 'EnjoyUp' + 1488: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 1488 + name: + type: string + example: 'Enlight Interactive Inc.' + 723: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 723 + name: + type: string + example: 'Enlight Software Ltd.' + 3016: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 3016 + name: + type: string + example: 'Enormous Elk' + 5237: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 5237 + name: + type: string + example: 'Enter-Tech' + 1921: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 1921 + name: + type: string + example: 'Enterbrain, Inc.' + 5496: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 5496 + name: + type: string + example: 'Entertainment Software Publishing' + 3007: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 3007 + name: + type: string + example: 'Entertainment USA' + 1922: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 1922 + name: + type: string + example: 'Entheogen Studios LLC' + 3508: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 3508 + name: + type: string + example: 'Eolith Co., Ltd.' + 2022: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 2022 + name: + type: string + example: 'Eon Digital Entertainment' + 4836: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 4836 + name: + type: string + example: 'EPCOM' + 749: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 749 + name: + type: string + example: 'Epic Games' + 2888: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 2888 + name: + type: string + example: 'Epic/Sony Inc.' + 3583: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 3583 + name: + type: string + example: 'EpicQuest Games' + 486: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 486 + name: + type: string + example: 'Epoch Co., Ltd.' + 4157: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 4157 + name: + type: string + example: 'EPOS Game Studios' + 320: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 320 + name: + type: string + example: 'Epyx, Inc.' + 3585: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 3585 + name: + type: string + example: 'EQ Games' + 8201: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 8201 + name: + type: string + example: 'Equity Games Productions' + 2816: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 2816 + name: + type: string + example: 'Erbe Software, S.A.' + 3030: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 3030 + name: + type: string + example: 'ERE Informatique' + 5677: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 5677 + name: + type: string + example: 'Eric Ball' + 2066: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 2066 + name: + type: string + example: 'Eric Froemling' + 3070: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 3070 + name: + type: string + example: 'Eric Wright' + 5320: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 5320 + name: + type: string + example: 'Erosoft' + 3329: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 3329 + name: + type: string + example: 'Error Free Productions' + 679: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 679 + name: + type: string + example: 'Ertain Corporation' + 3111: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 3111 + name: + type: string + example: 'ESD Games' + 1272: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 1272 + name: + type: string + example: 'ESP Software' + 4732: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 4732 + name: + type: string + example: 'ESPN the Games' + 1549: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 1549 + name: + type: string + example: 'Essential Games' + 185: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 185 + name: + type: string + example: 'ESTsoft Corp' + 2922: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 2922 + name: + type: string + example: 'Etermax' + 5074: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 5074 + name: + type: string + example: 'Euro-Byte' + 2471: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 2471 + name: + type: string + example: 'Eurocenter Games' + 222: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 222 + name: + type: string + example: 'Eurocom Entertainment Software' + 5332: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 5332 + name: + type: string + example: 'Eurogold' + 8246: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 8246 + name: + type: string + example: 'Eurohard' + 2665: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 2665 + name: + type: string + example: 'EuroPress Software' + 4135: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 4135 + name: + type: string + example: 'Eurosoft' + 3182: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 3182 + name: + type: string + example: 'EuroVideo Medien GmbH' + 3749: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 3749 + name: + type: string + example: 'Eushully' + 3493: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 3493 + name: + type: string + example: 'Eutechnyx Limited' + 1701: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 1701 + name: + type: string + example: 'Evelend Games' + 3498: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 3498 + name: + type: string + example: 'Event Horizon' + 2100: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 2100 + name: + type: string + example: 'Everett Kaser Software' + 3412: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 3412 + name: + type: string + example: 'Everything Unlimited Ltd.' + 4512: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 4512 + name: + type: string + example: 'Evil Tortilla Games' + 4174: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 4174 + name: + type: string + example: 'Evolution Games' + 804: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 804 + name: + type: string + example: 'Evolved Games' + 4255: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 4255 + name: + type: string + example: 'Eware' + 4943: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 4943 + name: + type: string + example: 'Exact' + 2690: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 2690 + name: + type: string + example: 'Examu' + 1199: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 1199 + name: + type: string + example: 'Exato Game Studios' + 5221: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 5221 + name: + type: string + example: 'Excalibur Games' + 1934: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 1934 + name: + type: string + example: 'Excalibur Publishing Limited' + 4329: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 4329 + name: + type: string + example: 'Excellent System Ltd' + 525: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 525 + name: + type: string + example: 'Exidy, Inc.' + 2240: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 2240 + name: + type: string + example: 'Exkee' + 5816: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 5816 + name: + type: string + example: 'Exocet Software' + 836: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 836 + name: + type: string + example: 'Exor Studios' + 1696: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 1696 + name: + type: string + example: 'exoSyphen Studios LLC' + 4267: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 4267 + name: + type: string + example: 'Experience Inc.' + 3693: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 3693 + name: + type: string + example: 'Experimental Gamer Studios' + 4427: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 4427 + name: + type: string + example: 'Expert Software, Inc.' + 8214: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 8214 + name: + type: string + example: 'Extend Interactive' + 4184: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 4184 + name: + type: string + example: 'extreme Co., Ltd.' + 115: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 115 + name: + type: string + example: 'Extreme Entertainment Group' + 3530: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 3530 + name: + type: string + example: 'Exus Corporation' + 1486: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 1486 + name: + type: string + example: 'Eyebrow Interactive' + 4171: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 4171 + name: + type: string + example: 'F.lli Zaccaria' + 4486: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 4486 + name: + type: string + example: 'F1 Licenceware' + 4360: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 4360 + name: + type: string + example: 'F2 System' + 5085: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 5085 + name: + type: string + example: 'FAB Communications' + 1623: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 1623 + name: + type: string + example: 'Faber and Faber' + 4941: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 4941 + name: + type: string + example: 'Fabraz' + 5679: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 5679 + name: + type: string + example: 'Fabrizio Zavagli' + 385: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 385 + name: + type: string + example: 'Fabtek' + 872: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 872 + name: + type: string + example: 'FACE' + 1753: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 1753 + name: + type: string + example: 'Facepalm Games' + 1981: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 1981 + name: + type: string + example: 'Facepunch Studios' + 2738: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 2738 + name: + type: string + example: 'Failbetter Games' + 4026: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 4026 + name: + type: string + example: 'Fair Play Labs' + 2532: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 2532 + name: + type: string + example: 'Fairchild Semiconductor' + 914: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 914 + name: + type: string + example: 'Fairprice Games' + 4525: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 4525 + name: + type: string + example: 'FairyTale' + 2271: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 2271 + name: + type: string + example: 'Falcon' + 3697: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 3697 + name: + type: string + example: 'Fallen Tree Games' + 2704: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 2704 + name: + type: string + example: 'Family Soft' + 4950: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 4950 + name: + type: string + example: 'Fangamer' + 3024: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 3024 + name: + type: string + example: 'Fantasy Productions Verlags- und Medienvertriebsgesellschaft mbH' + 3146: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 3146 + name: + type: string + example: 'Fantasy Software' + 1964: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 1964 + name: + type: string + example: 'FarSight Studios' + 4178: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 4178 + name: + type: string + example: 'Faster Than Light' + 3165: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 3165 + name: + type: string + example: 'Fatpuppy Softworks' + 1665: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 1665 + name: + type: string + example: 'Fatshark AB' + 1062: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 1062 + name: + type: string + example: 'Faucet Software' + 3009: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 3009 + name: + type: string + example: 'Faux Game' + 2062: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 2062 + name: + type: string + example: 'Fayju' + 96: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 96 + name: + type: string + example: 'FCI' + 2773: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 2773 + name: + type: string + example: 'FDG Entertainment' + 1271: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 1271 + name: + type: string + example: 'Feel Plus' + 3722: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 3722 + name: + type: string + example: 'Feral Interactive' + 3776: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 3776 + name: + type: string + example: 'Fill-in-Cafe' + 3463: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 3463 + name: + type: string + example: 'Final Boss Entertainment' + 540: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 540 + name: + type: string + example: 'Final Form Games' + 5967: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 5967 + name: + type: string + example: 'Finish Line Games' + 4543: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 4543 + name: + type: string + example: 'Finji' + 3106: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 3106 + name: + type: string + example: 'Fira Soft' + 5948: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 5948 + name: + type: string + example: 'Fire Hose Games' + 4112: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 4112 + name: + type: string + example: 'Firebird Licensees Inc.' + 731: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 731 + name: + type: string + example: 'Firebird Software Ltd.' + 2339: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 2339 + name: + type: string + example: 'Firebrand Games' + 5230: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 5230 + name: + type: string + example: 'FireFly Studios Ltd.' + 883: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 883 + name: + type: string + example: 'Firemint' + 2387: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 2387 + name: + type: string + example: 'Fireproof Games' + 210: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 210 + name: + type: string + example: 'First Star Software, Inc.' + 2392: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 2392 + name: + type: string + example: 'Fish Factory Games' + 8276: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 8276 + name: + type: string + example: 'Fisher-Price' + 5876: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 5876 + name: + type: string + example: 'Fisher-Price Learning Software' + 8250: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 8250 + name: + type: string + example: 'Fishing Cactus' + 641: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 641 + name: + type: string + example: 'Fishtank Interactive' + 5774: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 5774 + name: + type: string + example: 'Five Stars VG Studio' + 2330: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 2330 + name: + type: string + example: 'Fixpoint Productions Ltd.' + 770: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 770 + name: + type: string + example: 'Flair Software Ltd.' + 5776: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 5776 + name: + type: string + example: 'Flaming Fowl Studios' + 3365: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 3365 + name: + type: string + example: 'Flaregames' + 8302: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 8302 + name: + type: string + example: 'Flash Games Co.' + 5227: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 5227 + name: + type: string + example: 'Flazm Interactive' + 3094: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 3094 + name: + type: string + example: 'FlukeDuke Ltd' + 4681: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 4681 + name: + type: string + example: 'Flyhigh Works' + 3966: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 3966 + name: + type: string + example: 'Flying Buffalo, inc.' + 4228: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 4228 + name: + type: string + example: 'Flying Crackers' + 118: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 118 + name: + type: string + example: 'Flying Edge, Inc.' + 3097: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 3097 + name: + type: string + example: 'Flying Star Games' + 632: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 632 + name: + type: string + example: 'Flying Wild Hog' + 4415: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 4415 + name: + type: string + example: 'FM Work' + 53: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 53 + name: + type: string + example: 'Focus Home Interactive' + 1681: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 1681 + name: + type: string + example: 'Focus Multimedia Ltd.' + 4006: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 4006 + name: + type: string + example: 'Foreign Media' + 4521: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 4521 + name: + type: string + example: 'Foresight' + 3864: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 3864 + name: + type: string + example: 'Forest' + 1876: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 1876 + name: + type: string + example: 'Forever Entertainment' + 2832: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 2832 + name: + type: string + example: 'Forever Entertainment S. A.' + 542: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 542 + name: + type: string + example: 'FormGen, Inc.' + 4882: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 4882 + name: + type: string + example: 'Fortafy Games' + 2820: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 2820 + name: + type: string + example: 'Forum' + 3998: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 3998 + name: + type: string + example: 'Four Horses' + 132: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 132 + name: + type: string + example: 'Fox Interactive' + 2918: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 2918 + name: + type: string + example: 'Fox Kids Europe' + 5726: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 5726 + name: + type: string + example: 'FoxNext VR Studio' + 5415: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 5415 + name: + type: string + example: 'FoxySofts' + 4762: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 4762 + name: + type: string + example: 'fraktalvoid' + 4088: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 4088 + name: + type: string + example: 'Frames' + 4161: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 4161 + name: + type: string + example: 'Fraoula' + 3912: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 3912 + name: + type: string + example: 'Freakzone Games' + 3631: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 3631 + name: + type: string + example: 'Fredaikis A.B.' + 3384: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 3384 + name: + type: string + example: 'Free Games Blot' + 4622: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 4622 + name: + type: string + example: 'Free Lunch Design' + 3002: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 3002 + name: + type: string + example: 'Free Reign Entertainment' + 2717: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 2717 + name: + type: string + example: 'Free Spirit' + 1560: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 1560 + name: + type: string + example: 'Freebird Games' + 2383: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 2383 + name: + type: string + example: 'Freejam' + 5583: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 5583 + name: + type: string + example: 'Freeverse, Inc.' + 5546: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 5546 + name: + type: string + example: 'Freeware' + 4808: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 4808 + name: + type: string + example: 'Freyr Games' + 400: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 400 + name: + type: string + example: 'Frictional Games' + 2081: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 2081 + name: + type: string + example: 'Frima Studio' + 2945: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 2945 + name: + type: string + example: 'FrogDice' + 2369: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 2369 + name: + type: string + example: 'Froggo Games Corporation' + 919: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 919 + name: + type: string + example: 'Frogster Interactive Pictures AG' + 126: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 126 + name: + type: string + example: 'FromSoftware, Inc.' + 563: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 563 + name: + type: string + example: 'Front Street Publishing' + 2312: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 2312 + name: + type: string + example: 'Frontier Developments Ltd.' + 2789: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 2789 + name: + type: string + example: 'FRONTLINE Studios, Inc.' + 1827: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 1827 + name: + type: string + example: 'Frooxius' + 3752: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 3752 + name: + type: string + example: 'Frozen Dev' + 416: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 416 + name: + type: string + example: 'Frozenbyte, Inc.' + 889: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 889 + name: + type: string + example: 'FrozenSand, LLC' + 1911: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 1911 + name: + type: string + example: 'Fruitbat Factory' + 4801: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 4801 + name: + type: string + example: 'FTG' + 4120: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 4120 + name: + type: string + example: 'FTL - Faster Than Light' + 282: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 282 + name: + type: string + example: 'FTL Games' + 5767: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 5767 + name: + type: string + example: 'Fuelcell Games' + 2860: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 2860 + name: + type: string + example: 'Fuji Television Network, Inc.' + 5826: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 5826 + name: + type: string + example: 'Fujicom' + 3701: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 3701 + name: + type: string + example: 'Fujimic' + 295: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 295 + name: + type: string + example: 'Fujisankei Communications International Inc.' + 4450: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 4450 + name: + type: string + example: 'Fukutake Publishing Co, Ltd.' + 5571: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 5571 + name: + type: string + example: 'Full Control' + 3207: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 3207 + name: + type: string + example: 'Full Fat Productions Ltd.' + 4932: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 4932 + name: + type: string + example: 'Fullbright' + 3524: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 3524 + name: + type: string + example: 'Fummy' + 2846: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 2846 + name: + type: string + example: 'Fun Fun Club' + 4013: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 4013 + name: + type: string + example: 'Funai' + 1884: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 1884 + name: + type: string + example: 'Funbox Media Ltd.' + 29: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 29 + name: + type: string + example: 'Funcom Productions A/S' + 1997: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 1997 + name: + type: string + example: 'Funsoft' + 1363: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 1363 + name: + type: string + example: 'Funsta' + 2351: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 2351 + name: + type: string + example: 'Funvision' + 4079: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 4079 + name: + type: string + example: 'Funware' + 5574: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 5574 + name: + type: string + example: 'FuRyu' + 2098: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 2098 + name: + type: string + example: 'Fusion Reactions' + 4412: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 4412 + name: + type: string + example: 'Fusion Retro Books' + 2644: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 2644 + name: + type: string + example: 'Futura' + 1666: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 1666 + name: + type: string + example: 'Futuremark Games Studio' + 2467: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 2467 + name: + type: string + example: 'FuturLab' + 1324: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 1324 + name: + type: string + example: 'Fuuki Co., Ltd.' + 2844: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 2844 + name: + type: string + example: 'Fuzhou Waixing Computer Science & Technology' + 3887: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 3887 + name: + type: string + example: 'G&M' + 8292: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 8292 + name: + type: string + example: 'G-Craft' + 4788: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 4788 + name: + type: string + example: 'G-Gee' + 8265: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 8265 + name: + type: string + example: 'G. Straume' + 2892: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 2892 + name: + type: string + example: 'G.O.1' + 1539: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 1539 + name: + type: string + example: 'G.rev Ltd.' + 2861: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 2861 + name: + type: string + example: 'G1M2' + 5874: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 5874 + name: + type: string + example: 'G2 Games' + 1923: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 1923 + name: + type: string + example: 'G3 Studios' + 5401: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 5401 + name: + type: string + example: 'G5 Entertainment AB' + 2901: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 2901 + name: + type: string + example: 'Gaboda Games' + 3063: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 3063 + name: + type: string + example: 'Gadget Soft' + 3366: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 3366 + name: + type: string + example: 'Gaea Mobile Limited' + 1320: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 1320 + name: + type: string + example: 'Gaelco, S.A.' + 3237: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 3237 + name: + type: string + example: 'GAGA Communications Inc.' + 829: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 829 + name: + type: string + example: 'Gaijin Entertainment' + 3679: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 3679 + name: + type: string + example: 'Gaijinworks' + 3721: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 3721 + name: + type: string + example: 'Gainax' + 4021: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 4021 + name: + type: string + example: 'Gakken Co., Ltd.' + 1859: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 1859 + name: + type: string + example: 'Galactic Cafe' + 2541: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 2541 + name: + type: string + example: 'GalaxyTrail Games' + 5972: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 5972 + name: + type: string + example: 'Gambitious' + 2944: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 2944 + name: + type: string + example: 'Gambitious Digital Entertainment' + 543: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 543 + name: + type: string + example: 'Game Arts Co., Ltd.' + 2002: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 2002 + name: + type: string + example: 'Game Crafters' + 471: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 471 + name: + type: string + example: 'Game Factory Interactive Ltd.' + 2474: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 2474 + name: + type: string + example: 'Game Insight' + 2929: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 2929 + name: + type: string + example: 'Game Line' + 4320: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 4320 + name: + type: string + example: 'Game Mill Publishing, Inc.' + 1365: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 1365 + name: + type: string + example: 'Game Plan Incorporated' + 3823: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 3823 + name: + type: string + example: 'Game Room' + 4770: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 4770 + name: + type: string + example: 'Game Village' + 3035: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 3035 + name: + type: string + example: 'Game-A-Tron' + 5690: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 5690 + name: + type: string + example: 'Game-Labs' + 3800: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 3800 + name: + type: string + example: 'Game321' + 3696: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 3696 + name: + type: string + example: 'GameArt Studio' + 1106: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 1106 + name: + type: string + example: 'GameBank Corp.' + 2386: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 2386 + name: + type: string + example: 'GameBridge' + 777: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 777 + name: + type: string + example: 'Gamecock Media Group' + 4190: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 4190 + name: + type: string + example: 'GameDesire' + 1815: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 1815 + name: + type: string + example: 'GameForge' + 8244: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 8244 + name: + type: string + example: 'GameHouse, Inc.' + 5539: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 5539 + name: + type: string + example: 'Gamehut' + 2129: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 2129 + name: + type: string + example: 'Gamelion' + 1268: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 1268 + name: + type: string + example: 'Gameloft S.A.' + 2331: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 2331 + name: + type: string + example: 'GameMill Entertainment' + 3787: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 3787 + name: + type: string + example: 'GameOn Sweden' + 951: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 951 + name: + type: string + example: 'Gamerizon' + 1803: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 1803 + name: + type: string + example: 'GamersFirst' + 2171: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 2171 + name: + type: string + example: 'Games Express' + 1837: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 1837 + name: + type: string + example: 'Games Faction' + 4347: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 4347 + name: + type: string + example: 'Games Factory Online BV' + 2304: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 2304 + name: + type: string + example: 'Games Farm' + 5026: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 5026 + name: + type: string + example: 'Games Machine Ltd.' + 3208: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 3208 + name: + type: string + example: 'Games Workshop Ltd.' + 2687: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 2687 + name: + type: string + example: 'GameShastra Solutions Pvt Ltd' + 1865: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 1865 + name: + type: string + example: 'Gamestar' + 1119: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 1119 + name: + type: string + example: 'GameTap' + 5550: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 5550 + name: + type: string + example: 'GameTek UK Ltd.' + 80: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 80 + name: + type: string + example: 'GameTek, Inc.' + 5796: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 5796 + name: + type: string + example: 'GameTomo' + 4621: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 4621 + name: + type: string + example: 'Gametrust' + 2551: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 2551 + name: + type: string + example: 'Gamevil Inc.' + 4142: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 4142 + name: + type: string + example: 'GameVillage' + 3779: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 3779 + name: + type: string + example: 'gameX' + 796: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 796 + name: + type: string + example: 'gamigo AG' + 5532: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 5532 + name: + type: string + example: 'Gamious' + 3931: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 3931 + name: + type: string + example: 'Gammation' + 8209: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 8209 + name: + type: string + example: 'Gammick Entertainment' + 2191: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 2191 + name: + type: string + example: 'Gamtech Software' + 3545: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 3545 + name: + type: string + example: 'Gamute' + 4258: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 4258 + name: + type: string + example: 'Gaps' + 3136: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 3136 + name: + type: string + example: 'Gargoyle Games' + 5438: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 5438 + name: + type: string + example: 'Garow' + 898: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 898 + name: + type: string + example: 'Gaslamp Games' + 168: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 168 + name: + type: string + example: 'Gathering of Developers' + 4373: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 4373 + name: + type: string + example: 'Gaumont Multimedia' + 8240: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 8240 + name: + type: string + example: 'Gavaking' + 5028: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 5028 + name: + type: string + example: 'Gazillion Entertainment' + 3413: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 3413 + name: + type: string + example: 'GCE' + 2847: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 2847 + name: + type: string + example: 'Ge De Industry Co.' + 3772: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 3772 + name: + type: string + example: 'Gearbox Software LLC' + 2376: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 2376 + name: + type: string + example: 'Gears for Breakfast' + 4132: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 4132 + name: + type: string + example: 'Gebet' + 2110: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 2110 + name: + type: string + example: 'Geeta Games' + 1647: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 1647 + name: + type: string + example: 'Geex Games' + 8264: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 8264 + name: + type: string + example: 'Gem International Corporation' + 5126: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 5126 + name: + type: string + example: 'Gemtime' + 4759: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 4759 + name: + type: string + example: 'Genera Games' + 5521: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 5521 + name: + type: string + example: 'Genesis Software' + 3549: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 3549 + name: + type: string + example: 'Genetix Studio' + 109: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 109 + name: + type: string + example: 'Genki Co., Ltd.' + 5595: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 5595 + name: + type: string + example: 'Gentleman Squid Studio' + 5782: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 5782 + name: + type: string + example: 'Gentry Software' + 5013: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 5013 + name: + type: string + example: 'Georg Rottensteiner' + 5798: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 5798 + name: + type: string + example: 'Geronimo interactive' + 4902: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 4902 + name: + type: string + example: 'gerstrong' + 5834: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 5834 + name: + type: string + example: 'Ghostfire Games' + 1840: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 1840 + name: + type: string + example: 'Ghostlight Ltd.' + 4259: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 4259 + name: + type: string + example: 'Giana''s Return Team' + 8385: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 8385 + name: + type: string + example: 'Giant Army' + 1424: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 1424 + name: + type: string + example: 'Giant Media Group Ltd.' + 2693: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 2693 + name: + type: string + example: 'Giant Spacekat' + 4914: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 4914 + name: + type: string + example: 'Giant Sparrow' + 3741: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 3741 + name: + type: string + example: 'GIGA' + 1955: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 1955 + name: + type: string + example: 'Giles Williams' + 5224: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 5224 + name: + type: string + example: 'Ginormocorp Holdings Ltd' + 3713: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 3713 + name: + type: string + example: 'Glass Bottom Games' + 2698: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 2698 + name: + type: string + example: 'Glass Knuckle Games' + 862: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 862 + name: + type: string + example: 'Global Star' + 3290: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 3290 + name: + type: string + example: 'Global A Entertainment' + 4697: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 4697 + name: + type: string + example: 'Global Corporation Tokyo' + 4471: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 4471 + name: + type: string + example: 'Global Software' + 462: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 462 + name: + type: string + example: 'Global Star Software Inc.' + 4548: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 4548 + name: + type: string + example: 'Glory Sun' + 4537: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 4537 + name: + type: string + example: 'Glu Mobile' + 3848: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 3848 + name: + type: string + example: 'Gluk' + 8193: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 8193 + name: + type: string + example: 'GMI' + 1198: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 1198 + name: + type: string + example: 'GMX Media' + 2706: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 2706 + name: + type: string + example: 'gnifrebel Games UG' + 763: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 763 + name: + type: string + example: 'GO!' + 8277: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 8277 + name: + type: string + example: 'Goblinz Studio' + 108: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 108 + name: + type: string + example: 'God Games' + 1624: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 1624 + name: + type: string + example: 'Going Loud Studios' + 3877: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 3877 + name: + type: string + example: 'Goldstar' + 1759: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 1759 + name: + type: string + example: 'Goliath' + 5088: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 5088 + name: + type: string + example: 'Goliath Games' + 974: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 974 + name: + type: string + example: 'Gonzo Games' + 2923: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 2923 + name: + type: string + example: 'Good Deal Games' + 8260: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 8260 + name: + type: string + example: 'Good Game' + 4814: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 4814 + name: + type: string + example: 'Good Games' + 3248: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 3248 + name: + type: string + example: 'Good House' + 5492: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 5492 + name: + type: string + example: 'Good Shepherd Entertainment' + 2074: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 2074 + name: + type: string + example: 'Goodhustle Studios, Inc.' + 388: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 388 + name: + type: string + example: 'Got Game Entertainment, LLC' + 467: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 467 + name: + type: string + example: 'Gotham Games' + 1347: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 1347 + name: + type: string + example: 'Gottlieb' + 3375: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 3375 + name: + type: string + example: 'Gouder Co.' + 1166: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 1166 + name: + type: string + example: 'gPotato' + 1461: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 1461 + name: + type: string + example: 'Grab, LLC' + 3215: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 3215 + name: + type: string + example: 'GrabTheGames Studios' + 4834: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 4834 + name: + type: string + example: 'Gradiente' + 4666: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 4666 + name: + type: string + example: 'Gradual Games' + 4883: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 4883 + name: + type: string + example: 'Graffiti' + 1270: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 1270 + name: + type: string + example: 'Graffiti Entertainment, LLC' + 5246: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 5246 + name: + type: string + example: 'Grand Products' + 3480: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 3480 + name: + type: string + example: 'GrandPrix' + 757: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 757 + name: + type: string + example: 'Grandslam Entertainment' + 3673: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 3673 + name: + type: string + example: 'Grandstand Leisure Ltd' + 2713: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 2713 + name: + type: string + example: 'Grandy' + 4913: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 4913 + name: + type: string + example: 'Grant Ojanen''s Creations' + 4008: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 4008 + name: + type: string + example: 'Graphic Simulations Corporation' + 4738: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 4738 + name: + type: string + example: 'Graphic Techno' + 1550: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 1550 + name: + type: string + example: 'Grasshopper Manufacture inc.' + 1026: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 1026 + name: + type: string + example: 'Gravity Co., Ltd.' + 3771: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 3771 + name: + type: string + example: 'Gravity Europe SAS' + 2724: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 2724 + name: + type: string + example: 'Gray Design Associates' + 5680: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 5680 + name: + type: string + example: 'Gray Games' + 2683: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 2683 + name: + type: string + example: 'GREE' + 2764: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 2764 + name: + type: string + example: 'Green Hill Studios' + 5644: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 5644 + name: + type: string + example: 'Green Lava Studios' + 4789: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 4789 + name: + type: string + example: 'Green Light Projects' + 5723: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 5723 + name: + type: string + example: 'Green Man Gaming Publishing' + 3489: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 3489 + name: + type: string + example: 'Green Man Loaded' + 4541: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 4541 + name: + type: string + example: 'Green Sauce Games' + 1785: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 1785 + name: + type: string + example: 'Greenheart Games' + 3169: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 3169 + name: + type: string + example: 'Greenwood Entertainment' + 5681: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 5681 + name: + type: string + example: 'Greg Troutman' + 4170: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 4170 + name: + type: string + example: 'Gremlin Industries' + 121: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 121 + name: + type: string + example: 'Gremlin Interactive Ltd.' + 4648: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 4648 + name: + type: string + example: 'Grendel Games' + 2313: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 2313 + name: + type: string + example: 'Grey Box' + 2631: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 2631 + name: + type: string + example: 'Grey Dog Software' + 5152: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 5152 + name: + type: string + example: 'Greyhound Games' + 1262: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 1262 + name: + type: string + example: 'Grinding Gear Games' + 1772: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 1772 + name: + type: string + example: 'Grip Games' + 4682: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 4682 + name: + type: string + example: 'Griptonite Games' + 1819: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 1819 + name: + type: string + example: 'Grolier Interactive' + 553: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 553 + name: + type: string + example: 'Groove Games' + 5904: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 5904 + name: + type: string + example: 'Ground Control Studios' + 5952: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 5952 + name: + type: string + example: 'Grunge Games LTD' + 2696: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 2696 + name: + type: string + example: 'Grynsoft' + 3220: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 3220 + name: + type: string + example: 'GSC Game World' + 3838: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 3838 + name: + type: string + example: 'GSProductions Ltd.' + 1519: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 1519 + name: + type: string + example: 'GT Interactive Software (UK) Ltd.' + 167: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 167 + name: + type: string + example: 'GT Interactive Software Corp.' + 2503: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 2503 + name: + type: string + example: 'GT Interactive Software Europe Ltd.' + 505: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 505 + name: + type: string + example: 'GTE Entertainment' + 333: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 333 + name: + type: string + example: 'GTE Vantage Inc.' + 5541: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 5541 + name: + type: string + example: 'gtscom' + 1089: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 1089 + name: + type: string + example: 'Guildhall Leisure Services Ltd.' + 2341: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 2341 + name: + type: string + example: 'Gun Media' + 4204: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 4204 + name: + type: string + example: 'GungHo Online Entertainment' + 5233: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 5233 + name: + type: string + example: 'Guru Games' + 2990: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 2990 + name: + type: string + example: 'GUST Co., Ltd.' + 3646: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 3646 + name: + type: string + example: 'H2 Interactive Co. Ltd.' + 372: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 372 + name: + type: string + example: 'Hacker International' + 5057: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 5057 + name: + type: string + example: 'Haemimont Games AD' + 5565: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 5565 + name: + type: string + example: 'Hailstorm Games' + 4150: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 4150 + name: + type: string + example: 'Hakuhodo Inc.' + 268: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 268 + name: + type: string + example: 'HAL' + 91: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 91 + name: + type: string + example: 'HAL America Inc.' + 205: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 205 + name: + type: string + example: 'HAL Laboratory, Inc.' + 1557: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 1557 + name: + type: string + example: 'Halfbrick Studios' + 4513: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 4513 + name: + type: string + example: 'Halfbus' + 1407: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 1407 + name: + type: string + example: 'Halifax S.R.L.' + 5556: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 5556 + name: + type: string + example: 'Hammerfall Publishing' + 2515: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 2515 + name: + type: string + example: 'HAMSTER Corporation' + 3730: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 3730 + name: + type: string + example: 'Hanafram Co., Ltd.' + 2063: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 2063 + name: + type: string + example: 'Hanako Games' + 2980: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 2980 + name: + type: string + example: 'Handleabra Games Inc.' + 2127: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 2127 + name: + type: string + example: 'Hands On Entertainment Inc.' + 4616: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 4616 + name: + type: string + example: 'Hands-On Mobile' + 2708: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 2708 + name: + type: string + example: 'Hapa Games' + 2925: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 2925 + name: + type: string + example: 'HappySoft' + 1926: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 1926 + name: + type: string + example: 'Harebrained Schemes' + 1187: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 1187 + name: + type: string + example: 'Harmonix Music Systems, Inc.' + 5912: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 5912 + name: + type: string + example: 'Harry Dodgson' + 2651: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 2651 + name: + type: string + example: 'Haruneko Entertainment' + 146: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 146 + name: + type: string + example: 'Hasbro Interactive, Inc.' + 2721: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 2721 + name: + type: string + example: 'Hashstash Studios Pvt. Ltd.' + 926: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 926 + name: + type: string + example: 'Hassey Enterprises, Inc.' + 8205: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 8205 + name: + type: string + example: 'Havas Interactive' + 1667: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 1667 + name: + type: string + example: 'Hazardous Software' + 2560: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 2560 + name: + type: string + example: 'HB Studios' + 2359: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 2359 + name: + type: string + example: 'HD Interactive' + 1492: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 1492 + name: + type: string + example: 'Headup Games' + 3586: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 3586 + name: + type: string + example: 'Heart Denshi' + 4084: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 4084 + name: + type: string + example: 'Heart Machine' + 3932: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 3932 + name: + type: string + example: 'Heart Soft' + 1714: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 1714 + name: + type: string + example: 'HeartBit Interactive' + 2056: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 2056 + name: + type: string + example: 'Heavy Spectrum Entertainment Labs' + 1527: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 1527 + name: + type: string + example: 'Hect' + 2039: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 2039 + name: + type: string + example: 'Helium Interactive LLC' + 1792: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 1792 + name: + type: string + example: 'Hello Games' + 4334: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 4334 + name: + type: string + example: 'Hello There AB' + 392: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 392 + name: + type: string + example: 'Hemisphere Games' + 1437: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 1437 + name: + type: string + example: 'Her Interactive, Inc.' + 5069: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 5069 + name: + type: string + example: 'HeroCraft' + 4629: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 4629 + name: + type: string + example: 'Hertie' + 3576: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 3576 + name: + type: string + example: 'Hertz Co. Ltd' + 315: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 315 + name: + type: string + example: 'HES Interactive' + 3187: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 3187 + name: + type: string + example: 'HeSaw' + 5035: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 5035 + name: + type: string + example: 'Hesware' + 4853: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 4853 + name: + type: string + example: 'Hewlett-Packard' + 303: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 303 + name: + type: string + example: 'Hewson Consultants Ltd.' + 2709: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 2709 + name: + type: string + example: 'Hexage Ltd' + 3488: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 3488 + name: + type: string + example: 'Hexdragonal Games' + 332: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 332 + name: + type: string + example: 'Hi Tech Entertainment' + 4407: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 4407 + name: + type: string + example: 'Hi-max Technology' + 1203: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 1203 + name: + type: string + example: 'Hi-Rez Studios' + 4596: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 4596 + name: + type: string + example: 'Hi-Score Media Work' + 4469: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 4469 + name: + type: string + example: 'Hi-Soft' + 754: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 754 + name: + type: string + example: 'Hi-Tec Software Ltd.' + 253: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 253 + name: + type: string + example: 'Hi-Tech Expressions, Inc.' + 426: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 426 + name: + type: string + example: 'Hicom Entertainment' + 8256: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 8256 + name: + type: string + example: 'HID' + 2873: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 2873 + name: + type: string + example: 'Hidden Palace' + 925: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 925 + name: + type: string + example: 'Hidden Path Entertainment' + 4904: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 4904 + name: + type: string + example: 'High Level Challenge' + 1735: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 1735 + name: + type: string + example: 'High Moon Studios, Inc.' + 1900: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 1900 + name: + type: string + example: 'High Voltage Software, Inc.' + 5457: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 5457 + name: + type: string + example: 'Hill MacGibbon' + 2230: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 2230 + name: + type: string + example: 'Himeya Soft, Inc' + 4756: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 4756 + name: + type: string + example: 'Hinocyber' + 2536: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 2536 + name: + type: string + example: 'Hinterland Studio Inc.' + 464: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 464 + name: + type: string + example: 'Hip Games' + 4797: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 4797 + name: + type: string + example: 'HippieGame Inc.' + 5460: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 5460 + name: + type: string + example: 'Hipster Whale' + 4499: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 4499 + name: + type: string + example: 'Hiro' + 5832: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 5832 + name: + type: string + example: 'histat' + 2628: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 2628 + name: + type: string + example: 'Hitcents' + 5284: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 5284 + name: + type: string + example: 'HitSoft' + 4246: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 4246 + name: + type: string + example: 'Hoei' + 5469: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 5469 + name: + type: string + example: 'Holodream Software' + 5958: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 5958 + name: + type: string + example: 'Holospark' + 5367: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 5367 + name: + type: string + example: 'Holy Priest' + 8238: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 8238 + name: + type: string + example: 'Holy Warp' + 2189: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 2189 + name: + type: string + example: 'Home Data Corp.' + 345: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 345 + name: + type: string + example: 'Home Entertainment Suppliers Pty. Ltd.' + 5533: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 5533 + name: + type: string + example: 'Home Net Games' + 8257: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 8257 + name: + type: string + example: 'Home Vision' + 3624: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 3624 + name: + type: string + example: 'HomeBrew Software' + 1760: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 1760 + name: + type: string + example: 'Homevision' + 3614: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 3614 + name: + type: string + example: 'Honeybee Soft' + 2134: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 2134 + name: + type: string + example: 'Honeyslug' + 5955: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 5955 + name: + type: string + example: 'Hoplite Research' + 1987: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 1987 + name: + type: string + example: 'Hopoo Games' + 3370: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 3370 + name: + type: string + example: 'Horberg Productions' + 4753: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 4753 + name: + type: string + example: 'Hori Electric Co., Ltd.' + 265: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 265 + name: + type: string + example: 'Hot-B Co., Ltd.' + 1217: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 1217 + name: + type: string + example: 'Hothead Games' + 3859: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 3859 + name: + type: string + example: 'Housemarque' + 3844: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 3844 + name: + type: string + example: 'Hozer Video Games' + 4755: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 4755 + name: + type: string + example: 'Hs Action Game' + 3674: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 3674 + name: + type: string + example: 'HuCard' + 3292: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 3292 + name: + type: string + example: 'Hucast Games' + 74: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 74 + name: + type: string + example: 'Hudson Entertainment, Inc.' + 4744: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 4744 + name: + type: string + example: 'Human Code' + 5038: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 5038 + name: + type: string + example: 'Human Engineered Software' + 377: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 377 + name: + type: string + example: 'Human Entertainment, Inc.' + 2389: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 2389 + name: + type: string + example: 'HumaNature Studios, Incorporated' + 5542: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 5542 + name: + type: string + example: 'Humble Bundle' + 3660: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 3660 + name: + type: string + example: 'Humming Bird Soft' + 1493: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 1493 + name: + type: string + example: 'Humongous Entertainment' + 2746: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 2746 + name: + type: string + example: 'HuniePot' + 5751: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 5751 + name: + type: string + example: 'Hunter Studio' + 3260: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 3260 + name: + type: string + example: 'Huracan Studio' + 2282: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 2282 + name: + type: string + example: 'Hurtownia Oprogramowania USER' + 3665: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 3665 + name: + type: string + example: 'Huy Pham' + 2875: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 2875 + name: + type: string + example: 'Hyper Hippo Productions Ltd.' + 2059: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 2059 + name: + type: string + example: 'Hyper-Devbox s.a.r.l.' + 5188: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 5188 + name: + type: string + example: 'HypeTrain Digital' + 4791: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 4791 + name: + type: string + example: 'Hyunmin Ryu' + 487: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 487 + name: + type: string + example: 'I''Max Corp.' + 2767: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 2767 + name: + type: string + example: 'I-Illusions' + 8221: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 8221 + name: + type: string + example: 'I-Mockery' + 1010: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 1010 + name: + type: string + example: 'I.C.E. Multimedia' + 5837: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 5837 + name: + type: string + example: 'I.M.R. Technology' + 1823: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 1823 + name: + type: string + example: 'Ian Campbell' + 8233: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 8233 + name: + type: string + example: 'Ian Ellery' + 2720: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 2720 + name: + type: string + example: 'Ian MacLarty' + 2288: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 2288 + name: + type: string + example: 'Ian Snyder' + 3900: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 3900 + name: + type: string + example: 'Iber Soft' + 2084: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 2084 + name: + type: string + example: 'IBM' + 5260: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 5260 + name: + type: string + example: 'Icarus Studios' + 1079: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 1079 + name: + type: string + example: 'ICE Game Studios' + 1604: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 1604 + name: + type: string + example: 'Iceberg Interactive' + 591: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 591 + name: + type: string + example: 'ICOM Simulations, Inc.' + 8275: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 8275 + name: + type: string + example: 'Icon Design Ltd.' + 2126: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 2126 + name: + type: string + example: 'Icon Games' + 166: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 166 + name: + type: string + example: 'id Software' + 5735: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 5735 + name: + type: string + example: 'IDC Games' + 3446: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 3446 + name: + type: string + example: 'Idea' + 1967: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 1967 + name: + type: string + example: 'Idea Factory' + 2684: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 2684 + name: + type: string + example: 'Idea Factory International' + 4881: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 4881 + name: + type: string + example: 'IDSA' + 2319: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 2319 + name: + type: string + example: 'iEntertainment Network' + 3191: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 3191 + name: + type: string + example: 'iGames Publishing' + 472: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 472 + name: + type: string + example: 'Ignition' + 8290: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 8290 + name: + type: string + example: 'Ignition Entertainment Ltd.' + 643: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 643 + name: + type: string + example: 'Iguana Entertainment, Inc.' + 3175: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 3175 + name: + type: string + example: 'IJK Software' + 4003: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 4003 + name: + type: string + example: 'Ikarion Software GmbH' + 4481: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 4481 + name: + type: string + example: 'Illus Seed' + 3613: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 3613 + name: + type: string + example: 'Ilmfinity' + 4015: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 4015 + name: + type: string + example: 'Imadio' + 2581: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 2581 + name: + type: string + example: 'Image & Form' + 4403: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 4403 + name: + type: string + example: 'Image Co., Ltd.' + 1189: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 1189 + name: + type: string + example: 'Image Space Inc.' + 325: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 325 + name: + type: string + example: 'Image Works' + 3322: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 3322 + name: + type: string + example: 'imageepoch' + 4283: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 4283 + name: + type: string + example: 'Imageer' + 1035: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 1035 + name: + type: string + example: 'Imagesoft' + 4736: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 4736 + name: + type: string + example: 'Imageworks' + 260: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 260 + name: + type: string + example: 'Imagic' + 718: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 718 + name: + type: string + example: 'Imagine Software' + 218: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 218 + name: + type: string + example: 'Imagineer Co., Ltd.' + 2903: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 2903 + name: + type: string + example: 'Imangi Studios' + 4200: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 4200 + name: + type: string + example: 'IMGN.PRO' + 2428: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 2428 + name: + type: string + example: 'Immanitas Entertainment' + 2857: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 2857 + name: + type: string + example: 'Immersive Games' + 2196: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 2196 + name: + type: string + example: 'Impressions' + 1112: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 1112 + name: + type: string + example: 'Impressions Games' + 2147: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 2147 + name: + type: string + example: 'Impressionware S.r.l.' + 2985: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 2985 + name: + type: string + example: 'Impromptu Software Limited' + 8286: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 8286 + name: + type: string + example: 'Impulse Games, Inc.' + 4420: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 4420 + name: + type: string + example: 'In Chang Electronic Co' + 5699: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 5699 + name: + type: string + example: 'In Vitro Games' + 2610: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 2610 + name: + type: string + example: 'In-house' + 5653: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 5653 + name: + type: string + example: 'In2Games Ltd' + 3756: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 3756 + name: + type: string + example: 'Incandescent Imaging' + 1159: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 1159 + name: + type: string + example: 'Incentive Software Ltd.' + 5138: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 5138 + name: + type: string + example: 'Incognito Software, Inc.' + 1339: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 1339 + name: + type: string + example: 'Incredible Technologies, Inc.' + 3566: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 3566 + name: + type: string + example: 'Increment P Corp.' + 1706: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 1706 + name: + type: string + example: 'Increpare Games' + 820: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 820 + name: + type: string + example: 'Independent' + 4349: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 4349 + name: + type: string + example: 'Independent Arts Software' + 5161: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 5161 + name: + type: string + example: 'Independent Software' + 4225: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 4225 + name: + type: string + example: 'Indescomp' + 4010: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 4010 + name: + type: string + example: 'index+' + 3105: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 3105 + name: + type: string + example: 'Indie DB' + 2793: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 2793 + name: + type: string + example: 'Indie Voyage' + 2798: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 2798 + name: + type: string + example: 'IndieBox, Inc.' + 5695: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 5695 + name: + type: string + example: 'IndieGala' + 1060: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 1060 + name: + type: string + example: 'indiePub Entertainment, Inc.' + 3060: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 3060 + name: + type: string + example: 'Indietopia Games' + 2735: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 2735 + name: + type: string + example: 'Infamous Adventures' + 5340: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 5340 + name: + type: string + example: 'INFERIOR Products Bonn (IPB)' + 5648: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 5648 + name: + type: string + example: 'Infinite Dreams' + 4372: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 4372 + name: + type: string + example: 'Infinite Lives Ltd.' + 2518: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 2518 + name: + type: string + example: 'Infinite Monkeys Entertainment' + 4665: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 4665 + name: + type: string + example: 'Infinite NES Lives' + 5875: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 5875 + name: + type: string + example: 'Infinite State Games' + 4517: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 4517 + name: + type: string + example: 'Infinity Vector Ltd.' + 880: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 880 + name: + type: string + example: 'Infinity Ward' + 344: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 344 + name: + type: string + example: 'Infocom' + 8213: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 8213 + name: + type: string + example: 'Infogrames' + 72: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 72 + name: + type: string + example: 'Infogrames Entertainment' + 813: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 813 + name: + type: string + example: 'Infogrames Europe SA' + 2021: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 2021 + name: + type: string + example: 'Infogrames North America' + 871: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 871 + name: + type: string + example: 'Information Global Service' + 4785: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 4785 + name: + type: string + example: 'INGAME' + 5189: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 5189 + name: + type: string + example: 'inkle' + 3656: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 3656 + name: + type: string + example: 'Innerprise Software, Inc.' + 3737: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 3737 + name: + type: string + example: 'Innova Co. S.a r.l.' + 3451: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 3451 + name: + type: string + example: 'Innovation Tech' + 5845: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 5845 + name: + type: string + example: 'Insane Code' + 3052: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 3052 + name: + type: string + example: 'InsGames' + 5853: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 5853 + name: + type: string + example: 'Inside System' + 4056: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 4056 + name: + type: string + example: 'Insomniac Games' + 2924: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 2924 + name: + type: string + example: 'Intarus' + 4076: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 4076 + name: + type: string + example: 'Intec Inc.' + 2604: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 2604 + name: + type: string + example: 'IntelliPlay' + 1177: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 1177 + name: + type: string + example: 'Intellivision Productions Inc.' + 2315: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 2315 + name: + type: string + example: 'INTENSE CO., Ltd' + 4007: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 4007 + name: + type: string + example: 'Intense Games' + 2433: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 2433 + name: + type: string + example: 'Interabang Entertainment' + 1789: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 1789 + name: + type: string + example: 'Interactive Imagination' + 2159: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 2159 + name: + type: string + example: 'Interactive Magic' + 5110: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 5110 + name: + type: string + example: 'Interactive Technology' + 3223: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 3223 + name: + type: string + example: 'InterActive Vision Games' + 1145: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 1145 + name: + type: string + example: 'Interactivision A/S' + 3675: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 3675 + name: + type: string + example: 'Interbec' + 5214: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 5214 + name: + type: string + example: 'Interbellum Team' + 5025: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 5025 + name: + type: string + example: 'Interceptor Entertainment' + 1158: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 1158 + name: + type: string + example: 'Interceptor Micros' + 4995: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 4995 + name: + type: string + example: 'Interceptor Software' + 3061: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 3061 + name: + type: string + example: 'Interchannel, Ltd.' + 4085: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 4085 + name: + type: string + example: 'Interdimensional Games' + 3876: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 3876 + name: + type: string + example: 'Intergame' + 3648: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 3648 + name: + type: string + example: 'Intergrow' + 2461: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 2461 + name: + type: string + example: 'Interlance Publishing BV' + 2102: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 2102 + name: + type: string + example: 'Intermarum' + 2309: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 2309 + name: + type: string + example: 'International Computer Entertainment Ltd.' + 702: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 702 + name: + type: string + example: 'International Games System Co., Ltd.' + 1148: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 1148 + name: + type: string + example: 'Interphase Technologies Inc.' + 8271: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 8271 + name: + type: string + example: 'Interplay' + 62: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 62 + name: + type: string + example: 'Interplay Entertainment Corp.' + 5518: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 5518 + name: + type: string + example: 'Interplay Sports' + 1088: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 1088 + name: + type: string + example: 'Interstel' + 3952: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 3952 + name: + type: string + example: 'Interstella Software' + 1478: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 1478 + name: + type: string + example: 'InterWave Studios' + 1965: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 1965 + name: + type: string + example: 'Interworks' + 2343: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 2343 + name: + type: string + example: 'Inti Creates Co., Ltd.' + 2762: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 2762 + name: + type: string + example: 'IntraCorp, Inc.' + 3692: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 3692 + name: + type: string + example: 'Intropy Games' + 868: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 868 + name: + type: string + example: 'Introversion Software Limited' + 330: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 330 + name: + type: string + example: 'INTV' + 1657: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 1657 + name: + type: string + example: 'Invent 4 Entertainment' + 4405: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 4405 + name: + type: string + example: 'Invi Games' + 2849: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 2849 + name: + type: string + example: 'Invictus' + 397: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 397 + name: + type: string + example: 'Invisible Handlebar' + 933: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 933 + name: + type: string + example: 'inXile Entertainment, Inc.' + 4212: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 4212 + name: + type: string + example: 'ION M.G LTD' + 2948: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 2948 + name: + type: string + example: 'ioneo' + 1544: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 1544 + name: + type: string + example: 'IonFx Studios' + 801: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 801 + name: + type: string + example: 'iracy Entertainment Corp.' + 42: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 42 + name: + type: string + example: 'Irem Corp.' + 908: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 908 + name: + type: string + example: 'Iridium Studios' + 1775: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 1775 + name: + type: string + example: 'Iridon Interactive AB' + 4792: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 4792 + name: + type: string + example: 'Irisloft (Beijing) Technology Co., Ltd.' + 1787: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 1787 + name: + type: string + example: 'Iron Galaxy Studios' + 1758: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 1758 + name: + type: string + example: 'Ironhide Game Studio' + 909: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 909 + name: + type: string + example: 'Isotx' + 3525: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 3525 + name: + type: string + example: 'Istom Games Kft.' + 3920: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 3920 + name: + type: string + example: 'isufje' + 5456: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 5456 + name: + type: string + example: 'itch corp' + 671: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 671 + name: + type: string + example: 'ITE Media ApS' + 4761: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 4761 + name: + type: string + example: 'Itech Media Solutions' + 3707: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 3707 + name: + type: string + example: 'Iteration 11' + 5902: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 5902 + name: + type: string + example: 'ITISA Palamos' + 1763: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 1763 + name: + type: string + example: 'ITT Family Games' + 1615: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 1615 + name: + type: string + example: 'Itzy Interactive' + 4969: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 4969 + name: + type: string + example: 'iWin, Inc.' + 5930: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 5930 + name: + type: string + example: 'Izhard' + 2417: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 2417 + name: + type: string + example: 'I•Motion, Inc.' + 1983: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 1983 + name: + type: string + example: 'J-Wing' + 4220: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 4220 + name: + type: string + example: 'J. Morrison (Micros) Ltd.' + 681: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 681 + name: + type: string + example: 'Jack of All Games' + 1913: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 1913 + name: + type: string + example: 'Jackbox Games' + 1501: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 1501 + name: + type: string + example: 'Jagex Ltd.' + 2004: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 2004 + name: + type: string + example: 'Jagware' + 94: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 94 + name: + type: string + example: 'Jaleco Ltd.' + 663: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 663 + name: + type: string + example: 'Jaleco USA' + 4344: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 4344 + name: + type: string + example: 'Japan' + 5825: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 5825 + name: + type: string + example: 'Japan Entertainment Co., Ltd.' + 2449: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 2449 + name: + type: string + example: 'Japan Interactive Media' + 5908: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 5908 + name: + type: string + example: 'Japan Software Engineering Shop' + 2397: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 2397 + name: + type: string + example: 'Japan System Supply' + 2589: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 2589 + name: + type: string + example: 'Jason M. Knight' + 5064: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 5064 + name: + type: string + example: 'JAST Co., Ltd.' + 3101: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 3101 + name: + type: string + example: 'JAST USA' + 4848: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 4848 + name: + type: string + example: 'Jeff Kintz' + 4496: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 4496 + name: + type: string + example: 'Jeff Lait' + 3381: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 3381 + name: + type: string + example: 'Jeff Minter' + 3974: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 3974 + name: + type: string + example: 'Jeil Computer System' + 2328: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 2328 + name: + type: string + example: 'Jeppe Carlsen' + 3263: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 3263 + name: + type: string + example: 'Jesse Barksdale' + 3961: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 3961 + name: + type: string + example: 'Jesse Venbrux' + 2802: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 2802 + name: + type: string + example: 'Jester Interactive Publishing' + 3104: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 3104 + name: + type: string + example: 'Jetdogs Studios' + 3503: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 3503 + name: + type: string + example: 'Jetsoft' + 8294: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 8294 + name: + type: string + example: 'JHM' + 3886: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 3886 + name: + type: string + example: 'Jigwan' + 3095: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 3095 + name: + type: string + example: 'Jingukan Polaris' + 1064: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 1064 + name: + type: string + example: 'Joakim Sandberg' + 5674: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 5674 + name: + type: string + example: 'Joe Grand' + 4649: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 4649 + name: + type: string + example: 'John Dondzilla' + 4692: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 4692 + name: + type: string + example: 'John Phillips' + 3128: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 3128 + name: + type: string + example: 'John Riggs' + 4106: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 4106 + name: + type: string + example: 'Johnson & Johnson' + 5008: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 5008 + name: + type: string + example: 'Jon Wells' + 1661: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 1661 + name: + type: string + example: 'Jonas Kyratzes' + 2444: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 2444 + name: + type: string + example: 'Jopac' + 4768: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 4768 + name: + type: string + example: 'Jorudan Co., Ltd.' + 3984: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 3984 + name: + type: string + example: 'Joseph Zbiciak' + 5529: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 5529 + name: + type: string + example: 'JoshProd' + 2533: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 2533 + name: + type: string + example: 'JosPlays' + 5968: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 5968 + name: + type: string + example: 'JoWooD Entertainment, Deep Silver, DreamCatcher Interactive' + 189: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 189 + name: + type: string + example: 'JoWooD Productions Software AG' + 5905: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 5905 + name: + type: string + example: 'JOX Development LLC' + 2851: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 2851 + name: + type: string + example: 'JoyCity Entertainment' + 1768: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 1768 + name: + type: string + example: 'JoyMasher' + 4757: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 4757 + name: + type: string + example: 'JoyMax' + 4760: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 4760 + name: + type: string + example: 'JOYNOWSTUDIO' + 5823: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 5823 + name: + type: string + example: 'Juan Alberto Munoz Gonzalez' + 3563: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 3563 + name: + type: string + example: 'Juicy Beast Studio' + 3947: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 3947 + name: + type: string + example: 'Jumbo' + 1956: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 1956 + name: + type: string + example: 'Jundroo' + 5551: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 5551 + name: + type: string + example: 'Jupiter Corp.' + 1688: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 1688 + name: + type: string + example: 'Just A Game GmbH' + 4497: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 4497 + name: + type: string + example: 'Just Flight' + 3484: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 3484 + name: + type: string + example: 'Juvty Worlds Ltd.' + 3259: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 3259 + name: + type: string + example: 'JV Games, Inc.' + 5578: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 5578 + name: + type: string + example: 'JVC Digital Studios' + 3495: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 3495 + name: + type: string + example: 'JVC Musical Industries Europe Limited' + 243: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 243 + name: + type: string + example: 'JVC Musical Industries, Inc.' + 2611: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 2611 + name: + type: string + example: 'K-Soft' + 4282: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 4282 + name: + type: string + example: 'K-Tel Software' + 2676: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 2676 + name: + type: string + example: 'K. Amusement Leasing Co.' + 4242: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 4242 + name: + type: string + example: 'K.K. International Inc.' + 3997: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 3997 + name: + type: string + example: 'K1soft' + 393: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 393 + name: + type: string + example: 'K2 LLC' + 1230: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 1230 + name: + type: string + example: 'Kabam' + 1659: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 1659 + name: + type: string + example: 'Kadokawa Shoten' + 2966: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 2966 + name: + type: string + example: 'Kaga Tech' + 5637: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 5637 + name: + type: string + example: 'KAJ' + 3753: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 3753 + name: + type: string + example: 'Kajak Games' + 1033: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 1033 + name: + type: string + example: 'Kalisto Entertainment SA' + 412: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 412 + name: + type: string + example: 'Kalypso Media' + 8272: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 8272 + name: + type: string + example: 'Kalypso Media Digital' + 1374: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 1374 + name: + type: string + example: 'Kalypso Media USA Inc.' + 3562: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 3562 + name: + type: string + example: 'Kamata and Partners' + 8269: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 8269 + name: + type: string + example: 'Kamil Wolnikowski' + 116: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 116 + name: + type: string + example: 'Kaneko Co., Ltd.' + 3134: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 3134 + name: + type: string + example: 'Kaneko \ Sammy' + 1695: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 1695 + name: + type: string + example: 'KaraokeDagger' + 4241: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 4241 + name: + type: string + example: 'Karateco' + 2093: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 2093 + name: + type: string + example: 'Karga Games' + 5971: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 5971 + name: + type: string + example: 'Karin Entertainment' + 8255: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 8255 + name: + type: string + example: 'Karsten Finger' + 5219: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 5219 + name: + type: string + example: 'Kasedo Games' + 3481: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 3481 + name: + type: string + example: 'KaSheng' + 4399: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 4399 + name: + type: string + example: 'Kawada Co. Ltd' + 3255: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 3255 + name: + type: string + example: 'Kaze Co., Ltd.' + 2664: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 2664 + name: + type: string + example: 'kChamp Games' + 3205: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 3205 + name: + type: string + example: 'Kee Games' + 2099: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 2099 + name: + type: string + example: 'Keen Games' + 1590: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 1590 + name: + type: string + example: 'Keen Software House' + 81: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 81 + name: + type: string + example: 'Kemco' + 2254: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 2254 + name: + type: string + example: 'Ken Siders' + 5202: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 5202 + name: + type: string + example: 'Kenny Sun' + 1953: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 1953 + name: + type: string + example: 'Kent Hudson' + 1605: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 1605 + name: + type: string + example: 'Kerberos Productions' + 4235: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 4235 + name: + type: string + example: 'Kersten Schuster' + 1481: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 1481 + name: + type: string + example: 'Kesmai Corporation' + 2902: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 2902 + name: + type: string + example: 'Ketchapp' + 4767: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 4767 + name: + type: string + example: 'Keynet' + 2283: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 2283 + name: + type: string + example: 'Keys Factory, Inc.' + 4370: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 4370 + name: + type: string + example: 'KH Video' + 4795: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 4795 + name: + type: string + example: 'KickBack' + 1808: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 1808 + name: + type: string + example: 'KID Corp.' + 4750: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 4750 + name: + type: string + example: 'KIDDINX Entertainment GmbH' + 4321: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 4321 + name: + type: string + example: 'Kids Mania' + 5963: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 5963 + name: + type: string + example: 'kids power' + 3769: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 3769 + name: + type: string + example: 'Kids Station, Inc.' + 2401: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 2401 + name: + type: string + example: 'Kill3rCombo' + 3949: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 3949 + name: + type: string + example: 'Killmonday Games' + 2904: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 2904 + name: + type: string + example: 'Kiloo ApS' + 4892: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 4892 + name: + type: string + example: 'King' + 4201: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 4201 + name: + type: string + example: 'King Art Games' + 686: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 686 + name: + type: string + example: 'King Games' + 2736: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 2736 + name: + type: string + example: 'King Records' + 3605: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 3605 + name: + type: string + example: 'King Tec Information Co., Ltd.' + 1086: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 1086 + name: + type: string + example: 'Kingsoft GmbH' + 5704: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 5704 + name: + type: string + example: 'Kinotrope' + 4160: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 4160 + name: + type: string + example: 'KintoGames' + 576: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 576 + name: + type: string + example: 'Kirin Entertainment' + 5585: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 5585 + name: + type: string + example: 'KishMish Games' + 1912: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 1912 + name: + type: string + example: 'KISS Ltd' + 3465: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 3465 + name: + type: string + example: 'Kitatus Studios' + 8197: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 8197 + name: + type: string + example: 'Kitcorp' + 4826: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 4826 + name: + type: string + example: 'Kitfox Games' + 4340: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 4340 + name: + type: string + example: 'Kiwako' + 2463: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 2463 + name: + type: string + example: 'Kiwi, Inc.' + 3967: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 3967 + name: + type: string + example: 'Kixx' + 4502: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 4502 + name: + type: string + example: 'KKK' + 1606: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 1606 + name: + type: string + example: 'Klei Entertainment Inc.' + 8270: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 8270 + name: + type: string + example: 'Klein' + 5896: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 5896 + name: + type: string + example: 'KLON' + 8322: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 8322 + name: + type: string + example: 'Klonk Games' + 624: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 624 + name: + type: string + example: 'Kloonigames' + 4953: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 4953 + name: + type: string + example: 'KnapNok Games' + 2036: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 2036 + name: + type: string + example: 'Knife Media' + 5021: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 5021 + name: + type: string + example: 'Knight Soft, Ltd.' + 1829: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 1829 + name: + type: string + example: 'Knitted Pixels' + 1474: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 1474 + name: + type: string + example: 'Knowledge Adventure, Inc.' + 2967: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 2967 + name: + type: string + example: 'Kobunsha' + 3277: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 3277 + name: + type: string + example: 'KOCH Media' + 2176: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 2176 + name: + type: string + example: 'Kodansha Ltd.' + 50: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 50 + name: + type: string + example: 'Koei Co., Ltd.' + 1309: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 1309 + name: + type: string + example: 'Koei Tecmo' + 998: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 998 + name: + type: string + example: 'KOG Studios' + 3879: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 3879 + name: + type: string + example: 'KOGA Publishing' + 3929: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 3929 + name: + type: string + example: 'Kogado Studio' + 5868: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 5868 + name: + type: string + example: 'Koichi Yoshida' + 1051: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 1051 + name: + type: string + example: 'Kokopeli Digital Studios' + 4874: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 4874 + name: + type: string + example: 'Kokuzeichou' + 4688: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 4688 + name: + type: string + example: 'Komax' + 5087: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 5087 + name: + type: string + example: 'Kompart UK, Ltd.' + 23: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 23 + name: + type: string + example: 'Konami' + 140: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 140 + name: + type: string + example: 'Konami Digital Entertainment, Inc.' + 5355: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 5355 + name: + type: string + example: 'Konami UK Ltd.' + 633: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 633 + name: + type: string + example: 'Kot-in-Action Creative Artel' + 431: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 431 + name: + type: string + example: 'Kotobuki System Co., Ltd.' + 2258: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 2258 + name: + type: string + example: 'kouri' + 3942: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 3942 + name: + type: string + example: 'Kralizec' + 1250: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 1250 + name: + type: string + example: 'KranX Productions' + 4829: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 4829 + name: + type: string + example: 'Krea Medie' + 2153: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 2153 + name: + type: string + example: 'Krillbite' + 1124: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 1124 + name: + type: string + example: 'Krisalis Software Ltd.' + 2812: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 2812 + name: + type: string + example: 'Krome Studios Pty Ltd.' + 3044: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 3044 + name: + type: string + example: 'KSS' + 4269: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 4269 + name: + type: string + example: 'Kuma Computers Ltd.' + 2484: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 2484 + name: + type: string + example: 'Kumobius' + 1950: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 1950 + name: + type: string + example: 'Kunos Simulazioni' + 3855: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 3855 + name: + type: string + example: 'Kupi Key' + 3039: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 3039 + name: + type: string + example: 'Kural Electric, Ltd.' + 1475: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 1475 + name: + type: string + example: 'Kyle Pulver' + 3515: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 3515 + name: + type: string + example: 'Kyle Seeley' + 2411: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 2411 + name: + type: string + example: 'Kyugo of America, Inc.' + 517: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 517 + name: + type: string + example: 'Kyugo Trading Co., Ltd' + 5754: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 5754 + name: + type: string + example: 'L. Stotch' + 3735: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 3735 + name: + type: string + example: 'L.K. Avalon' + 8202: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 8202 + name: + type: string + example: 'Lace Mamba Global' + 496: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 496 + name: + type: string + example: 'Laguna GmbH' + 3740: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 3740 + name: + type: string + example: 'LakeFeperd' + 4532: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 4532 + name: + type: string + example: 'Lakoo' + 1003: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 1003 + name: + type: string + example: 'Laminar Research' + 304: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 304 + name: + type: string + example: 'Lance Investments' + 2659: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 2659 + name: + type: string + example: 'Lankhor' + 934: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 934 + name: + type: string + example: 'Larian Studios' + 2863: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 2863 + name: + type: string + example: 'Laser Beam Entertainment Pty. Ltd.' + 291: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 291 + name: + type: string + example: 'Laser Beam Software' + 3882: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 3882 + name: + type: string + example: 'Laser Disc Corporation' + 5935: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 5935 + name: + type: string + example: 'Lasersoft' + 5116: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 5116 + name: + type: string + example: 'Lasersound Ltd' + 3914: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 3914 + name: + type: string + example: 'Last Dimension' + 3802: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 3802 + name: + type: string + example: 'Latte' + 2130: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 2130 + name: + type: string + example: 'Laughing Jackal' + 5733: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 5733 + name: + type: string + example: 'Laura Shigihara' + 2973: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 2973 + name: + type: string + example: 'Lay-Up' + 623: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 623 + name: + type: string + example: 'Lazy 8 Studios' + 3616: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 3616 + name: + type: string + example: 'Lazy Monday Ltd' + 4862: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 4862 + name: + type: string + example: 'LBS' + 3658: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 3658 + name: + type: string + example: 'Le Chocolat' + 5190: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 5190 + name: + type: string + example: 'League of Geeks' + 4569: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 4569 + name: + type: string + example: 'Learning Technologies, Inc.' + 4278: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 4278 + name: + type: string + example: 'Leet inc' + 661: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 661 + name: + type: string + example: 'Left Field Productions' + 3981: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 3981 + name: + type: string + example: 'Left Turn Only, LLC.' + 4807: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 4807 + name: + type: string + example: 'LeftRight' + 4387: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 4387 + name: + type: string + example: 'Legacy Interactive Inc.' + 2733: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 2733 + name: + type: string + example: 'Legend' + 1458: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 1458 + name: + type: string + example: 'Legend Entertainment Company' + 3718: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 3718 + name: + type: string + example: 'Legion of Doom' + 228: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 228 + name: + type: string + example: 'Lego Media' + 4647: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 4647 + name: + type: string + example: 'LEGO Software' + 4696: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 4696 + name: + type: string + example: 'Leijac Corporation' + 4446: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 4446 + name: + type: string + example: 'Leisure & Allied Industries' + 767: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 767 + name: + type: string + example: 'Leisure Genius' + 1368: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 1368 + name: + type: string + example: 'Leland Corporation' + 4604: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 4604 + name: + type: string + example: 'Lemon Games, SL' + 3296: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 3296 + name: + type: string + example: 'Len Townsend' + 3363: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 3363 + name: + type: string + example: 'Lenar' + 4656: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 4656 + name: + type: string + example: 'Lennux Games' + 2908: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 2908 + name: + type: string + example: 'Level 9 Computing, Ltd.' + 2601: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 2601 + name: + type: string + example: 'Level Up Labs' + 1680: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 1680 + name: + type: string + example: 'Level-5 Inc.' + 2423: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 2423 + name: + type: string + example: 'Lever Games' + 2211: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 2211 + name: + type: string + example: 'Lexaloffle Games' + 4661: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 4661 + name: + type: string + example: 'Lexicon Entertainment' + 1553: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 1553 + name: + type: string + example: 'Lexis Numerique' + 1113: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 1113 + name: + type: string + example: 'LG Electronics Inc.' + 4312: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 4312 + name: + type: string + example: 'Li Cheng' + 1985: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 1985 + name: + type: string + example: 'Libredia' + 4016: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 4016 + name: + type: string + example: 'Libretro' + 8323: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 8323 + name: + type: string + example: 'Lichthund' + 645: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 645 + name: + type: string + example: 'Life Fitness' + 4793: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 4793 + name: + type: string + example: 'LIGENSOFT' + 4143: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 4143 + name: + type: string + example: 'Light' + 8239: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 8239 + name: + type: string + example: 'Light & Shadow Production' + 2791: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 2791 + name: + type: string + example: 'Light & Shadow Productions' + 1128: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 1128 + name: + type: string + example: 'Light Shock Software s.n.c.' + 1400: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 1400 + name: + type: string + example: 'Lighthouse Interactive Game Publishing BV' + 1254: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 1254 + name: + type: string + example: 'Lightmare Studio' + 2275: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 2275 + name: + type: string + example: 'Lights' + 5809: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 5809 + name: + type: string + example: 'Lightspan' + 4812: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 4812 + name: + type: string + example: 'Lillbacka Powerco Oy' + 2041: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 2041 + name: + type: string + example: 'Limasse Five' + 5251: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 5251 + name: + type: string + example: 'Limenko Korea Enterprises Co., Ltd.' + 3733: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 3733 + name: + type: string + example: 'Limited Run Games' + 4409: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 4409 + name: + type: string + example: 'Lince Works' + 2485: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 2485 + name: + type: string + example: 'Line Corporation' + 4772: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 4772 + name: + type: string + example: 'Linel' + 3047: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 3047 + name: + type: string + example: 'LION HEART' + 5584: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 5584 + name: + type: string + example: 'Lion Shield, LLC' + 3075: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 3075 + name: + type: string + example: 'Liquid' + 3476: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 3476 + name: + type: string + example: 'Liquid Games' + 8324: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 8324 + name: + type: string + example: 'Little Cat Feet' + 1892: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 1892 + name: + type: string + example: 'Little Orbit' + 5342: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 5342 + name: + type: string + example: 'Livesay Computer Games, Inc.' + 4991: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 4991 + name: + type: string + example: 'Livewire' + 89: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 89 + name: + type: string + example: 'LJN' + 594: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 594 + name: + type: string + example: 'Llamasoft Ltd.' + 8314: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 8314 + name: + type: string + example: 'Load ''n'' Run' + 8273: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 8273 + name: + type: string + example: 'Load ‘n’ Run' + 4790: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 4790 + name: + type: string + example: 'Load Complete' + 4743: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 4743 + name: + type: string + example: 'Load''N''Go Software' + 4392: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 4392 + name: + type: string + example: 'Loadstar/J & F Publishing, Inc.' + 3685: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 3685 + name: + type: string + example: 'Lockwood Publishing, Inc.' + 2742: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 2742 + name: + type: string + example: 'Locomalito' + 932: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 932 + name: + type: string + example: 'Logotron' + 5316: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 5316 + name: + type: string + example: 'Logotron Entertainment' + 903: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 903 + name: + type: string + example: 'Lohe Zarrin Nikan' + 2488: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 2488 + name: + type: string + example: 'Lonely Few' + 2420: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 2420 + name: + type: string + example: 'Lonely Troops' + 1401: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 1401 + name: + type: string + example: 'Longbow Games' + 4535: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 4535 + name: + type: string + example: 'LookAtMyGame' + 2219: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 2219 + name: + type: string + example: 'Looking Glass Studios, Inc.' + 475: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 475 + name: + type: string + example: 'Loriciel' + 2837: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 2837 + name: + type: string + example: 'Lost Levels' + 2264: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 2264 + name: + type: string + example: 'Lostwood Games' + 5120: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 5120 + name: + type: string + example: 'Lotus-Soft' + 4062: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 4062 + name: + type: string + example: 'LOZC/G. Amusements Co., Ltd.' + 1847: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 1847 + name: + type: string + example: 'LSP Games' + 4799: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 4799 + name: + type: string + example: 'Luca Burgio' + 4967: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 4967 + name: + type: string + example: 'Lucas Learning Ltd.' + 25: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 25 + name: + type: string + example: 'LucasArts Entertainment Company LLC' + 5205: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 5205 + name: + type: string + example: 'LucasFan Games' + 8192: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 8192 + name: + type: string + example: 'LucasFilm Games' + 45: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 45 + name: + type: string + example: 'Lucasfilm Games LLC' + 2406: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 2406 + name: + type: string + example: 'Lucky Frame' + 2667: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 2667 + name: + type: string + example: 'Ludeon Studios' + 942: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 942 + name: + type: string + example: 'Ludia Inc.' + 4840: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 4840 + name: + type: string + example: 'Ludic' + 5906: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 5906 + name: + type: string + example: 'Ludic Side' + 8325: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 8325 + name: + type: string + example: 'Ludo Land' + 2653: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 2653 + name: + type: string + example: 'Ludochip' + 1711: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 1711 + name: + type: string + example: 'LudoCraft Ltd.' + 966: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 966 + name: + type: string + example: 'Ludosity Interactive' + 2741: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 2741 + name: + type: string + example: 'Ludum Dare' + 967: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 967 + name: + type: string + example: 'Lunar Giant Studios' + 1093: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 1093 + name: + type: string + example: 'Lunar Workshop' + 1656: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 1656 + name: + type: string + example: 'Lupus Studios Limited' + 5124: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 5124 + name: + type: string + example: 'Lyversoft' + 993: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 993 + name: + type: string + example: 'M Network' + 3393: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 3393 + name: + type: string + example: 'M&M' + 2071: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 2071 + name: + type: string + example: 'M-KAI' + 3911: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 3911 + name: + type: string + example: 'M.A.D.' + 4216: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 4216 + name: + type: string + example: 'M.C. Lothlorien' + 3811: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 3811 + name: + type: string + example: 'M2' + 4060: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 4060 + name: + type: string + example: 'M2H' + 2958: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 2958 + name: + type: string + example: 'M7 Games' + 2170: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 2170 + name: + type: string + example: 'Ma-Ba' + 5432: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 5432 + name: + type: string + example: 'Maboroshi Ware' + 8313: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 8313 + name: + type: string + example: 'Machine Language Games, Inc.' + 5173: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 5173 + name: + type: string + example: 'Macmillan Ltd.' + 2217: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 2217 + name: + type: string + example: 'MacPlay' + 5122: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 5122 + name: + type: string + example: 'Macsen Software' + 2826: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 2826 + name: + type: string + example: 'Mad Catz' + 2520: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 2520 + name: + type: string + example: 'Mad Data' + 5929: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 5929 + name: + type: string + example: 'Mad Dog Games, LLC' + 5773: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 5773 + name: + type: string + example: 'Mad Fellows Games' + 2621: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 2621 + name: + type: string + example: 'Mad Otter Games' + 3677: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 3677 + name: + type: string + example: 'Mad Ram Software' + 1546: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 1546 + name: + type: string + example: 'MADFINGER Games' + 2507: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 2507 + name: + type: string + example: 'Madman Theory Games' + 3723: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 3723 + name: + type: string + example: 'Madruga Works' + 2499: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 2499 + name: + type: string + example: 'MAG Interactive' + 766: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 766 + name: + type: string + example: 'Magic Bytes' + 5270: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 5270 + name: + type: string + example: 'Magic Carpet Software' + 4735: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 4735 + name: + type: string + example: 'Magic Conversions Inc.' + 4803: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 4803 + name: + type: string + example: 'Magic Cube Co., Ltd.' + 4315: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 4315 + name: + type: string + example: 'Magic Electronics' + 5032: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 5032 + name: + type: string + example: 'Magic Soft' + 2822: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 2822 + name: + type: string + example: 'Magical Company' + 1817: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 1817 + name: + type: string + example: 'Magical Time Bean' + 3863: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 3863 + name: + type: string + example: 'Magicom Multimedia Corp.' + 3246: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 3246 + name: + type: string + example: 'Magifact' + 2443: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 2443 + name: + type: string + example: 'Magnavox' + 5503: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 5503 + name: + type: string + example: 'Magnetic Images' + 1021: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 1021 + name: + type: string + example: 'Magnus Auvinen' + 630: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 630 + name: + type: string + example: 'MAHOU' + 201: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 201 + name: + type: string + example: 'Majesco Entertainment' + 8231: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 8231 + name: + type: string + example: 'Maji Translations' + 5196: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 5196 + name: + type: string + example: 'Major Games' + 3080: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 3080 + name: + type: string + example: 'Make' + 1771: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 1771 + name: + type: string + example: 'Makivision' + 276: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 276 + name: + type: string + example: 'Malibu Interactive' + 4332: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 4332 + name: + type: string + example: 'Mama Top' + 3691: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 3691 + name: + type: string + example: 'mamor games' + 5564: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 5564 + name: + type: string + example: 'Mana Games' + 4511: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 4511 + name: + type: string + example: 'Mana Potion Studios' + 4713: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 4713 + name: + type: string + example: 'Mandarin Software' + 659: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 659 + name: + type: string + example: 'Mandingo Entertainment' + 2225: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 2225 + name: + type: string + example: 'MangaGamer' + 1970: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 1970 + name: + type: string + example: 'Mangled Eye Studios' + 2391: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 2391 + name: + type: string + example: 'Manic Game Studios' + 5675: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 5675 + name: + type: string + example: 'Manuel Rotschkar' + 3112: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 3112 + name: + type: string + example: 'Marble Inc.' + 4699: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 4699 + name: + type: string + example: 'March Entertainment' + 533: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 533 + name: + type: string + example: 'Marco Incitti' + 8274: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 8274 + name: + type: string + example: 'Marcolosoftwares' + 8326: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 8326 + name: + type: string + example: 'Mario Castañeda' + 5321: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 5321 + name: + type: string + example: 'Markt & Technik' + 1717: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 1717 + name: + type: string + example: 'Marsbound' + 716: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 716 + name: + type: string + example: 'Martech Games' + 8267: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 8267 + name: + type: string + example: 'Martin Wendt' + 279: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 279 + name: + type: string + example: 'Marvelous' + 1621: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 1621 + name: + type: string + example: 'Marvelous Autumn Games' + 4341: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 4341 + name: + type: string + example: 'Marvelous Interactive' + 4733: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 4733 + name: + type: string + example: 'Marvelous USA' + 413: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 413 + name: + type: string + example: 'Masaya' + 4444: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 4444 + name: + type: string + example: 'Maschinen-Mensch' + 4009: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 4009 + name: + type: string + example: 'Masque Publishing, Inc.' + 5703: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 5703 + name: + type: string + example: 'Massive Damage' + 5103: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 5103 + name: + type: string + example: 'Mastertronic Group Ltd.' + 764: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 764 + name: + type: string + example: 'Mastertronic Ltd.' + 4124: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 4124 + name: + type: string + example: 'Mastervision Limited' + 788: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 788 + name: + type: string + example: 'Mastiff, LLC' + 331: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 331 + name: + type: string + example: 'Matchbox International Ltd' + 5639: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 5639 + name: + type: string + example: 'Mathias Jackermeier' + 1580: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 1580 + name: + type: string + example: 'Matrix Games' + 579: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 579 + name: + type: string + example: 'Matsushita Electric Industrial Co., Ltd.' + 2091: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 2091 + name: + type: string + example: 'Matt Dalgety' + 2034: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 2034 + name: + type: string + example: 'Matt Makes Games' + 3664: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 3664 + name: + type: string + example: 'Matt Roszak' + 343: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 343 + name: + type: string + example: 'Mattel Electronics' + 867: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 867 + name: + type: string + example: 'Mattel Interactive' + 4383: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 4383 + name: + type: string + example: 'Mattel Media' + 3117: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 3117 + name: + type: string + example: 'Matthew Brown' + 1133: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 1133 + name: + type: string + example: 'Max Design GesMBH' + 940: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 940 + name: + type: string + example: 'Maximum Family Games' + 1476: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 1476 + name: + type: string + example: 'Maximum Games' + 124: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 124 + name: + type: string + example: 'Maxis Software' + 2296: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 2296 + name: + type: string + example: 'Maxistentialism' + 4017: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 4017 + name: + type: string + example: 'MaxNick.com LLC' + 1858: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 1858 + name: + type: string + example: 'MC2 France' + 4860: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 4860 + name: + type: string + example: 'McCain' + 5292: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 5292 + name: + type: string + example: 'MCM Software' + 846: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 846 + name: + type: string + example: 'McO''River' + 3750: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 3750 + name: + type: string + example: 'MDZANIME' + 4564: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 4564 + name: + type: string + example: 'Meadows Games, Inc.' + 597: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 597 + name: + type: string + example: 'Mean Hamster Software, Inc.' + 2970: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 2970 + name: + type: string + example: 'Mebius' + 1864: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 1864 + name: + type: string + example: 'MECC' + 5899: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 5899 + name: + type: string + example: 'Medalist International' + 1232: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 1232 + name: + type: string + example: 'Media Entertainment' + 805: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 805 + name: + type: string + example: 'Media Factory' + 3479: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 3479 + name: + type: string + example: 'Media Group' + 4751: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 4751 + name: + type: string + example: 'Media Kite' + 2823: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 2823 + name: + type: string + example: 'Media Rings Corporation' + 1977: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 1977 + name: + type: string + example: 'Media Works Inc.' + 2377: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 2377 + name: + type: string + example: 'MediaKite' + 2024: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 2024 + name: + type: string + example: 'MediaQuest' + 5954: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 5954 + name: + type: string + example: 'Mediascape Co., Ltd' + 2121: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 2121 + name: + type: string + example: 'Mediatonic' + 5950: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 5950 + name: + type: string + example: 'mega cat studios' + 2048: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 2048 + name: + type: string + example: 'MEGA Enterprise Co., Ltd.' + 5050: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 5050 + name: + type: string + example: 'Megadodo Software' + 2975: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 2975 + name: + type: string + example: 'MegaHouse Corporation' + 3986: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 3986 + name: + type: string + example: 'Megasoft' + 5011: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 5011 + name: + type: string + example: 'Megastyle' + 2597: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 2597 + name: + type: string + example: 'MegaTech Software' + 4436: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 4436 + name: + type: string + example: 'Megatronix' + 714: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 714 + name: + type: string + example: 'Melbourne House' + 1402: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 1402 + name: + type: string + example: 'Meldac' + 337: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 337 + name: + type: string + example: 'Meldac of America Inc.' + 4077: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 4077 + name: + type: string + example: 'Meldac of Japan' + 4523: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 4523 + name: + type: string + example: 'Melody' + 3066: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 3066 + name: + type: string + example: 'Memetron' + 887: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 887 + name: + type: string + example: 'MenAvision' + 3333: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 3333 + name: + type: string + example: 'Mend' + 4885: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 4885 + name: + type: string + example: 'Mentor Interactive Inc.' + 516: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 516 + name: + type: string + example: 'Mentrix Software' + 1111: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 1111 + name: + type: string + example: 'Merge Games' + 415: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 415 + name: + type: string + example: 'Meridian 4, Inc.' + 2416: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 2416 + name: + type: string + example: 'Merit Software' + 1791: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 1791 + name: + type: string + example: 'Merit Studios, Inc.' + 2887: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 2887 + name: + type: string + example: 'Merlin Software' + 1866: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 1866 + name: + type: string + example: 'Merscom LLC' + 2055: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 2055 + name: + type: string + example: 'Messhof' + 4263: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 4263 + name: + type: string + example: 'Metalhead Software' + 838: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 838 + name: + type: string + example: 'Metanet Software' + 1096: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 1096 + name: + type: string + example: 'Meteor Entertainment' + 4718: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 4718 + name: + type: string + example: 'Metro Corporation' + 4563: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 4563 + name: + type: string + example: 'Metro Games' + 465: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 465 + name: + type: string + example: 'Metro3D, Inc.' + 1513: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 1513 + name: + type: string + example: 'Metropolis Software House' + 1104: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 1104 + name: + type: string + example: 'MGM Interactive' + 2559: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 2559 + name: + type: string + example: 'MicaByte' + 2043: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 2043 + name: + type: string + example: 'Michael A. Hawker' + 3983: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 3983 + name: + type: string + example: 'Michael Hayes' + 1186: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 1186 + name: + type: string + example: 'Michael Marcinkowski' + 2228: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 2228 + name: + type: string + example: 'Michael Todd Games' + 5217: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 5217 + name: + type: string + example: 'Michal Brzozowski' + 5568: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 5568 + name: + type: string + example: 'MichTron Corp.' + 4749: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 4749 + name: + type: string + example: 'Micott & Basara' + 4068: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 4068 + name: + type: string + example: 'Micro Acadamy' + 2212: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 2212 + name: + type: string + example: 'Micro Application, S.A.' + 2701: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 2701 + name: + type: string + example: 'Micro Cabin Co.' + 3805: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 3805 + name: + type: string + example: 'Micro Cabin Corp.' + 3258: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 3258 + name: + type: string + example: 'Micro Fun' + 2854: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 2854 + name: + type: string + example: 'Micro Genius' + 4395: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 4395 + name: + type: string + example: 'Micro Power' + 4468: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 4468 + name: + type: string + example: 'Micro Status' + 2670: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 2670 + name: + type: string + example: 'Micro World' + 3426: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 3426 + name: + type: string + example: 'Micro-Antics' + 3464: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 3464 + name: + type: string + example: 'Microblast Games' + 4181: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 4181 + name: + type: string + example: 'Microbyte' + 206: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 206 + name: + type: string + example: 'MicroDeal' + 4213: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 4213 + name: + type: string + example: 'Microdigital' + 3436: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 3436 + name: + type: string + example: 'Microforum' + 1287: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 1287 + name: + type: string + example: 'Microids' + 2723: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 2723 + name: + type: string + example: 'MicroIllusions' + 2468: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 2468 + name: + type: string + example: 'MicroLeague' + 5082: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 5082 + name: + type: string + example: 'MicroLeague Sports Association' + 5007: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 5007 + name: + type: string + example: 'Micromania' + 1845: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 1845 + name: + type: string + example: 'Micromega' + 554: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 554 + name: + type: string + example: 'Micronet Co. Ltd.' + 1036: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 1036 + name: + type: string + example: 'Microplay Software' + 196: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 196 + name: + type: string + example: 'MicroProse Software, Inc.' + 1: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 1 + name: + type: string + example: 'Microsoft Studios' + 1852: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 1852 + name: + type: string + example: 'Microsphere' + 2663: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 2663 + name: + type: string + example: 'MicroStyle' + 1078: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 1078 + name: + type: string + example: 'Microvalue' + 5652: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 5652 + name: + type: string + example: 'MiCROViSion Inc.' + 5581: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 5581 + name: + type: string + example: 'Midas games' + 672: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 672 + name: + type: string + example: 'Midas Interactive Entertainment Ltd.' + 3619: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 3619 + name: + type: string + example: 'MidBoss, LLC.' + 2783: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 2783 + name: + type: string + example: 'Midcoin' + 2184: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 2184 + name: + type: string + example: 'Midnight City' + 2363: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 2363 + name: + type: string + example: 'Midnight Software, Inc.' + 5065: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 5065 + name: + type: string + example: 'Midnight Status' + 41: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 41 + name: + type: string + example: 'Midway Games' + 1774: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 1774 + name: + type: string + example: 'Midway Sports Asylum' + 1310: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 1310 + name: + type: string + example: 'Midway Studios' + 1697: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 1697 + name: + type: string + example: 'mif2000' + 4831: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 4831 + name: + type: string + example: 'Mig Entertainment' + 1411: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 1411 + name: + type: string + example: 'Might and Delight' + 1644: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 1644 + name: + type: string + example: 'Mighty Fox Studio' + 3913: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 3913 + name: + type: string + example: 'Mighty Rabbit Studios' + 982: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 982 + name: + type: string + example: 'Mighty Rocket Studio' + 3305: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 3305 + name: + type: string + example: 'Miika Virpioja' + 3328: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 3328 + name: + type: string + example: 'Mijin Computer' + 1693: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 1693 + name: + type: string + example: 'Mike Bithell Games' + 1083: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 1083 + name: + type: string + example: 'Mikro-Gen' + 1736: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 1736 + name: + type: string + example: 'MileStone Inc.' + 2434: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 2434 + name: + type: string + example: 'Milestone s.r.l.' + 2697: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 2697 + name: + type: string + example: 'Milkstone Studios' + 4973: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 4973 + name: + type: string + example: 'Milky Tea Studios' + 555: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 555 + name: + type: string + example: 'Millennium Interactive Ltd.' + 3870: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 3870 + name: + type: string + example: 'Million Co.' + 5083: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 5083 + name: + type: string + example: 'Milmar Indústria e Comércio Ltda.' + 97: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 97 + name: + type: string + example: 'Milton Bradley Co.' + 4702: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 4702 + name: + type: string + example: 'Mimi Pro' + 4376: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 4376 + name: + type: string + example: 'Min Communications' + 4114: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 4114 + name: + type: string + example: 'Minato Soft' + 8229: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 8229 + name: + type: string + example: 'Minato Station' + 4234: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 4234 + name: + type: string + example: 'Mind Games' + 1871: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 1871 + name: + type: string + example: 'Mindcraft Software, Inc.' + 3734: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 3734 + name: + type: string + example: 'mindFactory' + 5396: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 5396 + name: + type: string + example: 'MindRec' + 5615: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 5615 + name: + type: string + example: 'Mindscape International GmbH' + 3017: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 3017 + name: + type: string + example: 'Mindscape International Ltd.' + 90: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 90 + name: + type: string + example: 'Mindscape, Inc.' + 3434: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 3434 + name: + type: string + example: 'Minerva Software' + 2181: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 2181 + name: + type: string + example: 'Ming Super Chip Electronic Co., Ltd.' + 4786: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 4786 + name: + type: string + example: 'Miniclip' + 8386: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 8386 + name: + type: string + example: 'MinMax Games' + 4536: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 4536 + name: + type: string + example: 'MinoMonsters, Inc.' + 2257: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 2257 + name: + type: string + example: 'Minor Key Games' + 4533: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 4533 + name: + type: string + example: 'Minoraxis' + 1632: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 1632 + name: + type: string + example: 'Minority Media Inc.' + 2897: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 2897 + name: + type: string + example: 'Mirage' + 3582: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 3582 + name: + type: string + example: 'Mirage Software' + 758: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 758 + name: + type: string + example: 'Mirrorsoft Ltd.' + 5962: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 5962 + name: + type: string + example: 'Mirthood Games' + 507: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 507 + name: + type: string + example: 'Misawa Entertainment Co., Ltd.' + 1813: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 1813 + name: + type: string + example: 'Misfits Attic' + 1700: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 1700 + name: + type: string + example: 'MissScripter' + 2237: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 2237 + name: + type: string + example: 'MIST[PSI]PRESS' + 383: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 383 + name: + type: string + example: 'Mitchell Corporation' + 3348: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 3348 + name: + type: string + example: 'Mitsubishi Electric' + 2675: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 2675 + name: + type: string + example: 'Mitsui Fudosan' + 5847: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 5847 + name: + type: string + example: 'Mixtvision' + 4443: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 4443 + name: + type: string + example: 'MLB Advanced Media' + 3055: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 3055 + name: + type: string + example: 'MoaCube' + 2482: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 2482 + name: + type: string + example: 'Mobage' + 5055: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 5055 + name: + type: string + example: 'Mobigame' + 1918: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 1918 + name: + type: string + example: 'MobilityWare' + 3695: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 3695 + name: + type: string + example: 'MobyDick Games' + 3852: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 3852 + name: + type: string + example: 'MobyGames' + 833: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 833 + name: + type: string + example: 'Mode 7 Games' + 5647: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 5647 + name: + type: string + example: 'Modus Games' + 2052: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 2052 + name: + type: string + example: 'MogoTXT' + 88: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 88 + name: + type: string + example: 'Mojang AB' + 5552: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 5552 + name: + type: string + example: 'Mojo Bones' + 756: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 756 + name: + type: string + example: 'Monarch' + 5891: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 5891 + name: + type: string + example: 'Mondial Games' + 2476: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 2476 + name: + type: string + example: 'Monk James' + 2213: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 2213 + name: + type: string + example: 'MonkeyPaw Games' + 1868: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 1868 + name: + type: string + example: 'Monochrome Games' + 990: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 990 + name: + type: string + example: 'Monolith Productions, Inc.' + 3672: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 3672 + name: + type: string + example: 'Monomi Park' + 1067: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 1067 + name: + type: string + example: 'Monte Cristo Multimedia' + 962: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 962 + name: + type: string + example: 'Moonpod' + 4740: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 4740 + name: + type: string + example: 'Moppet Video' + 2446: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 2446 + name: + type: string + example: 'Morenatsu Project' + 3072: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 3072 + name: + type: string + example: 'Morphcat Games' + 5580: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 5580 + name: + type: string + example: 'Mosaic Publishing' + 3766: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 3766 + name: + type: string + example: 'MOSS' + 1066: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 1066 + name: + type: string + example: 'Mossmouth, LLC' + 2338: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 2338 + name: + type: string + example: 'Most Wanted Entertainment Ltd.' + 4849: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 4849 + name: + type: string + example: 'Motelsoft' + 4875: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 4875 + name: + type: string + example: 'Motion Twin' + 306: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 306 + name: + type: string + example: 'Motown Software' + 2780: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 2780 + name: + type: string + example: 'Mousechief' + 5002: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 5002 + name: + type: string + example: 'MP Soft' + 4226: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 4226 + name: + type: string + example: 'Mr Chip Software' + 3376: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 3376 + name: + type: string + example: 'Mr. Chip Software' + 4891: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 4891 + name: + type: string + example: 'Mr. Micro Ltd.' + 5323: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 5323 + name: + type: string + example: 'Mr. Soft' + 3336: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 3336 + name: + type: string + example: 'Mr. Weird Guy' + 5112: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 5112 + name: + type: string + example: 'MS' + 4516: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 4516 + name: + type: string + example: 'mSeed Games' + 4833: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 4833 + name: + type: string + example: 'MSX' + 4277: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 4277 + name: + type: string + example: 'MSXdev' + 4680: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 4680 + name: + type: string + example: 'MTM Games' + 2031: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 2031 + name: + type: string + example: 'MTO Co., Ltd.' + 423: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 423 + name: + type: string + example: 'MTV Games' + 2978: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 2978 + name: + type: string + example: 'Mubik' + 674: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 674 + name: + type: string + example: 'Mud Duck Productions' + 5226: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 5226 + name: + type: string + example: 'Muha Games' + 1116: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 1116 + name: + type: string + example: 'Multisoft' + 5484: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 5484 + name: + type: string + example: 'Multivision' + 391: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 391 + name: + type: string + example: 'MumboJumbo, LLC' + 1988: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 1988 + name: + type: string + example: 'Muse Games' + 1906: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 1906 + name: + type: string + example: 'Muse Software' + 5755: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 5755 + name: + type: string + example: 'Muteki Corporation' + 3229: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 3229 + name: + type: string + example: 'Muzzy Lane Software Inc.' + 1954: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 1954 + name: + type: string + example: 'My Wife Rocks' + 2200: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 2200 + name: + type: string + example: 'My.com' + 2811: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 2811 + name: + type: string + example: 'Myelin Media, LLC' + 1337: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 1337 + name: + type: string + example: 'Mylstar Electronics, Inc.' + 8196: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 8196 + name: + type: string + example: 'Myriad' + 1727: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 1727 + name: + type: string + example: 'Mystic Box' + 2118: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 2118 + name: + type: string + example: 'Mystique' + 1515: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 1515 + name: + type: string + example: 'Mythicon, Inc.' + 1002: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 1002 + name: + type: string + example: 'N3V Games Pty Ltd' + 1091: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 1091 + name: + type: string + example: 'Nabi Studios' + 3807: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 3807 + name: + type: string + example: 'Nadeo' + 5879: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 5879 + name: + type: string + example: 'Nakanihon' + 39: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 39 + name: + type: string + example: 'Namco' + 1000: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 1000 + name: + type: string + example: 'Namco Hometek Inc.' + 3746: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 3746 + name: + type: string + example: 'Namcot' + 3964: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 3964 + name: + type: string + example: 'NAP Consumer Electronics Corp.' + 5525: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 5525 + name: + type: string + example: 'Narko Games' + 259: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 259 + name: + type: string + example: 'NASA Learning Technologies' + 5294: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 5294 + name: + type: string + example: 'Nathan Seedhouse' + 8251: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 8251 + name: + type: string + example: 'Nathan Tolbert' + 2267: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 2267 + name: + type: string + example: 'National Geographic Games' + 130: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 130 + name: + type: string + example: 'Natsume' + 5923: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 5923 + name: + type: string + example: 'Nauris Amatnieks' + 1405: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 1405 + name: + type: string + example: 'Navarre Corporation' + 4858: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 4858 + name: + type: string + example: 'NAVIGO Multimedia' + 1173: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 1173 + name: + type: string + example: 'Naxat Soft' + 988: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 988 + name: + type: string + example: 'Nazca Corporation' + 3129: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 3129 + name: + type: string + example: 'NBG EDV Handels- und Verlags GmbH & Co. KG' + 158: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 158 + name: + type: string + example: 'NCS Corporation' + 18: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 18 + name: + type: string + example: 'NCsoft' + 1543: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 1543 + name: + type: string + example: 'ND GAMES' + 5243: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 5243 + name: + type: string + example: 'NDA Productions' + 2215: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 2215 + name: + type: string + example: 'Ndemic Creations' + 2214: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 2214 + name: + type: string + example: 'NDOORS Corporation' + 3001: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 3001 + name: + type: string + example: 'NDS Software' + 3031: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 3031 + name: + type: string + example: 'NEC Avenue, Ltd.' + 1946: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 1946 + name: + type: string + example: 'NEC Home Electronics (U.S.A.) Inc.' + 294: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 294 + name: + type: string + example: 'NEC Home Electronics, Ltd.' + 8279: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 8279 + name: + type: string + example: 'NEC Interchannel' + 1092: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 1092 + name: + type: string + example: 'NEC Interchannel, Ltd.' + 4527: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 4527 + name: + type: string + example: 'NEC Technologies, Inc.' + 4314: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 4314 + name: + type: string + example: 'Neckermann / HES' + 3203: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 3203 + name: + type: string + example: 'Nekki' + 2809: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 2809 + name: + type: string + example: 'Neko Entertainment' + 1778: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 1778 + name: + type: string + example: 'Nemesys Games' + 5465: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 5465 + name: + type: string + example: 'Neo Games' + 1131: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 1131 + name: + type: string + example: 'neo Software Produktions GmbH' + 8307: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 8307 + name: + type: string + example: 'NeoBricks GmbH' + 1689: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 1689 + name: + type: string + example: 'Neocore Games' + 5508: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 5508 + name: + type: string + example: 'Neowiz Games' + 2995: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 2995 + name: + type: string + example: 'Nessylum Games' + 3422: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 3422 + name: + type: string + example: 'Network 23' + 1703: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 1703 + name: + type: string + example: 'Neuralnet' + 2113: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 2113 + name: + type: string + example: 'New Breed Software' + 1995: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 1995 + name: + type: string + example: 'NEW Corporation' + 2454: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 2454 + name: + type: string + example: 'New Frontier Entertainment' + 3149: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 3149 + name: + type: string + example: 'New Generation Software' + 1933: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 1933 + name: + type: string + example: 'New Star Games' + 4701: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 4701 + name: + type: string + example: 'New System House Oh!' + 557: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 557 + name: + type: string + example: 'New World Computing, Inc.' + 5390: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 5390 + name: + type: string + example: 'New World Ideas' + 2398: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 2398 + name: + type: string + example: 'New World Interactive' + 133: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 133 + name: + type: string + example: 'NewKidCo' + 246: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 246 + name: + type: string + example: 'NEXOFT Corporation' + 174: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 174 + name: + type: string + example: 'Nexon' + 1633: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 1633 + name: + type: string + example: 'Nexon America' + 1790: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 1790 + name: + type: string + example: 'Nexon Corporation' + 2912: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 2912 + name: + type: string + example: 'Nexus Information Systems & Marketing inc.' + 728: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 728 + name: + type: string + example: 'NG:DEV.TEAM' + 1200: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 1200 + name: + type: string + example: 'NGD Studios' + 3188: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 3188 + name: + type: string + example: 'ngmoco' + 706: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 706 + name: + type: string + example: 'NHK Service Center' + 3778: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 3778 + name: + type: string + example: 'NHK Software' + 4813: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 4813 + name: + type: string + example: 'NHN Entertainment' + 885: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 885 + name: + type: string + example: 'Nicalis, Inc.' + 840: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 840 + name: + type: string + example: 'Nichibutsu' + 8303: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 8303 + name: + type: string + example: 'Nick Games' + 5195: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 5195 + name: + type: string + example: 'Nickervision Studios' + 900: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 900 + name: + type: string + example: 'Nicolas Entertainment Group' + 3980: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 3980 + name: + type: string + example: 'NICS Co. Ltd.' + 3814: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 3814 + name: + type: string + example: 'Nidecom Soft' + 2107: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 2107 + name: + type: string + example: 'Niels Bauer Games' + 8288: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 8288 + name: + type: string + example: 'Night Dive Studios, LLC' + 3666: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 3666 + name: + type: string + example: 'Night School Studio' + 4748: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 4748 + name: + type: string + example: 'Nighthawk Interactive' + 2969: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 2969 + name: + type: string + example: 'Nihon Application Co., Ltd.' + 1225: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 1225 + name: + type: string + example: 'Nihon Bussan Co., Ltd.' + 3307: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 3307 + name: + type: string + example: 'Nihon Create' + 2057: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 2057 + name: + type: string + example: 'Nihon Falcom Corp.' + 2699: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 2699 + name: + type: string + example: 'Nihon System Inc.' + 3856: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 3856 + name: + type: string + example: 'Niine Games' + 5467: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 5467 + name: + type: string + example: 'Nikita' + 2165: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 2165 + name: + type: string + example: 'Nikoli' + 4703: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 4703 + name: + type: string + example: 'Nikson' + 1627: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 1627 + name: + type: string + example: 'Nimblebit' + 964: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 964 + name: + type: string + example: 'Nimbly Games' + 5267: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 5267 + name: + type: string + example: 'Nimco' + 3581: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 3581 + name: + type: string + example: 'Nine Tales Digital' + 3523: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 3523 + name: + type: string + example: 'Ninja Kiwi' + 4957: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 4957 + name: + type: string + example: 'Ninja Pig Studios' + 4946: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 4946 + name: + type: string + example: 'Ninja Theory' + 5239: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 5239 + name: + type: string + example: 'NinjaBee' + 3: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 3 + name: + type: string + example: 'Nintendo' + 252: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 252 + name: + type: string + example: 'Nintendo of America, Inc.' + 8285: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 8285 + name: + type: string + example: 'Nintendo of Korea Co., Ltd.' + 3938: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 3938 + name: + type: string + example: 'Nintendo Player' + 2856: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 2856 + name: + type: string + example: 'NintendoAge' + 3071: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 3071 + name: + type: string + example: 'Nioreh' + 4145: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 4145 + name: + type: string + example: 'Nippon Clary Business' + 3930: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 3930 + name: + type: string + example: 'Nippon Columbia' + 1344: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 1344 + name: + type: string + example: 'Nippon Computer System' + 3813: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 3813 + name: + type: string + example: 'Nippon Dexter Co., Ltd.' + 676: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 676 + name: + type: string + example: 'Nippon Ichi Software Inc.' + 3575: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 3575 + name: + type: string + example: 'Nippon Telenet' + 648: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 648 + name: + type: string + example: 'NIS America, Inc.' + 4391: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 4391 + name: + type: string + example: 'Nitrome' + 3027: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 3027 + name: + type: string + example: 'Nitroplus' + 5232: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 5232 + name: + type: string + example: 'Nival Interactive LLC' + 2262: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 2262 + name: + type: string + example: 'Nival, Inc.' + 4445: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 4445 + name: + type: string + example: 'NIX' + 3667: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 3667 + name: + type: string + example: 'NK System Co., Ltd.' + 5204: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 5204 + name: + type: string + example: 'Nkidu Games' + 4783: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 4783 + name: + type: string + example: 'NLABSOFT Co., Ltd.' + 989: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 989 + name: + type: string + example: 'NMK Co. Ltd.' + 4671: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 4671 + name: + type: string + example: 'Nnooo' + 175: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 175 + name: + type: string + example: 'Nobilis Group' + 2247: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 2247 + name: + type: string + example: 'Noble Empire Corp.' + 1690: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 1690 + name: + type: string + example: 'Nocturnal Works' + 2885: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 2885 + name: + type: string + example: 'Noise Factory' + 1655: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 1655 + name: + type: string + example: 'Nomad Games' + 2487: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 2487 + name: + type: string + example: 'Noodlecake Studios' + 3339: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 3339 + name: + type: string + example: 'Nooskewl' + 2673: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 2673 + name: + type: string + example: 'Nordcurrent' + 176: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 176 + name: + type: string + example: 'Nordic Games GmbH' + 3475: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 3475 + name: + type: string + example: 'North of Earth' + 2069: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 2069 + name: + type: string + example: 'Northway Games' + 3410: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 3410 + name: + type: string + example: 'NoSense' + 5172: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 5172 + name: + type: string + example: 'Nottinghamshire Constabulary' + 5324: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 5324 + name: + type: string + example: 'Notung Software' + 1801: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 1801 + name: + type: string + example: 'Noumenon Games' + 841: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 841 + name: + type: string + example: 'Nova' + 5430: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 5430 + name: + type: string + example: 'Nova du Canada' + 3875: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 3875 + name: + type: string + example: 'Nova Spring' + 738: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 738 + name: + type: string + example: 'Novagen Software Ltd' + 687: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 687 + name: + type: string + example: 'NovaLogic, Inc.' + 8315: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 8315 + name: + type: string + example: 'Noviy Disk' + 4354: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 4354 + name: + type: string + example: 'Novomatic' + 4576: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 4576 + name: + type: string + example: 'Novotrade International' + 4769: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 4769 + name: + type: string + example: 'Now Production Co., Ltd.' + 1204: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 1204 + name: + type: string + example: 'NStorm' + 3862: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 3862 + name: + type: string + example: 'NT' + 911: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 911 + name: + type: string + example: 'NTDEC' + 1288: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 1288 + name: + type: string + example: 'NTT Game' + 658: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 658 + name: + type: string + example: 'NTVIC' + 5121: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 5121 + name: + type: string + example: 'Nu Wave Software' + 2079: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 2079 + name: + type: string + example: 'Nuclear Scorpions' + 3548: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 3548 + name: + type: string + example: 'nuGAME' + 5548: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 5548 + name: + type: string + example: 'Numantian Games' + 5023: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 5023 + name: + type: string + example: 'Number 9 Software' + 373: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 373 + name: + type: string + example: 'Number None Inc.' + 3715: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 3715 + name: + type: string + example: 'Numinous Games' + 3965: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 3965 + name: + type: string + example: 'Nuvatec' + 513: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 513 + name: + type: string + example: 'Nuvision Entertainment' + 3311: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 3311 + name: + type: string + example: 'NVIDIA Lightspeed Studios' + 2054: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 2054 + name: + type: string + example: 'nWay' + 4185: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 4185 + name: + type: string + example: 'Nyamyam' + 2241: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 2241 + name: + type: string + example: 'Nyu Media, Ltd.' + 478: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 478 + name: + type: string + example: 'O-Games, Inc.' + 5712: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 5712 + name: + type: string + example: 'O2 Games' + 5965: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 5965 + name: + type: string + example: 'Oasis Games' + 5241: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 5241 + name: + type: string + example: 'Oberon Media, Inc.' + 1440: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 1440 + name: + type: string + example: 'Object Software Limited' + 4609: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 4609 + name: + type: string + example: 'Object Vision Software' + 5821: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 5821 + name: + type: string + example: 'Obsidian Entertainment' + 2817: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 2817 + name: + type: string + example: 'Ocean of America, Inc.' + 43: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 43 + name: + type: string + example: 'Ocean Software Ltd.' + 1167: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 1167 + name: + type: string + example: 'Oddworld Inhabitants' + 4518: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 4518 + name: + type: string + example: 'Oddy Arts' + 4122: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 4122 + name: + type: string + example: 'Odin Computer Graphics Ltd.' + 3627: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 3627 + name: + type: string + example: 'Offworld industries' + 5743: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 5743 + name: + type: string + example: 'OGPlanet' + 5634: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 5634 + name: + type: string + example: 'OhNoo Studio' + 920: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 920 + name: + type: string + example: 'Okashi Studios' + 3388: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 3388 + name: + type: string + example: 'Oldblood' + 2450: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 2450 + name: + type: string + example: 'OlderGames' + 5764: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 5764 + name: + type: string + example: 'Oleg Moscalenco' + 5003: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 5003 + name: + type: string + example: 'Oliver Kirwa' + 8268: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 8268 + name: + type: string + example: 'Oliver Lindau' + 5414: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 5414 + name: + type: string + example: 'Oliver Wittchow' + 4899: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 4899 + name: + type: string + example: 'Omar Cornut' + 5914: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 5914 + name: + type: string + example: 'Omega Force' + 2972: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 2972 + name: + type: string + example: 'Omega Micott Inc.' + 2489: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 2489 + name: + type: string + example: 'Omgpop' + 953: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 953 + name: + type: string + example: 'Omni Systems Ltd.' + 1963: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 1963 + name: + type: string + example: 'Omnigon Games' + 4561: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 4561 + name: + type: string + example: 'Omori Electric Co., Ltd.' + 1682: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 1682 + name: + type: string + example: 'On Hand Software, Inc.' + 1818: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 1818 + name: + type: string + example: 'On-Line Entertainment Ltd.' + 948: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 948 + name: + type: string + example: 'OneBigGame' + 5885: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 5885 + name: + type: string + example: 'OnGames' + 627: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 627 + name: + type: string + example: 'Online Warmongers Group Inc.' + 1833: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 1833 + name: + type: string + example: 'Only Human Studios' + 4602: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 4602 + name: + type: string + example: 'Onteca' + 4784: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 4784 + name: + type: string + example: 'Oozoo Inc.' + 2135: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 2135 + name: + type: string + example: 'Open Emotion Studios' + 2060: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 2060 + name: + type: string + example: 'Open Mind' + 1192: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 1192 + name: + type: string + example: 'Open-Reset Studio' + 3000: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 3000 + name: + type: string + example: 'Opera Soft S.A.' + 2201: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 2201 + name: + type: string + example: 'opGames' + 5936: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 5936 + name: + type: string + example: 'Orange Pixel' + 5959: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 5959 + name: + type: string + example: 'Orbital Knights' + 490: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 490 + name: + type: string + example: 'Orbital Media, Inc.' + 3240: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 3240 + name: + type: string + example: 'Orca' + 4152: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 4152 + name: + type: string + example: 'Orca Corporation' + 382: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 382 + name: + type: string + example: 'Oriental Soft' + 131: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 131 + name: + type: string + example: 'Origin Systems' + 2803: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 2803 + name: + type: string + example: 'ORiGO GAMES' + 5446: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 5446 + name: + type: string + example: 'Ort Software' + 2505: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 2505 + name: + type: string + example: 'Oryx Design Lab' + 5044: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 5044 + name: + type: string + example: 'Osbourne/McGraw-Hill' + 5353: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 5353 + name: + type: string + example: 'OTA A/S' + 4467: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 4467 + name: + type: string + example: 'OTM Publications & Promotions Ltd.' + 8298: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 8298 + name: + type: string + example: 'Otto Versand' + 3684: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 3684 + name: + type: string + example: 'Outrigger Koubou' + 5300: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 5300 + name: + type: string + example: 'Outright Games' + 795: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 795 + name: + type: string + example: 'Outspark' + 2298: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 2298 + name: + type: string + example: 'Over The Moon' + 1253: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 1253 + name: + type: string + example: 'Over The Top Games' + 3414: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 3414 + name: + type: string + example: 'Ovosonico' + 1793: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 1793 + name: + type: string + example: 'Owlchemy Labs' + 2390: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 2390 + name: + type: string + example: 'Oxeye Game Studio' + 8261: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 8261 + name: + type: string + example: 'OXON Game Studio' + 1822: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 1822 + name: + type: string + example: 'Oxygen Games, Inc.' + 1730: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 1730 + name: + type: string + example: 'Oxygen Interactive Software Ltd.' + 4636: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 4636 + name: + type: string + example: 'Oxygene Media' + 5006: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 5006 + name: + type: string + example: 'Oxyron' + 2137: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 2137 + name: + type: string + example: 'Oyaji Games LLC' + 655: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 655 + name: + type: string + example: 'O~3 Entertainment' + 3650: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 3650 + name: + type: string + example: 'P&P Marketing' + 1563: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 1563 + name: + type: string + example: 'P2 Games' + 4782: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 4782 + name: + type: string + example: 'Pacific Century CyberWorks Japan K.K.' + 1382: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 1382 + name: + type: string + example: 'Pacific Novelty Manufacturing' + 323: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 323 + name: + type: string + example: 'Pack-In-Video Co., Ltd' + 3461: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 3461 + name: + type: string + example: 'Packrat Video Games' + 4547: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 4547 + name: + type: string + example: 'PADIS Ltd.' + 1077: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 1077 + name: + type: string + example: 'Palace' + 711: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 711 + name: + type: string + example: 'Palace Software, LTD.' + 4328: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 4328 + name: + type: string + example: 'Palco System Corp.' + 317: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 317 + name: + type: string + example: 'Palcom Software Ltd.' + 958: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 958 + name: + type: string + example: 'Paleo Entertainment' + 2585: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 2585 + name: + type: string + example: 'Palladium Interactive' + 1523: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 1523 + name: + type: string + example: 'PalSoft' + 3819: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 3819 + name: + type: string + example: 'PAN Interactive' + 3574: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 3574 + name: + type: string + example: 'Panasoft' + 571: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 571 + name: + type: string + example: 'Panasonic Interactive Media' + 3102: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 3102 + name: + type: string + example: 'Panda' + 3865: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 3865 + name: + type: string + example: 'Panda Entertainment Technology Co., Ltd.' + 2879: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 2879 + name: + type: string + example: 'Panda Software' + 4864: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 4864 + name: + type: string + example: 'Pandora' + 5398: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 5398 + name: + type: string + example: 'Pandora Box' + 328: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 328 + name: + type: string + example: 'Panesian' + 5665: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 5665 + name: + type: string + example: 'Pangea Software, Inc.' + 5720: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 5720 + name: + type: string + example: 'Panic Art Studios Ltd.' + 3728: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 3728 + name: + type: string + example: 'Panic Inc.' + 2666: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 2666 + name: + type: string + example: 'Pantech' + 2365: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 2365 + name: + type: string + example: 'Pantera Entertainment' + 1298: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 1298 + name: + type: string + example: 'Panther Games' + 860: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 860 + name: + type: string + example: 'Panther Software Inc.' + 8300: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 8300 + name: + type: string + example: 'Papaya Studios' + 8327: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 8327 + name: + type: string + example: 'Paper Cult' + 5485: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 5485 + name: + type: string + example: 'Papyrus Design Group, Inc.' + 4552: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 4552 + name: + type: string + example: 'Para JP' + 3770: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 3770 + name: + type: string + example: 'Parabole' + 4419: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 4419 + name: + type: string + example: 'Paradise Programming' + 2745: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 2745 + name: + type: string + example: 'Paradox Entertainment AB' + 170: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 170 + name: + type: string + example: 'Paradox Interactive AB' + 411: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 411 + name: + type: string + example: 'Paradox Software' + 1049: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 1049 + name: + type: string + example: 'Paragon Software Corporation' + 2732: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 2732 + name: + type: string + example: 'Paragon Studios' + 1566: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 1566 + name: + type: string + example: 'Paramount Digital Entertainment' + 2965: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 2965 + name: + type: string + example: 'ParaPhray' + 156: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 156 + name: + type: string + example: 'Parker Brothers' + 4295: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 4295 + name: + type: string + example: 'Party Room 21' + 3103: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 3103 + name: + type: string + example: 'Parzavision Games' + 2580: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 2580 + name: + type: string + example: 'Pastagames' + 2399: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 2399 + name: + type: string + example: 'Pathea Games' + 5688: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 5688 + name: + type: string + example: 'Paul Slocum' + 4033: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 4033 + name: + type: string + example: 'Pax Softonica' + 2947: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 2947 + name: + type: string + example: 'Payload Studios' + 4611: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 4611 + name: + type: string + example: 'PC Globe Inc.' + 1857: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 1857 + name: + type: string + example: 'PD Design Studio Pte Ltd' + 4968: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 4968 + name: + type: string + example: 'Peaceful Games' + 4796: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 4796 + name: + type: string + example: 'PearFiction Studios Inc.' + 4865: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 4865 + name: + type: string + example: 'Pekaro Software' + 3313: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 3313 + name: + type: string + example: 'Pekka Rantanen' + 4331: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 4331 + name: + type: string + example: 'Peni' + 1218: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 1218 + name: + type: string + example: 'Penny Arcade, inc.' + 3652: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 3652 + name: + type: string + example: 'Pentavision Entertainment' + 4947: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 4947 + name: + type: string + example: 'Pentavision Global, Inc.' + 177: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 177 + name: + type: string + example: 'Perfect World Entertainment' + 4613: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 4613 + name: + type: string + example: 'Performance Design Products' + 5949: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 5949 + name: + type: string + example: 'PERP' + 2402: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 2402 + name: + type: string + example: 'Perpetual FX Creative' + 2512: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 2512 + name: + type: string + example: 'Perpetual Motion Enterprises, Inc.' + 2648: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 2648 + name: + type: string + example: 'Personal Software Services' + 8222: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 8222 + name: + type: string + example: 'PestoForce' + 4440: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 4440 + name: + type: string + example: 'Petaco S.A.' + 4958: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 4958 + name: + type: string + example: 'Petite Games' + 1184: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 1184 + name: + type: string + example: 'Petroglyph Games Inc.' + 3584: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 3584 + name: + type: string + example: 'pewpewgames inc.' + 1120: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 1120 + name: + type: string + example: 'PF Magic' + 5422: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 5422 + name: + type: string + example: 'PGD' + 3077: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 3077 + name: + type: string + example: 'Phantagram Co., Ltd.' + 5623: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 5623 + name: + type: string + example: 'Phantom 8 Studio' + 8198: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 8198 + name: + type: string + example: 'Phantom EFX' + 5490: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 5490 + name: + type: string + example: 'Phantom Software' + 2913: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 2913 + name: + type: string + example: 'Phebus' + 2042: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 2042 + name: + type: string + example: 'Phenomenon Games' + 1777: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 1777 + name: + type: string + example: 'Philippe Poulin' + 4134: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 4134 + name: + type: string + example: 'Philips Interactive Media of America' + 1520: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 1520 + name: + type: string + example: 'Philips Interactive Media, Inc.' + 3034: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 3034 + name: + type: string + example: 'Philko Corporation' + 5115: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 5115 + name: + type: string + example: 'Phipps Associates' + 2207: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 2207 + name: + type: string + example: 'Phoenix Game Studio' + 1894: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 1894 + name: + type: string + example: 'Phoenix Games B.V.' + 1814: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 1814 + name: + type: string + example: 'Phoenix Online Studios' + 5097: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 5097 + name: + type: string + example: 'Phoenix Software, Inc.' + 3761: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 3761 + name: + type: string + example: 'Phosphor Games' + 2494: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 2494 + name: + type: string + example: 'Phr00t''s Software' + 1028: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 1028 + name: + type: string + example: 'Pick & Choose' + 4188: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 4188 + name: + type: string + example: 'Pieces Interactive' + 4476: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 4476 + name: + type: string + example: 'Piero Cavina' + 1742: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 1742 + name: + type: string + example: 'Piko Interactive LLC' + 3558: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 3558 + name: + type: string + example: 'PillowPigGames' + 4987: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 4987 + name: + type: string + example: 'Pin Change' + 3056: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 3056 + name: + type: string + example: 'Pinkerton Road Studio' + 2457: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 2457 + name: + type: string + example: 'Pioneer LDC' + 1258: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 1258 + name: + type: string + example: 'Pipe Dream Interactive' + 745: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 745 + name: + type: string + example: 'Piranha Games' + 8328: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 8328 + name: + type: string + example: 'Pirate Software' + 2800: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 2800 + name: + type: string + example: 'Pivotal Games Ltd.' + 2630: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 2630 + name: + type: string + example: 'Pixberry Studios' + 4261: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 4261 + name: + type: string + example: 'Pixel' + 8289: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 8289 + name: + type: string + example: 'Pixel Dash Studios' + 5657: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 5657 + name: + type: string + example: 'Pixel Feather' + 4092: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 4092 + name: + type: string + example: 'Pixel Ferrets' + 2917: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 2917 + name: + type: string + example: 'Pixel Multimedia' + 2242: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 2242 + name: + type: string + example: 'Pixel Painters Corporation' + 5937: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 5937 + name: + type: string + example: 'Pixel Toys' + 3218: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 3218 + name: + type: string + example: 'Pixelante' + 4489: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 4489 + name: + type: string + example: 'Pixelbite Games' + 5944: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 5944 + name: + type: string + example: 'PixelGlass' + 3546: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 3546 + name: + type: string + example: 'Pixeljam Games' + 3589: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 3589 + name: + type: string + example: 'Pixellevel' + 4582: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 4582 + name: + type: string + example: 'PixelTail Games' + 3726: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 3726 + name: + type: string + example: 'Pixis' + 1530: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 1530 + name: + type: string + example: 'Play Byte' + 669: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 669 + name: + type: string + example: 'Play It Ltd' + 5911: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 5911 + name: + type: string + example: 'Play-It' + 2350: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 2350 + name: + type: string + example: 'PlayAround' + 1748: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 1748 + name: + type: string + example: 'Playbrains' + 682: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 682 + name: + type: string + example: 'Playdead' + 8308: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 8308 + name: + type: string + example: 'Playdius' + 3014: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 3014 + name: + type: string + example: 'Players Software' + 2141: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 2141 + name: + type: string + example: 'Playerthree' + 1779: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 1779 + name: + type: string + example: 'PlayFirst, Inc.' + 3588: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 3588 + name: + type: string + example: 'PlayGeneration' + 3353: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 3353 + name: + type: string + example: 'Playground Games' + 2232: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 2232 + name: + type: string + example: 'Playism' + 975: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 975 + name: + type: string + example: 'Playlogic Entertainment, Inc.' + 3087: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 3087 + name: + type: string + example: 'Playmark' + 144: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 144 + name: + type: string + example: 'Playmates Interactive Entertainment, Inc.' + 8217: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 8217 + name: + type: string + example: 'Playmore' + 61: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 61 + name: + type: string + example: 'Playmore Corporation' + 5969: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 5969 + name: + type: string + example: 'Playrise Digital' + 5661: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 5661 + name: + type: string + example: 'Playrise Digital Ltd.' + 1860: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 1860 + name: + type: string + example: 'Playrix Entertainment' + 3572: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 3572 + name: + type: string + example: 'PlayStack Ltd' + 3547: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 3547 + name: + type: string + example: 'PlayStation Mobile Inc.' + 1625: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 1625 + name: + type: string + example: 'PlayStation Network' + 3428: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 3428 + name: + type: string + example: 'Playtonic Games' + 4806: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 4806 + name: + type: string + example: 'playus soft' + 4195: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 4195 + name: + type: string + example: 'PlayV' + 2162: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 2162 + name: + type: string + example: 'PlayWay' + 8247: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 8247 + name: + type: string + example: 'Pleasant Valley Video' + 3294: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 3294 + name: + type: string + example: 'Plug in Digital' + 1542: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 1542 + name: + type: string + example: 'PM Studios' + 660: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 660 + name: + type: string + example: 'PMR International BV' + 2999: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 2999 + name: + type: string + example: 'Pocket Direct' + 2524: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 2524 + name: + type: string + example: 'Pocket Gems' + 1658: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 1658 + name: + type: string + example: 'Pocketwatch Games' + 4587: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 4587 + name: + type: string + example: 'Poisoft' + 3156: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 3156 + name: + type: string + example: 'Pokki' + 5920: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 5920 + name: + type: string + example: 'poly.play' + 3578: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 3578 + name: + type: string + example: 'Polygram Magic of Japan' + 5296: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 5296 + name: + type: string + example: 'PolyKid' + 2623: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 2623 + name: + type: string + example: 'polynation games ltd' + 1672: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 1672 + name: + type: string + example: 'Polytron' + 888: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 888 + name: + type: string + example: 'Polyvox' + 5907: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 5907 + name: + type: string + example: 'Pomelo Games' + 2123: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 2123 + name: + type: string + example: 'PomPom Games' + 4442: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 4442 + name: + type: string + example: 'Pond Software' + 439: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 439 + name: + type: string + example: 'Pony Canyon, Inc.' + 4065: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 4065 + name: + type: string + example: 'Pop Software' + 444: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 444 + name: + type: string + example: 'PopCap Games, Inc.' + 972: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 972 + name: + type: string + example: 'Popcorn Arcade' + 631: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 631 + name: + type: string + example: 'Poppo Co., Ltd.' + 3125: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 3125 + name: + type: string + example: 'Positech Computing Ltd.' + 884: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 884 + name: + type: string + example: 'Positech Games' + 3910: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 3910 + name: + type: string + example: 'Positive' + 5159: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 5159 + name: + type: string + example: 'Positive Image Software Ltd' + 4221: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 4221 + name: + type: string + example: 'Postern' + 3716: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 3716 + name: + type: string + example: 'PostMod Softworks' + 3026: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 3026 + name: + type: string + example: 'Pow Studios' + 5280: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 5280 + name: + type: string + example: 'Power Computing Ltd.' + 2951: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 2951 + name: + type: string + example: 'Powerhoof' + 8223: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 8223 + name: + type: string + example: 'Pox Box' + 3235: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 3235 + name: + type: string + example: 'PQube' + 4551: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 4551 + name: + type: string + example: 'Prestige Softwareentwicklung GmbH' + 1191: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 1191 + name: + type: string + example: 'Pride Interactive' + 3918: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 3918 + name: + type: string + example: 'Primetec Investments' + 5784: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 5784 + name: + type: string + example: 'Princess Soft' + 5440: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 5440 + name: + type: string + example: 'Prism Arts' + 3330: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 3330 + name: + type: string + example: 'Prism Entertainment' + 3138: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 3138 + name: + type: string + example: 'Prism Leisure Corporation Plc' + 5645: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 5645 + name: + type: string + example: 'Private Division' + 4397: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 4397 + name: + type: string + example: 'Privy Software Ltd.' + 4232: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 4232 + name: + type: string + example: 'Probe Entertainment' + 5113: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 5113 + name: + type: string + example: 'PROCOM' + 646: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 646 + name: + type: string + example: 'Produce Co., Ltd.' + 3898: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 3898 + name: + type: string + example: 'Proein S.L.' + 5335: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 5335 + name: + type: string + example: 'Progame' + 5626: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 5626 + name: + type: string + example: 'ProGames Studio' + 4377: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 4377 + name: + type: string + example: 'Project F' + 5730: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 5730 + name: + type: string + example: 'Project Flight School LLC' + 3011: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 3011 + name: + type: string + example: 'Project M Development Team' + 2932: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 2932 + name: + type: string + example: 'Project Three Interactive BV' + 1243: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 1243 + name: + type: string + example: 'Project Two Interactive BV' + 1123: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 1123 + name: + type: string + example: 'Prolific Publishing, Inc.' + 4717: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 4717 + name: + type: string + example: 'Proma' + 5887: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 5887 + name: + type: string + example: 'Promat Co.' + 3183: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 3183 + name: + type: string + example: 'Proton Studio Inc' + 3283: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 3283 + name: + type: string + example: 'Prototype' + 5010: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 5010 + name: + type: string + example: 'Protovision' + 387: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 387 + name: + type: string + example: 'Psikyo' + 3139: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 3139 + name: + type: string + example: 'Psion Software Ltd.' + 3902: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 3902 + name: + type: string + example: 'PSS' + 1029: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 1029 + name: + type: string + example: 'Psyclapse' + 3204: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 3204 + name: + type: string + example: 'Psydra Games LLC' + 135: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 135 + name: + type: string + example: 'Psygnosis Limited' + 3113: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 3113 + name: + type: string + example: 'Psyonix Studios' + 4117: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 4117 + name: + type: string + example: 'Psytronik Software' + 2838: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 2838 + name: + type: string + example: 'Pterodon Software' + 4109: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 4109 + name: + type: string + example: 'Public Domain' + 2337: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 2337 + name: + type: string + example: 'Publishing International' + 5141: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 5141 + name: + type: string + example: 'Puffin Books Ltd.' + 5805: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 5805 + name: + type: string + example: 'PUMO' + 1099: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 1099 + name: + type: string + example: 'Pumpkin Software' + 2777: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 2777 + name: + type: string + example: 'Puny Human' + 977: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 977 + name: + type: string + example: 'Puppy Games' + 2637: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 2637 + name: + type: string + example: 'Purple Hills' + 3904: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 3904 + name: + type: string + example: 'Puuba' + 5305: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 5305 + name: + type: string + example: 'PXL computers' + 4779: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 4779 + name: + type: string + example: 'PXLink' + 959: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 959 + name: + type: string + example: 'Q Entertainment' + 2344: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 2344 + name: + type: string + example: 'Q-Games Ltd.' + 4071: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 4071 + name: + type: string + example: 'Quality Software' + 3710: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 3710 + name: + type: string + example: 'Qualtronic Devices, Inc.' + 2425: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 2425 + name: + type: string + example: 'Quantized Bit' + 3861: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 3861 + name: + type: string + example: 'Quantum Factory, Inc.' + 2615: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 2615 + name: + type: string + example: 'QubicGames' + 5187: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 5187 + name: + type: string + example: 'QuByte Interactive' + 4022: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 4022 + name: + type: string + example: 'Queentex' + 1767: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 1767 + name: + type: string + example: 'QuelleSoft' + 530: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 530 + name: + type: string + example: 'Quest Corporation' + 2810: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 2810 + name: + type: string + example: 'Quicksilva Ltd.' + 3801: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 3801 + name: + type: string + example: 'QuinRose' + 2070: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 2070 + name: + type: string + example: 'Qute' + 4628: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 4628 + name: + type: string + example: 'R.J.P.G' + 3236: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 3236 + name: + type: string + example: 'R2 Game USA Co., Limited' + 5117: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 5117 + name: + type: string + example: 'Rabbit Software LTD' + 3020: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 3020 + name: + type: string + example: 'RacerMate' + 4433: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 4433 + name: + type: string + example: 'Rack-It' + 4199: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 4199 + name: + type: string + example: 'Radarsoft BV' + 1629: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 1629 + name: + type: string + example: 'Radial Games' + 4544: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 4544 + name: + type: string + example: 'Radica Games' + 3419: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 3419 + name: + type: string + example: 'Radio Shack' + 3543: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 3543 + name: + type: string + example: 'Radiostatic' + 2624: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 2624 + name: + type: string + example: 'Rage plc' + 2625: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 2625 + name: + type: string + example: 'Rage Software' + 2381: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 2381 + name: + type: string + example: 'Ragequit Corporation' + 4437: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 4437 + name: + type: string + example: 'RageSquid' + 2068: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 2068 + name: + type: string + example: 'RailSimulator.com' + 4659: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 4659 + name: + type: string + example: 'Rain Games' + 1045: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 1045 + name: + type: string + example: 'Rainbird Software' + 713: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 713 + name: + type: string + example: 'Rainbow Arts Software' + 2108: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 2108 + name: + type: string + example: 'Rainbow Vision' + 4965: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 4965 + name: + type: string + example: 'Rainy Night Creations' + 5711: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 5711 + name: + type: string + example: 'Raising Hell Software' + 2771: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 2771 + name: + type: string + example: 'Rait Electronics' + 2549: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 2549 + name: + type: string + example: 'Raizing Co., Ltd.' + 2853: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 2853 + name: + type: string + example: 'Rake in Grass' + 3067: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 3067 + name: + type: string + example: 'Raks NewMedia' + 2848: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 2848 + name: + type: string + example: 'Ramar International' + 4560: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 4560 + name: + type: string + example: 'Ramtek' + 3199: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 3199 + name: + type: string + example: 'Randnet' + 3457: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 3457 + name: + type: string + example: 'Random House, Inc' + 1315: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 1315 + name: + type: string + example: 'RandomSoft' + 51: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 51 + name: + type: string + example: 'Rare, Ltd.' + 1125: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 1125 + name: + type: string + example: 'Rasputin Software' + 4345: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 4345 + name: + type: string + example: 'Rastersoft' + 5957: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 5957 + name: + type: string + example: 'Ratalaika Games' + 1614: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 1614 + name: + type: string + example: 'Ratloop Games' + 4505: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 4505 + name: + type: string + example: 'RatRod Studio Inc.' + 3022: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 3022 + name: + type: string + example: 'Ravensburger Interactive Media GmbH' + 5593: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 5593 + name: + type: string + example: 'Ravenscourt' + 4810: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 4810 + name: + type: string + example: 'Ravn Studio AS' + 3358: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 3358 + name: + type: string + example: 'Raw Fury' + 275: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 275 + name: + type: string + example: 'raya systems' + 2236: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 2236 + name: + type: string + example: 'Rayark' + 3490: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 3490 + name: + type: string + example: 'RayForce' + 8211: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 8211 + name: + type: string + example: 'Raze' + 547: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 547 + name: + type: string + example: 'RazorSoft, Inc.' + 4323: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 4323 + name: + type: string + example: 'RCA' + 912: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 912 + name: + type: string + example: 'RCM' + 3909: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 3909 + name: + type: string + example: 'RCMADIAX' + 570: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 570 + name: + type: string + example: 'ReadySoft Incorporated' + 2961: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 2961 + name: + type: string + example: 'Reakktor Studios' + 4597: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 4597 + name: + type: string + example: 'Real Networks, Inc.' + 2023: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 2023 + name: + type: string + example: 'Real Vision' + 5363: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 5363 + name: + type: string + example: 'Real World based Games Lab' + 1431: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 1431 + name: + type: string + example: 'RealArcade' + 362: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 362 + name: + type: string + example: 'REALITY PUMP Sp. z o.o.' + 2562: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 2562 + name: + type: string + example: 'Reality Squared Games' + 1645: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 1645 + name: + type: string + example: 'Realm Source' + 1914: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 1914 + name: + type: string + example: 'Realmforge Studios GmbH' + 120: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 120 + name: + type: string + example: 'Realtec' + 3151: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 3151 + name: + type: string + example: 'Realtime Games Software Ltd.' + 180: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 180 + name: + type: string + example: 'Rebellion' + 5096: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 5096 + name: + type: string + example: 'Rebellion Developments Sold Out' + 5861: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 5861 + name: + type: string + example: 'Rebound Hewson' + 1219: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 1219 + name: + type: string + example: 'Recoil Games' + 5860: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 5860 + name: + type: string + example: 'Recotechnology S.L.' + 1807: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 1807 + name: + type: string + example: 'Red Barrels' + 869: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 869 + name: + type: string + example: 'Red Company Corporation' + 5734: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 5734 + name: + type: string + example: 'Red Duck' + 2953: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 2953 + name: + type: string + example: 'Red Dwarf Games' + 2781: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 2781 + name: + type: string + example: 'Red Hook Studios' + 3214: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 3214 + name: + type: string + example: 'Red Mile Entertainment, Inc.' + 921: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 921 + name: + type: string + example: 'Red Orb Entertainment' + 1208: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 1208 + name: + type: string + example: 'Red Redemption Ltd.' + 5071: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 5071 + name: + type: string + example: 'Red Shift Ltd' + 147: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 147 + name: + type: string + example: 'Red Storm Entertainment, Inc.' + 4559: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 4559 + name: + type: string + example: 'Red Thread Games' + 1418: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 1418 + name: + type: string + example: 'Red Wagon Games' + 1190: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 1190 + name: + type: string + example: 'RedLynx Ltd' + 752: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 752 + name: + type: string + example: 'RedOctane, Inc.' + 2018: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 2018 + name: + type: string + example: 'Redspotgames' + 4475: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 4475 + name: + type: string + example: 'RedWolf Design' + 1508: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 1508 + name: + type: string + example: 'Reef Entertainment Ltd.' + 5176: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 5176 + name: + type: string + example: 'Reelax Games' + 1129: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 1129 + name: + type: string + example: 'Reflections Interactive Limited' + 4317: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 4317 + name: + type: string + example: 'Reflexive Entertainment Inc.' + 5530: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 5530 + name: + type: string + example: 'Regalis' + 2955: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 2955 + name: + type: string + example: 'Reiza Studios' + 3492: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 3492 + name: + type: string + example: 'Reizon' + 4623: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 4623 + name: + type: string + example: 'Relevo Videogames, SL' + 1904: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 1904 + name: + type: string + example: 'reLINE Software' + 984: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 984 + name: + type: string + example: 'Remedy Entertainment Ltd.' + 1710: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 1710 + name: + type: string + example: 'Renegade Kid' + 1038: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 1038 + name: + type: string + example: 'Renegade Software' + 450: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 450 + name: + type: string + example: 'Renovation Game' + 119: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 119 + name: + type: string + example: 'Renovation Products, Inc.' + 1877: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 1877 + name: + type: string + example: 'Replay Games Inc' + 3577: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 3577 + name: + type: string + example: 'Repro-Factory' + 5483: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 5483 + name: + type: string + example: 'Reset64' + 4715: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 4715 + name: + type: string + example: 'Respondesign' + 5801: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 5801 + name: + type: string + example: 'Reston Publishing Company, Inc.' + 1798: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 1798 + name: + type: string + example: 'Retro Affect' + 2657: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 2657 + name: + type: string + example: 'Retro Army Limited' + 3049: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 3049 + name: + type: string + example: 'Retro Yeti Games' + 4780: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 4780 + name: + type: string + example: 'Retro-gaming Connexion' + 3655: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 3655 + name: + type: string + example: 'Retrocade.net' + 5208: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 5208 + name: + type: string + example: 'Retrogene Studio' + 5829: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 5829 + name: + type: string + example: 'Retroguru' + 3907: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 3907 + name: + type: string + example: 'Retroism' + 2994: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 2994 + name: + type: string + example: 'RetroSouls' + 4876: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 4876 + name: + type: string + example: 'retroUSB' + 4105: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 4105 + name: + type: string + example: 'RetroWare' + 1825: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 1825 + name: + type: string + example: 'Retrowax Games' + 5559: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 5559 + name: + type: string + example: 'RetroWorks' + 1213: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 1213 + name: + type: string + example: 'RetroZone' + 1574: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 1574 + name: + type: string + example: 'Reverb Communications Inc.' + 2521: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 2521 + name: + type: string + example: 'Reverb Triple XP' + 3943: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 3943 + name: + type: string + example: 'Revival Studios' + 1127: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 1127 + name: + type: string + example: 'Revolution Software Ltd.' + 3482: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 3482 + name: + type: string + example: 'REX Simulations, LLC.' + 3437: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 3437 + name: + type: string + example: 'RGCD Publishing' + 4988: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 4988 + name: + type: string + example: 'Richard Bayliss' + 3074: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 3074 + name: + type: string + example: 'Richard Hofmeier' + 3820: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 3820 + name: + type: string + example: 'Richard Seabrook' + 3445: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 3445 + name: + type: string + example: 'Richard Shepherd Software' + 2989: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 2989 + name: + type: string + example: 'RichMakeGame' + 5274: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 5274 + name: + type: string + example: 'Richwood Software' + 3845: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 3845 + name: + type: string + example: 'Rick Skrbina' + 2712: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 2712 + name: + type: string + example: 'Right Stuff' + 5222: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 5222 + name: + type: string + example: 'Righteous Hammer Games' + 5489: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 5489 + name: + type: string + example: 'Rimlight Studios' + 5306: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 5306 + name: + type: string + example: 'Rino' + 1357: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 1357 + name: + type: string + example: 'Riot' + 190: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 190 + name: + type: string + example: 'Riot Games' + 1257: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 1257 + name: + type: string + example: 'Ripcord Games' + 5830: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 5830 + name: + type: string + example: 'Ripefire' + 2424: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 2424 + name: + type: string + example: 'Ripstone' + 1289: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 1289 + name: + type: string + example: 'Rising Star Games' + 4843: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 4843 + name: + type: string + example: 'Ritter Sport' + 1179: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 1179 + name: + type: string + example: 'Ritual Entertainment' + 2626: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 2626 + name: + type: string + example: 'Riverhill Software Inc.' + 3121: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 3121 + name: + type: string + example: 'RiverMan Media LLC' + 1578: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 1578 + name: + type: string + example: 'RjB Software' + 3355: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 3355 + name: + type: string + example: 'Rob Fulop' + 4631: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 4631 + name: + type: string + example: 'Robbie Hill' + 4821: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 4821 + name: + type: string + example: 'Robert DeCrescenzo' + 2573: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 2573 + name: + type: string + example: 'Roblox Corporation' + 1267: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 1267 + name: + type: string + example: 'Robot Entertainment' + 3487: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 3487 + name: + type: string + example: 'Robot Gentleman Studios' + 1986: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 1986 + name: + type: string + example: 'RobotLovesKitty' + 2439: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 2439 + name: + type: string + example: 'Robotronic Games' + 2574: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 2574 + name: + type: string + example: 'RobTop Games' + 1209: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 1209 + name: + type: string + example: 'Rock Hippo Productions' + 1346: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 1346 + name: + type: string + example: 'Rock-Ola' + 2517: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 2517 + name: + type: string + example: 'Rocket Bear Games' + 4667: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 4667 + name: + type: string + example: 'Rocket Company' + 3705: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 3705 + name: + type: string + example: 'Rocket Games, Inc.' + 583: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 583 + name: + type: string + example: 'Rocket Science Games, Inc.' + 5604: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 5604 + name: + type: string + example: 'Rocketcat Games' + 5740: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 5740 + name: + type: string + example: 'Rocketeer Games Studio, LLC' + 4455: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 4455 + name: + type: string + example: 'ROCKFISH Games' + 1575: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 1575 + name: + type: string + example: 'Rockin'' Android' + 3881: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 3881 + name: + type: string + example: 'Rocksauce Studios' + 17: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 17 + name: + type: string + example: 'Rockstar Games' + 4438: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 4438 + name: + type: string + example: 'Rodmar Elec' + 5491: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 5491 + name: + type: string + example: 'Roklan Corporation' + 4102: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 4102 + name: + type: string + example: 'Rokland' + 3763: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 3763 + name: + type: string + example: 'Roland Studios' + 5758: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 5758 + name: + type: string + example: 'Roll7' + 3114: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 3114 + name: + type: string + example: 'Roman Syrovatka' + 4222: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 4222 + name: + type: string + example: 'Romantic Robot' + 944: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 944 + name: + type: string + example: 'Rombax Games' + 1976: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 1976 + name: + type: string + example: 'Romhacking' + 4425: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 4425 + name: + type: string + example: 'Romhacking.net' + 5046: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 5046 + name: + type: string + example: 'Romik Software Ltd' + 4080: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 4080 + name: + type: string + example: 'Romox Inc.' + 302: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 302 + name: + type: string + example: 'Romstar Incorporated' + 3407: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 3407 + name: + type: string + example: 'rondomedia Marketing & Vertriebs GmbH' + 955: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 955 + name: + type: string + example: 'Ronimo Games' + 2500: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 2500 + name: + type: string + example: 'Roofdog Games' + 5855: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 5855 + name: + type: string + example: 'Rookie Hero Games S.L.' + 2227: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 2227 + name: + type: string + example: 'roseVeRte' + 5794: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 5794 + name: + type: string + example: 'Rotten Mage' + 4577: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 4577 + name: + type: string + example: 'Rough Trade Distribution GmbH' + 735: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 735 + name: + type: string + example: 'Rovio Entertainment Ltd.' + 1949: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 1949 + name: + type: string + example: 'Rovio Stars' + 1572: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 1572 + name: + type: string + example: 'Roxor' + 5012: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 5012 + name: + type: string + example: 'Roy Fiedling' + 3392: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 3392 + name: + type: string + example: 'Royal Kougyou' + 4579: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 4579 + name: + type: string + example: 'RTL Playtainment' + 828: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 828 + name: + type: string + example: 'RTL Sports' + 2239: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 2239 + name: + type: string + example: 'Ruminant''s Whimper' + 1282: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 1282 + name: + type: string + example: 'Runic Games' + 8281: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 8281 + name: + type: string + example: 'Russobit-M' + 3968: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 3968 + name: + type: string + example: 'Ryan Kinnen' + 2114: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 2114 + name: + type: string + example: 'S.A.R.L. TLK Games' + 8266: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 8266 + name: + type: string + example: 'S.Connolly' + 4039: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 4039 + name: + type: string + example: 'S.G.I.' + 519: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 519 + name: + type: string + example: 'S2 Games, LLC' + 1652: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 1652 + name: + type: string + example: 'Saber Interactive' + 319: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 319 + name: + type: string + example: 'Sachen' + 5276: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 5276 + name: + type: string + example: 'Sachs Enterprises' + 4859: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 4859 + name: + type: string + example: 'Sacis' + 5477: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 5477 + name: + type: string + example: 'Safari Software Ltd.' + 157: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 157 + name: + type: string + example: 'Sage''s Creation, Inc.' + 1932: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 1932 + name: + type: string + example: 'Saibot Studios' + 5093: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 5093 + name: + type: string + example: 'Saicon Software' + 5014: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 5014 + name: + type: string + example: 'Saimo' + 1713: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 1713 + name: + type: string + example: 'Sakari Games' + 3803: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 3803 + name: + type: string + example: 'SakeVisual' + 2064: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 2064 + name: + type: string + example: 'Sakura River Interactive' + 5500: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 5500 + name: + type: string + example: 'SakuraGame' + 441: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 441 + name: + type: string + example: 'Salio, Inc.' + 1674: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 1674 + name: + type: string + example: 'Salu Ltd.' + 290: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 290 + name: + type: string + example: 'Sammy Corporation' + 4855: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 4855 + name: + type: string + example: 'Samourai' + 2192: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 2192 + name: + type: string + example: 'Samsung' + 3888: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 3888 + name: + type: string + example: 'Samsung A.I System' + 4095: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 4095 + name: + type: string + example: 'Sancho' + 4632: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 4632 + name: + type: string + example: 'Sancho / Tang''s Electronic Co.' + 2602: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 2602 + name: + type: string + example: 'Sanctuary Woods, Inc.' + 2466: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 2466 + name: + type: string + example: 'Sandbox Studios' + 3622: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 3622 + name: + type: string + example: 'Sandstorm Productions' + 1670: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 1670 + name: + type: string + example: 'Sandswept Studios' + 3341: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 3341 + name: + type: string + example: 'Sankindo' + 664: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 664 + name: + type: string + example: 'Sanrio Digital' + 3040: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 3040 + name: + type: string + example: 'Sanritsu' + 2187: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 2187 + name: + type: string + example: 'Sansan Co., Ltd.' + 2358: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 2358 + name: + type: string + example: 'Santa Ragione' + 3592: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 3592 + name: + type: string + example: 'Santos' + 2143: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 2143 + name: + type: string + example: 'Sanuk Games' + 3448: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 3448 + name: + type: string + example: 'Sanville Software' + 4723: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 4723 + name: + type: string + example: 'Sanyo Electric Co., Ltd.' + 1653: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 1653 + name: + type: string + example: 'Sarah Northway' + 3362: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 3362 + name: + type: string + example: 'Sarepta studio' + 5786: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 5786 + name: + type: string + example: 'SaruPro' + 2290: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 2290 + name: + type: string + example: 'Saucer Software' + 2782: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 2782 + name: + type: string + example: 'Sauerbraten.org' + 1172: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 1172 + name: + type: string + example: 'Saurus Co., Ltd.' + 5472: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 5472 + name: + type: string + example: 'Sayonara Software' + 3611: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 3611 + name: + type: string + example: 'Scap Trust' + 3233: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 3233 + name: + type: string + example: 'Scary Bee' + 2005: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 2005 + name: + type: string + example: 'Scavenger, Inc.' + 5750: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 5750 + name: + type: string + example: 'Scavengers Studio' + 614: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 614 + name: + type: string + example: 'SCE' + 2321: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 2321 + name: + type: string + example: 'SCE Australia' + 8329: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 8329 + name: + type: string + example: 'SCE Bend Studio' + 1507: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 1507 + name: + type: string + example: 'SCE London Studio' + 5386: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 5386 + name: + type: string + example: 'SCE Worldwide Studios' + 38: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 38 + name: + type: string + example: 'SCEA' + 20: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 20 + name: + type: string + example: 'SCEE' + 127: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 127 + name: + type: string + example: 'SCEI' + 3474: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 3474 + name: + type: string + example: 'Schell Games' + 2866: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 2866 + name: + type: string + example: 'Schmidt Spiele' + 1423: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 1423 + name: + type: string + example: 'Scholastic' + 561: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 561 + name: + type: string + example: 'SCi Games Ltd.' + 3391: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 3391 + name: + type: string + example: 'Scorpion Soft' + 2429: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 2429 + name: + type: string + example: 'Scott Cawthon' + 3985: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 3985 + name: + type: string + example: 'Scott Nudds' + 5425: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 5425 + name: + type: string + example: 'SCREEN' + 2600: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 2600 + name: + type: string + example: 'Screen 7' + 5813: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 5813 + name: + type: string + example: 'Screen 7 Ltd.' + 8282: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 8282 + name: + type: string + example: 'Screenlife, LLC' + 776: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 776 + name: + type: string + example: 'Screenplay' + 2197: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 2197 + name: + type: string + example: 'ScrewAttack Games' + 1738: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 1738 + name: + type: string + example: 'Screwfly Studios' + 1497: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 1497 + name: + type: string + example: 'SCS Software' + 277: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 277 + name: + type: string + example: 'Sculptured Software, Inc.' + 254: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 254 + name: + type: string + example: 'Sears, Roebuck and Co.' + 4531: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 4531 + name: + type: string + example: 'SeaSwallow' + 2229: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 2229 + name: + type: string + example: 'Seaven Studio' + 5501: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 5501 + name: + type: string + example: 'Seba Games' + 1628: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 1628 + name: + type: string + example: 'Secret Base' + 1794: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 1794 + name: + type: string + example: 'Secret Exit' + 816: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 816 + name: + type: string + example: 'Secret Stash Games' + 15: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 15 + name: + type: string + example: 'Sega' + 4194: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 4194 + name: + type: string + example: 'Sega Europe' + 366: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 366 + name: + type: string + example: 'Sega of America' + 346: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 346 + name: + type: string + example: 'Sega of America, Inc.' + 1055: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 1055 + name: + type: string + example: 'Sega Sports' + 1806: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 1806 + name: + type: string + example: 'Sega Studios' + 3793: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 3793 + name: + type: string + example: 'SegaAge' + 1274: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 1274 + name: + type: string + example: 'SegaSoft Networks Inc.' + 4464: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 4464 + name: + type: string + example: 'Seibu Denshi' + 386: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 386 + name: + type: string + example: 'Seibu Kaihatsu Inc.' + 454: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 454 + name: + type: string + example: 'Seika Corporation' + 3896: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 3896 + name: + type: string + example: 'Sein Soft Inc.' + 112: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 112 + name: + type: string + example: 'Seismic Games' + 558: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 558 + name: + type: string + example: 'Seismic Software Inc.' + 2430: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 2430 + name: + type: string + example: 'SeithCG' + 4180: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 4180 + name: + type: string + example: 'Sekai Bunka Publishing, Inc.' + 2799: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 2799 + name: + type: string + example: 'Sekai Project' + 4365: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 4365 + name: + type: string + example: 'Selen' + 2366: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 2366 + name: + type: string + example: 'Self-Published' + 504: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 504 + name: + type: string + example: 'Selling Points GmbH' + 1242: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 1242 + name: + type: string + example: 'Semi Secret Software' + 3192: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 3192 + name: + type: string + example: 'Semicolon Software' + 2889: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 2889 + name: + type: string + example: 'Semicom' + 4669: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 4669 + name: + type: string + example: 'Semnat Studios' + 3609: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 3609 + name: + type: string + example: 'Senchi Technology' + 5838: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 5838 + name: + type: string + example: 'Senile Team' + 4461: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 4461 + name: + type: string + example: 'Senko Industries' + 3327: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 3327 + name: + type: string + example: 'Seppo Suorsa' + 3725: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 3725 + name: + type: string + example: 'Sergeant Mark IV' + 5587: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 5587 + name: + type: string + example: 'Sergey Noskov' + 4887: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 4887 + name: + type: string + example: 'Serma Software' + 76: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 76 + name: + type: string + example: 'SETA Corporation' + 8311: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 8311 + name: + type: string + example: 'Settimana Games' + 3347: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 3347 + name: + type: string + example: 'SevenOne Intermedia GmbH' + 2906: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 2906 + name: + type: string + example: 'Shadowsoft' + 3098: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 3098 + name: + type: string + example: 'Shanghai Paradise' + 4610: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 4610 + name: + type: string + example: 'ShareData, Inc.' + 1383: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 1383 + name: + type: string + example: 'Sharp Corporation' + 193: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 193 + name: + type: string + example: 'Shatterline Productions' + 396: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 396 + name: + type: string + example: 'Shaven Puppy Ltd' + 3262: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 3262 + name: + type: string + example: 'Shawn McGrath' + 3689: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 3689 + name: + type: string + example: 'Sheado.net' + 3976: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 3976 + name: + type: string + example: 'Shenzhen Nanjing Technology' + 2279: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 2279 + name: + type: string + example: 'Shin''en Multimedia' + 3568: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 3568 + name: + type: string + example: 'Shinemasa Play' + 5635: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 5635 + name: + type: string + example: 'Shinko Music' + 2852: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 2852 + name: + type: string + example: 'Shinsei Kogyo Ltd.' + 1635: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 1635 + name: + type: string + example: 'Shiro Games' + 2997: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 2997 + name: + type: string + example: 'Shiru' + 1554: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 1554 + name: + type: string + example: 'Shiver Games' + 8208: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 8208 + name: + type: string + example: 'Shoebox' + 4734: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 4734 + name: + type: string + example: 'Shoei' + 3312: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 3312 + name: + type: string + example: 'Shoeisha Co., Ltd.' + 349: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 349 + name: + type: string + example: 'Shogakukan Productions Co., Ltd.' + 1692: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 1692 + name: + type: string + example: 'Shorebound Studios' + 3486: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 3486 + name: + type: string + example: 'Shouei System' + 1702: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 1702 + name: + type: string + example: 'Shovsoft' + 2920: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 2920 + name: + type: string + example: 'Showa Tsusho' + 2300: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 2300 + name: + type: string + example: 'Shrapnel Games, Inc.' + 4867: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 4867 + name: + type: string + example: 'Shueisha Inc.' + 2843: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 2843 + name: + type: string + example: 'Shugo' + 3257: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 3257 + name: + type: string + example: 'Shumkov Dmitriy' + 4337: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 4337 + name: + type: string + example: 'Siberian Digital' + 5359: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 5359 + name: + type: string + example: 'Sidebar Games' + 5933: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 5933 + name: + type: string + example: 'SideQuest Studios' + 538: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 538 + name: + type: string + example: 'Sidhe Interactive' + 5579: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 5579 + name: + type: string + example: 'SIE' + 4452: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 4452 + name: + type: string + example: 'SIEA' + 4054: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 4054 + name: + type: string + example: 'Sieco' + 4251: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 4251 + name: + type: string + example: 'Sieidi Ltd' + 32: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 32 + name: + type: string + example: 'Sierra' + 145: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 145 + name: + type: string + example: 'Sierra Online' + 1314: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 1314 + name: + type: string + example: 'Sierra Sports' + 8287: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 8287 + name: + type: string + example: 'Sigil Games Online, Inc.' + 1975: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 1975 + name: + type: string + example: 'Sigma Ent. Inc.' + 1636: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 1636 + name: + type: string + example: 'Sigma Team' + 2405: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 2405 + name: + type: string + example: 'Signal Studios' + 4327: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 4327 + name: + type: string + example: 'Signatron USA' + 3293: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 3293 + name: + type: string + example: 'Signo & Arte' + 3657: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 3657 + name: + type: string + example: 'Silicon Studio' + 2976: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 2976 + name: + type: string + example: 'Silk Games' + 4524: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 4524 + name: + type: string + example: 'Silky''s Sakura' + 2513: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 2513 + name: + type: string + example: 'Silmarils' + 5608: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 5608 + name: + type: string + example: 'Silmulmondo' + 2654: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 2654 + name: + type: string + example: 'Silver Dollar Games' + 1447: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 1447 + name: + type: string + example: 'Silverball Studios' + 8284: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 8284 + name: + type: string + example: 'SilverBirch Studios' + 4125: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 4125 + name: + type: string + example: 'Silverbird Software Ltd.' + 3417: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 3417 + name: + type: string + example: 'Silverline Software' + 8291: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 8291 + name: + type: string + example: 'SilverRock Productions' + 4997: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 4997 + name: + type: string + example: 'Silversoft' + 5671: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 5671 + name: + type: string + example: 'Silvio Mogno' + 653: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 653 + name: + type: string + example: 'SimBin Development Team AB' + 2546: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 2546 + name: + type: string + example: 'Similis Software GmbH' + 3123: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 3123 + name: + type: string + example: 'Simogo' + 688: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 688 + name: + type: string + example: 'Simon & Schuster Interactive' + 5672: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 5672 + name: + type: string + example: 'Simon Quernhorst' + 3625: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 3625 + name: + type: string + example: 'Sims Co., Ltd.' + 2077: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 2077 + name: + type: string + example: 'Simulmondo' + 1332: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 1332 + name: + type: string + example: 'Simutrek' + 4248: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 4248 + name: + type: string + example: 'Sinclair Research Ltd.' + 202: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 202 + name: + type: string + example: 'SingleTrac Entertainment Technologies, Inc.' + 5225: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 5225 + name: + type: string + example: 'Sinister Design' + 1108: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 1108 + name: + type: string + example: 'Sir-tech Software, Inc.' + 5312: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 5312 + name: + type: string + example: 'Sirius' + 5271: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 5271 + name: + type: string + example: 'Sirius Software, Inc.' + 4038: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 4038 + name: + type: string + example: 'SIS Co.' + 4871: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 4871 + name: + type: string + example: 'Sixjoy Hong Kong Limited' + 5315: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 5315 + name: + type: string + example: 'Sixteen Tons Entertainment' + 965: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 965 + name: + type: string + example: 'Size Five Games' + 3878: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 3878 + name: + type: string + example: 'SKC Soft Land' + 5700: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 5700 + name: + type: string + example: 'Sketch Logic Games' + 3977: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 3977 + name: + type: string + example: 'SKH Apps' + 1342: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 1342 + name: + type: string + example: 'Skip, Ltd.' + 3304: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 3304 + name: + type: string + example: 'Skitso Productions' + 5454: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 5454 + name: + type: string + example: 'SKOB' + 5961: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 5961 + name: + type: string + example: 'Skobbejak Games' + 3999: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 3999 + name: + type: string + example: 'Skull Army' + 4964: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 4964 + name: + type: string + example: 'Skunk Software' + 1643: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 1643 + name: + type: string + example: 'Sky Think Systems Co. Ltd.' + 4529: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 4529 + name: + type: string + example: 'Sky Trail Ltd' + 5785: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 5785 + name: + type: string + example: 'Skydance Interactive' + 1769: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 1769 + name: + type: string + example: 'SkyGoblin' + 5392: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 5392 + name: + type: string + example: 'SKYL-COM LTD' + 2649: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 2649 + name: + type: string + example: 'Skyworks Interactive' + 1579: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 1579 + name: + type: string + example: 'Slightly Mad Studios' + 3054: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 3054 + name: + type: string + example: 'Slitherine Software UK Ltd.' + 3720: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 3720 + name: + type: string + example: 'Sluggerfly' + 4296: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 4296 + name: + type: string + example: 'Sly Dog Studios' + 817: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 817 + name: + type: string + example: 'Smash Designs' + 2936: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 2936 + name: + type: string + example: 'SmashGames' + 1804: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 1804 + name: + type: string + example: 'Smashpotato Entertainment' + 3994: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 3994 + name: + type: string + example: 'SME' + 2993: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 2993 + name: + type: string + example: 'smea' + 2992: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 2992 + name: + type: string + example: 'Smealum' + 5941: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 5941 + name: + type: string + example: 'SMG Studio' + 4500: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 4500 + name: + type: string + example: 'Smilesoft' + 4944: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 4944 + name: + type: string + example: 'Smiling Buddha Games' + 1259: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 1259 + name: + type: string + example: 'Smoking Gun Productions' + 2231: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 2231 + name: + type: string + example: 'Smudged Cat Games' + 4802: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 4802 + name: + type: string + example: 'SnapDragon Games GmbH' + 5139: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 5139 + name: + type: string + example: 'Snapshot Games Inc.' + 4250: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 4250 + name: + type: string + example: 'SNESCentral' + 60: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 60 + name: + type: string + example: 'SNK' + 727: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 727 + name: + type: string + example: 'SNK of America' + 503: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 503 + name: + type: string + example: 'SNK Playmore' + 3758: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 3758 + name: + type: string + example: 'Snowbird Game Studios' + 2996: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 2996 + name: + type: string + example: 'Snowbro Software' + 5020: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 5020 + name: + type: string + example: 'SnowCastle Games' + 2478: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 2478 + name: + type: string + example: 'SocialPoint' + 3254: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 3254 + name: + type: string + example: 'Soedesco' + 298: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 298 + name: + type: string + example: 'SOFEL Co., Ltd.' + 5245: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 5245 + name: + type: string + example: 'Soft Art' + 326: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 326 + name: + type: string + example: 'Soft Pro International' + 1935: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 1935 + name: + type: string + example: 'Soft Vision International' + 1334: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 1334 + name: + type: string + example: 'Softbank Corp.' + 1234: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 1234 + name: + type: string + example: 'Softdisk Publishing' + 5119: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 5119 + name: + type: string + example: 'Softek International Ltd.' + 2840: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 2840 + name: + type: string + example: 'Softgold Computerspiele GmbH' + 8299: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 8299 + name: + type: string + example: 'Softkey' + 4825: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 4825 + name: + type: string + example: 'Softmax Co., Ltd.' + 1915: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 1915 + name: + type: string + example: 'Softnyx' + 5800: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 5800 + name: + type: string + example: 'Softsmith Software' + 4123: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 4123 + name: + type: string + example: 'Softswap' + 1467: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 1467 + name: + type: string + example: 'Software 2000' + 2248: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 2248 + name: + type: string + example: 'Software Creations' + 5549: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 5549 + name: + type: string + example: 'Software Invasion' + 5009: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 5009 + name: + type: string + example: 'Software of Sweden' + 722: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 722 + name: + type: string + example: 'Software Projects Ltd.' + 5738: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 5738 + name: + type: string + example: 'Software Resources International' + 3349: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 3349 + name: + type: string + example: 'Software Untergrund GmbH & Co KG' + 4256: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 4256 + name: + type: string + example: 'Softwarecete' + 2046: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 2046 + name: + type: string + example: 'Sokay LLC' + 4165: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 4165 + name: + type: string + example: 'Solan' + 5318: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 5318 + name: + type: string + example: 'Solar Software' + 3157: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 3157 + name: + type: string + example: 'SolarLune Games' + 4591: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 4591 + name: + type: string + example: 'solarus' + 3085: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 3085 + name: + type: string + example: 'Sold Out Sales and Marketing Limited' + 1832: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 1832 + name: + type: string + example: 'Soldak Entertainment, Inc.' + 5582: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 5582 + name: + type: string + example: 'Soli Deo Gloria Productions, LLC' + 1882: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 1882 + name: + type: string + example: 'Solid Software' + 5391: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 5391 + name: + type: string + example: 'Solus Games' + 3517: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 3517 + name: + type: string + example: 'SomaSim Games' + 1849: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 1849 + name: + type: string + example: 'Sometimes You' + 2174: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 2174 + name: + type: string + example: 'Songbird Productions' + 3554: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 3554 + name: + type: string + example: 'Songtly' + 952: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 952 + name: + type: string + example: 'Sonic Boom Games' + 4163: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 4163 + name: + type: string + example: 'Sonic Co.' + 4002: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 4002 + name: + type: string + example: 'Sonic Powered' + 2927: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 2927 + name: + type: string + example: 'SonicRetro' + 3178: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 3178 + name: + type: string + example: 'Sonnori Co., Ltd.' + 1404: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 1404 + name: + type: string + example: 'Sont' + 21: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 21 + name: + type: string + example: 'Sony' + 8331: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 8331 + name: + type: string + example: 'Sony Bend' + 8332: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 8332 + name: + type: string + example: 'Sony BMG Music Entertainment' + 14: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 14 + name: + type: string + example: 'Sony Computer Entertainment' + 8333: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 8333 + name: + type: string + example: 'Sony Computer Entertainment (Shanghai) Co., Ltd.' + 520: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 520 + name: + type: string + example: 'Sony Computer Entertainment America' + 1939: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 1939 + name: + type: string + example: 'Sony Computer Entertainment America, Inc.' + 8334: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 8334 + name: + type: string + example: 'Sony Computer Entertainment Asia' + 8335: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 8335 + name: + type: string + example: 'Sony Computer Entertainment Australia Pty Ltd' + 8336: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 8336 + name: + type: string + example: 'Sony Computer Entertainment Deutschland GmbH' + 8337: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 8337 + name: + type: string + example: 'Sony Computer Entertainment España' + 19: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 19 + name: + type: string + example: 'Sony Computer Entertainment Europe' + 2542: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 2542 + name: + type: string + example: 'Sony Computer Entertainment Europe Ltd.' + 1364: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 1364 + name: + type: string + example: 'Sony Computer Entertainment Inc.' + 835: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 835 + name: + type: string + example: 'Sony Computer Entertainment Incorporated' + 8338: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 8338 + name: + type: string + example: 'Sony Computer Entertainment Italia S.p.a.' + 1239: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 1239 + name: + type: string + example: 'Sony Computer Entertainment Japan' + 8339: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 8339 + name: + type: string + example: 'Sony Computer Entertainment Korea, Inc.' + 8340: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 8340 + name: + type: string + example: 'Sony Computer Entertainment Polska Sp. z.o.o.' + 8341: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 8341 + name: + type: string + example: 'Sony Computer Entertainment Portugal, Unipessoal, Lda.' + 8342: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 8342 + name: + type: string + example: 'Sony Computer Entertainment Schweiz AG' + 1937: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 1937 + name: + type: string + example: 'Sony Computer Entertainmnet Incorporated' + 2537: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 2537 + name: + type: string + example: 'Sony Computer Intertainment' + 4219: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 4219 + name: + type: string + example: 'Sony Comuputer Entertainment' + 8343: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 8343 + name: + type: string + example: 'Sony Corporation' + 8344: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 8344 + name: + type: string + example: 'Sony DADC US Inc.' + 8345: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 8345 + name: + type: string + example: 'Sony Digital Entertainment Services Inc.' + 1980: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 1980 + name: + type: string + example: 'Sony Electronic Publishing' + 8296: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 8296 + name: + type: string + example: 'Sony Electronic Publishing Ltd.' + 8346: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 8346 + name: + type: string + example: 'Sony Electronics Inc.' + 1591: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 1591 + name: + type: string + example: 'Sony Entertainment' + 8347: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 8347 + name: + type: string + example: 'Sony España, S.A.' + 8348: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 8348 + name: + type: string + example: 'Sony Hellas A.E.E.' + 77: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 77 + name: + type: string + example: 'Sony Imagesoft' + 8349: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 8349 + name: + type: string + example: 'Sony Imagesoft UK' + 5554: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 5554 + name: + type: string + example: 'Sony Imaging Soft' + 4048: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 4048 + name: + type: string + example: 'Sony Interactive Entertainment' + 8351: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 8351 + name: + type: string + example: 'Sony Interactive Entertainment (Shanghai) Co., Ltd.' + 4954: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 4954 + name: + type: string + example: 'Sony Interactive Entertainment America' + 8352: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 8352 + name: + type: string + example: 'Sony Interactive Entertainment Australia' + 4346: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 4346 + name: + type: string + example: 'Sony Interactive Entertainment Europe' + 8353: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 8353 + name: + type: string + example: 'Sony Interactive Entertainment Japan Studio' + 8354: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 8354 + name: + type: string + example: 'Sony Interactive Entertainment Korea' + 8355: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 8355 + name: + type: string + example: 'Sony Interactive PC Software America' + 8356: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 8356 + name: + type: string + example: 'Sony Interactive Studios America' + 8357: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 8357 + name: + type: string + example: 'Sony Marketing' + 8358: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 8358 + name: + type: string + example: 'Sony Marketing (Japan) Inc.' + 8359: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 8359 + name: + type: string + example: 'Sony Mobile Communications Inc.' + 3078: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 3078 + name: + type: string + example: 'Sony Music Entertainment' + 8360: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 8360 + name: + type: string + example: 'Sony Music Entertainment (Germany) GmbH' + 8361: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 8361 + name: + type: string + example: 'Sony Music Entertainment (Japan), Inc.' + 8362: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 8362 + name: + type: string + example: 'Sony Music Entertainment Brasil Ltda.' + 3645: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 3645 + name: + type: string + example: 'Sony Music Entertainment Incorporated' + 8364: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 8364 + name: + type: string + example: 'Sony Music Holdings Inc.' + 683: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 683 + name: + type: string + example: 'Sony Online Entertainment' + 8365: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 8365 + name: + type: string + example: 'Sony Online Entertainment Denver' + 8366: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 8366 + name: + type: string + example: 'Sony Online Entertainment Los Angeles' + 8367: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 8367 + name: + type: string + example: 'Sony PCL Inc.' + 8368: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 8368 + name: + type: string + example: 'Sony Pictures' + 8369: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 8369 + name: + type: string + example: 'Sony Pictures Consumer Products Inc.' + 8370: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 8370 + name: + type: string + example: 'Sony Pictures Digital' + 8371: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 8371 + name: + type: string + example: 'Sony Pictures Home Entertainment' + 8372: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 8372 + name: + type: string + example: 'Sony Pictures Mobile' + 8373: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 8373 + name: + type: string + example: 'Sony Pictures Studios' + 8374: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 8374 + name: + type: string + example: 'Sony Pictures Television' + 8375: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 8375 + name: + type: string + example: 'Sony Pictures Virtual Reality' + 3846: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 3846 + name: + type: string + example: 'Sony Platform Publishing' + 8377: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 8377 + name: + type: string + example: 'Sony Studio Foster City' + 3821: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 3821 + name: + type: string + example: 'Sorath' + 1734: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 1734 + name: + type: string + example: 'Sos' + 1278: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 1278 + name: + type: string + example: 'SoulframeRPG' + 2345: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 2345 + name: + type: string + example: 'Sound Source Interactive, Inc.' + 5603: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 5603 + name: + type: string + example: 'Sound Technology Japan' + 896: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 896 + name: + type: string + example: 'Source Corporation' + 1668: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 1668 + name: + type: string + example: 'Source Studio Ltd.' + 3160: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 3160 + name: + type: string + example: 'Sourceforge' + 4284: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 4284 + name: + type: string + example: 'South Soft' + 4369: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 4369 + name: + type: string + example: 'South West Research' + 67: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 67 + name: + type: string + example: 'SouthPeak Interactive, LLC' + 5931: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 5931 + name: + type: string + example: 'Space' + 2475: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 2475 + name: + type: string + example: 'Space Ape Games' + 1931: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 1931 + name: + type: string + example: 'Space Budgie' + 2688: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 2688 + name: + type: string + example: 'Space Dwarves Entertainment' + 1600: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 1600 + name: + type: string + example: 'Spaces of Play' + 3364: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 3364 + name: + type: string + example: 'Spacetime Studios' + 4683: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 4683 + name: + type: string + example: 'Spacy Industrial' + 4847: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 4847 + name: + type: string + example: 'Sparkasse' + 5070: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 5070 + name: + type: string + example: 'Sparklers' + 1907: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 1907 + name: + type: string + example: 'Sparpweed' + 4098: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 4098 + name: + type: string + example: 'Sparrow Distribution' + 1294: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 1294 + name: + type: string + example: 'SPAZ' + 2451: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 2451 + name: + type: string + example: 'SPC Vision' + 3406: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 3406 + name: + type: string + example: 'Spearhead Games' + 2751: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 2751 + name: + type: string + example: 'Special FX Ltd.' + 4841: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 4841 + name: + type: string + example: 'Special Reserve Games' + 3352: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 3352 + name: + type: string + example: 'Spectravideo International Ltd.' + 1156: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 1156 + name: + type: string + example: 'Spectravision' + 395: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 395 + name: + type: string + example: 'Spectrum Holobyte, Inc.' + 5765: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 5765 + name: + type: string + example: 'Speed Code' + 1673: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 1673 + name: + type: string + example: 'Spellbound Entertainment AG' + 2561: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 2561 + name: + type: string + example: 'Sphinx Entertainment' + 2792: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 2792 + name: + type: string + example: 'Spiderling Studios' + 1228: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 1228 + name: + type: string + example: 'Spiderweb Software' + 2194: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 2194 + name: + type: string + example: 'Spike Chunsoft' + 799: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 799 + name: + type: string + example: 'Spike Co., Ltd.' + 3477: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 3477 + name: + type: string + example: 'Spinnaker Software Corporation' + 5697: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 5697 + name: + type: string + example: 'Spiral Game Studios' + 1799: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 1799 + name: + type: string + example: 'Spooky Squid Games Inc.' + 3227: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 3227 + name: + type: string + example: 'Sports Director Limited' + 2101: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 2101 + name: + type: string + example: 'Sportsmaster World Class Player' + 5478: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 5478 + name: + type: string + example: 'Spotlight Software' + 2766: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 2766 + name: + type: string + example: 'Springboard' + 5867: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 5867 + name: + type: string + example: 'sprite' + 5297: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 5297 + name: + type: string + example: 'Sprout Games' + 1723: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 1723 + name: + type: string + example: 'Spry Fox' + 556: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 556 + name: + type: string + example: 'SPS' + 1494: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 1494 + name: + type: string + example: 'Squad' + 136: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 136 + name: + type: string + example: 'Square EA' + 12: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 12 + name: + type: string + example: 'Square Enix' + 8304: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 8304 + name: + type: string + example: 'Square Enix Europe' + 4057: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 4057 + name: + type: string + example: 'SQUARE ENIX LTD T' + 1373: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 1373 + name: + type: string + example: 'Square Enix USA' + 11: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 11 + name: + type: string + example: 'Squaresoft' + 2456: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 2456 + name: + type: string + example: 'SSG Strategic Studies Group Pty Ltd.' + 149: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 149 + name: + type: string + example: 'SSI Tristar Corporation' + 2827: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 2827 + name: + type: string + example: 'St.GIGA' + 2728: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 2728 + name: + type: string + example: 'Stabyourself.net' + 2787: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 2787 + name: + type: string + example: 'STADLBAUER Kft.' + 3759: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 3759 + name: + type: string + example: 'Stainless Games Ltd.' + 5090: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 5090 + name: + type: string + example: 'Star Craft, Inc.' + 4868: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 4868 + name: + type: string + example: 'Star Games' + 2563: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 2563 + name: + type: string + example: 'Star Vault' + 5747: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 5747 + name: + type: string + example: 'StarBlade' + 4838: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 4838 + name: + type: string + example: 'Starbreeze Studios AB' + 1138: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 1138 + name: + type: string + example: 'Starbyte Software' + 353: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 353 + name: + type: string + example: 'Stardock Corporation' + 1755: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 1755 + name: + type: string + example: 'Starfish' + 3321: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 3321 + name: + type: string + example: 'Starfish SD' + 8297: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 8297 + name: + type: string + example: 'Stargate Productions' + 3310: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 3310 + name: + type: string + example: 'Starlight Marry Corporation' + 4430: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 4430 + name: + type: string + example: 'Starlight Software' + 3637: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 3637 + name: + type: string + example: 'Starpath Corporation' + 4676: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 4676 + name: + type: string + example: 'Starsoft Development Laboratories' + 2301: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 2301 + name: + type: string + example: 'StarWraith 3D Games LLC' + 2329: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 2329 + name: + type: string + example: 'State of Play' + 719: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 719 + name: + type: string + example: 'State Soft Ltd.' + 5178: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 5178 + name: + type: string + example: 'Stately Snail' + 5352: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 5352 + name: + type: string + example: 'Status Software' + 356: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 356 + name: + type: string + example: 'Steam' + 3350: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 3350 + name: + type: string + example: 'Steel Crate Games' + 4619: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 4619 + name: + type: string + example: 'Steel Penny Games, Inc.' + 4388: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 4388 + name: + type: string + example: 'SteelRaven7' + 8254: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 8254 + name: + type: string + example: 'Stefan Heineke' + 2464: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 2464 + name: + type: string + example: 'Stegersaurus Software Inc.' + 5656: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 5656 + name: + type: string + example: 'Stegosoft Games' + 5197: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 5197 + name: + type: string + example: 'Stellar Jockeys' + 595: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 595 + name: + type: string + example: 'Stern Electronics, Inc.' + 2092: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 2092 + name: + type: string + example: 'Steven Hanus' + 968: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 968 + name: + type: string + example: 'Stickmen Studios' + 2991: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 2991 + name: + type: string + example: 'Stirfire Studios' + 4728: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 4728 + name: + type: string + example: 'Stny Computer Entertainment' + 3520: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 3520 + name: + type: string + example: 'Stone Blade Entertainment' + 1942: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 1942 + name: + type: string + example: 'Storm' + 937: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 937 + name: + type: string + example: 'Storm City Games' + 2125: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 2125 + name: + type: string + example: 'StormBASIC games' + 3351: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 3351 + name: + type: string + example: 'Strangely Interactive Ltd' + 2884: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 2884 + name: + type: string + example: 'Strata' + 447: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 447 + name: + type: string + example: 'Strategic Designs Ltd.' + 79: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 79 + name: + type: string + example: 'Strategic Simulations, Inc.' + 560: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 560 + name: + type: string + example: 'Strategy First, Inc.' + 2797: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 2797 + name: + type: string + example: 'Studio 3 Interactive' + 1122: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 1122 + name: + type: string + example: 'Studio 3DO' + 5200: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 5200 + name: + type: string + example: 'Studio Bean' + 2180: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 2180 + name: + type: string + example: 'Studio Fazzy' + 4034: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 4034 + name: + type: string + example: 'Studio GEN / ASCII' + 5153: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 5153 + name: + type: string + example: 'Studio MDHR' + 2928: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 2928 + name: + type: string + example: 'Studio Nonante' + 3222: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 3222 + name: + type: string + example: 'Studio Paint' + 882: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 882 + name: + type: string + example: 'Studio Pixel' + 5286: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 5286 + name: + type: string + example: 'Studio Trophis' + 3059: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 3059 + name: + type: string + example: 'Studio Wildcard' + 4798: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 4798 + name: + type: string + example: 'Stupidgizmo' + 1056: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 1056 + name: + type: string + example: 'Suba Games' + 2132: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 2132 + name: + type: string + example: 'Subatomic studios' + 4196: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 4196 + name: + type: string + example: 'Subdued Software LLC' + 3661: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 3661 + name: + type: string + example: 'subLOGIC' + 1422: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 1422 + name: + type: string + example: 'Subset Games' + 3452: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 3452 + name: + type: string + example: 'Subsino Corp. Ltd.' + 1669: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 1669 + name: + type: string + example: 'Subsoap' + 2535: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 2535 + name: + type: string + example: 'Subtle Style' + 1001: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 1001 + name: + type: string + example: 'Success Corp.' + 2481: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 2481 + name: + type: string + example: 'SuckerFree Games' + 4608: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 4608 + name: + type: string + example: 'Sudden Games' + 1805: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 1805 + name: + type: string + example: 'Sulake Corporation Oy' + 4645: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 4645 + name: + type: string + example: 'Summit Software' + 2786: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 2786 + name: + type: string + example: 'Summitsoft Entertainment' + 983: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 983 + name: + type: string + example: 'Sumo Digital Ltd.' + 104: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 104 + name: + type: string + example: 'Sun Corporation' + 371: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 371 + name: + type: string + example: 'Sun Corporation of America' + 3109: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 3109 + name: + type: string + example: 'Sun Electronics Corp.' + 5452: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 5452 + name: + type: string + example: 'Sun Green' + 639: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 639 + name: + type: string + example: 'Sun Green Technology' + 2895: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 2895 + name: + type: string + example: 'SunA' + 605: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 605 + name: + type: string + example: 'Sunflowers Interactive Entertainment Software GmbH' + 2710: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 2710 + name: + type: string + example: 'Sunlight Games' + 1157: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 1157 + name: + type: string + example: 'Sunrise Software, Inc.' + 4981: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 4981 + name: + type: string + example: 'Sunshine Books' + 75: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 75 + name: + type: string + example: 'SUNSOFT' + 3512: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 3512 + name: + type: string + example: 'Sunstorm Interactive, Inc.' + 2104: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 2104 + name: + type: string + example: 'Suntek' + 4018: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 4018 + name: + type: string + example: 'Sunwing' + 3194: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 3194 + name: + type: string + example: 'Super Evil Megacorp' + 2203: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 2203 + name: + type: string + example: 'Super Fighter Team' + 5387: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 5387 + name: + type: string + example: 'Super Icon' + 2755: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 2755 + name: + type: string + example: 'Super Mega' + 3643: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 3643 + name: + type: string + example: 'Super Pig' + 5728: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 5728 + name: + type: string + example: 'Super Rare Games' + 1675: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 1675 + name: + type: string + example: 'Supercell' + 1251: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 1251 + name: + type: string + example: 'Superflat' + 2195: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 2195 + name: + type: string + example: 'Supergiant Games' + 3242: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 3242 + name: + type: string + example: 'SUPERHOT Team' + 3744: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 3744 + name: + type: string + example: 'Superior Software' + 4940: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 4940 + name: + type: string + example: 'SuperSet Software Corp.' + 3176: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 3176 + name: + type: string + example: 'SuperSoft' + 2502: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 2502 + name: + type: string + example: 'Supersolid Ltd.' + 1137: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 1137 + name: + type: string + example: 'Supervision Entertainment Ltd.' + 4901: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 4901 + name: + type: string + example: 'SupSuper' + 3629: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 3629 + name: + type: string + example: 'Sur de Wave' + 1307: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 1307 + name: + type: string + example: 'Surge' + 2204: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 2204 + name: + type: string + example: 'Surprise Attack Games' + 1721: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 1721 + name: + type: string + example: 'Suspicious Developments' + 3736: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 3736 + name: + type: string + example: 'Sven Co-op Team' + 5408: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 5408 + name: + type: string + example: 'SVG Distribution' + 2379: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 2379 + name: + type: string + example: 'Swing Swing Submarine' + 2566: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 2566 + name: + type: string + example: 'Swing! Entertainment Media AG' + 2636: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 2636 + name: + type: string + example: 'Switchblade Monkeys' + 5630: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 5630 + name: + type: string + example: 'Sybilasoft' + 3659: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 3659 + name: + type: string + example: 'Symmetry Entertainment, Inc.' + 603: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 603 + name: + type: string + example: 'Synapse Games' + 599: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 599 + name: + type: string + example: 'Synapse Software Corporation' + 286: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 286 + name: + type: string + example: 'Synergistic Software, Inc.' + 1118: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 1118 + name: + type: string + example: 'Synergy Inc.' + 1117: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 1117 + name: + type: string + example: 'Synergy Interactive Corp.' + 4992: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 4992 + name: + type: string + example: 'Synetic GmbH' + 5036: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 5036 + name: + type: string + example: 'Synsoft' + 3731: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 3731 + name: + type: string + example: 'Syrmex' + 4183: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 4183 + name: + type: string + example: 'Syscom Entertainment Inc.' + 585: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 585 + name: + type: string + example: 'System 3 Software, Ltd.' + 3897: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 3897 + name: + type: string + example: 'SYSTEM 4 de España, S.A.' + 3804: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 3804 + name: + type: string + example: 'System Sacom' + 1586: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 1586 + name: + type: string + example: 'SystemSoft' + 483: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 483 + name: + type: string + example: 'T&E Soft, Inc.' + 5302: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 5302 + name: + type: string + example: 'T&F Software Company' + 4691: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 4691 + name: + type: string + example: 'T.I.C.' + 2208: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 2208 + name: + type: string + example: 'T3Fun' + 4594: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 4594 + name: + type: string + example: 'Tactical Neuronics' + 1329: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 1329 + name: + type: string + example: 'Tad Corporation' + 2862: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 2862 + name: + type: string + example: 'Tag Games' + 1322: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 1322 + name: + type: string + example: 'Tago Electronics' + 1466: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 1466 + name: + type: string + example: 'Taito America Corporation' + 56: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 56 + name: + type: string + example: 'Taito Corporation' + 4097: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 4097 + name: + type: string + example: 'Taiwan - Cooper Black' + 3608: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 3608 + name: + type: string + example: 'Taiwan Information Corporation' + 4298: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 4298 + name: + type: string + example: 'Taiyo Elec' + 2530: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 2530 + name: + type: string + example: 'Takara' + 280: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 280 + name: + type: string + example: 'TAKARA Co., Ltd.' + 3018: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 3018 + name: + type: string + example: 'Takara Tomy' + 5531: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 5531 + name: + type: string + example: 'take' + 123: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 123 + name: + type: string + example: 'Take-Two Interactive Software, Inc.' + 5488: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 5488 + name: + type: string + example: 'Takeru' + 3564: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 3564 + name: + type: string + example: 'Taki' + 4971: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 4971 + name: + type: string + example: 'Takuma Shoten Publishing Co., Ltd.' + 4362: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 4362 + name: + type: string + example: 'Takumi Soft' + 313: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 313 + name: + type: string + example: 'Takuyo' + 950: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 950 + name: + type: string + example: 'Tale of Tales BVBA' + 1951: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 1951 + name: + type: string + example: 'Tales of Games' + 5828: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 5828 + name: + type: string + example: 'Tales Translations' + 866: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 866 + name: + type: string + example: 'TalonSoft' + 5909: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 5909 + name: + type: string + example: 'Tammeka Games' + 2635: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 2635 + name: + type: string + example: 'Tamsoft Corporation' + 5433: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 5433 + name: + type: string + example: 'Tamtex' + 3420: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 3420 + name: + type: string + example: 'Tandy' + 3416: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 3416 + name: + type: string + example: 'Tandy Corporation' + 3969: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 3969 + name: + type: string + example: 'Tangram Games' + 4955: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 4955 + name: + type: string + example: 'Tantalus Media' + 2864: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 2864 + name: + type: string + example: 'Tantrum Entertainment' + 4787: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 4787 + name: + type: string + example: 'Tap My Game, Inc.' + 2509: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 2509 + name: + type: string + example: 'Targem Games' + 2691: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 2691 + name: + type: string + example: 'Target Games' + 3706: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 3706 + name: + type: string + example: 'Tasharen Entertainment' + 3539: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 3539 + name: + type: string + example: 'Taskset Ltd.' + 2032: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 2032 + name: + type: string + example: 'Tasty Poison Games' + 3792: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 3792 + name: + type: string + example: 'Tasty Stewdios LLC.' + 4820: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 4820 + name: + type: string + example: 'Tasuke Co Ltd.' + 848: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 848 + name: + type: string + example: 'Tatsumi' + 4794: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 4794 + name: + type: string + example: 'Tau Ceti Software' + 87: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 87 + name: + type: string + example: 'Taxan' + 5572: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 5572 + name: + type: string + example: 'TBC' + 2784: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 2784 + name: + type: string + example: 'TCH International Group, LLC' + 463: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 463 + name: + type: string + example: 'TDK Mediactive, Inc.' + 8387: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 8387 + name: + type: string + example: 'Teal Fire' + 4589: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 4589 + name: + type: string + example: 'Team Cherry' + 3580: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 3580 + name: + type: string + example: 'Team Chivalry' + 8378: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 8378 + name: + type: string + example: 'Team Fugl' + 8379: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 8379 + name: + type: string + example: 'Team HalfBeard' + 4164: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 4164 + name: + type: string + example: 'Team IGAS' + 4979: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 4979 + name: + type: string + example: 'Team Junkfish' + 360: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 360 + name: + type: string + example: 'Team Meat' + 2874: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 2874 + name: + type: string + example: 'Team Megamix' + 2357: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 2357 + name: + type: string + example: 'Team Psykskallar' + 2634: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 2634 + name: + type: string + example: 'Team Reptile' + 5314: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 5314 + name: + type: string + example: 'Team Salvato' + 821: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 821 + name: + type: string + example: 'Team Shanghai Alice' + 915: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 915 + name: + type: string + example: 'Team Xonotic' + 370: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 370 + name: + type: string + example: 'Team17 Software Limited' + 422: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 422 + name: + type: string + example: 'Tec Toy Indústria de Brinquedos S.A.' + 4356: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 4356 + name: + type: string + example: 'Tecfri' + 1788: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 1788 + name: + type: string + example: 'Techland Sp. z o.o.' + 3836: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 3836 + name: + type: string + example: 'TechM Global' + 2747: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 2747 + name: + type: string + example: 'Technetium Games LLC' + 3915: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 3915 + name: + type: string + example: 'Technical Group Laboratory, Inc.' + 3699: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 3699 + name: + type: string + example: 'Techno Soleil Corporation' + 5310: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 5310 + name: + type: string + example: 'Technopolis Soft' + 95: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 95 + name: + type: string + example: 'Technos Japan Corp.' + 137: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 137 + name: + type: string + example: 'Technosoft Co., Ltd.' + 3639: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 3639 + name: + type: string + example: 'Technovision' + 3239: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 3239 + name: + type: string + example: 'Techstar' + 2881: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 2881 + name: + type: string + example: 'TecMagik' + 389: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 389 + name: + type: string + example: 'TecMagik Entertainment Ltd.' + 24: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 24 + name: + type: string + example: 'Tecmo' + 5242: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 5242 + name: + type: string + example: 'Tecmobowl.org' + 1691: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 1691 + name: + type: string + example: 'TecnoSoft' + 2490: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 2490 + name: + type: string + example: 'Tedven LLC' + 342: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 342 + name: + type: string + example: 'Tehkan Ltd.' + 1960: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 1960 + name: + type: string + example: 'Teichiku Co., LTD.' + 8293: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 8293 + name: + type: string + example: 'Tekneo' + 1065: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 1065 + name: + type: string + example: 'Teknopants' + 8380: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 8380 + name: + type: string + example: 'Teku Studios' + 1757: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 1757 + name: + type: string + example: 'Telegames USA' + 459: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 459 + name: + type: string + example: 'Telegames, Inc.' + 652: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 652 + name: + type: string + example: 'Telenet Japan Co., Ltd.' + 2352: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 2352 + name: + type: string + example: 'Telesys' + 2285: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 2285 + name: + type: string + example: 'Televisa' + 606: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 606 + name: + type: string + example: 'Telltale Games' + 1023: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 1023 + name: + type: string + example: 'Telstar Electronic Studios Ltd.' + 3390: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 3390 + name: + type: string + example: 'TEN Institute' + 4153: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 4153 + name: + type: string + example: 'TEN10 Games' + 5662: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 5662 + name: + type: string + example: 'Tencent Games' + 111: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 111 + name: + type: string + example: 'Tengen' + 5883: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 5883 + name: + type: string + example: 'Tengen Ltd.' + 4837: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 4837 + name: + type: string + example: 'Tenka' + 708: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 708 + name: + type: string + example: 'Tenyu Games' + 1238: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 1238 + name: + type: string + example: 'Teotl Studios' + 5964: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 5964 + name: + type: string + example: 'Teotl Studios, Grip Digital' + 5708: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 5708 + name: + type: string + example: 'Tequila' + 742: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 742 + name: + type: string + example: 'Tequila Sunrise Software' + 5649: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 5649 + name: + type: string + example: 'Tequila Works' + 5514: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 5514 + name: + type: string + example: 'Terminal Software' + 5718: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 5718 + name: + type: string + example: 'Ternox Games' + 4746: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 4746 + name: + type: string + example: 'TerraGlyph Interactive Studios, L.P.' + 4726: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 4726 + name: + type: string + example: 'Terrible Toybox' + 625: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 625 + name: + type: string + example: 'Terry Cavanagh' + 2643: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 2643 + name: + type: string + example: 'Tetris Online, Inc' + 4078: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 4078 + name: + type: string + example: 'Texas Instruments' + 4000: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 4000 + name: + type: string + example: 'Teyon' + 2394: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 2394 + name: + type: string + example: 'TGC - The Games Company GmbH' + 2528: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 2528 + name: + type: string + example: 'TGL' + 730: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 730 + name: + type: string + example: 'Thalamus' + 1007: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 1007 + name: + type: string + example: 'Thalion Software' + 1061: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 1061 + name: + type: string + example: 'thatgamecompany' + 569: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 569 + name: + type: string + example: 'The 3DO Company' + 339: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 339 + name: + type: string + example: 'The Adventure Company' + 1875: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 1875 + name: + type: string + example: 'The American Game Factory, Inc.' + 3540: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 3540 + name: + type: string + example: 'The Avalon Hill Game Company' + 2138: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 2138 + name: + type: string + example: 'The Bearded Ladies Consulting' + 1290: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 1290 + name: + type: string + example: 'The Behemoth' + 1824: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 1824 + name: + type: string + example: 'The Binary Mill' + 5210: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 5210 + name: + type: string + example: 'The Bitmap Brothers' + 5228: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 5228 + name: + type: string + example: 'The Brotherhood Games' + 5062: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 5062 + name: + type: string + example: 'The Bytebusters' + 1014: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 1014 + name: + type: string + example: 'The Chinese Room' + 5395: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 5395 + name: + type: string + example: 'The Code Monkeys Ltd.' + 2234: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 2234 + name: + type: string + example: 'The Department of Silly Stuff' + 2616: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 2616 + name: + type: string + example: 'The Digital Lounge' + 5319: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 5319 + name: + type: string + example: 'The Dream Team' + 773: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 773 + name: + type: string + example: 'The Edge' + 792: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 792 + name: + type: string + example: 'The English Software Company' + 895: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 895 + name: + type: string + example: 'The Farm 51' + 2284: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 2284 + name: + type: string + example: 'The Fighter Collection' + 3433: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 3433 + name: + type: string + example: 'The Fourth Dimension Team' + 1810: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 1810 + name: + type: string + example: 'The Fun Pimps' + 2133: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 2133 + name: + type: string + example: 'The Game Atelier' + 2731: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 2731 + name: + type: string + example: 'The Game Creators' + 823: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 823 + name: + type: string + example: 'The Game Factory' + 2606: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 2606 + name: + type: string + example: 'The Goat Store, LLC' + 1648: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 1648 + name: + type: string + example: 'The Hideout' + 734: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 734 + name: + type: string + example: 'The Hit Squad' + 1201: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 1201 + name: + type: string + example: 'The Indie Stone' + 2342: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 2342 + name: + type: string + example: 'The Learning Company' + 3438: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 3438 + name: + type: string + example: 'The Logic Factory, Inc.' + 5833: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 5833 + name: + type: string + example: 'The Men Who Wear Many Hats' + 2998: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 2998 + name: + type: string + example: 'The Mojon Twins' + 8309: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 8309 + name: + type: string + example: 'The Molasses Flood' + 4662: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 4662 + name: + type: string + example: 'The New 8-bit Heroes' + 5325: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 5325 + name: + type: string + example: 'The New Dimension' + 3389: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 3389 + name: + type: string + example: 'The Oliver Twins' + 1292: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 1292 + name: + type: string + example: 'The Pokemon Company' + 5301: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 5301 + name: + type: string + example: 'The Power House' + 4675: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 4675 + name: + type: string + example: 'The Quantum Astrophysicists Guild' + 2504: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 2504 + name: + type: string + example: 'The Quinnspiracy' + 5164: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 5164 + name: + type: string + example: 'The RamJam Corporation' + 703: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 703 + name: + type: string + example: 'The Sales Curve Ltd.' + 1162: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 1162 + name: + type: string + example: 'The Software Business' + 510: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 510 + name: + type: string + example: 'The Software Toolworks' + 288: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 288 + name: + type: string + example: 'The Software Toolworks, Inc.' + 2959: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 2959 + name: + type: string + example: 'The Working Parts' + 3162: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 3162 + name: + type: string + example: 'TheGamewall Studios' + 5790: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 5790 + name: + type: string + example: 'Thekla Inc' + 5417: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 5417 + name: + type: string + example: 'Thin Chen Enterprise' + 4818: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 4818 + name: + type: string + example: 'Thing Trunk' + 4072: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 4072 + name: + type: string + example: 'Thinking Cap' + 3081: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 3081 + name: + type: string + example: 'Thinking Rabbit' + 4872: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 4872 + name: + type: string + example: 'ThirdStoneGames' + 5426: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 5426 + name: + type: string + example: 'Thomas Automatics' + 3088: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 3088 + name: + type: string + example: 'Thomas Bowker' + 2937: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 2937 + name: + type: string + example: 'Thomas Happ Games, LLC' + 5682: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 5682 + name: + type: string + example: 'Thomas Jentzsch' + 4215: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 4215 + name: + type: string + example: 'Thor Computer Software' + 4693: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 4693 + name: + type: string + example: 'Thorn EMI Video Ltd.' + 5846: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 5846 + name: + type: string + example: 'Those Awesome Guys' + 2295: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 2295 + name: + type: string + example: 'Thousand Cranes' + 40: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 40 + name: + type: string + example: 'THQ' + 1279: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 1279 + name: + type: string + example: 'THQ Nordic' + 2087: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 2087 + name: + type: string + example: 'THQ Studio Australia' + 3526: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 3526 + name: + type: string + example: 'Threaks' + 4322: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 4322 + name: + type: string + example: 'Three Fields Entertainment' + 2633: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 2633 + name: + type: string + example: 'Three Flip Studios' + 2841: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 2841 + name: + type: string + example: 'Three-Sixty Pacific, Inc.' + 5722: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 5722 + name: + type: string + example: 'Throwback Entertainment Inc.' + 4804: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 4804 + name: + type: string + example: 'Thumbspire Inc.' + 3338: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 3338 + name: + type: string + example: 'Thunder Lotus Games' + 2655: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 2655 + name: + type: string + example: 'Thunder Mountain' + 5956: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 5956 + name: + type: string + example: 'Thylacine Studios' + 511: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 511 + name: + type: string + example: 'Tiburon Entertainment' + 5358: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 5358 + name: + type: string + example: 'Tic Toc Games' + 4942: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 4942 + name: + type: string + example: 'Tierheit' + 2725: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 2725 + name: + type: string + example: 'Tierra' + 1973: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 1973 + name: + type: string + example: 'Tiertex Design Studios' + 3380: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 3380 + name: + type: string + example: 'Tiger Electronics, Inc.' + 1634: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 1634 + name: + type: string + example: 'Tiger Style Games' + 261: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 261 + name: + type: string + example: 'Tigervision' + 5721: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 5721 + name: + type: string + example: 'Tigrido Inc.' + 2142: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 2142 + name: + type: string + example: 'TikGames, LLC' + 2652: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 2652 + name: + type: string + example: 'Tikipod' + 3316: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 3316 + name: + type: string + example: 'Tikkurila' + 3714: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 3714 + name: + type: string + example: 'Tilting Point' + 155: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 155 + name: + type: string + example: 'Time Warner Interactive, Inc.' + 3158: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 3158 + name: + type: string + example: 'Time Warp Productions' + 1222: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 1222 + name: + type: string + example: 'TimeGate Studios, Inc.' + 4601: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 4601 + name: + type: string + example: 'Timeworks Inc.' + 5763: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 5763 + name: + type: string + example: 'Timur Company' + 1826: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 1826 + name: + type: string + example: 'Tin Man Games' + 2292: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 2292 + name: + type: string + example: 'tinyBuild' + 2501: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 2501 + name: + type: string + example: 'TinyCo' + 5079: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 5079 + name: + type: string + example: 'Titan Programs' + 64: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 64 + name: + type: string + example: 'Titus Interactive, S.A..' + 878: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 878 + name: + type: string + example: 'Titus Software, THQ Wireless' + 4343: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 4343 + name: + type: string + example: 'Tivola International, LLC' + 5640: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 5640 + name: + type: string + example: 'Tivola Publishing, Inc.' + 8227: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 8227 + name: + type: string + example: 'TL-Wiki' + 4073: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 4073 + name: + type: string + example: 'TNN' + 1761: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 1761 + name: + type: string + example: 'TNT Games' + 808: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 808 + name: + type: string + example: 'Toaplan Co., Ltd.' + 2571: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 2571 + name: + type: string + example: 'TobiKomi' + 3331: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 3331 + name: + type: string + example: 'tobyfox' + 247: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 247 + name: + type: string + example: 'Toei Animation' + 5638: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 5638 + name: + type: string + example: 'Toge Productions' + 244: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 244 + name: + type: string + example: 'Toho Company Ltd.' + 5835: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 5835 + name: + type: string + example: 'Tohokushinsha Film Corp.' + 4335: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 4335 + name: + type: string + example: 'Toka Loka Games' + 2459: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 2459 + name: + type: string + example: 'Tokuma Shoten Publishing Co., Ltd.' + 4485: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 4485 + name: + type: string + example: 'Tokyo Electron Device, Ltd.' + 2674: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 2674 + name: + type: string + example: 'Tokyo Shoseki Co., Ltd.' + 2979: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 2979 + name: + type: string + example: 'Tom Create Co., Ltd.' + 1008: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 1008 + name: + type: string + example: 'Tomahawk' + 949: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 949 + name: + type: string + example: 'Tomkorp Computer Solutions Inc.' + 234: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 234 + name: + type: string + example: 'Tommo Inc.' + 4545: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 4545 + name: + type: string + example: 'Tommy Xie' + 1592: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 1592 + name: + type: string + example: 'Tomorrow Corporation' + 4542: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 4542 + name: + type: string + example: 'Tomsoft' + 780: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 780 + name: + type: string + example: 'Tomy' + 4020: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 4020 + name: + type: string + example: 'Tomytronic' + 5236: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 5236 + name: + type: string + example: 'Tong Electronic' + 440: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 440 + name: + type: string + example: 'Tonka Corp.' + 484: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 484 + name: + type: string + example: 'Tonkin House' + 4641: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 4641 + name: + type: string + example: 'tons of bits' + 5596: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 5596 + name: + type: string + example: 'Top Meadow' + 3851: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 3851 + name: + type: string + example: 'Topo Soft' + 618: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 618 + name: + type: string + example: 'TopWare Interactive' + 1870: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 1870 + name: + type: string + example: 'TopWare Interactive (also SSI)' + 1664: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 1664 + name: + type: string + example: 'Torn Banner Studios' + 5687: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 5687 + name: + type: string + example: 'Torquemada Games' + 5775: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 5775 + name: + type: string + example: 'Torus Games Pty. Ltd.' + 4036: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 4036 + name: + type: string + example: 'Toshiba Corporation' + 1019: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 1019 + name: + type: string + example: 'Toshiba-EMI Ltd.' + 2883: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 2883 + name: + type: string + example: 'Towa Chiki' + 2986: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 2986 + name: + type: string + example: 'Toxic Games' + 5851: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 5851 + name: + type: string + example: 'Toydea' + 2570: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 2570 + name: + type: string + example: 'Toyo Recording Co.' + 4673: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 4673 + name: + type: string + example: 'Toys For Bob' + 5769: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 5769 + name: + type: string + example: 'Tozai Games' + 164: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 164 + name: + type: string + example: 'Tradewest, Inc.' + 5505: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 5505 + name: + type: string + example: 'TransMedia Productions, Inc.' + 5381: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 5381 + name: + type: string + example: 'Transposia' + 2472: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 2472 + name: + type: string + example: 'Trapdoor' + 5643: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 5643 + name: + type: string + example: 'Trapped Nerve Games' + 2605: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 2605 + name: + type: string + example: 'Traveller''s Tales Ltd.' + 552: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 552 + name: + type: string + example: 'Treco' + 4982: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 4982 + name: + type: string + example: 'TreeFall Studios' + 3467: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 3467 + name: + type: string + example: 'TreeFortress Games' + 4828: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 4828 + name: + type: string + example: 'Trendverlag' + 855: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 855 + name: + type: string + example: 'Trendy Entertainment' + 5375: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 5375 + name: + type: string + example: 'TrerPlay' + 8382: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 8382 + name: + type: string + example: 'Trese Brothers' + 617: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 617 + name: + type: string + example: 'Tri Synergy, Inc.' + 1100: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 1100 + name: + type: string + example: 'Triangle Service' + 1017: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 1017 + name: + type: string + example: 'Tribute Games' + 1462: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 1462 + name: + type: string + example: 'Trickstar Games' + 324: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 324 + name: + type: string + example: 'Triffix Entertainment Inc.' + 4394: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 4394 + name: + type: string + example: 'Trillium Corp.' + 1302: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 1302 + name: + type: string + example: 'Trimark Interactive' + 408: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 408 + name: + type: string + example: 'Trion Worlds' + 1828: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 1828 + name: + type: string + example: 'Triple B Titles' + 4189: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 4189 + name: + type: string + example: 'Triple Eh?' + 4368: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 4368 + name: + type: string + example: 'Trips' + 901: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 901 + name: + type: string + example: 'Tripwire Interactive, LLC' + 5633: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 5633 + name: + type: string + example: 'Triskell Interactive' + 3857: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 3857 + name: + type: string + example: 'Trite Games' + 5209: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 5209 + name: + type: string + example: 'Triton Productions' + 2151: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 2151 + name: + type: string + example: 'Triumph Studios' + 3280: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 3280 + name: + type: string + example: 'Tron Software' + 978: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 978 + name: + type: string + example: 'Tru Blu Entertainment Pty Ltd' + 5468: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 5468 + name: + type: string + example: 'True Software' + 4264: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 4264 + name: + type: string + example: 'tsone' + 2836: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 2836 + name: + type: string + example: 'TSS' + 2819: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 2819 + name: + type: string + example: 'Tsukada Original' + 2931: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 2931 + name: + type: string + example: 'Tsukuda Ideal' + 2795: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 2795 + name: + type: string + example: 'Tsunami Games' + 847: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 847 + name: + type: string + example: 'Tsunami Visual Technologies, Inc.' + 3812: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 3812 + name: + type: string + example: 'TT Games' + 5524: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 5524 + name: + type: string + example: 'TTR Development' + 4352: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 4352 + name: + type: string + example: 'Tuning Electronic' + 183: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 183 + name: + type: string + example: 'Turbine, Inc.' + 5884: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 5884 + name: + type: string + example: 'Turbo Button' + 649: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 649 + name: + type: string + example: 'Turbo Technologies, Inc.' + 3050: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 3050 + name: + type: string + example: 'Turtle Cream' + 3137: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 3137 + name: + type: string + example: 'TV Games' + 8295: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 8295 + name: + type: string + example: 'TV Tokyo Corporation' + 824: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 824 + name: + type: string + example: 'Twilight Frontier' + 1992: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 1992 + name: + type: string + example: 'Twisted Jenius' + 1776: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 1776 + name: + type: string + example: 'Twisted Pixel Games' + 1577: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 1577 + name: + type: string + example: 'Twisted Tree' + 701: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 701 + name: + type: string + example: 'Two Tribes' + 8383: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 8383 + name: + type: string + example: 'Ty Taylor' + 2226: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 2226 + name: + type: string + example: 'Tycoon Games' + 8263: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 8263 + name: + type: string + example: 'Tyler Glaiel' + 2839: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 2839 + name: + type: string + example: 'Tynesoft Computer Software' + 4166: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 4166 + name: + type: string + example: 'TYO Entertainment Inc.' + 3045: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 3045 + name: + type: string + example: 'Type-Moon' + 5499: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 5499 + name: + type: string + example: 'Tyrell Laboratory inc.' + 2080: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 2080 + name: + type: string + example: 'U-Play Studios' + 1212: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 1212 + name: + type: string + example: 'U.S. Army' + 976: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 976 + name: + type: string + example: 'U.S. Billiards, Inc.' + 1472: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 1472 + name: + type: string + example: 'U.S. Games' + 8194: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 8194 + name: + type: string + example: 'U.S. Gold' + 110: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 110 + name: + type: string + example: 'U.S. Gold Ltd.' + 910: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 910 + name: + type: string + example: 'Uber Entertainment' + 4566: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 4566 + name: + type: string + example: 'Ubisoft' + 7: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 7 + name: + type: string + example: 'Ubisoft Entertainment' + 8305: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 8305 + name: + type: string + example: 'Ubisoft Paris' + 8306: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 8306 + name: + type: string + example: 'Ubisoft Pune' + 2223: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 2223 + name: + type: string + example: 'Ubisoft Reflections' + 3893: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 3893 + name: + type: string + example: 'UEA Game Lab' + 3090: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 3090 + name: + type: string + example: 'UEP Systems' + 797: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 797 + name: + type: string + example: 'UFO Interactive Games, Inc.' + 2169: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 2169 + name: + type: string + example: 'UIG Entertainment' + 5808: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 5808 + name: + type: string + example: 'Ukiyo Publishing Limited' + 1844: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 1844 + name: + type: string + example: 'Ultimate - Play the Game' + 98: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 98 + name: + type: string + example: 'Ultra Games' + 338: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 338 + name: + type: string + example: 'Ultra Software Corporation' + 992: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 992 + name: + type: string + example: 'Ultravision' + 5802: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 5802 + name: + type: string + example: 'UMI' + 4522: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 4522 + name: + type: string + example: 'Umitsuki Production' + 4614: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 4614 + name: + type: string + example: 'Unconditional Studios' + 5411: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 5411 + name: + type: string + example: 'unepic_fran' + 2729: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 2729 + name: + type: string + example: 'Unfinished Pixel' + 1901: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 1901 + name: + type: string + example: 'Uni Post' + 1331: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 1331 + name: + type: string + example: 'Unico' + 3478: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 3478 + name: + type: string + example: 'Unicorn Software Company' + 4845: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 4845 + name: + type: string + example: 'UniCredit Bank Austria AG' + 1016: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 1016 + name: + type: string + example: 'Unigine Corp' + 5873: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 5873 + name: + type: string + example: 'Union Logic Software Publishing, Inc.' + 2188: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 2188 + name: + type: string + example: 'Unipacc' + 2327: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 2327 + name: + type: string + example: 'Unique Entertainment' + 2082: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 2082 + name: + type: string + example: 'United Independent Entertainment GmbH' + 194: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 194 + name: + type: string + example: 'Universal Interactive Inc.' + 4406: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 4406 + name: + type: string + example: 'Universal U.S.A., Inc.' + 8283: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 8283 + name: + type: string + example: 'Univesral Interactive Inc.' + 3343: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 3343 + name: + type: string + example: 'Unknown' + 1581: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 1581 + name: + type: string + example: 'Unknown Worlds' + 5689: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 5689 + name: + type: string + example: 'Unnyhog' + 3797: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 3797 + name: + type: string + example: 'Unproductive Fun Time' + 2368: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 2368 + name: + type: string + example: 'Unreleased (Prototype)' + 5921: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 5921 + name: + type: string + example: 'Untame' + 4297: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 4297 + name: + type: string + example: 'Upfall Studios' + 512: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 512 + name: + type: string + example: 'UPL Co., Ltd' + 5557: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 5557 + name: + type: string + example: 'Uppercut Games' + 3698: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 3698 + name: + type: string + example: 'Urban Planet' + 2825: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 2825 + name: + type: string + example: 'Use Corporation' + 5513: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 5513 + name: + type: string + example: 'usebox.net' + 2694: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 2694 + name: + type: string + example: 'USTWO' + 945: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 945 + name: + type: string + example: 'UTV Ignition Entertainment' + 943: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 943 + name: + type: string + example: 'UTV True Games' + 4229: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 4229 + name: + type: string + example: 'UXB' + 3082: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 3082 + name: + type: string + example: 'V-System' + 1325: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 1325 + name: + type: string + example: 'Valadon Automation' + 8199: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 8199 + name: + type: string + example: 'Valcon Games' + 973: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 973 + name: + type: string + example: 'Valcon Games LLC' + 4121: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 4121 + name: + type: string + example: 'Valhalla Paholy' + 3195: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 3195 + name: + type: string + example: 'Valiant Interactive' + 2168: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 2168 + name: + type: string + example: 'Valorware' + 1052: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 1052 + name: + type: string + example: 'ValuSoft, Inc.' + 13: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 13 + name: + type: string + example: 'Valve Corporation' + 970: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 970 + name: + type: string + example: 'Vanguard Games' + 3808: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 3808 + name: + type: string + example: 'Vanillaware Ltd.' + 322: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 322 + name: + type: string + example: 'Vap Inc.' + 3775: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 3775 + name: + type: string + example: 'VaragtP' + 2185: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 2185 + name: + type: string + example: 'Varie' + 219: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 219 + name: + type: string + example: 'Vatical Entertainment LLC' + 1426: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 1426 + name: + type: string + example: 'Vblank Entertainment' + 1809: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 1809 + name: + type: string + example: 'VD-Dev' + 8258: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 8258 + name: + type: string + example: 'VDI' + 5193: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 5193 + name: + type: string + example: 'VEB Polytechnik Karl-Marx-Stadt' + 2558: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 2558 + name: + type: string + example: 'Vector Unit' + 1326: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 1326 + name: + type: string + example: 'Vectorbeam' + 1059: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 1059 + name: + type: string + example: 'Vectorpark' + 4480: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 4480 + name: + type: string + example: 'Velocity Development' + 2097: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 2097 + name: + type: string + example: 'Velocity Inc.' + 1369: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 1369 + name: + type: string + example: 'Venture Line, Inc.' + 4103: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 4103 + name: + type: string + example: 'VentureVision' + 2299: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 2299 + name: + type: string + example: 'Versus Evil' + 4599: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 4599 + name: + type: string + example: 'Vertex Pop' + 693: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 693 + name: + type: string + example: 'Vertigo Gaming Inc.' + 3653: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 3653 + name: + type: string + example: 'Very Simple Idea Studios' + 86: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 86 + name: + type: string + example: 'Viacom New Media' + 151: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 151 + name: + type: string + example: 'Vic Tokai' + 1109: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 1109 + name: + type: string + example: 'Viccom' + 1087: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 1087 + name: + type: string + example: 'Victor Entertainment' + 278: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 278 + name: + type: string + example: 'Victor Interactive Software, Inc.' + 2842: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 2842 + name: + type: string + example: 'Victor Musical Industries, Inc.' + 5344: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 5344 + name: + type: string + example: 'Victory Software' + 3279: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 3279 + name: + type: string + example: 'Vidco' + 2758: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 2758 + name: + type: string + example: 'Videa' + 3971: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 3971 + name: + type: string + example: 'Video' + 2757: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 2757 + name: + type: string + example: 'Video Games GmbH' + 3815: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 3815 + name: + type: string + example: 'Video Gems' + 165: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 165 + name: + type: string + example: 'Video System Co., Ltd.' + 5439: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 5439 + name: + type: string + example: 'Villa Gorilla' + 2199: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 2199 + name: + type: string + example: 'Villavanilla S de RL' + 4070: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 4070 + name: + type: string + example: 'Vincent Jouillat' + 3314: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 3314 + name: + type: string + example: 'Ving' + 2641: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 2641 + name: + type: string + example: 'Vir2L' + 4888: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 4888 + name: + type: string + example: 'Vir2L Studios Inc.' + 117: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 117 + name: + type: string + example: 'Virgin Games, Ltd.' + 358: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 358 + name: + type: string + example: 'Virgin Interactive Entertainment (Europe) Ltd.' + 48: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 48 + name: + type: string + example: 'Virgin Interactive Entertainment, Inc.' + 1450: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 1450 + name: + type: string + example: 'Virgin Mastertronic Ltd.' + 3224: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 3224 + name: + type: string + example: 'Virgin PLAY S.A.' + 5259: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 5259 + name: + type: string + example: 'Virtual Air Guitar Company' + 1552: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 1552 + name: + type: string + example: 'Virtual Play Inc.' + 4823: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 4823 + name: + type: string + example: 'Virtual Toys' + 4024: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 4024 + name: + type: string + example: 'Virtuous Ltd.' + 3153: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 3153 + name: + type: string + example: 'Visao' + 725: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 725 + name: + type: string + example: 'Visco Corporation' + 1110: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 1110 + name: + type: string + example: 'Visco Games' + 5966: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 5966 + name: + type: string + example: 'Vision Games Publishing LTD' + 5051: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 5051 + name: + type: string + example: 'Visions' + 1715: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 1715 + name: + type: string + example: 'Visit' + 3840: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 3840 + name: + type: string + example: 'Vistec' + 2218: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 2218 + name: + type: string + example: 'Visual Art''s' + 311: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 311 + name: + type: string + example: 'Visual Concepts' + 769: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 769 + name: + type: string + example: 'Visual Impact' + 184: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 184 + name: + type: string + example: 'Viva Media, LLC' + 521: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 521 + name: + type: string + example: 'Vivarium Inc.' + 153: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 153 + name: + type: string + example: 'Vivendi Games' + 635: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 635 + name: + type: string + example: 'Vivendi Universal Games' + 8206: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 8206 + name: + type: string + example: 'Vivendi Universal Interactive Publishing' + 5481: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 5481 + name: + type: string + example: 'Vivid Games' + 3727: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 3727 + name: + type: string + example: 'Vivid Interactive' + 913: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 913 + name: + type: string + example: 'Vlambeer' + 906: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 906 + name: + type: string + example: 'Vogster Entertainment' + 5598: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 5598 + name: + type: string + example: 'VooFoo Studios' + 1152: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 1152 + name: + type: string + example: 'Vortex Design' + 5099: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 5099 + name: + type: string + example: 'Vortex Games' + 4177: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 4177 + name: + type: string + example: 'Vortex Software' + 5351: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 5351 + name: + type: string + example: 'Voyager Software' + 1316: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 1316 + name: + type: string + example: 'VR Sports' + 5527: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 5527 + name: + type: string + example: 'VRWERX, LLC' + 809: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 809 + name: + type: string + example: 'VSE Games' + 3513: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 3513 + name: + type: string + example: 'VTech' + 169: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 169 + name: + type: string + example: 'VU Games' + 4447: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 4447 + name: + type: string + example: 'Vulcan Software Limited' + 1063: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 1063 + name: + type: string + example: 'Wadjet Eye Games' + 4752: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 4752 + name: + type: string + example: 'Wales Interactive' + 1452: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 1452 + name: + type: string + example: 'Walt Disney Computer Software, Inc.' + 2119: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 2119 + name: + type: string + example: 'Wanadoo Edition' + 4005: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 4005 + name: + type: string + example: 'Wanderlust Interactive' + 1101: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 1101 + name: + type: string + example: 'Warashi' + 2164: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 2164 + name: + type: string + example: 'Warhorse studios' + 8384: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 8384 + name: + type: string + example: 'WarSaw Games' + 5745: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 5745 + name: + type: string + example: 'WARTEAM' + 1072: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 1072 + name: + type: string + example: 'Warthog Plc' + 4880: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 4880 + name: + type: string + example: 'Warvene LLC' + 5180: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 5180 + name: + type: string + example: 'Wastelands Interactive' + 2568: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 2568 + name: + type: string + example: 'Watabou' + 3058: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 3058 + name: + type: string + example: 'Watanabe Seisakusho' + 2179: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 2179 + name: + type: string + example: 'WaterMelon' + 2896: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 2896 + name: + type: string + example: 'Wave Corp.' + 5960: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 5960 + name: + type: string + example: 'Wavedash Games' + 1593: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 1593 + name: + type: string + example: 'WayForward Technologies' + 152: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 152 + name: + type: string + example: 'WB Games' + 2740: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 2740 + name: + type: string + example: 'We Are Muesli' + 5946: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 5946 + name: + type: string + example: 'Weappy Studio' + 5886: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 5886 + name: + type: string + example: 'Weather Factory' + 3318: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 3318 + name: + type: string + example: 'Webfoot Technologies, Inc.' + 1598: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 1598 + name: + type: string + example: 'Webzen Games Inc.' + 2831: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 2831 + name: + type: string + example: 'Weird and Wry' + 4113: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 4113 + name: + type: string + example: 'Werk' + 4285: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 4285 + name: + type: string + example: 'Wernersoft' + 1105: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 1105 + name: + type: string + example: 'Westwood Studios, Inc.' + 996: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 996 + name: + type: string + example: 'Whiptail Interactive' + 8278: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 8278 + name: + type: string + example: 'WhisperGames' + 2544: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 2544 + name: + type: string + example: 'White Giant RPG Studios' + 3267: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 3267 + name: + type: string + example: 'White Lotus Interactive' + 4674: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 4674 + name: + type: string + example: 'White Moon Dreams' + 2553: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 2553 + name: + type: string + example: 'White Wizard Games' + 1448: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 1448 + name: + type: string + example: 'Wicked Interactive' + 3455: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 3455 + name: + type: string + example: 'Wicked Interactive / Suba Games CiB Net Station Winner Online M1 Games Sabay PT. Winner Interactive' + 4927: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 4927 + name: + type: string + example: 'Wicked Software' + 5600: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 5600 + name: + type: string + example: 'Wicked Witch Software' + 1979: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 1979 + name: + type: string + example: 'Wild Games Studio' + 4457: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 4457 + name: + type: string + example: 'Wildcard Design, Inc.' + 935: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 935 + name: + type: string + example: 'Wildfire Games' + 853: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 853 + name: + type: string + example: 'WildTangent, Inc.' + 197: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 197 + name: + type: string + example: 'Williams Electronic Games, Inc.' + 3247: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 3247 + name: + type: string + example: 'Winch Gate Property Limited' + 4422: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 4422 + name: + type: string + example: 'Wind Jester Games' + 3538: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 3538 + name: + type: string + example: 'Windham Classics' + 1449: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 1449 + name: + type: string + example: 'Windmill Software' + 5255: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 5255 + name: + type: string + example: 'Winged Cloud' + 3298: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 3298 + name: + type: string + example: 'Winkdot' + 2886: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 2886 + name: + type: string + example: 'Wintechno' + 2238: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 2238 + name: + type: string + example: 'Winter Wolves Studio' + 2960: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 2960 + name: + type: string + example: 'Wired Productions' + 292: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 292 + name: + type: string + example: 'Wisdom Tree, Inc.' + 4607: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 4607 + name: + type: string + example: 'Wizarbox' + 2353: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 2353 + name: + type: string + example: 'Wizard Video Games' + 537: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 537 + name: + type: string + example: 'Wizards of the Coast, Inc.' + 1246: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 1246 + name: + type: string + example: 'WizardWorks Software' + 590: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 590 + name: + type: string + example: 'Wolf Team' + 1252: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 1252 + name: + type: string + example: 'Wolfire' + 1516: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 1516 + name: + type: string + example: 'Wonder Amusement Studio' + 4129: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 4129 + name: + type: string + example: 'Wood Place Inc.' + 122: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 122 + name: + type: string + example: 'Working Designs' + 3837: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 3837 + name: + type: string + example: 'World Games' + 2495: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 2495 + name: + type: string + example: 'Worthless Bums' + 4291: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 4291 + name: + type: string + example: 'WTFOMGames' + 859: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 859 + name: + type: string + example: 'WXP, Inc.' + 2926: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 2926 + name: + type: string + example: 'X Boy' + 3603: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 3603 + name: + type: string + example: 'Xain' + 5953: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 5953 + name: + type: string + example: 'Xaviant' + 2682: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 2682 + name: + type: string + example: 'Xaviant LLC' + 4937: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 4937 + name: + type: string + example: 'Xbox Live Indie' + 2452: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 2452 + name: + type: string + example: 'XDRA' + 5405: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 5405 + name: + type: string + example: 'Xendex' + 2656: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 2656 + name: + type: string + example: 'XeniosVision' + 3126: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 3126 + name: + type: string + example: 'XGen Studios, Inc.' + 4279: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 4279 + name: + type: string + example: 'Xibalba Studios' + 1255: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 1255 + name: + type: string + example: 'Xicat Interactive, Inc.' + 1211: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 1211 + name: + type: string + example: 'xii games' + 8203: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 8203 + name: + type: string + example: 'XIM' + 1371: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 1371 + name: + type: string + example: 'Xing Entertainment' + 5238: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 5238 + name: + type: string + example: 'xLand Games' + 1149: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 1149 + name: + type: string + example: 'Xonox' + 5926: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 5926 + name: + type: string + example: 'XPEC Entertainment Inc.' + 2025: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 2025 + name: + type: string + example: 'Xplosiv' + 586: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 586 + name: + type: string + example: 'XS Games, LLC' + 647: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 647 + name: + type: string + example: 'XSEED Games' + 3587: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 3587 + name: + type: string + example: 'XTALSOFT' + 4630: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 4630 + name: + type: string + example: 'XYPE' + 5169: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 5169 + name: + type: string + example: 'Xypr' + 3300: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 3300 + name: + type: string + example: 'Yachiyo Electronics' + 2273: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 2273 + name: + type: string + example: 'Yacht Club Games' + 8230: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 8230 + name: + type: string + example: 'Yandere Translations' + 3798: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 3798 + name: + type: string + example: 'Yang Cheng' + 5857: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 5857 + name: + type: string + example: 'Yangyang Mobile' + 5248: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 5248 + name: + type: string + example: 'Yankee Game Technology' + 4492: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 4492 + name: + type: string + example: 'Yano Electric Co., Ltd.' + 495: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 495 + name: + type: string + example: 'Yanoman Corporation' + 5940: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 5940 + name: + type: string + example: 'Yeli Orog' + 665: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 665 + name: + type: string + example: 'Yeno' + 5182: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 5182 + name: + type: string + example: 'Yggdrazil Group Co., LTD' + 4698: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 4698 + name: + type: string + example: 'Yih Lung' + 4870: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 4870 + name: + type: string + example: 'YJM Games' + 5199: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 5199 + name: + type: string + example: 'Yogscast Ltd.' + 2821: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 2821 + name: + type: string + example: 'Yojigen' + 2845: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 2845 + name: + type: string + example: 'Yonezawa PR21' + 5865: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 5865 + name: + type: string + example: 'Yoshimoto Kogyo' + 2040: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 2040 + name: + type: string + example: 'Young Horses' + 5566: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 5566 + name: + type: string + example: 'Your Commodore' + 2813: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 2813 + name: + type: string + example: 'Your Sinclair' + 4974: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 4974 + name: + type: string + example: 'YoYo Games' + 4131: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 4131 + name: + type: string + example: 'Ysbryd Games' + 2680: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 2680 + name: + type: string + example: 'Yuke''s Co. Ltd.' + 4700: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 4700 + name: + type: string + example: 'Yuki Enterprise' + 3511: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 3511 + name: + type: string + example: 'Yumedia' + 5856: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 5856 + name: + type: string + example: 'YummyYummyTummy' + 4342: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 4342 + name: + type: string + example: 'Yun Sung' + 1011: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 1011 + name: + type: string + example: 'YuPlay' + 2172: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 2172 + name: + type: string + example: 'Yutaka' + 4573: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 4573 + name: + type: string + example: 'Zachtronics Industries' + 5696: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 5696 + name: + type: string + example: 'ZackBellGames' + 1919: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 1919 + name: + type: string + example: 'Zafiro' + 4252: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 4252 + name: + type: string + example: 'Zallag' + 1945: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 1945 + name: + type: string + example: 'Zamuse' + 5067: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 5067 + name: + type: string + example: 'ZAP Corporation' + 2067: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 2067 + name: + type: string + example: 'Zaratustra Productions' + 1214: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 1214 + name: + type: string + example: 'Zeboyd Games' + 2876: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 2876 + name: + type: string + example: 'Zeiva Inc' + 612: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 612 + name: + type: string + example: 'Zellers' + 5741: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 5741 + name: + type: string + example: 'Zemi Interactive,Gameforge AG' + 2880: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 2880 + name: + type: string + example: 'Zemina Co.' + 3773: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 3773 + name: + type: string + example: 'Zen Studios' + 4028: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 4028 + name: + type: string + example: 'Zenith Blue' + 4742: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 4742 + name: + type: string + example: 'Zenitone Microsec Ltd' + 5607: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 5607 + name: + type: string + example: 'Zeno Rogue' + 5629: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 5629 + name: + type: string + example: 'Zenobi Software' + 2419: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 2419 + name: + type: string + example: 'ZenSoft Inc.' + 2432: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 2432 + name: + type: string + example: 'Zepetto Co.' + 3005: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 3005 + name: + type: string + example: 'Zeppelin Games Limited' + 3096: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 3096 + name: + type: string + example: 'ZeptoLab' + 4915: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 4915 + name: + type: string + example: 'Zero' + 5592: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 5592 + name: + type: string + example: 'Zero Point software' + 1795: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 1795 + name: + type: string + example: 'Zeroscale' + 2754: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 2754 + name: + type: string + example: 'Zeta Multimedia S.A.' + 5787: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 5787 + name: + type: string + example: 'Zhong Chongren' + 3891: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 3891 + name: + type: string + example: 'Zigurat' + 4463: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 4463 + name: + type: string + example: 'Zilec Electronics' + 3037: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 3037 + name: + type: string + example: 'Zilec-Zenitone' + 2354: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 2354 + name: + type: string + example: 'Zimag' + 3244: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 3244 + name: + type: string + example: 'Zinkia Entertainment' + 1568: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 1568 + name: + type: string + example: 'Zoe Mode' + 4293: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 4293 + name: + type: string + example: 'Zoink Games' + 2183: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 2183 + name: + type: string + example: 'Zombie Studios' + 673: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 673 + name: + type: string + example: 'ZOO Digital Publishing Ltd' + 782: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 782 + name: + type: string + example: 'Zoo Games' + 3560: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 3560 + name: + type: string + example: 'Zoom, Inc.' + 5938: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 5938 + name: + type: string + example: 'Zordix AB' + 2552: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 2552 + name: + type: string + example: 'ZQGame Inc' + 3470: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 3470 + name: + type: string + example: 'Zueira Digital' + 4822: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 4822 + name: + type: string + example: 'ZUN Soft' + 4657: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 4657 + name: + type: string + example: 'zushi games ltd.' + 634: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 634 + name: + type: string + example: 'ZUXXEZ Entertainment AG' + 2410: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 2410 + name: + type: string + example: 'Zynga' + 4141: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 4141 + name: + type: string + example: 'ZyX Inc.' + 3046: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 3046 + name: + type: string + example: '[erka:es]' + 5453: + type: object + required: + - id + - name + properties: + id: + type: integer + minimum: 0 + example: 5453 + name: + type: string + example: '松诠资讯' + remaining_monthly_allowance: + type: integer + minimum: 0 + example: 257 + extra_allowance: + type: integer + minimum: 0 + example: 0 + +schemes: +- https + +host: api.thegamesdb.net +basePath: / + diff --git a/API/swagger-ui-bundle.js b/API/swagger-ui-bundle.js new file mode 100644 index 0000000..967f8a5 --- /dev/null +++ b/API/swagger-ui-bundle.js @@ -0,0 +1,93 @@ +!function(e,t){"object"==typeof exports&&"object"==typeof module?module.exports=t():"function"==typeof define&&define.amd?define([],t):"object"==typeof exports?exports.SwaggerUIBundle=t():e.SwaggerUIBundle=t()}(this,function(){return function(e){var t={};function n(r){if(t[r])return t[r].exports;var o=t[r]={i:r,l:!1,exports:{}};return e[r].call(o.exports,o,o.exports,n),o.l=!0,o.exports}return n.m=e,n.c=t,n.d=function(e,t,r){n.o(e,t)||Object.defineProperty(e,t,{configurable:!1,enumerable:!0,get:r})},n.n=function(e){var t=e&&e.__esModule?function(){return e.default}:function(){return e};return n.d(t,"a",t),t},n.o=function(e,t){return Object.prototype.hasOwnProperty.call(e,t)},n.p="/dist",n(n.s=446)}([function(e,t,n){"use strict";e.exports=n(74)},function(e,t,n){e.exports=n(853)()},function(e,t,n){"use strict";t.__esModule=!0,t.default=function(e,t){if(!(e instanceof t))throw new TypeError("Cannot call a class as a function")}},function(e,t,n){"use strict";t.__esModule=!0;var r,o=n(262),i=(r=o)&&r.__esModule?r:{default:r};t.default=function(){function e(e,t){for(var n=0;n>>0;if(""+n!==t||4294967295===n)return NaN;t=n}return t<0?C(e)+t:t}function A(){return!0}function O(e,t,n){return(0===e||void 0!==n&&e<=-n)&&(void 0===t||void 0!==n&&t>=n)}function P(e,t){return M(e,t,0)}function T(e,t){return M(e,t,t)}function M(e,t,n){return void 0===e?n:e<0?Math.max(0,t+e):void 0===t?e:Math.min(t,e)}var I=0,j=1,N=2,R="function"==typeof Symbol&&Symbol.iterator,D="@@iterator",L=R||D;function U(e){this.next=e}function q(e,t,n,r){var o=0===e?t:1===e?n:[t,n];return r?r.value=o:r={value:o,done:!1},r}function F(){return{value:void 0,done:!0}}function z(e){return!!H(e)}function B(e){return e&&"function"==typeof e.next}function V(e){var t=H(e);return t&&t.call(e)}function H(e){var t=e&&(R&&e[R]||e[D]);if("function"==typeof t)return t}function W(e){return e&&"number"==typeof e.length}function J(e){return null===e||void 0===e?ie():a(e)?e.toSeq():function(e){var t=se(e)||"object"==typeof e&&new te(e);if(!t)throw new TypeError("Expected Array or iterable object of values, or keyed object: "+e);return t}(e)}function Y(e){return null===e||void 0===e?ie().toKeyedSeq():a(e)?u(e)?e.toSeq():e.fromEntrySeq():ae(e)}function K(e){return null===e||void 0===e?ie():a(e)?u(e)?e.entrySeq():e.toIndexedSeq():ue(e)}function G(e){return(null===e||void 0===e?ie():a(e)?u(e)?e.entrySeq():e:ue(e)).toSetSeq()}U.prototype.toString=function(){return"[Iterator]"},U.KEYS=I,U.VALUES=j,U.ENTRIES=N,U.prototype.inspect=U.prototype.toSource=function(){return this.toString()},U.prototype[L]=function(){return this},t(J,n),J.of=function(){return J(arguments)},J.prototype.toSeq=function(){return this},J.prototype.toString=function(){return this.__toString("Seq {","}")},J.prototype.cacheResult=function(){return!this._cache&&this.__iterateUncached&&(this._cache=this.entrySeq().toArray(),this.size=this._cache.length),this},J.prototype.__iterate=function(e,t){return le(this,e,t,!0)},J.prototype.__iterator=function(e,t){return ce(this,e,t,!0)},t(Y,J),Y.prototype.toKeyedSeq=function(){return this},t(K,J),K.of=function(){return K(arguments)},K.prototype.toIndexedSeq=function(){return this},K.prototype.toString=function(){return this.__toString("Seq [","]")},K.prototype.__iterate=function(e,t){return le(this,e,t,!1)},K.prototype.__iterator=function(e,t){return ce(this,e,t,!1)},t(G,J),G.of=function(){return G(arguments)},G.prototype.toSetSeq=function(){return this},J.isSeq=oe,J.Keyed=Y,J.Set=G,J.Indexed=K;var $,Z,X,Q="@@__IMMUTABLE_SEQ__@@";function ee(e){this._array=e,this.size=e.length}function te(e){var t=Object.keys(e);this._object=e,this._keys=t,this.size=t.length}function ne(e){this._iterable=e,this.size=e.length||e.size}function re(e){this._iterator=e,this._iteratorCache=[]}function oe(e){return!(!e||!e[Q])}function ie(){return $||($=new ee([]))}function ae(e){var t=Array.isArray(e)?new ee(e).fromEntrySeq():B(e)?new re(e).fromEntrySeq():z(e)?new ne(e).fromEntrySeq():"object"==typeof e?new te(e):void 0;if(!t)throw new TypeError("Expected Array or iterable object of [k, v] entries, or keyed object: "+e);return t}function ue(e){var t=se(e);if(!t)throw new TypeError("Expected Array or iterable object of values: "+e);return t}function se(e){return W(e)?new ee(e):B(e)?new re(e):z(e)?new ne(e):void 0}function le(e,t,n,r){var o=e._cache;if(o){for(var i=o.length-1,a=0;a<=i;a++){var u=o[n?i-a:a];if(!1===t(u[1],r?u[0]:a,e))return a+1}return a}return e.__iterateUncached(t,n)}function ce(e,t,n,r){var o=e._cache;if(o){var i=o.length-1,a=0;return new U(function(){var e=o[n?i-a:a];return a++>i?{value:void 0,done:!0}:q(t,r?e[0]:a-1,e[1])})}return e.__iteratorUncached(t,n)}function fe(e,t){return t?function e(t,n,r,o){if(Array.isArray(n))return t.call(o,r,K(n).map(function(r,o){return e(t,r,o,n)}));if(de(n))return t.call(o,r,Y(n).map(function(r,o){return e(t,r,o,n)}));return n}(t,e,"",{"":e}):pe(e)}function pe(e){return Array.isArray(e)?K(e).map(pe).toList():de(e)?Y(e).map(pe).toMap():e}function de(e){return e&&(e.constructor===Object||void 0===e.constructor)}function he(e,t){if(e===t||e!=e&&t!=t)return!0;if(!e||!t)return!1;if("function"==typeof e.valueOf&&"function"==typeof t.valueOf){if((e=e.valueOf())===(t=t.valueOf())||e!=e&&t!=t)return!0;if(!e||!t)return!1}return!("function"!=typeof e.equals||"function"!=typeof t.equals||!e.equals(t))}function ve(e,t){if(e===t)return!0;if(!a(t)||void 0!==e.size&&void 0!==t.size&&e.size!==t.size||void 0!==e.__hash&&void 0!==t.__hash&&e.__hash!==t.__hash||u(e)!==u(t)||s(e)!==s(t)||c(e)!==c(t))return!1;if(0===e.size&&0===t.size)return!0;var n=!l(e);if(c(e)){var r=e.entries();return t.every(function(e,t){var o=r.next().value;return o&&he(o[1],e)&&(n||he(o[0],t))})&&r.next().done}var o=!1;if(void 0===e.size)if(void 0===t.size)"function"==typeof e.cacheResult&&e.cacheResult();else{o=!0;var i=e;e=t,t=i}var f=!0,p=t.__iterate(function(t,r){if(n?!e.has(t):o?!he(t,e.get(r,g)):!he(e.get(r,g),t))return f=!1,!1});return f&&e.size===p}function me(e,t){if(!(this instanceof me))return new me(e,t);if(this._value=e,this.size=void 0===t?1/0:Math.max(0,t),0===this.size){if(Z)return Z;Z=this}}function ye(e,t){if(!e)throw new Error(t)}function ge(e,t,n){if(!(this instanceof ge))return new ge(e,t,n);if(ye(0!==n,"Cannot step a Range by 0"),e=e||0,void 0===t&&(t=1/0),n=void 0===n?1:Math.abs(n),tr?{value:void 0,done:!0}:q(e,o,n[t?r-o++:o++])})},t(te,Y),te.prototype.get=function(e,t){return void 0===t||this.has(e)?this._object[e]:t},te.prototype.has=function(e){return this._object.hasOwnProperty(e)},te.prototype.__iterate=function(e,t){for(var n=this._object,r=this._keys,o=r.length-1,i=0;i<=o;i++){var a=r[t?o-i:i];if(!1===e(n[a],a,this))return i+1}return i},te.prototype.__iterator=function(e,t){var n=this._object,r=this._keys,o=r.length-1,i=0;return new U(function(){var a=r[t?o-i:i];return i++>o?{value:void 0,done:!0}:q(e,a,n[a])})},te.prototype[h]=!0,t(ne,K),ne.prototype.__iterateUncached=function(e,t){if(t)return this.cacheResult().__iterate(e,t);var n=V(this._iterable),r=0;if(B(n))for(var o;!(o=n.next()).done&&!1!==e(o.value,r++,this););return r},ne.prototype.__iteratorUncached=function(e,t){if(t)return this.cacheResult().__iterator(e,t);var n=V(this._iterable);if(!B(n))return new U(F);var r=0;return new U(function(){var t=n.next();return t.done?t:q(e,r++,t.value)})},t(re,K),re.prototype.__iterateUncached=function(e,t){if(t)return this.cacheResult().__iterate(e,t);for(var n,r=this._iterator,o=this._iteratorCache,i=0;i=r.length){var t=n.next();if(t.done)return t;r[o]=t.value}return q(e,o,r[o++])})},t(me,K),me.prototype.toString=function(){return 0===this.size?"Repeat []":"Repeat [ "+this._value+" "+this.size+" times ]"},me.prototype.get=function(e,t){return this.has(e)?this._value:t},me.prototype.includes=function(e){return he(this._value,e)},me.prototype.slice=function(e,t){var n=this.size;return O(e,t,n)?this:new me(this._value,T(t,n)-P(e,n))},me.prototype.reverse=function(){return this},me.prototype.indexOf=function(e){return he(this._value,e)?0:-1},me.prototype.lastIndexOf=function(e){return he(this._value,e)?this.size:-1},me.prototype.__iterate=function(e,t){for(var n=0;n=0&&t=0&&nn?{value:void 0,done:!0}:q(e,i++,a)})},ge.prototype.equals=function(e){return e instanceof ge?this._start===e._start&&this._end===e._end&&this._step===e._step:ve(this,e)},t(be,n),t(_e,be),t(we,be),t(Ee,be),be.Keyed=_e,be.Indexed=we,be.Set=Ee;var xe="function"==typeof Math.imul&&-2===Math.imul(4294967295,2)?Math.imul:function(e,t){var n=65535&(e|=0),r=65535&(t|=0);return n*r+((e>>>16)*r+n*(t>>>16)<<16>>>0)|0};function Se(e){return e>>>1&1073741824|3221225471&e}function Ce(e){if(!1===e||null===e||void 0===e)return 0;if("function"==typeof e.valueOf&&(!1===(e=e.valueOf())||null===e||void 0===e))return 0;if(!0===e)return 1;var t=typeof e;if("number"===t){if(e!=e||e===1/0)return 0;var n=0|e;for(n!==e&&(n^=4294967295*e);e>4294967295;)n^=e/=4294967295;return Se(n)}if("string"===t)return e.length>je?function(e){var t=De[e];void 0===t&&(t=ke(e),Re===Ne&&(Re=0,De={}),Re++,De[e]=t);return t}(e):ke(e);if("function"==typeof e.hashCode)return e.hashCode();if("object"===t)return function(e){var t;if(Te&&void 0!==(t=Pe.get(e)))return t;if(void 0!==(t=e[Ie]))return t;if(!Oe){if(void 0!==(t=e.propertyIsEnumerable&&e.propertyIsEnumerable[Ie]))return t;if(void 0!==(t=function(e){if(e&&e.nodeType>0)switch(e.nodeType){case 1:return e.uniqueID;case 9:return e.documentElement&&e.documentElement.uniqueID}}(e)))return t}t=++Me,1073741824&Me&&(Me=0);if(Te)Pe.set(e,t);else{if(void 0!==Ae&&!1===Ae(e))throw new Error("Non-extensible objects are not allowed as keys.");if(Oe)Object.defineProperty(e,Ie,{enumerable:!1,configurable:!1,writable:!1,value:t});else if(void 0!==e.propertyIsEnumerable&&e.propertyIsEnumerable===e.constructor.prototype.propertyIsEnumerable)e.propertyIsEnumerable=function(){return this.constructor.prototype.propertyIsEnumerable.apply(this,arguments)},e.propertyIsEnumerable[Ie]=t;else{if(void 0===e.nodeType)throw new Error("Unable to set a non-enumerable property on object.");e[Ie]=t}}return t}(e);if("function"==typeof e.toString)return ke(e.toString());throw new Error("Value type "+t+" cannot be hashed.")}function ke(e){for(var t=0,n=0;n=t.length)throw new Error("Missing value for key: "+t[n]);e.set(t[n],t[n+1])}})},Ue.prototype.toString=function(){return this.__toString("Map {","}")},Ue.prototype.get=function(e,t){return this._root?this._root.get(0,void 0,e,t):t},Ue.prototype.set=function(e,t){return Qe(this,e,t)},Ue.prototype.setIn=function(e,t){return this.updateIn(e,g,function(){return t})},Ue.prototype.remove=function(e){return Qe(this,e,g)},Ue.prototype.deleteIn=function(e){return this.updateIn(e,function(){return g})},Ue.prototype.update=function(e,t,n){return 1===arguments.length?e(this):this.updateIn([e],t,n)},Ue.prototype.updateIn=function(e,t,n){n||(n=t,t=void 0);var r=function e(t,n,r,o){var i=t===g;var a=n.next();if(a.done){var u=i?r:t,s=o(u);return s===u?t:s}ye(i||t&&t.set,"invalid keyPath");var l=a.value;var c=i?g:t.get(l,g);var f=e(c,n,r,o);return f===c?t:f===g?t.remove(l):(i?Xe():t).set(l,f)}(this,nn(e),t,n);return r===g?void 0:r},Ue.prototype.clear=function(){return 0===this.size?this:this.__ownerID?(this.size=0,this._root=null,this.__hash=void 0,this.__altered=!0,this):Xe()},Ue.prototype.merge=function(){return rt(this,void 0,arguments)},Ue.prototype.mergeWith=function(t){return rt(this,t,e.call(arguments,1))},Ue.prototype.mergeIn=function(t){var n=e.call(arguments,1);return this.updateIn(t,Xe(),function(e){return"function"==typeof e.merge?e.merge.apply(e,n):n[n.length-1]})},Ue.prototype.mergeDeep=function(){return rt(this,ot,arguments)},Ue.prototype.mergeDeepWith=function(t){var n=e.call(arguments,1);return rt(this,it(t),n)},Ue.prototype.mergeDeepIn=function(t){var n=e.call(arguments,1);return this.updateIn(t,Xe(),function(e){return"function"==typeof e.mergeDeep?e.mergeDeep.apply(e,n):n[n.length-1]})},Ue.prototype.sort=function(e){return Pt(Wt(this,e))},Ue.prototype.sortBy=function(e,t){return Pt(Wt(this,t,e))},Ue.prototype.withMutations=function(e){var t=this.asMutable();return e(t),t.wasAltered()?t.__ensureOwner(this.__ownerID):this},Ue.prototype.asMutable=function(){return this.__ownerID?this:this.__ensureOwner(new x)},Ue.prototype.asImmutable=function(){return this.__ensureOwner()},Ue.prototype.wasAltered=function(){return this.__altered},Ue.prototype.__iterator=function(e,t){return new Ke(this,e,t)},Ue.prototype.__iterate=function(e,t){var n=this,r=0;return this._root&&this._root.iterate(function(t){return r++,e(t[1],t[0],n)},t),r},Ue.prototype.__ensureOwner=function(e){return e===this.__ownerID?this:e?Ze(this.size,this._root,e,this.__hash):(this.__ownerID=e,this.__altered=!1,this)},Ue.isMap=qe;var Fe,ze="@@__IMMUTABLE_MAP__@@",Be=Ue.prototype;function Ve(e,t){this.ownerID=e,this.entries=t}function He(e,t,n){this.ownerID=e,this.bitmap=t,this.nodes=n}function We(e,t,n){this.ownerID=e,this.count=t,this.nodes=n}function Je(e,t,n){this.ownerID=e,this.keyHash=t,this.entries=n}function Ye(e,t,n){this.ownerID=e,this.keyHash=t,this.entry=n}function Ke(e,t,n){this._type=t,this._reverse=n,this._stack=e._root&&$e(e._root)}function Ge(e,t){return q(e,t[0],t[1])}function $e(e,t){return{node:e,index:0,__prev:t}}function Ze(e,t,n,r){var o=Object.create(Be);return o.size=e,o._root=t,o.__ownerID=n,o.__hash=r,o.__altered=!1,o}function Xe(){return Fe||(Fe=Ze(0))}function Qe(e,t,n){var r,o;if(e._root){var i=w(b),a=w(_);if(r=et(e._root,e.__ownerID,0,void 0,t,n,i,a),!a.value)return e;o=e.size+(i.value?n===g?-1:1:0)}else{if(n===g)return e;o=1,r=new Ve(e.__ownerID,[[t,n]])}return e.__ownerID?(e.size=o,e._root=r,e.__hash=void 0,e.__altered=!0,e):r?Ze(o,r):Xe()}function et(e,t,n,r,o,i,a,u){return e?e.update(t,n,r,o,i,a,u):i===g?e:(E(u),E(a),new Ye(t,r,[o,i]))}function tt(e){return e.constructor===Ye||e.constructor===Je}function nt(e,t,n,r,o){if(e.keyHash===r)return new Je(t,r,[e.entry,o]);var i,a=(0===n?e.keyHash:e.keyHash>>>n)&y,u=(0===n?r:r>>>n)&y;return new He(t,1<>1&1431655765))+(e>>2&858993459))+(e>>4)&252645135,e+=e>>8,127&(e+=e>>16)}function st(e,t,n,r){var o=r?e:S(e);return o[t]=n,o}Be[ze]=!0,Be.delete=Be.remove,Be.removeIn=Be.deleteIn,Ve.prototype.get=function(e,t,n,r){for(var o=this.entries,i=0,a=o.length;i=lt)return function(e,t,n,r){e||(e=new x);for(var o=new Ye(e,Ce(n),[n,r]),i=0;i>>e)&y),i=this.bitmap;return 0==(i&o)?r:this.nodes[ut(i&o-1)].get(e+v,t,n,r)},He.prototype.update=function(e,t,n,r,o,i,a){void 0===n&&(n=Ce(r));var u=(0===t?n:n>>>t)&y,s=1<=ct)return function(e,t,n,r,o){for(var i=0,a=new Array(m),u=0;0!==n;u++,n>>>=1)a[u]=1&n?t[i++]:void 0;return a[r]=o,new We(e,i+1,a)}(e,p,l,u,h);if(c&&!h&&2===p.length&&tt(p[1^f]))return p[1^f];if(c&&h&&1===p.length&&tt(h))return h;var b=e&&e===this.ownerID,_=c?h?l:l^s:l|s,w=c?h?st(p,f,h,b):function(e,t,n){var r=e.length-1;if(n&&t===r)return e.pop(),e;for(var o=new Array(r),i=0,a=0;a>>e)&y,i=this.nodes[o];return i?i.get(e+v,t,n,r):r},We.prototype.update=function(e,t,n,r,o,i,a){void 0===n&&(n=Ce(r));var u=(0===t?n:n>>>t)&y,s=o===g,l=this.nodes,c=l[u];if(s&&!c)return this;var f=et(c,e,t+v,n,r,o,i,a);if(f===c)return this;var p=this.count;if(c){if(!f&&--p0&&r=0&&e=e.size||t<0)return e.withMutations(function(e){t<0?kt(e,t).set(0,n):kt(e,0,t+1).set(t,n)});t+=e._origin;var r=e._tail,o=e._root,i=w(_);t>=Ot(e._capacity)?r=xt(r,e.__ownerID,0,t,n,i):o=xt(o,e.__ownerID,e._level,t,n,i);if(!i.value)return e;if(e.__ownerID)return e._root=o,e._tail=r,e.__hash=void 0,e.__altered=!0,e;return wt(e._origin,e._capacity,e._level,o,r)}(this,e,t)},pt.prototype.remove=function(e){return this.has(e)?0===e?this.shift():e===this.size-1?this.pop():this.splice(e,1):this},pt.prototype.insert=function(e,t){return this.splice(e,0,t)},pt.prototype.clear=function(){return 0===this.size?this:this.__ownerID?(this.size=this._origin=this._capacity=0,this._level=v,this._root=this._tail=null,this.__hash=void 0,this.__altered=!0,this):Et()},pt.prototype.push=function(){var e=arguments,t=this.size;return this.withMutations(function(n){kt(n,0,t+e.length);for(var r=0;r>>t&y;if(r>=this.array.length)return new mt([],e);var o,i=0===r;if(t>0){var a=this.array[r];if((o=a&&a.removeBefore(e,t-v,n))===a&&i)return this}if(i&&!o)return this;var u=St(this,e);if(!i)for(var s=0;s>>t&y;if(o>=this.array.length)return this;if(t>0){var i=this.array[o];if((r=i&&i.removeAfter(e,t-v,n))===i&&o===this.array.length-1)return this}var a=St(this,e);return a.array.splice(o+1),r&&(a.array[o]=r),a};var yt,gt,bt={};function _t(e,t){var n=e._origin,r=e._capacity,o=Ot(r),i=e._tail;return a(e._root,e._level,0);function a(e,u,s){return 0===u?function(e,a){var u=a===o?i&&i.array:e&&e.array,s=a>n?0:n-a,l=r-a;l>m&&(l=m);return function(){if(s===l)return bt;var e=t?--l:s++;return u&&u[e]}}(e,s):function(e,o,i){var u,s=e&&e.array,l=i>n?0:n-i>>o,c=1+(r-i>>o);c>m&&(c=m);return function(){for(;;){if(u){var e=u();if(e!==bt)return e;u=null}if(l===c)return bt;var n=t?--c:l++;u=a(s&&s[n],o-v,i+(n<>>n&y,s=e&&u0){var l=e&&e.array[u],c=xt(l,t,n-v,r,o,i);return c===l?e:((a=St(e,t)).array[u]=c,a)}return s&&e.array[u]===o?e:(E(i),a=St(e,t),void 0===o&&u===a.array.length-1?a.array.pop():a.array[u]=o,a)}function St(e,t){return t&&e&&t===e.ownerID?e:new mt(e?e.array.slice():[],t)}function Ct(e,t){if(t>=Ot(e._capacity))return e._tail;if(t<1<0;)n=n.array[t>>>r&y],r-=v;return n}}function kt(e,t,n){void 0!==t&&(t|=0),void 0!==n&&(n|=0);var r=e.__ownerID||new x,o=e._origin,i=e._capacity,a=o+t,u=void 0===n?i:n<0?i+n:o+n;if(a===o&&u===i)return e;if(a>=u)return e.clear();for(var s=e._level,l=e._root,c=0;a+c<0;)l=new mt(l&&l.array.length?[void 0,l]:[],r),c+=1<<(s+=v);c&&(a+=c,o+=c,u+=c,i+=c);for(var f=Ot(i),p=Ot(u);p>=1<f?new mt([],r):d;if(d&&p>f&&av;g-=v){var b=f>>>g&y;m=m.array[b]=St(m.array[b],r)}m.array[f>>>v&y]=d}if(u=p)a-=p,u-=p,s=v,l=null,h=h&&h.removeBefore(r,0,a);else if(a>o||p>>s&y;if(_!==p>>>s&y)break;_&&(c+=(1<o&&(l=l.removeBefore(r,s,a-c)),l&&pi&&(i=l.size),a(s)||(l=l.map(function(e){return fe(e)})),r.push(l)}return i>e.size&&(e=e.setSize(i)),at(e,t,r)}function Ot(e){return e>>v<=m&&a.size>=2*i.size?(r=(o=a.filter(function(e,t){return void 0!==e&&u!==t})).toKeyedSeq().map(function(e){return e[0]}).flip().toMap(),e.__ownerID&&(r.__ownerID=o.__ownerID=e.__ownerID)):(r=i.remove(t),o=u===a.size-1?a.pop():a.set(u,void 0))}else if(s){if(n===a.get(u)[1])return e;r=i,o=a.set(u,[t,n])}else r=i.set(t,a.size),o=a.set(a.size,[t,n]);return e.__ownerID?(e.size=r.size,e._map=r,e._list=o,e.__hash=void 0,e):Mt(r,o)}function Nt(e,t){this._iter=e,this._useKeys=t,this.size=e.size}function Rt(e){this._iter=e,this.size=e.size}function Dt(e){this._iter=e,this.size=e.size}function Lt(e){this._iter=e,this.size=e.size}function Ut(e){var t=Qt(e);return t._iter=e,t.size=e.size,t.flip=function(){return e},t.reverse=function(){var t=e.reverse.apply(this);return t.flip=function(){return e.reverse()},t},t.has=function(t){return e.includes(t)},t.includes=function(t){return e.has(t)},t.cacheResult=en,t.__iterateUncached=function(t,n){var r=this;return e.__iterate(function(e,n){return!1!==t(n,e,r)},n)},t.__iteratorUncached=function(t,n){if(t===N){var r=e.__iterator(t,n);return new U(function(){var e=r.next();if(!e.done){var t=e.value[0];e.value[0]=e.value[1],e.value[1]=t}return e})}return e.__iterator(t===j?I:j,n)},t}function qt(e,t,n){var r=Qt(e);return r.size=e.size,r.has=function(t){return e.has(t)},r.get=function(r,o){var i=e.get(r,g);return i===g?o:t.call(n,i,r,e)},r.__iterateUncached=function(r,o){var i=this;return e.__iterate(function(e,o,a){return!1!==r(t.call(n,e,o,a),o,i)},o)},r.__iteratorUncached=function(r,o){var i=e.__iterator(N,o);return new U(function(){var o=i.next();if(o.done)return o;var a=o.value,u=a[0];return q(r,u,t.call(n,a[1],u,e),o)})},r}function Ft(e,t){var n=Qt(e);return n._iter=e,n.size=e.size,n.reverse=function(){return e},e.flip&&(n.flip=function(){var t=Ut(e);return t.reverse=function(){return e.flip()},t}),n.get=function(n,r){return e.get(t?n:-1-n,r)},n.has=function(n){return e.has(t?n:-1-n)},n.includes=function(t){return e.includes(t)},n.cacheResult=en,n.__iterate=function(t,n){var r=this;return e.__iterate(function(e,n){return t(e,n,r)},!n)},n.__iterator=function(t,n){return e.__iterator(t,!n)},n}function zt(e,t,n,r){var o=Qt(e);return r&&(o.has=function(r){var o=e.get(r,g);return o!==g&&!!t.call(n,o,r,e)},o.get=function(r,o){var i=e.get(r,g);return i!==g&&t.call(n,i,r,e)?i:o}),o.__iterateUncached=function(o,i){var a=this,u=0;return e.__iterate(function(e,i,s){if(t.call(n,e,i,s))return u++,o(e,r?i:u-1,a)},i),u},o.__iteratorUncached=function(o,i){var a=e.__iterator(N,i),u=0;return new U(function(){for(;;){var i=a.next();if(i.done)return i;var s=i.value,l=s[0],c=s[1];if(t.call(n,c,l,e))return q(o,r?l:u++,c,i)}})},o}function Bt(e,t,n,r){var o=e.size;if(void 0!==t&&(t|=0),void 0!==n&&(n===1/0?n=o:n|=0),O(t,n,o))return e;var i=P(t,o),a=T(n,o);if(i!=i||a!=a)return Bt(e.toSeq().cacheResult(),t,n,r);var u,s=a-i;s==s&&(u=s<0?0:s);var l=Qt(e);return l.size=0===u?u:e.size&&u||void 0,!r&&oe(e)&&u>=0&&(l.get=function(t,n){return(t=k(this,t))>=0&&tu)return{value:void 0,done:!0};var e=o.next();return r||t===j?e:q(t,s-1,t===I?void 0:e.value[1],e)})},l}function Vt(e,t,n,r){var o=Qt(e);return o.__iterateUncached=function(o,i){var a=this;if(i)return this.cacheResult().__iterate(o,i);var u=!0,s=0;return e.__iterate(function(e,i,l){if(!u||!(u=t.call(n,e,i,l)))return s++,o(e,r?i:s-1,a)}),s},o.__iteratorUncached=function(o,i){var a=this;if(i)return this.cacheResult().__iterator(o,i);var u=e.__iterator(N,i),s=!0,l=0;return new U(function(){var e,i,c;do{if((e=u.next()).done)return r||o===j?e:q(o,l++,o===I?void 0:e.value[1],e);var f=e.value;i=f[0],c=f[1],s&&(s=t.call(n,c,i,a))}while(s);return o===N?e:q(o,i,c,e)})},o}function Ht(e,t,n){var r=Qt(e);return r.__iterateUncached=function(r,o){var i=0,u=!1;return function e(s,l){var c=this;s.__iterate(function(o,s){return(!t||l0}function Kt(e,t,r){var o=Qt(e);return o.size=new ee(r).map(function(e){return e.size}).min(),o.__iterate=function(e,t){for(var n,r=this.__iterator(j,t),o=0;!(n=r.next()).done&&!1!==e(n.value,o++,this););return o},o.__iteratorUncached=function(e,o){var i=r.map(function(e){return e=n(e),V(o?e.reverse():e)}),a=0,u=!1;return new U(function(){var n;return u||(n=i.map(function(e){return e.next()}),u=n.some(function(e){return e.done})),u?{value:void 0,done:!0}:q(e,a++,t.apply(null,n.map(function(e){return e.value})))})},o}function Gt(e,t){return oe(e)?t:e.constructor(t)}function $t(e){if(e!==Object(e))throw new TypeError("Expected [K, V] tuple: "+e)}function Zt(e){return Le(e.size),C(e)}function Xt(e){return u(e)?r:s(e)?o:i}function Qt(e){return Object.create((u(e)?Y:s(e)?K:G).prototype)}function en(){return this._iter.cacheResult?(this._iter.cacheResult(),this.size=this._iter.size,this):J.prototype.cacheResult.call(this)}function tn(e,t){return e>t?1:e=0;n--)t={value:arguments[n],next:t};return this.__ownerID?(this.size=e,this._head=t,this.__hash=void 0,this.__altered=!0,this):An(e,t)},En.prototype.pushAll=function(e){if(0===(e=o(e)).size)return this;Le(e.size);var t=this.size,n=this._head;return e.reverse().forEach(function(e){t++,n={value:e,next:n}}),this.__ownerID?(this.size=t,this._head=n,this.__hash=void 0,this.__altered=!0,this):An(t,n)},En.prototype.pop=function(){return this.slice(1)},En.prototype.unshift=function(){return this.push.apply(this,arguments)},En.prototype.unshiftAll=function(e){return this.pushAll(e)},En.prototype.shift=function(){return this.pop.apply(this,arguments)},En.prototype.clear=function(){return 0===this.size?this:this.__ownerID?(this.size=0,this._head=void 0,this.__hash=void 0,this.__altered=!0,this):On()},En.prototype.slice=function(e,t){if(O(e,t,this.size))return this;var n=P(e,this.size);if(T(t,this.size)!==this.size)return we.prototype.slice.call(this,e,t);for(var r=this.size-n,o=this._head;n--;)o=o.next;return this.__ownerID?(this.size=r,this._head=o,this.__hash=void 0,this.__altered=!0,this):An(r,o)},En.prototype.__ensureOwner=function(e){return e===this.__ownerID?this:e?An(this.size,this._head,e,this.__hash):(this.__ownerID=e,this.__altered=!1,this)},En.prototype.__iterate=function(e,t){if(t)return this.reverse().__iterate(e);for(var n=0,r=this._head;r&&!1!==e(r.value,n++,this);)r=r.next;return n},En.prototype.__iterator=function(e,t){if(t)return this.reverse().__iterator(e);var n=0,r=this._head;return new U(function(){if(r){var t=r.value;return r=r.next,q(e,n++,t)}return{value:void 0,done:!0}})},En.isStack=xn;var Sn,Cn="@@__IMMUTABLE_STACK__@@",kn=En.prototype;function An(e,t,n,r){var o=Object.create(kn);return o.size=e,o._head=t,o.__ownerID=n,o.__hash=r,o.__altered=!1,o}function On(){return Sn||(Sn=An(0))}function Pn(e,t){var n=function(n){e.prototype[n]=t[n]};return Object.keys(t).forEach(n),Object.getOwnPropertySymbols&&Object.getOwnPropertySymbols(t).forEach(n),e}kn[Cn]=!0,kn.withMutations=Be.withMutations,kn.asMutable=Be.asMutable,kn.asImmutable=Be.asImmutable,kn.wasAltered=Be.wasAltered,n.Iterator=U,Pn(n,{toArray:function(){Le(this.size);var e=new Array(this.size||0);return this.valueSeq().__iterate(function(t,n){e[n]=t}),e},toIndexedSeq:function(){return new Rt(this)},toJS:function(){return this.toSeq().map(function(e){return e&&"function"==typeof e.toJS?e.toJS():e}).__toJS()},toJSON:function(){return this.toSeq().map(function(e){return e&&"function"==typeof e.toJSON?e.toJSON():e}).__toJS()},toKeyedSeq:function(){return new Nt(this,!0)},toMap:function(){return Ue(this.toKeyedSeq())},toObject:function(){Le(this.size);var e={};return this.__iterate(function(t,n){e[n]=t}),e},toOrderedMap:function(){return Pt(this.toKeyedSeq())},toOrderedSet:function(){return mn(u(this)?this.valueSeq():this)},toSet:function(){return sn(u(this)?this.valueSeq():this)},toSetSeq:function(){return new Dt(this)},toSeq:function(){return s(this)?this.toIndexedSeq():u(this)?this.toKeyedSeq():this.toSetSeq()},toStack:function(){return En(u(this)?this.valueSeq():this)},toList:function(){return pt(u(this)?this.valueSeq():this)},toString:function(){return"[Iterable]"},__toString:function(e,t){return 0===this.size?e+t:e+" "+this.toSeq().map(this.__toStringMapper).join(", ")+" "+t},concat:function(){return Gt(this,function(e,t){var n=u(e),o=[e].concat(t).map(function(e){return a(e)?n&&(e=r(e)):e=n?ae(e):ue(Array.isArray(e)?e:[e]),e}).filter(function(e){return 0!==e.size});if(0===o.length)return e;if(1===o.length){var i=o[0];if(i===e||n&&u(i)||s(e)&&s(i))return i}var l=new ee(o);return n?l=l.toKeyedSeq():s(e)||(l=l.toSetSeq()),(l=l.flatten(!0)).size=o.reduce(function(e,t){if(void 0!==e){var n=t.size;if(void 0!==n)return e+n}},0),l}(this,e.call(arguments,0)))},includes:function(e){return this.some(function(t){return he(t,e)})},entries:function(){return this.__iterator(N)},every:function(e,t){Le(this.size);var n=!0;return this.__iterate(function(r,o,i){if(!e.call(t,r,o,i))return n=!1,!1}),n},filter:function(e,t){return Gt(this,zt(this,e,t,!0))},find:function(e,t,n){var r=this.findEntry(e,t);return r?r[1]:n},forEach:function(e,t){return Le(this.size),this.__iterate(t?e.bind(t):e)},join:function(e){Le(this.size),e=void 0!==e?""+e:",";var t="",n=!0;return this.__iterate(function(r){n?n=!1:t+=e,t+=null!==r&&void 0!==r?r.toString():""}),t},keys:function(){return this.__iterator(I)},map:function(e,t){return Gt(this,qt(this,e,t))},reduce:function(e,t,n){var r,o;return Le(this.size),arguments.length<2?o=!0:r=t,this.__iterate(function(t,i,a){o?(o=!1,r=t):r=e.call(n,r,t,i,a)}),r},reduceRight:function(e,t,n){var r=this.toKeyedSeq().reverse();return r.reduce.apply(r,arguments)},reverse:function(){return Gt(this,Ft(this,!0))},slice:function(e,t){return Gt(this,Bt(this,e,t,!0))},some:function(e,t){return!this.every(Nn(e),t)},sort:function(e){return Gt(this,Wt(this,e))},values:function(){return this.__iterator(j)},butLast:function(){return this.slice(0,-1)},isEmpty:function(){return void 0!==this.size?0===this.size:!this.some(function(){return!0})},count:function(e,t){return C(e?this.toSeq().filter(e,t):this)},countBy:function(e,t){return function(e,t,n){var r=Ue().asMutable();return e.__iterate(function(o,i){r.update(t.call(n,o,i,e),0,function(e){return e+1})}),r.asImmutable()}(this,e,t)},equals:function(e){return ve(this,e)},entrySeq:function(){var e=this;if(e._cache)return new ee(e._cache);var t=e.toSeq().map(jn).toIndexedSeq();return t.fromEntrySeq=function(){return e.toSeq()},t},filterNot:function(e,t){return this.filter(Nn(e),t)},findEntry:function(e,t,n){var r=n;return this.__iterate(function(n,o,i){if(e.call(t,n,o,i))return r=[o,n],!1}),r},findKey:function(e,t){var n=this.findEntry(e,t);return n&&n[0]},findLast:function(e,t,n){return this.toKeyedSeq().reverse().find(e,t,n)},findLastEntry:function(e,t,n){return this.toKeyedSeq().reverse().findEntry(e,t,n)},findLastKey:function(e,t){return this.toKeyedSeq().reverse().findKey(e,t)},first:function(){return this.find(A)},flatMap:function(e,t){return Gt(this,function(e,t,n){var r=Xt(e);return e.toSeq().map(function(o,i){return r(t.call(n,o,i,e))}).flatten(!0)}(this,e,t))},flatten:function(e){return Gt(this,Ht(this,e,!0))},fromEntrySeq:function(){return new Lt(this)},get:function(e,t){return this.find(function(t,n){return he(n,e)},void 0,t)},getIn:function(e,t){for(var n,r=this,o=nn(e);!(n=o.next()).done;){var i=n.value;if((r=r&&r.get?r.get(i,g):g)===g)return t}return r},groupBy:function(e,t){return function(e,t,n){var r=u(e),o=(c(e)?Pt():Ue()).asMutable();e.__iterate(function(i,a){o.update(t.call(n,i,a,e),function(e){return(e=e||[]).push(r?[a,i]:i),e})});var i=Xt(e);return o.map(function(t){return Gt(e,i(t))})}(this,e,t)},has:function(e){return this.get(e,g)!==g},hasIn:function(e){return this.getIn(e,g)!==g},isSubset:function(e){return e="function"==typeof e.includes?e:n(e),this.every(function(t){return e.includes(t)})},isSuperset:function(e){return(e="function"==typeof e.isSubset?e:n(e)).isSubset(this)},keyOf:function(e){return this.findKey(function(t){return he(t,e)})},keySeq:function(){return this.toSeq().map(In).toIndexedSeq()},last:function(){return this.toSeq().reverse().first()},lastKeyOf:function(e){return this.toKeyedSeq().reverse().keyOf(e)},max:function(e){return Jt(this,e)},maxBy:function(e,t){return Jt(this,t,e)},min:function(e){return Jt(this,e?Rn(e):Un)},minBy:function(e,t){return Jt(this,t?Rn(t):Un,e)},rest:function(){return this.slice(1)},skip:function(e){return this.slice(Math.max(0,e))},skipLast:function(e){return Gt(this,this.toSeq().reverse().skip(e).reverse())},skipWhile:function(e,t){return Gt(this,Vt(this,e,t,!0))},skipUntil:function(e,t){return this.skipWhile(Nn(e),t)},sortBy:function(e,t){return Gt(this,Wt(this,t,e))},take:function(e){return this.slice(0,Math.max(0,e))},takeLast:function(e){return Gt(this,this.toSeq().reverse().take(e).reverse())},takeWhile:function(e,t){return Gt(this,function(e,t,n){var r=Qt(e);return r.__iterateUncached=function(r,o){var i=this;if(o)return this.cacheResult().__iterate(r,o);var a=0;return e.__iterate(function(e,o,u){return t.call(n,e,o,u)&&++a&&r(e,o,i)}),a},r.__iteratorUncached=function(r,o){var i=this;if(o)return this.cacheResult().__iterator(r,o);var a=e.__iterator(N,o),u=!0;return new U(function(){if(!u)return{value:void 0,done:!0};var e=a.next();if(e.done)return e;var o=e.value,s=o[0],l=o[1];return t.call(n,l,s,i)?r===N?e:q(r,s,l,e):(u=!1,{value:void 0,done:!0})})},r}(this,e,t))},takeUntil:function(e,t){return this.takeWhile(Nn(e),t)},valueSeq:function(){return this.toIndexedSeq()},hashCode:function(){return this.__hash||(this.__hash=function(e){if(e.size===1/0)return 0;var t=c(e),n=u(e),r=t?1:0;return function(e,t){return t=xe(t,3432918353),t=xe(t<<15|t>>>-15,461845907),t=xe(t<<13|t>>>-13,5),t=xe((t=(t+3864292196|0)^e)^t>>>16,2246822507),t=Se((t=xe(t^t>>>13,3266489909))^t>>>16)}(e.__iterate(n?t?function(e,t){r=31*r+qn(Ce(e),Ce(t))|0}:function(e,t){r=r+qn(Ce(e),Ce(t))|0}:t?function(e){r=31*r+Ce(e)|0}:function(e){r=r+Ce(e)|0}),r)}(this))}});var Tn=n.prototype;Tn[f]=!0,Tn[L]=Tn.values,Tn.__toJS=Tn.toArray,Tn.__toStringMapper=Dn,Tn.inspect=Tn.toSource=function(){return this.toString()},Tn.chain=Tn.flatMap,Tn.contains=Tn.includes,Pn(r,{flip:function(){return Gt(this,Ut(this))},mapEntries:function(e,t){var n=this,r=0;return Gt(this,this.toSeq().map(function(o,i){return e.call(t,[i,o],r++,n)}).fromEntrySeq())},mapKeys:function(e,t){var n=this;return Gt(this,this.toSeq().flip().map(function(r,o){return e.call(t,r,o,n)}).flip())}});var Mn=r.prototype;function In(e,t){return t}function jn(e,t){return[t,e]}function Nn(e){return function(){return!e.apply(this,arguments)}}function Rn(e){return function(){return-e.apply(this,arguments)}}function Dn(e){return"string"==typeof e?JSON.stringify(e):String(e)}function Ln(){return S(arguments)}function Un(e,t){return et?-1:0}function qn(e,t){return e^t+2654435769+(e<<6)+(e>>2)|0}return Mn[p]=!0,Mn[L]=Tn.entries,Mn.__toJS=Tn.toObject,Mn.__toStringMapper=function(e,t){return JSON.stringify(t)+": "+Dn(e)},Pn(o,{toKeyedSeq:function(){return new Nt(this,!1)},filter:function(e,t){return Gt(this,zt(this,e,t,!1))},findIndex:function(e,t){var n=this.findEntry(e,t);return n?n[0]:-1},indexOf:function(e){var t=this.keyOf(e);return void 0===t?-1:t},lastIndexOf:function(e){var t=this.lastKeyOf(e);return void 0===t?-1:t},reverse:function(){return Gt(this,Ft(this,!1))},slice:function(e,t){return Gt(this,Bt(this,e,t,!1))},splice:function(e,t){var n=arguments.length;if(t=Math.max(0|t,0),0===n||2===n&&!t)return this;e=P(e,e<0?this.count():this.size);var r=this.slice(0,e);return Gt(this,1===n?r:r.concat(S(arguments,2),this.slice(e+t)))},findLastIndex:function(e,t){var n=this.findLastEntry(e,t);return n?n[0]:-1},first:function(){return this.get(0)},flatten:function(e){return Gt(this,Ht(this,e,!1))},get:function(e,t){return(e=k(this,e))<0||this.size===1/0||void 0!==this.size&&e>this.size?t:this.find(function(t,n){return n===e},void 0,t)},has:function(e){return(e=k(this,e))>=0&&(void 0!==this.size?this.size===1/0||e>",i={listOf:function(e){return l(e,"List",r.List.isList)},mapOf:function(e,t){return c(e,t,"Map",r.Map.isMap)},orderedMapOf:function(e,t){return c(e,t,"OrderedMap",r.OrderedMap.isOrderedMap)},setOf:function(e){return l(e,"Set",r.Set.isSet)},orderedSetOf:function(e){return l(e,"OrderedSet",r.OrderedSet.isOrderedSet)},stackOf:function(e){return l(e,"Stack",r.Stack.isStack)},iterableOf:function(e){return l(e,"Iterable",r.Iterable.isIterable)},recordOf:function(e){return u(function(t,n,o,i,u){for(var s=arguments.length,l=Array(s>5?s-5:0),c=5;c6?s-6:0),c=6;c5?l-5:0),f=5;f5?i-5:0),u=5;u key("+c[f]+")"].concat(a));if(d instanceof Error)return d}})).apply(void 0,i);var s})}function f(e){var t=void 0===arguments[1]?"Iterable":arguments[1],n=void 0===arguments[2]?r.Iterable.isIterable:arguments[2];return u(function(r,o,i,u,s){for(var l=arguments.length,c=Array(l>5?l-5:0),f=5;f5e3)return e.textContent;return function(e){for(var n,r,o,i,a,u=e.textContent,s=0,l=u[0],c=1,f=e.innerHTML="",p=0;r=n,n=p<7&&"\\"==n?1:c;){if(c=l,l=u[++s],i=f.length>1,!c||p>8&&"\n"==c||[/\S/.test(c),1,1,!/[$\w]/.test(c),("/"==n||"\n"==n)&&i,'"'==n&&i,"'"==n&&i,u[s-4]+r+n=="--\x3e",r+n=="*/"][p])for(f&&(e.appendChild(a=t.createElement("span")).setAttribute("style",["color: #555; font-weight: bold;","","","color: #555;",""][p?p<3?2:p>6?4:p>3?3:+/^(a(bstract|lias|nd|rguments|rray|s(m|sert)?|uto)|b(ase|egin|ool(ean)?|reak|yte)|c(ase|atch|har|hecked|lass|lone|ompl|onst|ontinue)|de(bugger|cimal|clare|f(ault|er)?|init|l(egate|ete)?)|do|double|e(cho|ls?if|lse(if)?|nd|nsure|num|vent|x(cept|ec|p(licit|ort)|te(nds|nsion|rn)))|f(allthrough|alse|inal(ly)?|ixed|loat|or(each)?|riend|rom|unc(tion)?)|global|goto|guard|i(f|mp(lements|licit|ort)|n(it|clude(_once)?|line|out|stanceof|t(erface|ernal)?)?|s)|l(ambda|et|ock|ong)|m(icrolight|odule|utable)|NaN|n(amespace|ative|ext|ew|il|ot|ull)|o(bject|perator|r|ut|verride)|p(ackage|arams|rivate|rotected|rotocol|ublic)|r(aise|e(adonly|do|f|gister|peat|quire(_once)?|scue|strict|try|turn))|s(byte|ealed|elf|hort|igned|izeof|tatic|tring|truct|ubscript|uper|ynchronized|witch)|t(emplate|hen|his|hrows?|ransient|rue|ry|ype(alias|def|id|name|of))|u(n(checked|def(ined)?|ion|less|signed|til)|se|sing)|v(ar|irtual|oid|olatile)|w(char_t|hen|here|hile|ith)|xor|yield)$/.test(f):0]),a.appendChild(t.createTextNode(f))),o=p&&p<7?p:o,f="",p=11;![1,/[\/{}[(\-+*=<>:;|\\.,?!&@~]/.test(c),/[\])]/.test(c),/[$\w]/.test(c),"/"==c&&o<2&&"<"!=n,'"'==c,"'"==c,c+l+u[s+1]+u[s+2]=="\x3c!--",c+l=="/*",c+l=="//","#"==c][--p];);f+=c}}(e)},t.mapToList=function e(t){var n=arguments.length>1&&void 0!==arguments[1]?arguments[1]:"key";var r=arguments.length>2&&void 0!==arguments[2]?arguments[2]:l.default.Map();if(!l.default.Map.isMap(t)||!t.size)return l.default.List();Array.isArray(n)||(n=[n]);if(n.length<1)return t.merge(r);var a=l.default.List();var u=n[0];var s=!0;var c=!1;var f=void 0;try{for(var p,d=(0,i.default)(t.entries());!(s=(p=d.next()).done);s=!0){var h=p.value,v=(0,o.default)(h,2),m=v[0],y=v[1],g=e(y,n.slice(1),r.set(u,m));a=l.default.List.isList(g)?a.concat(g):a.push(g)}}catch(e){c=!0,f=e}finally{try{!s&&d.return&&d.return()}finally{if(c)throw f}}return a},t.extractFileNameFromContentDispositionHeader=function(e){var t=/filename="([^;]*);?"/i.exec(e);null===t&&(t=/filename=([^;]*);?/i.exec(e));if(null!==t&&t.length>1)return t[1];return null},t.pascalCase=C,t.pascalCaseFilename=function(e){return C(e.replace(/\.[^./]*$/,""))},t.sanitizeUrl=function(e){if("string"!=typeof e||""===e)return"";return(0,c.sanitizeUrl)(e)},t.getAcceptControllingResponse=function(e){if(!l.default.OrderedMap.isOrderedMap(e))return null;if(!e.size)return null;var t=e.find(function(e,t){return t.startsWith("2")&&(0,u.default)(e.get("content")||{}).length>0}),n=e.get("default")||l.default.OrderedMap(),r=(n.get("content")||l.default.OrderedMap()).keySeq().toJS().length?n:null;return t||r},t.deeplyStripKey=function e(t,n){var r=arguments.length>2&&void 0!==arguments[2]?arguments[2]:function(){return!0};if("object"!==(void 0===t?"undefined":(0,s.default)(t))||Array.isArray(t)||null===t||!n)return t;var o=(0,a.default)({},t);(0,u.default)(o).forEach(function(t){t===n&&r(o[t],t)?delete o[t]:o[t]=e(o[t],n,r)});return o},t.stringify=function(e){if("string"==typeof e)return e;e.toJS&&(e=e.toJS());if("object"===(void 0===e?"undefined":(0,s.default)(e))&&null!==e)try{return(0,r.default)(e,null,2)}catch(t){return String(e)}return e.toString()},t.numberToString=function(e){if("number"==typeof e)return e.toString();return e};var l=_(n(7)),c=n(572),f=_(n(573)),p=_(n(280)),d=_(n(285)),h=_(n(288)),v=_(n(650)),m=_(n(105)),y=n(192),g=_(n(32)),b=_(n(723));function _(e){return e&&e.__esModule?e:{default:e}}var w="default",E=t.isImmutable=function(e){return l.default.Iterable.isIterable(e)};function x(e){return Array.isArray(e)?e:[e]}function S(e){return!!e&&"object"===(void 0===e?"undefined":(0,s.default)(e))}t.memoize=d.default;function C(e){return(0,p.default)((0,f.default)(e))}t.propChecker=function(e,t){var n=arguments.length>2&&void 0!==arguments[2]?arguments[2]:[],r=arguments.length>3&&void 0!==arguments[3]?arguments[3]:[];return(0,u.default)(e).length!==(0,u.default)(t).length||((0,v.default)(e,function(e,n){if(r.includes(n))return!1;var o=t[n];return l.default.Iterable.isIterable(e)?!l.default.is(e,o):("object"!==(void 0===e?"undefined":(0,s.default)(e))||"object"!==(void 0===o?"undefined":(0,s.default)(o)))&&e!==o})||n.some(function(n){return!(0,m.default)(e[n],t[n])}))};var k=t.validateMaximum=function(e,t){if(e>t)return"Value must be less than Maximum"},A=t.validateMinimum=function(e,t){if(et)return"Value must be less than MaxLength"},D=t.validateMinLength=function(e,t){if(e.length2&&void 0!==arguments[2]&&arguments[2],r=[],o=t&&"body"===e.get("in")?e.get("value_xml"):e.get("value"),i=e.get("required"),a=n?e.get("schema"):e;if(!a)return r;var u=a.get("maximum"),c=a.get("minimum"),f=a.get("type"),p=a.get("format"),d=a.get("maxLength"),h=a.get("minLength"),v=a.get("pattern");if(f&&(i||o)){var m="string"===f&&o,y="array"===f&&Array.isArray(o)&&o.length,b="array"===f&&l.default.List.isList(o)&&o.count(),_="file"===f&&o instanceof g.default.File,w="boolean"===f&&(o||!1===o),E="number"===f&&(o||0===o),x="integer"===f&&(o||0===o),S=!1;if(n&&"object"===f)if("object"===(void 0===o?"undefined":(0,s.default)(o)))S=!0;else if("string"==typeof o)try{JSON.parse(o),S=!0}catch(e){return r.push("Parameter string value must be valid JSON"),r}var C=[m,y,b,_,w,E,x,S].some(function(e){return!!e});if(i&&!C)return r.push("Required field is not provided"),r;if(v){var U=L(o,v);U&&r.push(U)}if(d||0===d){var q=R(o,d);q&&r.push(q)}if(h){var F=D(o,h);F&&r.push(F)}if(u||0===u){var z=k(o,u);z&&r.push(z)}if(c||0===c){var B=A(o,c);B&&r.push(B)}if("string"===f){var V=void 0;if(!(V="date-time"===p?j(o):"uuid"===p?N(o):I(o)))return r;r.push(V)}else if("boolean"===f){var H=M(o);if(!H)return r;r.push(H)}else if("number"===f){var W=O(o);if(!W)return r;r.push(W)}else if("integer"===f){var J=P(o);if(!J)return r;r.push(J)}else if("array"===f){var Y;if(!b||!o.count())return r;Y=a.getIn(["items","type"]),o.forEach(function(e,t){var n=void 0;"number"===Y?n=O(e):"integer"===Y?n=P(e):"string"===Y&&(n=I(e)),n&&r.push({index:t,error:n})})}else if("file"===f){var K=T(o);if(!K)return r;r.push(K)}}return r},t.getSampleSchema=function(e){var t=arguments.length>1&&void 0!==arguments[1]?arguments[1]:"",n=arguments.length>2&&void 0!==arguments[2]?arguments[2]:{};if(/xml/.test(t)){if(!e.xml||!e.xml.name){if(e.xml=e.xml||{},!e.$$ref)return e.type||e.items||e.properties||e.additionalProperties?'\n\x3c!-- XML example cannot be generated --\x3e':null;var o=e.$$ref.match(/\S*\/(\S+)$/);e.xml.name=o[1]}return(0,y.memoizedCreateXMLExample)(e,n)}var i=(0,y.memoizedSampleFromSchema)(e,n);return"object"===(void 0===i?"undefined":(0,s.default)(i))?(0,r.default)(i,null,2):i},t.parseSearch=function(){var e={},t=g.default.location.search;if(!t)return{};if(""!=t){var n=t.substr(1).split("&");for(var r in n)n.hasOwnProperty(r)&&(r=n[r].split("="),e[decodeURIComponent(r[0])]=r[1]&&decodeURIComponent(r[1])||"")}return e},t.serializeSearch=function(e){return(0,u.default)(e).map(function(t){return encodeURIComponent(t)+"="+encodeURIComponent(e[t])}).join("&")},t.btoa=function(t){return(t instanceof e?t:new e(t.toString(),"utf-8")).toString("base64")},t.sorters={operationsSorter:{alpha:function(e,t){return e.get("path").localeCompare(t.get("path"))},method:function(e,t){return e.get("method").localeCompare(t.get("method"))}},tagsSorter:{alpha:function(e,t){return e.localeCompare(t)}}},t.buildFormData=function(e){var t=[];for(var n in e){var r=e[n];void 0!==r&&""!==r&&t.push([n,"=",encodeURIComponent(r).replace(/%20/g,"+")].join(""))}return t.join("&")},t.shallowEqualKeys=function(e,t,n){return!!(0,h.default)(n,function(n){return(0,m.default)(e[n],t[n])})};var U=t.createDeepLinkPath=function(e){return"string"==typeof e||e instanceof String?e.trim().replace(/\s/g,"_"):""};t.escapeDeepLinkPath=function(e){return(0,b.default)(U(e))},t.getExtensions=function(e){return e.filter(function(e,t){return/^x-/.test(t)})},t.getCommonExtensions=function(e){return e.filter(function(e,t){return/^pattern|maxLength|minLength|maximum|minimum/.test(t)})}}).call(t,n(54).Buffer)},function(e,t,n){"use strict"; +/* +object-assign +(c) Sindre Sorhus +@license MIT +*/var r=Object.getOwnPropertySymbols,o=Object.prototype.hasOwnProperty,i=Object.prototype.propertyIsEnumerable;e.exports=function(){try{if(!Object.assign)return!1;var e=new String("abc");if(e[5]="de","5"===Object.getOwnPropertyNames(e)[0])return!1;for(var t={},n=0;n<10;n++)t["_"+String.fromCharCode(n)]=n;if("0123456789"!==Object.getOwnPropertyNames(t).map(function(e){return t[e]}).join(""))return!1;var r={};return"abcdefghijklmnopqrst".split("").forEach(function(e){r[e]=e}),"abcdefghijklmnopqrst"===Object.keys(Object.assign({},r)).join("")}catch(e){return!1}}()?Object.assign:function(e,t){for(var n,a,u=function(e){if(null===e||void 0===e)throw new TypeError("Object.assign cannot be called with null or undefined");return Object(e)}(e),s=1;s?@[\]^_`{|}~-])/g;function a(e){return!(e>=55296&&e<=57343)&&(!(e>=64976&&e<=65007)&&(65535!=(65535&e)&&65534!=(65535&e)&&(!(e>=0&&e<=8)&&(11!==e&&(!(e>=14&&e<=31)&&(!(e>=127&&e<=159)&&!(e>1114111)))))))}function u(e){if(e>65535){var t=55296+((e-=65536)>>10),n=56320+(1023&e);return String.fromCharCode(t,n)}return String.fromCharCode(e)}var s=/&([a-z#][a-z0-9]{1,31});/gi,l=/^#((?:x[a-f0-9]{1,8}|[0-9]{1,8}))/i,c=n(417);function f(e,t){var n=0;return o(c,t)?c[t]:35===t.charCodeAt(0)&&l.test(t)&&a(n="x"===t[1].toLowerCase()?parseInt(t.slice(2),16):parseInt(t.slice(1),10))?u(n):e}var p=/[&<>"]/,d=/[&<>"]/g,h={"&":"&","<":"<",">":">",'"':"""};function v(e){return h[e]}t.assign=function(e){return[].slice.call(arguments,1).forEach(function(t){if(t){if("object"!=typeof t)throw new TypeError(t+"must be object");Object.keys(t).forEach(function(n){e[n]=t[n]})}}),e},t.isString=function(e){return"[object String]"===function(e){return Object.prototype.toString.call(e)}(e)},t.has=o,t.unescapeMd=function(e){return e.indexOf("\\")<0?e:e.replace(i,"$1")},t.isValidEntityCode=a,t.fromCodePoint=u,t.replaceEntities=function(e){return e.indexOf("&")<0?e:e.replace(s,f)},t.escapeHtml=function(e){return p.test(e)?e.replace(d,v):e}},function(e,t){e.exports=function(e){return"object"==typeof e?null!==e:"function"==typeof e}},function(e,t,n){var r=n(33),o=n(60),i=n(58),a=n(72),u=n(120),s=function(e,t,n){var l,c,f,p,d=e&s.F,h=e&s.G,v=e&s.S,m=e&s.P,y=e&s.B,g=h?r:v?r[t]||(r[t]={}):(r[t]||{}).prototype,b=h?o:o[t]||(o[t]={}),_=b.prototype||(b.prototype={});for(l in h&&(n=t),n)f=((c=!d&&g&&void 0!==g[l])?g:n)[l],p=y&&c?u(f,r):m&&"function"==typeof f?u(Function.call,f):f,g&&a(g,l,f,e&s.U),b[l]!=f&&i(b,l,p),m&&_[l]!=f&&(_[l]=f)};r.core=o,s.F=1,s.G=2,s.S=4,s.P=8,s.B=16,s.W=32,s.U=64,s.R=128,e.exports=s},function(e,t,n){var r=n(29),o=n(101),i=n(53),a=/"/g,u=function(e,t,n,r){var o=String(i(e)),u="<"+t;return""!==n&&(u+=" "+n+'="'+String(r).replace(a,""")+'"'),u+">"+o+""};e.exports=function(e,t){var n={};n[e]=t(u),r(r.P+r.F*o(function(){var t=""[e]('"');return t!==t.toLowerCase()||t.split('"').length>3}),"String",n)}},function(e,t){var n;n=function(){return this}();try{n=n||Function("return this")()||(0,eval)("this")}catch(e){"object"==typeof window&&(n=window)}e.exports=n},function(e,t,n){"use strict";var r,o=n(91),i=(r=o)&&r.__esModule?r:{default:r};e.exports=function(){var e={location:{},history:{},open:function(){},close:function(){},File:function(){}};if("undefined"==typeof window)return e;try{e=window;var t=!0,n=!1,r=void 0;try{for(var o,a=(0,i.default)(["File","Blob","FormData"]);!(t=(o=a.next()).done);t=!0){var u=o.value;u in window&&(e[u]=window[u])}}catch(e){n=!0,r=e}finally{try{!t&&a.return&&a.return()}finally{if(n)throw r}}}catch(e){console.error(e)}return e}()},function(e,t){var n=e.exports="undefined"!=typeof window&&window.Math==Math?window:"undefined"!=typeof self&&self.Math==Math?self:Function("return this")();"number"==typeof __g&&(__g=n)},function(e,t,n){"use strict";function r(e){return function(){return e}}var o=function(){};o.thatReturns=r,o.thatReturnsFalse=r(!1),o.thatReturnsTrue=r(!0),o.thatReturnsNull=r(null),o.thatReturnsThis=function(){return this},o.thatReturnsArgument=function(e){return e},e.exports=o},function(e,t,n){"use strict";Object.defineProperty(t,"__esModule",{value:!0});var r=i(n(25));t.isOAS3=a,t.isSwagger2=function(e){var t=e.get("swagger");if("string"!=typeof t)return!1;return t.startsWith("2.0")},t.OAS3ComponentWrapFactory=function(e){return function(t,n){return function(i){if(n&&n.specSelectors&&n.specSelectors.specJson){var u=n.specSelectors.specJson();return a(u)?o.default.createElement(e,(0,r.default)({},i,n,{Ori:t})):o.default.createElement(t,i)}return console.warn("OAS3 wrapper: couldn't get spec"),null}}};var o=i(n(0));function i(e){return e&&e.__esModule?e:{default:e}}function a(e){var t=e.get("openapi");return"string"==typeof t&&(t.startsWith("3.0.")&&t.length>4)}},function(e,t,n){var r=n(28);e.exports=function(e){if(!r(e))throw TypeError(e+" is not an object!");return e}},function(e,t,n){var r=n(278),o="object"==typeof self&&self&&self.Object===Object&&self,i=r||o||Function("return this")();e.exports=i},function(e,t){e.exports=function(e){var t=typeof e;return null!=e&&("object"==t||"function"==t)}},function(e,t,n){"use strict";var r=null;e.exports={debugTool:r}},function(e,t,n){var r=n(36),o=n(238),i=n(157),a=Object.defineProperty;t.f=n(44)?Object.defineProperty:function(e,t,n){if(r(e),t=i(t,!0),r(n),o)try{return a(e,t,n)}catch(e){}if("get"in n||"set"in n)throw TypeError("Accessors not supported!");return"value"in n&&(e[t]=n.value),e}},function(e,t,n){e.exports={default:n(517),__esModule:!0}},function(e,t,n){e.exports={default:n(518),__esModule:!0}},function(e,t,n){"use strict";var r=n(10),o=n(13),i=n(355),a=n(68),u=n(356),s=n(88),l=n(147),c=n(8),f=[],p=0,d=i.getPooled(),h=!1,v=null;function m(){E.ReactReconcileTransaction&&v||r("123")}var y=[{initialize:function(){this.dirtyComponentsLength=f.length},close:function(){this.dirtyComponentsLength!==f.length?(f.splice(0,this.dirtyComponentsLength),w()):f.length=0}},{initialize:function(){this.callbackQueue.reset()},close:function(){this.callbackQueue.notifyAll()}}];function g(){this.reinitializeTransaction(),this.dirtyComponentsLength=null,this.callbackQueue=i.getPooled(),this.reconcileTransaction=E.ReactReconcileTransaction.getPooled(!0)}function b(e,t){return e._mountOrder-t._mountOrder}function _(e){var t=e.dirtyComponentsLength;t!==f.length&&r("124",t,f.length),f.sort(b),p++;for(var n=0;n + * @license MIT + */ +var r=n(529),o=n(530),i=n(261);function a(){return s.TYPED_ARRAY_SUPPORT?2147483647:1073741823}function u(e,t){if(a()=a())throw new RangeError("Attempt to allocate Buffer larger than maximum size: 0x"+a().toString(16)+" bytes");return 0|e}function h(e,t){if(s.isBuffer(e))return e.length;if("undefined"!=typeof ArrayBuffer&&"function"==typeof ArrayBuffer.isView&&(ArrayBuffer.isView(e)||e instanceof ArrayBuffer))return e.byteLength;"string"!=typeof e&&(e=""+e);var n=e.length;if(0===n)return 0;for(var r=!1;;)switch(t){case"ascii":case"latin1":case"binary":return n;case"utf8":case"utf-8":case void 0:return F(e).length;case"ucs2":case"ucs-2":case"utf16le":case"utf-16le":return 2*n;case"hex":return n>>>1;case"base64":return z(e).length;default:if(r)return F(e).length;t=(""+t).toLowerCase(),r=!0}}function v(e,t,n){var r=e[t];e[t]=e[n],e[n]=r}function m(e,t,n,r,o){if(0===e.length)return-1;if("string"==typeof n?(r=n,n=0):n>2147483647?n=2147483647:n<-2147483648&&(n=-2147483648),n=+n,isNaN(n)&&(n=o?0:e.length-1),n<0&&(n=e.length+n),n>=e.length){if(o)return-1;n=e.length-1}else if(n<0){if(!o)return-1;n=0}if("string"==typeof t&&(t=s.from(t,r)),s.isBuffer(t))return 0===t.length?-1:y(e,t,n,r,o);if("number"==typeof t)return t&=255,s.TYPED_ARRAY_SUPPORT&&"function"==typeof Uint8Array.prototype.indexOf?o?Uint8Array.prototype.indexOf.call(e,t,n):Uint8Array.prototype.lastIndexOf.call(e,t,n):y(e,[t],n,r,o);throw new TypeError("val must be string, number or Buffer")}function y(e,t,n,r,o){var i,a=1,u=e.length,s=t.length;if(void 0!==r&&("ucs2"===(r=String(r).toLowerCase())||"ucs-2"===r||"utf16le"===r||"utf-16le"===r)){if(e.length<2||t.length<2)return-1;a=2,u/=2,s/=2,n/=2}function l(e,t){return 1===a?e[t]:e.readUInt16BE(t*a)}if(o){var c=-1;for(i=n;iu&&(n=u-s),i=n;i>=0;i--){for(var f=!0,p=0;po&&(r=o):r=o;var i=t.length;if(i%2!=0)throw new TypeError("Invalid hex string");r>i/2&&(r=i/2);for(var a=0;a>8,o=n%256,i.push(o),i.push(r);return i}(t,e.length-n),e,n,r)}function S(e,t,n){return 0===t&&n===e.length?r.fromByteArray(e):r.fromByteArray(e.slice(t,n))}function C(e,t,n){n=Math.min(e.length,n);for(var r=[],o=t;o239?4:l>223?3:l>191?2:1;if(o+f<=n)switch(f){case 1:l<128&&(c=l);break;case 2:128==(192&(i=e[o+1]))&&(s=(31&l)<<6|63&i)>127&&(c=s);break;case 3:i=e[o+1],a=e[o+2],128==(192&i)&&128==(192&a)&&(s=(15&l)<<12|(63&i)<<6|63&a)>2047&&(s<55296||s>57343)&&(c=s);break;case 4:i=e[o+1],a=e[o+2],u=e[o+3],128==(192&i)&&128==(192&a)&&128==(192&u)&&(s=(15&l)<<18|(63&i)<<12|(63&a)<<6|63&u)>65535&&s<1114112&&(c=s)}null===c?(c=65533,f=1):c>65535&&(c-=65536,r.push(c>>>10&1023|55296),c=56320|1023&c),r.push(c),o+=f}return function(e){var t=e.length;if(t<=k)return String.fromCharCode.apply(String,e);var n="",r=0;for(;rthis.length)return"";if((void 0===n||n>this.length)&&(n=this.length),n<=0)return"";if((n>>>=0)<=(t>>>=0))return"";for(e||(e="utf8");;)switch(e){case"hex":return P(this,t,n);case"utf8":case"utf-8":return C(this,t,n);case"ascii":return A(this,t,n);case"latin1":case"binary":return O(this,t,n);case"base64":return S(this,t,n);case"ucs2":case"ucs-2":case"utf16le":case"utf-16le":return T(this,t,n);default:if(r)throw new TypeError("Unknown encoding: "+e);e=(e+"").toLowerCase(),r=!0}}.apply(this,arguments)},s.prototype.equals=function(e){if(!s.isBuffer(e))throw new TypeError("Argument must be a Buffer");return this===e||0===s.compare(this,e)},s.prototype.inspect=function(){var e="",n=t.INSPECT_MAX_BYTES;return this.length>0&&(e=this.toString("hex",0,n).match(/.{2}/g).join(" "),this.length>n&&(e+=" ... ")),""},s.prototype.compare=function(e,t,n,r,o){if(!s.isBuffer(e))throw new TypeError("Argument must be a Buffer");if(void 0===t&&(t=0),void 0===n&&(n=e?e.length:0),void 0===r&&(r=0),void 0===o&&(o=this.length),t<0||n>e.length||r<0||o>this.length)throw new RangeError("out of range index");if(r>=o&&t>=n)return 0;if(r>=o)return-1;if(t>=n)return 1;if(t>>>=0,n>>>=0,r>>>=0,o>>>=0,this===e)return 0;for(var i=o-r,a=n-t,u=Math.min(i,a),l=this.slice(r,o),c=e.slice(t,n),f=0;fo)&&(n=o),e.length>0&&(n<0||t<0)||t>this.length)throw new RangeError("Attempt to write outside buffer bounds");r||(r="utf8");for(var i=!1;;)switch(r){case"hex":return g(this,e,t,n);case"utf8":case"utf-8":return b(this,e,t,n);case"ascii":return _(this,e,t,n);case"latin1":case"binary":return w(this,e,t,n);case"base64":return E(this,e,t,n);case"ucs2":case"ucs-2":case"utf16le":case"utf-16le":return x(this,e,t,n);default:if(i)throw new TypeError("Unknown encoding: "+r);r=(""+r).toLowerCase(),i=!0}},s.prototype.toJSON=function(){return{type:"Buffer",data:Array.prototype.slice.call(this._arr||this,0)}};var k=4096;function A(e,t,n){var r="";n=Math.min(e.length,n);for(var o=t;or)&&(n=r);for(var o="",i=t;in)throw new RangeError("Trying to access beyond buffer length")}function I(e,t,n,r,o,i){if(!s.isBuffer(e))throw new TypeError('"buffer" argument must be a Buffer instance');if(t>o||te.length)throw new RangeError("Index out of range")}function j(e,t,n,r){t<0&&(t=65535+t+1);for(var o=0,i=Math.min(e.length-n,2);o>>8*(r?o:1-o)}function N(e,t,n,r){t<0&&(t=4294967295+t+1);for(var o=0,i=Math.min(e.length-n,4);o>>8*(r?o:3-o)&255}function R(e,t,n,r,o,i){if(n+r>e.length)throw new RangeError("Index out of range");if(n<0)throw new RangeError("Index out of range")}function D(e,t,n,r,i){return i||R(e,0,n,4),o.write(e,t,n,r,23,4),n+4}function L(e,t,n,r,i){return i||R(e,0,n,8),o.write(e,t,n,r,52,8),n+8}s.prototype.slice=function(e,t){var n,r=this.length;if(e=~~e,t=void 0===t?r:~~t,e<0?(e+=r)<0&&(e=0):e>r&&(e=r),t<0?(t+=r)<0&&(t=0):t>r&&(t=r),t0&&(o*=256);)r+=this[e+--t]*o;return r},s.prototype.readUInt8=function(e,t){return t||M(e,1,this.length),this[e]},s.prototype.readUInt16LE=function(e,t){return t||M(e,2,this.length),this[e]|this[e+1]<<8},s.prototype.readUInt16BE=function(e,t){return t||M(e,2,this.length),this[e]<<8|this[e+1]},s.prototype.readUInt32LE=function(e,t){return t||M(e,4,this.length),(this[e]|this[e+1]<<8|this[e+2]<<16)+16777216*this[e+3]},s.prototype.readUInt32BE=function(e,t){return t||M(e,4,this.length),16777216*this[e]+(this[e+1]<<16|this[e+2]<<8|this[e+3])},s.prototype.readIntLE=function(e,t,n){e|=0,t|=0,n||M(e,t,this.length);for(var r=this[e],o=1,i=0;++i=(o*=128)&&(r-=Math.pow(2,8*t)),r},s.prototype.readIntBE=function(e,t,n){e|=0,t|=0,n||M(e,t,this.length);for(var r=t,o=1,i=this[e+--r];r>0&&(o*=256);)i+=this[e+--r]*o;return i>=(o*=128)&&(i-=Math.pow(2,8*t)),i},s.prototype.readInt8=function(e,t){return t||M(e,1,this.length),128&this[e]?-1*(255-this[e]+1):this[e]},s.prototype.readInt16LE=function(e,t){t||M(e,2,this.length);var n=this[e]|this[e+1]<<8;return 32768&n?4294901760|n:n},s.prototype.readInt16BE=function(e,t){t||M(e,2,this.length);var n=this[e+1]|this[e]<<8;return 32768&n?4294901760|n:n},s.prototype.readInt32LE=function(e,t){return t||M(e,4,this.length),this[e]|this[e+1]<<8|this[e+2]<<16|this[e+3]<<24},s.prototype.readInt32BE=function(e,t){return t||M(e,4,this.length),this[e]<<24|this[e+1]<<16|this[e+2]<<8|this[e+3]},s.prototype.readFloatLE=function(e,t){return t||M(e,4,this.length),o.read(this,e,!0,23,4)},s.prototype.readFloatBE=function(e,t){return t||M(e,4,this.length),o.read(this,e,!1,23,4)},s.prototype.readDoubleLE=function(e,t){return t||M(e,8,this.length),o.read(this,e,!0,52,8)},s.prototype.readDoubleBE=function(e,t){return t||M(e,8,this.length),o.read(this,e,!1,52,8)},s.prototype.writeUIntLE=function(e,t,n,r){(e=+e,t|=0,n|=0,r)||I(this,e,t,n,Math.pow(2,8*n)-1,0);var o=1,i=0;for(this[t]=255&e;++i=0&&(i*=256);)this[t+o]=e/i&255;return t+n},s.prototype.writeUInt8=function(e,t,n){return e=+e,t|=0,n||I(this,e,t,1,255,0),s.TYPED_ARRAY_SUPPORT||(e=Math.floor(e)),this[t]=255&e,t+1},s.prototype.writeUInt16LE=function(e,t,n){return e=+e,t|=0,n||I(this,e,t,2,65535,0),s.TYPED_ARRAY_SUPPORT?(this[t]=255&e,this[t+1]=e>>>8):j(this,e,t,!0),t+2},s.prototype.writeUInt16BE=function(e,t,n){return e=+e,t|=0,n||I(this,e,t,2,65535,0),s.TYPED_ARRAY_SUPPORT?(this[t]=e>>>8,this[t+1]=255&e):j(this,e,t,!1),t+2},s.prototype.writeUInt32LE=function(e,t,n){return e=+e,t|=0,n||I(this,e,t,4,4294967295,0),s.TYPED_ARRAY_SUPPORT?(this[t+3]=e>>>24,this[t+2]=e>>>16,this[t+1]=e>>>8,this[t]=255&e):N(this,e,t,!0),t+4},s.prototype.writeUInt32BE=function(e,t,n){return e=+e,t|=0,n||I(this,e,t,4,4294967295,0),s.TYPED_ARRAY_SUPPORT?(this[t]=e>>>24,this[t+1]=e>>>16,this[t+2]=e>>>8,this[t+3]=255&e):N(this,e,t,!1),t+4},s.prototype.writeIntLE=function(e,t,n,r){if(e=+e,t|=0,!r){var o=Math.pow(2,8*n-1);I(this,e,t,n,o-1,-o)}var i=0,a=1,u=0;for(this[t]=255&e;++i>0)-u&255;return t+n},s.prototype.writeIntBE=function(e,t,n,r){if(e=+e,t|=0,!r){var o=Math.pow(2,8*n-1);I(this,e,t,n,o-1,-o)}var i=n-1,a=1,u=0;for(this[t+i]=255&e;--i>=0&&(a*=256);)e<0&&0===u&&0!==this[t+i+1]&&(u=1),this[t+i]=(e/a>>0)-u&255;return t+n},s.prototype.writeInt8=function(e,t,n){return e=+e,t|=0,n||I(this,e,t,1,127,-128),s.TYPED_ARRAY_SUPPORT||(e=Math.floor(e)),e<0&&(e=255+e+1),this[t]=255&e,t+1},s.prototype.writeInt16LE=function(e,t,n){return e=+e,t|=0,n||I(this,e,t,2,32767,-32768),s.TYPED_ARRAY_SUPPORT?(this[t]=255&e,this[t+1]=e>>>8):j(this,e,t,!0),t+2},s.prototype.writeInt16BE=function(e,t,n){return e=+e,t|=0,n||I(this,e,t,2,32767,-32768),s.TYPED_ARRAY_SUPPORT?(this[t]=e>>>8,this[t+1]=255&e):j(this,e,t,!1),t+2},s.prototype.writeInt32LE=function(e,t,n){return e=+e,t|=0,n||I(this,e,t,4,2147483647,-2147483648),s.TYPED_ARRAY_SUPPORT?(this[t]=255&e,this[t+1]=e>>>8,this[t+2]=e>>>16,this[t+3]=e>>>24):N(this,e,t,!0),t+4},s.prototype.writeInt32BE=function(e,t,n){return e=+e,t|=0,n||I(this,e,t,4,2147483647,-2147483648),e<0&&(e=4294967295+e+1),s.TYPED_ARRAY_SUPPORT?(this[t]=e>>>24,this[t+1]=e>>>16,this[t+2]=e>>>8,this[t+3]=255&e):N(this,e,t,!1),t+4},s.prototype.writeFloatLE=function(e,t,n){return D(this,e,t,!0,n)},s.prototype.writeFloatBE=function(e,t,n){return D(this,e,t,!1,n)},s.prototype.writeDoubleLE=function(e,t,n){return L(this,e,t,!0,n)},s.prototype.writeDoubleBE=function(e,t,n){return L(this,e,t,!1,n)},s.prototype.copy=function(e,t,n,r){if(n||(n=0),r||0===r||(r=this.length),t>=e.length&&(t=e.length),t||(t=0),r>0&&r=this.length)throw new RangeError("sourceStart out of bounds");if(r<0)throw new RangeError("sourceEnd out of bounds");r>this.length&&(r=this.length),e.length-t=0;--o)e[o+t]=this[o+n];else if(i<1e3||!s.TYPED_ARRAY_SUPPORT)for(o=0;o>>=0,n=void 0===n?this.length:n>>>0,e||(e=0),"number"==typeof e)for(i=t;i55295&&n<57344){if(!o){if(n>56319){(t-=3)>-1&&i.push(239,191,189);continue}if(a+1===r){(t-=3)>-1&&i.push(239,191,189);continue}o=n;continue}if(n<56320){(t-=3)>-1&&i.push(239,191,189),o=n;continue}n=65536+(o-55296<<10|n-56320)}else o&&(t-=3)>-1&&i.push(239,191,189);if(o=null,n<128){if((t-=1)<0)break;i.push(n)}else if(n<2048){if((t-=2)<0)break;i.push(n>>6|192,63&n|128)}else if(n<65536){if((t-=3)<0)break;i.push(n>>12|224,n>>6&63|128,63&n|128)}else{if(!(n<1114112))throw new Error("Invalid code point");if((t-=4)<0)break;i.push(n>>18|240,n>>12&63|128,n>>6&63|128,63&n|128)}}return i}function z(e){return r.toByteArray(function(e){if((e=function(e){return e.trim?e.trim():e.replace(/^\s+|\s+$/g,"")}(e).replace(U,"")).length<2)return"";for(;e.length%4!=0;)e+="=";return e}(e))}function B(e,t,n,r){for(var o=0;o=t.length||o>=e.length);++o)t[o+n]=e[o];return o}}).call(t,n(31))},function(e,t){var n,r,o=e.exports={};function i(){throw new Error("setTimeout has not been defined")}function a(){throw new Error("clearTimeout has not been defined")}function u(e){if(n===setTimeout)return setTimeout(e,0);if((n===i||!n)&&setTimeout)return n=setTimeout,setTimeout(e,0);try{return n(e,0)}catch(t){try{return n.call(null,e,0)}catch(t){return n.call(this,e,0)}}}!function(){try{n="function"==typeof setTimeout?setTimeout:i}catch(e){n=i}try{r="function"==typeof clearTimeout?clearTimeout:a}catch(e){r=a}}();var s,l=[],c=!1,f=-1;function p(){c&&s&&(c=!1,s.length?l=s.concat(l):f=-1,l.length&&d())}function d(){if(!c){var e=u(p);c=!0;for(var t=l.length;t;){for(s=l,l=[];++f1)for(var n=1;n1?t-1:0),r=1;r2?n-2:0),o=2;o1){for(var h=Array(d),v=0;v1){for(var y=Array(m),g=0;g=0||Object.prototype.hasOwnProperty.call(e,r)&&(n[r]=e[r]);return n}},function(e,t,n){"use strict";function r(e){return void 0===e||null===e}e.exports.isNothing=r,e.exports.isObject=function(e){return"object"==typeof e&&null!==e},e.exports.toArray=function(e){return Array.isArray(e)?e:r(e)?[]:[e]},e.exports.repeat=function(e,t){var n,r="";for(n=0;n=t.length?{value:void 0,done:!0}:(e=r(t,n),this._i+=e.length,{value:e,done:!1})})},function(e,t){var n={}.toString;e.exports=function(e){return n.call(e).slice(8,-1)}},function(e,t,n){e.exports=!n(101)(function(){return 7!=Object.defineProperty({},"a",{get:function(){return 7}}).a})},function(e,t){e.exports=function(e){try{return!!e()}catch(e){return!0}}},function(e,t){e.exports={}},function(e,t,n){var r=n(119),o=Math.min;e.exports=function(e){return e>0?o(r(e),9007199254740991):0}},function(e,t,n){"use strict";e.exports=function(e){for(var t=arguments.length-1,n="Minified React error #"+e+"; visit http://facebook.github.io/react/docs/error-decoder.html?invariant="+e,r=0;r0?o(r(e),9007199254740991):0}},function(e,t){var n=0,r=Math.random();e.exports=function(e){return"Symbol(".concat(void 0===e?"":e,")_",(++n+r).toString(36))}},function(e,t,n){var r=n(59),o=n(460),i=n(461),a=Object.defineProperty;t.f=n(100)?Object.defineProperty:function(e,t,n){if(r(e),t=i(t,!0),r(n),o)try{return a(e,t,n)}catch(e){}if("get"in n||"set"in n)throw TypeError("Accessors not supported!");return"value"in n&&(e[t]=n.value),e}},function(e,t){var n={}.hasOwnProperty;e.exports=function(e,t){return n.call(e,t)}},function(e,t){var n=Math.ceil,r=Math.floor;e.exports=function(e){return isNaN(e=+e)?0:(e>0?r:n)(e)}},function(e,t,n){var r=n(121);e.exports=function(e,t,n){if(r(e),void 0===t)return e;switch(n){case 1:return function(n){return e.call(t,n)};case 2:return function(n,r){return e.call(t,n,r)};case 3:return function(n,r,o){return e.call(t,n,r,o)}}return function(){return e.apply(t,arguments)}}},function(e,t){e.exports=function(e){if("function"!=typeof e)throw TypeError(e+" is not a function!");return e}},function(e,t,n){var r=n(466),o=n(53);e.exports=function(e){return r(o(e))}},function(e,t,n){"use strict";var r=n(58),o=n(72),i=n(101),a=n(53),u=n(17);e.exports=function(e,t,n){var s=u(e),l=n(a,s,""[e]),c=l[0],f=l[1];i(function(){var t={};return t[s]=function(){return 7},7!=""[e](t)})&&(o(String.prototype,e,c),r(RegExp.prototype,s,2==t?function(e,t){return f.call(e,this,t)}:function(e){return f.call(e,this)}))}},function(e,t,n){var r=n(116)("meta"),o=n(28),i=n(52),a=n(40).f,u=0,s=Object.isExtensible||function(){return!0},l=!n(51)(function(){return s(Object.preventExtensions({}))}),c=function(e){a(e,r,{value:{i:"O"+ ++u,w:{}}})},f=e.exports={KEY:r,NEED:!1,fastKey:function(e,t){if(!o(e))return"symbol"==typeof e?e:("string"==typeof e?"S":"P")+e;if(!i(e,r)){if(!s(e))return"F";if(!t)return"E";c(e)}return e[r].i},getWeak:function(e,t){if(!i(e,r)){if(!s(e))return!0;if(!t)return!1;c(e)}return e[r].w},onFreeze:function(e){return l&&f.NEED&&s(e)&&!i(e,r)&&c(e),e}}},function(e,t){t.f={}.propertyIsEnumerable},function(e,t,n){"use strict";var r={};e.exports=r},function(e,t,n){"use strict";Object.defineProperty(t,"__esModule",{value:!0}),t.CLEAR_BY=t.CLEAR=t.NEW_AUTH_ERR=t.NEW_SPEC_ERR_BATCH=t.NEW_SPEC_ERR=t.NEW_THROWN_ERR_BATCH=t.NEW_THROWN_ERR=void 0,t.newThrownErr=function(e){return{type:a,payload:(0,i.default)(e)}},t.newThrownErrBatch=function(e){return{type:u,payload:e}},t.newSpecErr=function(e){return{type:s,payload:e}},t.newSpecErrBatch=function(e){return{type:l,payload:e}},t.newAuthErr=function(e){return{type:c,payload:e}},t.clear=function(){var e=arguments.length>0&&void 0!==arguments[0]?arguments[0]:{};return{type:f,payload:e}},t.clearBy=function(){var e=arguments.length>0&&void 0!==arguments[0]?arguments[0]:function(){return!0};return{type:p,payload:e}};var r,o=n(179),i=(r=o)&&r.__esModule?r:{default:r};var a=t.NEW_THROWN_ERR="err_new_thrown_err",u=t.NEW_THROWN_ERR_BATCH="err_new_thrown_err_batch",s=t.NEW_SPEC_ERR="err_new_spec_err",l=t.NEW_SPEC_ERR_BATCH="err_new_spec_err_batch",c=t.NEW_AUTH_ERR="err_new_auth_err",f=t.CLEAR="err_clear",p=t.CLEAR_BY="err_clear_by"},function(e,t,n){var r=n(61),o=n(47),i="[object Symbol]";e.exports=function(e){return"symbol"==typeof e||o(e)&&r(e)==i}},function(e,t,n){var r=n(62)(Object,"create");e.exports=r},function(e,t,n){var r=n(600),o=n(601),i=n(602),a=n(603),u=n(604);function s(e){var t=-1,n=null==e?0:e.length;for(this.clear();++t-1&&e%1==0&&eb;b++)if((m=t?g(a(h=e[b])[0],h[1]):g(e[b]))===l||m===c)return m}else for(v=y.call(e);!(h=v.next()).done;)if((m=o(v,g,h.value,t))===l||m===c)return m}).BREAK=l,t.RETURN=c},function(e,t,n){"use strict";var r=n(86);e.exports=r.DEFAULT=new r({include:[n(108)],explicit:[n(757),n(758),n(759)]})},function(e,t,n){var r=n(345),o=n(105),i=Object.prototype.hasOwnProperty;e.exports=function(e,t,n){var a=e[t];i.call(e,t)&&o(a,n)&&(void 0!==n||t in e)||r(e,t,n)}},function(e,t,n){"use strict";var r=n(10),o=(n(8),{}),i={reinitializeTransaction:function(){this.transactionWrappers=this.getTransactionWrappers(),this.wrapperInitData?this.wrapperInitData.length=0:this.wrapperInitData=[],this._isInTransaction=!1},_isInTransaction:!1,getTransactionWrappers:null,isInTransaction:function(){return!!this._isInTransaction},perform:function(e,t,n,o,i,a,u,s){var l,c;this.isInTransaction()&&r("27");try{this._isInTransaction=!0,l=!0,this.initializeAll(0),c=e.call(t,n,o,i,a,u,s),l=!1}finally{try{if(l)try{this.closeAll(0)}catch(e){}else this.closeAll(0)}finally{this._isInTransaction=!1}}return c},initializeAll:function(e){for(var t=this.transactionWrappers,n=e;n]/,s=n(218)(function(e,t){if(e.namespaceURI!==i.svg||"innerHTML"in e)e.innerHTML=t;else{(r=r||document.createElement("div")).innerHTML=""+t+"";for(var n=r.firstChild;n.firstChild;)e.appendChild(n.firstChild)}});if(o.canUseDOM){var l=document.createElement("div");l.innerHTML=" ",""===l.innerHTML&&(s=function(e,t){if(e.parentNode&&e.parentNode.replaceChild(e,e),a.test(t)||"<"===t[0]&&u.test(t)){e.innerHTML=String.fromCharCode(65279)+t;var n=e.firstChild;1===n.data.length?e.removeChild(n):n.deleteData(0,1)}else e.innerHTML=t}),l=null}e.exports=s},function(e,t,n){"use strict";var r=/["'&<>]/;e.exports=function(e){return"boolean"==typeof e||"number"==typeof e?""+e:function(e){var t,n=""+e,o=r.exec(n);if(!o)return n;var i="",a=0,u=0;for(a=o.index;adocument.F=Object<\/script>"),e.close(),s=e.F;r--;)delete s.prototype[i[r]];return s()};e.exports=Object.create||function(e,t){var n;return null!==e?(u.prototype=r(e),n=new u,u.prototype=null,n[a]=e):n=s(),void 0===t?n:o(n,t)}},function(e,t){var n=Math.ceil,r=Math.floor;e.exports=function(e){return isNaN(e=+e)?0:(e>0?r:n)(e)}},function(e,t,n){var r=n(162)("keys"),o=n(116);e.exports=function(e){return r[e]||(r[e]=o(e))}},function(e,t,n){var r=n(21),o=r["__core-js_shared__"]||(r["__core-js_shared__"]={});e.exports=function(e){return o[e]||(o[e]={})}},function(e,t){e.exports="constructor,hasOwnProperty,isPrototypeOf,propertyIsEnumerable,toLocaleString,toString,valueOf".split(",")},function(e,t,n){var r=n(165),o=n(19)("iterator"),i=n(69);e.exports=n(15).getIteratorMethod=function(e){if(void 0!=e)return e[o]||e["@@iterator"]||i[r(e)]}},function(e,t,n){var r=n(93),o=n(19)("toStringTag"),i="Arguments"==r(function(){return arguments}());e.exports=function(e){var t,n,a;return void 0===e?"Undefined":null===e?"Null":"string"==typeof(n=function(e,t){try{return e[t]}catch(e){}}(t=Object(e),o))?n:i?r(t):"Object"==(a=r(t))&&"function"==typeof t.callee?"Arguments":a}},function(e,t,n){var r=n(99),o=n(17)("toStringTag"),i="Arguments"==r(function(){return arguments}());e.exports=function(e){var t,n,a;return void 0===e?"Undefined":null===e?"Null":"string"==typeof(n=function(e,t){try{return e[t]}catch(e){}}(t=Object(e),o))?n:i?r(t):"Object"==(a=r(t))&&"function"==typeof t.callee?"Arguments":a}},function(e,t){var n=0,r=Math.random();e.exports=function(e){return"Symbol(".concat(void 0===e?"":e,")_",(++n+r).toString(36))}},function(e,t,n){var r=n(73),o=n(33).document,i=r(o)&&r(o.createElement);e.exports=function(e){return i?o.createElement(e):{}}},function(e,t,n){var r=n(242)("keys"),o=n(167);e.exports=function(e){return r[e]||(r[e]=o(e))}},function(e,t,n){var r=n(117).f,o=n(118),i=n(17)("toStringTag");e.exports=function(e,t,n){e&&!o(e=n?e:e.prototype,i)&&r(e,i,{configurable:!0,value:t})}},function(e,t,n){"use strict";var r=n(121);e.exports.f=function(e){return new function(e){var t,n;this.promise=new e(function(e,r){if(void 0!==t||void 0!==n)throw TypeError("Bad Promise constructor");t=e,n=r}),this.resolve=r(t),this.reject=r(n)}(e)}},function(e,t,n){var r=n(256),o=n(53);e.exports=function(e,t,n){if(r(t))throw TypeError("String#"+n+" doesn't accept regex!");return String(o(e))}},function(e,t,n){var r=n(17)("match");e.exports=function(e){var t=/./;try{"/./"[e](t)}catch(n){try{return t[r]=!1,!"/./"[e](t)}catch(e){}}return!0}},function(e,t,n){t.f=n(19)},function(e,t,n){var r=n(21),o=n(15),i=n(114),a=n(174),u=n(40).f;e.exports=function(e){var t=o.Symbol||(o.Symbol=i?{}:r.Symbol||{});"_"==e.charAt(0)||e in t||u(t,e,{value:a.f(e)})}},function(e,t){t.f=Object.getOwnPropertySymbols},function(e,t){},function(e,t,n){"use strict";(function(t){ +/*! + * @description Recursive object extending + * @author Viacheslav Lotsmanov + * @license MIT + * + * The MIT License (MIT) + * + * Copyright (c) 2013-2018 Viacheslav Lotsmanov + * + * Permission is hereby granted, free of charge, to any person obtaining a copy of + * this software and associated documentation files (the "Software"), to deal in + * the Software without restriction, including without limitation the rights to + * use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of + * the Software, and to permit persons to whom the Software is furnished to do so, + * subject to the following conditions: + * + * The above copyright notice and this permission notice shall be included in all + * copies or substantial portions of the Software. + * + * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR + * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS + * FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR + * COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER + * IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN + * CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. + */ +function n(e){return e instanceof t||e instanceof Date||e instanceof RegExp}function r(e){if(e instanceof t){var n=t.alloc?t.alloc(e.length):new t(e.length);return e.copy(n),n}if(e instanceof Date)return new Date(e.getTime());if(e instanceof RegExp)return new RegExp(e);throw new Error("Unexpected situation")}function o(e,t){return"__proto__"===t?void 0:e[t]}var i=e.exports=function(){if(arguments.length<1||"object"!=typeof arguments[0])return!1;if(arguments.length<2)return arguments[0];var e,t,a=arguments[0];return Array.prototype.slice.call(arguments,1).forEach(function(u){"object"!=typeof u||null===u||Array.isArray(u)||Object.keys(u).forEach(function(s){return t=o(a,s),(e=o(u,s))===a?void 0:"object"!=typeof e||null===e?void(a[s]=e):Array.isArray(e)?void(a[s]=function e(t){var o=[];return t.forEach(function(t,a){"object"==typeof t&&null!==t?Array.isArray(t)?o[a]=e(t):n(t)?o[a]=r(t):o[a]=i({},t):o[a]=t}),o}(e)):n(e)?void(a[s]=r(e)):"object"!=typeof t||null===t||Array.isArray(t)?void(a[s]=i({},e)):void(a[s]=i(t,e))})}),a}}).call(t,n(54).Buffer)},function(e,t,n){"use strict";e.exports=function(e){return"object"==typeof e?function e(t,n){var r;r=Array.isArray(t)?[]:{};n.push(t);Object.keys(t).forEach(function(o){var i=t[o];"function"!=typeof i&&(i&&"object"==typeof i?-1!==n.indexOf(t[o])?r[o]="[Circular]":r[o]=e(t[o],n.slice(0)):r[o]=i)});"string"==typeof t.name&&(r.name=t.name);"string"==typeof t.message&&(r.message=t.message);"string"==typeof t.stack&&(r.stack=t.stack);return r}(e,[]):"function"==typeof e?"[Function: "+(e.name||"anonymous")+"]":e}},function(e,t,n){var r=n(589),o=n(605),i=n(607),a=n(608),u=n(609);function s(e){var t=-1,n=null==e?0:e.length;for(this.clear();++t-1&&e%1==0&&e<=n}},function(e,t){e.exports=function(e){return function(t){return e(t)}}},function(e,t,n){(function(e){var r=n(278),o="object"==typeof t&&t&&!t.nodeType&&t,i=o&&"object"==typeof e&&e&&!e.nodeType&&e,a=i&&i.exports===o&&r.process,u=function(){try{var e=i&&i.require&&i.require("util").types;return e||a&&a.binding&&a.binding("util")}catch(e){}}();e.exports=u}).call(t,n(134)(e))},function(e,t,n){var r=n(24),o=n(128),i=/\.|\[(?:[^[\]]*|(["'])(?:(?!\1)[^\\]|\\.)*?\1)\]/,a=/^\w*$/;e.exports=function(e,t){if(r(e))return!1;var n=typeof e;return!("number"!=n&&"symbol"!=n&&"boolean"!=n&&null!=e&&!o(e))||a.test(e)||!i.test(e)||null!=t&&e in Object(t)}},function(e,t){e.exports=function(e){return e}},function(e,t,n){"use strict";Object.defineProperty(t,"__esModule",{value:!0}),t.memoizedSampleFromSchema=t.memoizedCreateXMLExample=t.sampleXmlFromSchema=t.inferSchema=t.sampleFromSchema=void 0,t.createXMLExample=f;var r=n(12),o=a(n(656)),i=a(n(669));function a(e){return e&&e.__esModule?e:{default:e}}var u={string:function(){return"string"},string_email:function(){return"user@example.com"},"string_date-time":function(){return(new Date).toISOString()},number:function(){return 0},number_float:function(){return 0},integer:function(){return 0},boolean:function(e){return"boolean"!=typeof e.default||e.default}},s=function(e){var t=e=(0,r.objectify)(e),n=t.type,o=t.format,i=u[n+"_"+o]||u[n];return(0,r.isFunc)(i)?i(e):"Unknown Type: "+e.type},l=t.sampleFromSchema=function e(t){var n=arguments.length>1&&void 0!==arguments[1]?arguments[1]:{},o=(0,r.objectify)(t),i=o.type,a=o.example,u=o.properties,l=o.additionalProperties,c=o.items,f=n.includeReadOnly,p=n.includeWriteOnly;if(void 0!==a)return(0,r.deeplyStripKey)(a,"$$ref",function(e){return"string"==typeof e&&e.indexOf("#")>-1});if(!i)if(u)i="object";else{if(!c)return;i="array"}if("object"===i){var d=(0,r.objectify)(u),h={};for(var v in d)d[v]&&d[v].readOnly&&!f||d[v]&&d[v].writeOnly&&!p||(h[v]=e(d[v],n));if(!0===l)h.additionalProp1={};else if(l)for(var m=(0,r.objectify)(l),y=e(m,n),g=1;g<4;g++)h["additionalProp"+g]=y;return h}return"array"===i?Array.isArray(c.anyOf)?c.anyOf.map(function(t){return e(t,n)}):Array.isArray(c.oneOf)?c.oneOf.map(function(t){return e(t,n)}):[e(c,n)]:t.enum?t.default?t.default:(0,r.normalizeArray)(t.enum)[0]:"file"!==i?s(t):void 0},c=(t.inferSchema=function(e){return e.schema&&(e=e.schema),e.properties&&(e.type="object"),e},t.sampleXmlFromSchema=function e(t){var n,o=arguments.length>1&&void 0!==arguments[1]?arguments[1]:{},i=(0,r.objectify)(t),a=i.type,u=i.properties,l=i.additionalProperties,c=i.items,f=i.example,p=o.includeReadOnly,d=o.includeWriteOnly,h=i.default,v={},m={},y=t.xml,g=y.name,b=y.prefix,_=y.namespace,w=i.enum,E=void 0;if(!a)if(u||l)a="object";else{if(!c)return;a="array"}(g=g||"notagname",n=(b?b+":":"")+g,_)&&(m[b?"xmlns:"+b:"xmlns"]=_);if("array"===a&&c){if(c.xml=c.xml||y||{},c.xml.name=c.xml.name||y.name,y.wrapped)return v[n]=[],Array.isArray(f)?f.forEach(function(t){c.example=t,v[n].push(e(c,o))}):Array.isArray(h)?h.forEach(function(t){c.default=t,v[n].push(e(c,o))}):v[n]=[e(c,o)],m&&v[n].push({_attr:m}),v;var x=[];return Array.isArray(f)?(f.forEach(function(t){c.example=t,x.push(e(c,o))}),x):Array.isArray(h)?(h.forEach(function(t){c.default=t,x.push(e(c,o))}),x):e(c,o)}if("object"===a){var S=(0,r.objectify)(u);for(var C in v[n]=[],f=f||{},S)if(S.hasOwnProperty(C)&&(!S[C].readOnly||p)&&(!S[C].writeOnly||d))if(S[C].xml=S[C].xml||{},S[C].xml.attribute){var k=Array.isArray(S[C].enum)&&S[C].enum[0],A=S[C].example,O=S[C].default;m[S[C].xml.name||C]=void 0!==A&&A||void 0!==f[C]&&f[C]||void 0!==O&&O||k||s(S[C])}else{S[C].xml.name=S[C].xml.name||C,void 0===S[C].example&&void 0!==f[C]&&(S[C].example=f[C]);var P=e(S[C]);Array.isArray(P)?v[n]=v[n].concat(P):v[n].push(P)}return!0===l?v[n].push({additionalProp:"Anything can be here"}):l&&v[n].push({additionalProp:s(l)}),m&&v[n].push({_attr:m}),v}return E=void 0!==f?f:void 0!==h?h:Array.isArray(w)?w[0]:s(t),v[n]=m?[{_attr:m},E]:E,v});function f(e,t){var n=c(e,t);if(n)return(0,o.default)(n,{declaration:!0,indent:"\t"})}t.memoizedCreateXMLExample=(0,i.default)(f),t.memoizedSampleFromSchema=(0,i.default)(l)},function(e,t){function n(){this._events=this._events||{},this._maxListeners=this._maxListeners||void 0}function r(e){return"function"==typeof e}function o(e){return"object"==typeof e&&null!==e}function i(e){return void 0===e}e.exports=n,n.EventEmitter=n,n.prototype._events=void 0,n.prototype._maxListeners=void 0,n.defaultMaxListeners=10,n.prototype.setMaxListeners=function(e){if("number"!=typeof e||e<0||isNaN(e))throw TypeError("n must be a positive number");return this._maxListeners=e,this},n.prototype.emit=function(e){var t,n,a,u,s,l;if(this._events||(this._events={}),"error"===e&&(!this._events.error||o(this._events.error)&&!this._events.error.length)){if((t=arguments[1])instanceof Error)throw t;var c=new Error('Uncaught, unspecified "error" event. ('+t+")");throw c.context=t,c}if(i(n=this._events[e]))return!1;if(r(n))switch(arguments.length){case 1:n.call(this);break;case 2:n.call(this,arguments[1]);break;case 3:n.call(this,arguments[1],arguments[2]);break;default:u=Array.prototype.slice.call(arguments,1),n.apply(this,u)}else if(o(n))for(u=Array.prototype.slice.call(arguments,1),a=(l=n.slice()).length,s=0;s0&&this._events[e].length>a&&(this._events[e].warned=!0,console.error("(node) warning: possible EventEmitter memory leak detected. %d listeners added. Use emitter.setMaxListeners() to increase limit.",this._events[e].length),"function"==typeof console.trace&&console.trace()),this},n.prototype.on=n.prototype.addListener,n.prototype.once=function(e,t){if(!r(t))throw TypeError("listener must be a function");var n=!1;function o(){this.removeListener(e,o),n||(n=!0,t.apply(this,arguments))}return o.listener=t,this.on(e,o),this},n.prototype.removeListener=function(e,t){var n,i,a,u;if(!r(t))throw TypeError("listener must be a function");if(!this._events||!this._events[e])return this;if(a=(n=this._events[e]).length,i=-1,n===t||r(n.listener)&&n.listener===t)delete this._events[e],this._events.removeListener&&this.emit("removeListener",e,t);else if(o(n)){for(u=a;u-- >0;)if(n[u]===t||n[u].listener&&n[u].listener===t){i=u;break}if(i<0)return this;1===n.length?(n.length=0,delete this._events[e]):n.splice(i,1),this._events.removeListener&&this.emit("removeListener",e,t)}return this},n.prototype.removeAllListeners=function(e){var t,n;if(!this._events)return this;if(!this._events.removeListener)return 0===arguments.length?this._events={}:this._events[e]&&delete this._events[e],this;if(0===arguments.length){for(t in this._events)"removeListener"!==t&&this.removeAllListeners(t);return this.removeAllListeners("removeListener"),this._events={},this}if(r(n=this._events[e]))this.removeListener(e,n);else if(n)for(;n.length;)this.removeListener(e,n[n.length-1]);return delete this._events[e],this},n.prototype.listeners=function(e){return this._events&&this._events[e]?r(this._events[e])?[this._events[e]]:this._events[e].slice():[]},n.prototype.listenerCount=function(e){if(this._events){var t=this._events[e];if(r(t))return 1;if(t)return t.length}return 0},n.listenerCount=function(e,t){return e.listenerCount(t)}},function(e,t,n){(t=e.exports=n(306)).Stream=t,t.Readable=t,t.Writable=n(195),t.Duplex=n(64),t.Transform=n(311),t.PassThrough=n(664)},function(e,t,n){"use strict";(function(t,r,o){var i=n(140);function a(e){var t=this;this.next=null,this.entry=null,this.finish=function(){!function(e,t,n){var r=e.entry;e.entry=null;for(;r;){var o=r.callback;t.pendingcb--,o(n),r=r.next}t.corkedRequestsFree?t.corkedRequestsFree.next=e:t.corkedRequestsFree=e}(t,e)}}e.exports=g;var u,s=!t.browser&&["v0.10","v0.9."].indexOf(t.version.slice(0,5))>-1?r:i.nextTick;g.WritableState=y;var l=n(106);l.inherits=n(81);var c={deprecate:n(663)},f=n(307),p=n(141).Buffer,d=o.Uint8Array||function(){};var h,v=n(308);function m(){}function y(e,t){u=u||n(64),e=e||{};var r=t instanceof u;this.objectMode=!!e.objectMode,r&&(this.objectMode=this.objectMode||!!e.writableObjectMode);var o=e.highWaterMark,l=e.writableHighWaterMark,c=this.objectMode?16:16384;this.highWaterMark=o||0===o?o:r&&(l||0===l)?l:c,this.highWaterMark=Math.floor(this.highWaterMark),this.finalCalled=!1,this.needDrain=!1,this.ending=!1,this.ended=!1,this.finished=!1,this.destroyed=!1;var f=!1===e.decodeStrings;this.decodeStrings=!f,this.defaultEncoding=e.defaultEncoding||"utf8",this.length=0,this.writing=!1,this.corked=0,this.sync=!0,this.bufferProcessing=!1,this.onwrite=function(e){!function(e,t){var n=e._writableState,r=n.sync,o=n.writecb;if(function(e){e.writing=!1,e.writecb=null,e.length-=e.writelen,e.writelen=0}(n),t)!function(e,t,n,r,o){--t.pendingcb,n?(i.nextTick(o,r),i.nextTick(S,e,t),e._writableState.errorEmitted=!0,e.emit("error",r)):(o(r),e._writableState.errorEmitted=!0,e.emit("error",r),S(e,t))}(e,n,r,t,o);else{var a=E(n);a||n.corked||n.bufferProcessing||!n.bufferedRequest||w(e,n),r?s(_,e,n,a,o):_(e,n,a,o)}}(t,e)},this.writecb=null,this.writelen=0,this.bufferedRequest=null,this.lastBufferedRequest=null,this.pendingcb=0,this.prefinished=!1,this.errorEmitted=!1,this.bufferedRequestCount=0,this.corkedRequestsFree=new a(this)}function g(e){if(u=u||n(64),!(h.call(g,this)||this instanceof u))return new g(e);this._writableState=new y(e,this),this.writable=!0,e&&("function"==typeof e.write&&(this._write=e.write),"function"==typeof e.writev&&(this._writev=e.writev),"function"==typeof e.destroy&&(this._destroy=e.destroy),"function"==typeof e.final&&(this._final=e.final)),f.call(this)}function b(e,t,n,r,o,i,a){t.writelen=r,t.writecb=a,t.writing=!0,t.sync=!0,n?e._writev(o,t.onwrite):e._write(o,i,t.onwrite),t.sync=!1}function _(e,t,n,r){n||function(e,t){0===t.length&&t.needDrain&&(t.needDrain=!1,e.emit("drain"))}(e,t),t.pendingcb--,r(),S(e,t)}function w(e,t){t.bufferProcessing=!0;var n=t.bufferedRequest;if(e._writev&&n&&n.next){var r=t.bufferedRequestCount,o=new Array(r),i=t.corkedRequestsFree;i.entry=n;for(var u=0,s=!0;n;)o[u]=n,n.isBuf||(s=!1),n=n.next,u+=1;o.allBuffers=s,b(e,t,!0,t.length,o,"",i.finish),t.pendingcb++,t.lastBufferedRequest=null,i.next?(t.corkedRequestsFree=i.next,i.next=null):t.corkedRequestsFree=new a(t),t.bufferedRequestCount=0}else{for(;n;){var l=n.chunk,c=n.encoding,f=n.callback;if(b(e,t,!1,t.objectMode?1:l.length,l,c,f),n=n.next,t.bufferedRequestCount--,t.writing)break}null===n&&(t.lastBufferedRequest=null)}t.bufferedRequest=n,t.bufferProcessing=!1}function E(e){return e.ending&&0===e.length&&null===e.bufferedRequest&&!e.finished&&!e.writing}function x(e,t){e._final(function(n){t.pendingcb--,n&&e.emit("error",n),t.prefinished=!0,e.emit("prefinish"),S(e,t)})}function S(e,t){var n=E(t);return n&&(!function(e,t){t.prefinished||t.finalCalled||("function"==typeof e._final?(t.pendingcb++,t.finalCalled=!0,i.nextTick(x,e,t)):(t.prefinished=!0,e.emit("prefinish")))}(e,t),0===t.pendingcb&&(t.finished=!0,e.emit("finish"))),n}l.inherits(g,f),y.prototype.getBuffer=function(){for(var e=this.bufferedRequest,t=[];e;)t.push(e),e=e.next;return t},function(){try{Object.defineProperty(y.prototype,"buffer",{get:c.deprecate(function(){return this.getBuffer()},"_writableState.buffer is deprecated. Use _writableState.getBuffer instead.","DEP0003")})}catch(e){}}(),"function"==typeof Symbol&&Symbol.hasInstance&&"function"==typeof Function.prototype[Symbol.hasInstance]?(h=Function.prototype[Symbol.hasInstance],Object.defineProperty(g,Symbol.hasInstance,{value:function(e){return!!h.call(this,e)||this===g&&(e&&e._writableState instanceof y)}})):h=function(e){return e instanceof this},g.prototype.pipe=function(){this.emit("error",new Error("Cannot pipe, not readable"))},g.prototype.write=function(e,t,n){var r,o=this._writableState,a=!1,u=!o.objectMode&&(r=e,p.isBuffer(r)||r instanceof d);return u&&!p.isBuffer(e)&&(e=function(e){return p.from(e)}(e)),"function"==typeof t&&(n=t,t=null),u?t="buffer":t||(t=o.defaultEncoding),"function"!=typeof n&&(n=m),o.ended?function(e,t){var n=new Error("write after end");e.emit("error",n),i.nextTick(t,n)}(this,n):(u||function(e,t,n,r){var o=!0,a=!1;return null===n?a=new TypeError("May not write null values to stream"):"string"==typeof n||void 0===n||t.objectMode||(a=new TypeError("Invalid non-string/buffer chunk")),a&&(e.emit("error",a),i.nextTick(r,a),o=!1),o}(this,o,e,n))&&(o.pendingcb++,a=function(e,t,n,r,o,i){if(!n){var a=function(e,t,n){e.objectMode||!1===e.decodeStrings||"string"!=typeof t||(t=p.from(t,n));return t}(t,r,o);r!==a&&(n=!0,o="buffer",r=a)}var u=t.objectMode?1:r.length;t.length+=u;var s=t.length-1))throw new TypeError("Unknown encoding: "+e);return this._writableState.defaultEncoding=e,this},Object.defineProperty(g.prototype,"writableHighWaterMark",{enumerable:!1,get:function(){return this._writableState.highWaterMark}}),g.prototype._write=function(e,t,n){n(new Error("_write() is not implemented"))},g.prototype._writev=null,g.prototype.end=function(e,t,n){var r=this._writableState;"function"==typeof e?(n=e,e=null,t=null):"function"==typeof t&&(n=t,t=null),null!==e&&void 0!==e&&this.write(e,t),r.corked&&(r.corked=1,this.uncork()),r.ending||r.finished||function(e,t,n){t.ending=!0,S(e,t),n&&(t.finished?i.nextTick(n):e.once("finish",n));t.ended=!0,e.writable=!1}(this,r,n)},Object.defineProperty(g.prototype,"destroyed",{get:function(){return void 0!==this._writableState&&this._writableState.destroyed},set:function(e){this._writableState&&(this._writableState.destroyed=e)}}),g.prototype.destroy=v.destroy,g.prototype._undestroy=v.undestroy,g.prototype._destroy=function(e,t){this.end(),t(e)}}).call(t,n(55),n(309).setImmediate,n(31))},function(e,t,n){"use strict";e.exports=function(e){return"function"==typeof e}},function(e,t,n){"use strict";e.exports=n(690)()?Array.from:n(691)},function(e,t,n){"use strict";var r=n(704),o=n(66),i=n(82),a=Array.prototype.indexOf,u=Object.prototype.hasOwnProperty,s=Math.abs,l=Math.floor;e.exports=function(e){var t,n,c,f;if(!r(e))return a.apply(this,arguments);for(n=o(i(this).length),c=arguments[1],t=c=isNaN(c)?0:c>=0?l(c):o(this.length)-l(s(c));t1&&void 0!==arguments[1])||arguments[1];return e=(0,r.normalizeArray)(e),{type:u,payload:{thing:e,shown:t}}},t.changeMode=function(e){var t=arguments.length>1&&void 0!==arguments[1]?arguments[1]:"";return e=(0,r.normalizeArray)(e),{type:a,payload:{thing:e,mode:t}}};var r=n(12),o=t.UPDATE_LAYOUT="layout_update_layout",i=t.UPDATE_FILTER="layout_update_filter",a=t.UPDATE_MODE="layout_update_mode",u=t.SHOW="layout_show"},function(e,t,n){"use strict";Object.defineProperty(t,"__esModule",{value:!0}),t.validateBeforeExecute=t.canExecuteScheme=t.operationScheme=t.hasHost=t.operationWithMeta=t.parameterWithMeta=t.parameterInclusionSettingFor=t.parameterWithMetaByIdentity=t.allowTryItOutFor=t.mutatedRequestFor=t.requestFor=t.responseFor=t.mutatedRequests=t.requests=t.responses=t.taggedOperations=t.operationsWithTags=t.tagDetails=t.tags=t.operationsWithRootInherited=t.schemes=t.host=t.basePath=t.definitions=t.findDefinition=t.securityDefinitions=t.security=t.produces=t.consumes=t.operations=t.paths=t.semver=t.version=t.externalDocs=t.info=t.isOAS3=t.spec=t.specJsonWithResolvedSubtrees=t.specResolvedSubtree=t.specResolved=t.specJson=t.specSource=t.specStr=t.url=t.lastError=void 0;var r,o=n(83),i=(r=o)&&r.__esModule?r:{default:r};t.getParameter=function(e,t,n,r){return t=t||[],e.getIn(["meta","paths"].concat((0,i.default)(t),["parameters"]),(0,s.fromJS)([])).find(function(e){return s.Map.isMap(e)&&e.get("name")===n&&e.get("in")===r})||(0,s.Map)()},t.parameterValues=function(e,t,n){return t=t||[],P.apply(void 0,[e].concat((0,i.default)(t))).get("parameters",(0,s.List)()).reduce(function(e,t){var r=n&&"body"===t.get("in")?t.get("value_xml"):t.get("value");return e.set(t.get("in")+"."+t.get("name"),r)},(0,s.fromJS)({}))},t.parametersIncludeIn=function(e){var t=arguments.length>1&&void 0!==arguments[1]?arguments[1]:"";if(s.List.isList(e))return e.some(function(e){return s.Map.isMap(e)&&e.get("in")===t})},t.parametersIncludeType=T,t.contentTypeValues=function(e,t){t=t||[];var n=d(e).getIn(["paths"].concat((0,i.default)(t)),(0,s.fromJS)({})),r=e.getIn(["meta","paths"].concat((0,i.default)(t)),(0,s.fromJS)({})),o=M(e,t),a=n.get("parameters")||new s.List,u=r.get("consumes_value")?r.get("consumes_value"):T(a,"file")?"multipart/form-data":T(a,"formData")?"application/x-www-form-urlencoded":void 0;return(0,s.fromJS)({requestContentType:u,responseContentType:o})},t.operationConsumes=function(e,t){return t=t||[],d(e).getIn(["paths"].concat((0,i.default)(t),["consumes"]),(0,s.fromJS)({}))},t.currentProducesFor=M;var a=n(57),u=n(12),s=n(7);var l=["get","put","post","delete","options","head","patch","trace"],c=function(e){return e||(0,s.Map)()},f=(t.lastError=(0,a.createSelector)(c,function(e){return e.get("lastError")}),t.url=(0,a.createSelector)(c,function(e){return e.get("url")}),t.specStr=(0,a.createSelector)(c,function(e){return e.get("spec")||""}),t.specSource=(0,a.createSelector)(c,function(e){return e.get("specSource")||"not-editor"}),t.specJson=(0,a.createSelector)(c,function(e){return e.get("json",(0,s.Map)())})),p=(t.specResolved=(0,a.createSelector)(c,function(e){return e.get("resolved",(0,s.Map)())}),t.specResolvedSubtree=function(e,t){return e.getIn(["resolvedSubtrees"].concat((0,i.default)(t)),void 0)},function e(t,n){return s.Map.isMap(t)&&s.Map.isMap(n)?n.get("$$ref")?n:(0,s.OrderedMap)().mergeWith(e,t,n):n}),d=t.specJsonWithResolvedSubtrees=(0,a.createSelector)(c,function(e){return(0,s.OrderedMap)().mergeWith(p,e.get("json"),e.get("resolvedSubtrees"))}),h=t.spec=function(e){return f(e)},v=(t.isOAS3=(0,a.createSelector)(h,function(){return!1}),t.info=(0,a.createSelector)(h,function(e){return j(e&&e.get("info"))})),m=(t.externalDocs=(0,a.createSelector)(h,function(e){return j(e&&e.get("externalDocs"))}),t.version=(0,a.createSelector)(v,function(e){return e&&e.get("version")})),y=(t.semver=(0,a.createSelector)(m,function(e){return/v?([0-9]*)\.([0-9]*)\.([0-9]*)/i.exec(e).slice(1)}),t.paths=(0,a.createSelector)(d,function(e){return e.get("paths")})),g=t.operations=(0,a.createSelector)(y,function(e){if(!e||e.size<1)return(0,s.List)();var t=(0,s.List)();return e&&e.forEach?(e.forEach(function(e,n){if(!e||!e.forEach)return{};e.forEach(function(e,r){l.indexOf(r)<0||(t=t.push((0,s.fromJS)({path:n,method:r,operation:e,id:r+"-"+n})))})}),t):(0,s.List)()}),b=t.consumes=(0,a.createSelector)(h,function(e){return(0,s.Set)(e.get("consumes"))}),_=t.produces=(0,a.createSelector)(h,function(e){return(0,s.Set)(e.get("produces"))}),w=(t.security=(0,a.createSelector)(h,function(e){return e.get("security",(0,s.List)())}),t.securityDefinitions=(0,a.createSelector)(h,function(e){return e.get("securityDefinitions")}),t.findDefinition=function(e,t){var n=e.getIn(["resolvedSubtrees","definitions",t],null),r=e.getIn(["json","definitions",t],null);return n||r||null},t.definitions=(0,a.createSelector)(h,function(e){return e.get("definitions")||(0,s.Map)()}),t.basePath=(0,a.createSelector)(h,function(e){return e.get("basePath")}),t.host=(0,a.createSelector)(h,function(e){return e.get("host")}),t.schemes=(0,a.createSelector)(h,function(e){return e.get("schemes",(0,s.Map)())}),t.operationsWithRootInherited=(0,a.createSelector)(g,b,_,function(e,t,n){return e.map(function(e){return e.update("operation",function(e){if(e){if(!s.Map.isMap(e))return;return e.withMutations(function(e){return e.get("consumes")||e.update("consumes",function(e){return(0,s.Set)(e).merge(t)}),e.get("produces")||e.update("produces",function(e){return(0,s.Set)(e).merge(n)}),e})}return(0,s.Map)()})})})),E=t.tags=(0,a.createSelector)(h,function(e){return e.get("tags",(0,s.List)())}),x=t.tagDetails=function(e,t){return(E(e)||(0,s.List)()).filter(s.Map.isMap).find(function(e){return e.get("name")===t},(0,s.Map)())},S=t.operationsWithTags=(0,a.createSelector)(w,E,function(e,t){return e.reduce(function(e,t){var n=(0,s.Set)(t.getIn(["operation","tags"]));return n.count()<1?e.update("default",(0,s.List)(),function(e){return e.push(t)}):n.reduce(function(e,n){return e.update(n,(0,s.List)(),function(e){return e.push(t)})},e)},t.reduce(function(e,t){return e.set(t.get("name"),(0,s.List)())},(0,s.OrderedMap)()))}),C=(t.taggedOperations=function(e){return function(t){var n=(0,t.getConfigs)(),r=n.tagsSorter,o=n.operationsSorter;return S(e).sortBy(function(e,t){return t},function(e,t){var n="function"==typeof r?r:u.sorters.tagsSorter[r];return n?n(e,t):null}).map(function(t,n){var r="function"==typeof o?o:u.sorters.operationsSorter[o],i=r?t.sort(r):t;return(0,s.Map)({tagDetails:x(e,n),operations:i})})}},t.responses=(0,a.createSelector)(c,function(e){return e.get("responses",(0,s.Map)())})),k=t.requests=(0,a.createSelector)(c,function(e){return e.get("requests",(0,s.Map)())}),A=t.mutatedRequests=(0,a.createSelector)(c,function(e){return e.get("mutatedRequests",(0,s.Map)())}),O=(t.responseFor=function(e,t,n){return C(e).getIn([t,n],null)},t.requestFor=function(e,t,n){return k(e).getIn([t,n],null)},t.mutatedRequestFor=function(e,t,n){return A(e).getIn([t,n],null)},t.allowTryItOutFor=function(){return!0},t.parameterWithMetaByIdentity=function(e,t,n){var r=d(e).getIn(["paths"].concat((0,i.default)(t),["parameters"]),(0,s.OrderedMap)()),o=e.getIn(["meta","paths"].concat((0,i.default)(t),["parameters"]),(0,s.OrderedMap)());return r.map(function(e){var t=o.get(n.get("name")+"."+n.get("in")),r=o.get(n.get("name")+"."+n.get("in")+".hash-"+n.hashCode());return(0,s.OrderedMap)().merge(e,t,r)}).find(function(e){return e.get("in")===n.get("in")&&e.get("name")===n.get("name")},(0,s.OrderedMap)())}),P=(t.parameterInclusionSettingFor=function(e,t,n,r){var o=n+"."+r;return e.getIn(["meta","paths"].concat((0,i.default)(t),["parameter_inclusions",o]),!1)},t.parameterWithMeta=function(e,t,n,r){var o=d(e).getIn(["paths"].concat((0,i.default)(t),["parameters"]),(0,s.OrderedMap)()).find(function(e){return e.get("in")===r&&e.get("name")===n},(0,s.OrderedMap)());return O(e,t,o)},t.operationWithMeta=function(e,t,n){var r=d(e).getIn(["paths",t,n],(0,s.OrderedMap)()),o=e.getIn(["meta","paths",t,n],(0,s.OrderedMap)()),i=r.get("parameters",(0,s.List)()).map(function(r){return O(e,[t,n],r)});return(0,s.OrderedMap)().merge(r,o).set("parameters",i)});t.hasHost=(0,a.createSelector)(h,function(e){var t=e.get("host");return"string"==typeof t&&t.length>0&&"/"!==t[0]});function T(e){var t=arguments.length>1&&void 0!==arguments[1]?arguments[1]:"";if(s.List.isList(e))return e.some(function(e){return s.Map.isMap(e)&&e.get("type")===t})}function M(e,t){t=t||[];var n=d(e).getIn(["paths"].concat((0,i.default)(t)),null);if(null!==n){var r=e.getIn(["meta","paths"].concat((0,i.default)(t),["produces_value"]),null),o=n.getIn(["produces",0],null);return r||o||"application/json"}}var I=t.operationScheme=function(e,t,n){var r=e.get("url").match(/^([a-z][a-z0-9+\-.]*):/),o=Array.isArray(r)?r[1]:null;return e.getIn(["scheme",t,n])||e.getIn(["scheme","_defaultScheme"])||o||""};t.canExecuteScheme=function(e,t,n){return["http","https"].indexOf(I(e,t,n))>-1},t.validateBeforeExecute=function(e,t){t=t||[];var n=!0;return e.getIn(["meta","paths"].concat((0,i.default)(t),["parameters"]),(0,s.fromJS)([])).forEach(function(e){var t=e.get("errors");t&&t.count()&&(n=!1)}),n};function j(e){return s.Map.isMap(e)?e:new s.Map}},function(e,t,n){"use strict";Object.defineProperty(t,"__esModule",{value:!0}),t.execute=t.executeRequest=t.logRequest=t.setMutatedRequest=t.setRequest=t.setResponse=t.updateEmptyParamInclusion=t.validateParams=t.invalidateResolvedSubtreeCache=t.updateResolvedSubtree=t.requestResolvedSubtree=t.resolveSpec=t.parseToJson=t.SET_SCHEME=t.UPDATE_RESOLVED_SUBTREE=t.UPDATE_RESOLVED=t.UPDATE_OPERATION_META_VALUE=t.CLEAR_VALIDATE_PARAMS=t.CLEAR_REQUEST=t.CLEAR_RESPONSE=t.LOG_REQUEST=t.SET_MUTATED_REQUEST=t.SET_REQUEST=t.SET_RESPONSE=t.VALIDATE_PARAMS=t.UPDATE_EMPTY_PARAM_INCLUSION=t.UPDATE_PARAM=t.UPDATE_JSON=t.UPDATE_URL=t.UPDATE_SPEC=void 0;var r=b(n(25)),o=b(n(84)),i=b(n(23)),a=b(n(42)),u=b(n(203)),s=b(n(339)),l=b(n(340)),c=b(n(45));t.updateSpec=function(e){var t=L(e).replace(/\t/g," ");if("string"==typeof e)return{type:_,payload:t}},t.updateResolved=function(e){return{type:N,payload:e}},t.updateUrl=function(e){return{type:w,payload:e}},t.updateJsonSpec=function(e){return{type:E,payload:e}},t.changeParam=function(e,t,n,r,o){return{type:x,payload:{path:e,value:r,paramName:t,paramIn:n,isXml:o}}},t.changeParamByIdentity=function(e,t,n,r){return{type:x,payload:{path:e,param:t,value:n,isXml:r}}},t.clearValidateParams=function(e){return{type:I,payload:{pathMethod:e}}},t.changeConsumesValue=function(e,t){return{type:j,payload:{path:e,value:t,key:"consumes_value"}}},t.changeProducesValue=function(e,t){return{type:j,payload:{path:e,value:t,key:"produces_value"}}},t.clearResponse=function(e,t){return{type:T,payload:{path:e,method:t}}},t.clearRequest=function(e,t){return{type:M,payload:{path:e,method:t}}},t.setScheme=function(e,t,n){return{type:D,payload:{scheme:e,path:t,method:n}}};var f=b(n(207)),p=n(7),d=b(n(209)),h=b(n(179)),v=b(n(343)),m=b(n(763)),y=b(n(765)),g=n(12);function b(e){return e&&e.__esModule?e:{default:e}}var _=t.UPDATE_SPEC="spec_update_spec",w=t.UPDATE_URL="spec_update_url",E=t.UPDATE_JSON="spec_update_json",x=t.UPDATE_PARAM="spec_update_param",S=t.UPDATE_EMPTY_PARAM_INCLUSION="spec_update_empty_param_inclusion",C=t.VALIDATE_PARAMS="spec_validate_param",k=t.SET_RESPONSE="spec_set_response",A=t.SET_REQUEST="spec_set_request",O=t.SET_MUTATED_REQUEST="spec_set_mutated_request",P=t.LOG_REQUEST="spec_log_request",T=t.CLEAR_RESPONSE="spec_clear_response",M=t.CLEAR_REQUEST="spec_clear_request",I=t.CLEAR_VALIDATE_PARAMS="spec_clear_validate_param",j=t.UPDATE_OPERATION_META_VALUE="spec_update_operation_meta_value",N=t.UPDATE_RESOLVED="spec_update_resolved",R=t.UPDATE_RESOLVED_SUBTREE="spec_update_resolved_subtree",D=t.SET_SCHEME="set_scheme",L=function(e){return(0,v.default)(e)?e:""};t.parseToJson=function(e){return function(t){var n=t.specActions,r=t.specSelectors,o=t.errActions,i=r.specStr,a=null;try{e=e||i(),o.clear({source:"parser"}),a=f.default.safeLoad(e)}catch(e){return console.error(e),o.newSpecErr({source:"parser",level:"error",message:e.reason,line:e.mark&&e.mark.line?e.mark.line+1:void 0})}return a&&"object"===(void 0===a?"undefined":(0,c.default)(a))?n.updateJsonSpec(a):{}}};var U=!1,q=(t.resolveSpec=function(e,t){return function(n){var r=n.specActions,o=n.specSelectors,i=n.errActions,a=n.fn,u=a.fetch,s=a.resolve,l=a.AST,c=void 0===l?{}:l,f=n.getConfigs;U||(console.warn("specActions.resolveSpec is deprecated since v3.10.0 and will be removed in v4.0.0; use requestResolvedSubtree instead!"),U=!0);var p=f(),d=p.modelPropertyMacro,h=p.parameterMacro,v=p.requestInterceptor,m=p.responseInterceptor;void 0===e&&(e=o.specJson()),void 0===t&&(t=o.url());var y=c.getLineNumberForPath?c.getLineNumberForPath:function(){},g=o.specStr();return s({fetch:u,spec:e,baseDoc:t,modelPropertyMacro:d,parameterMacro:h,requestInterceptor:v,responseInterceptor:m}).then(function(e){var t=e.spec,n=e.errors;if(i.clear({type:"thrown"}),Array.isArray(n)&&n.length>0){var o=n.map(function(e){return console.error(e),e.line=e.fullPath?y(g,e.fullPath):null,e.path=e.fullPath?e.fullPath.join("."):null,e.level="error",e.type="thrown",e.source="resolver",Object.defineProperty(e,"message",{enumerable:!0,value:e.message}),e});i.newThrownErrBatch(o)}return r.updateResolved(t)})}},[]),F=(0,m.default)((0,l.default)(s.default.mark(function e(){var t,n,r,o,i,a,c,f,d,h,v,m,g,b,_,w,E;return s.default.wrap(function(e){for(;;)switch(e.prev=e.next){case 0:if(t=q.system){e.next=4;break}return console.error("debResolveSubtrees: don't have a system to operate on, aborting."),e.abrupt("return");case 4:if(n=t.errActions,r=t.errSelectors,o=t.fn,i=o.resolveSubtree,a=o.AST,c=void 0===a?{}:a,f=t.specSelectors,d=t.specActions,i){e.next=8;break}return console.error("Error: Swagger-Client did not provide a `resolveSubtree` method, doing nothing."),e.abrupt("return");case 8:return h=c.getLineNumberForPath?c.getLineNumberForPath:function(){},v=f.specStr(),m=t.getConfigs(),g=m.modelPropertyMacro,b=m.parameterMacro,_=m.requestInterceptor,w=m.responseInterceptor,e.prev=11,e.next=14,q.reduce(function(){var e=(0,l.default)(s.default.mark(function e(t,o){var a,u,l,c,p,d,m;return s.default.wrap(function(e){for(;;)switch(e.prev=e.next){case 0:return e.next=2,t;case 2:return a=e.sent,u=a.resultMap,l=a.specWithCurrentSubtrees,e.next=7,i(l,o,{baseDoc:f.url(),modelPropertyMacro:g,parameterMacro:b,requestInterceptor:_,responseInterceptor:w});case 7:return c=e.sent,p=c.errors,d=c.spec,r.allErrors().size&&n.clear({type:"thrown"}),Array.isArray(p)&&p.length>0&&(m=p.map(function(e){return e.line=e.fullPath?h(v,e.fullPath):null,e.path=e.fullPath?e.fullPath.join("."):null,e.level="error",e.type="thrown",e.source="resolver",Object.defineProperty(e,"message",{enumerable:!0,value:e.message}),e}),n.newThrownErrBatch(m)),(0,y.default)(u,o,d),(0,y.default)(l,o,d),e.abrupt("return",{resultMap:u,specWithCurrentSubtrees:l});case 15:case"end":return e.stop()}},e,void 0)}));return function(t,n){return e.apply(this,arguments)}}(),u.default.resolve({resultMap:(f.specResolvedSubtree([])||(0,p.Map)()).toJS(),specWithCurrentSubtrees:f.specJson().toJS()}));case 14:E=e.sent,delete q.system,q=[],e.next=22;break;case 19:e.prev=19,e.t0=e.catch(11),console.error(e.t0);case 22:d.updateResolvedSubtree([],E.resultMap);case 23:case"end":return e.stop()}},e,void 0,[[11,19]])})),35);t.requestResolvedSubtree=function(e){return function(t){q.push(e),q.system=t,F()}};t.updateResolvedSubtree=function(e,t){return{type:R,payload:{path:e,value:t}}},t.invalidateResolvedSubtreeCache=function(){return{type:R,payload:{path:[],value:(0,p.Map)()}}},t.validateParams=function(e,t){return{type:C,payload:{pathMethod:e,isOAS3:t}}},t.updateEmptyParamInclusion=function(e,t,n,r){return{type:S,payload:{pathMethod:e,paramName:t,paramIn:n,includeEmptyValue:r}}};t.setResponse=function(e,t,n){return{payload:{path:e,method:t,res:n},type:k}},t.setRequest=function(e,t,n){return{payload:{path:e,method:t,req:n},type:A}},t.setMutatedRequest=function(e,t,n){return{payload:{path:e,method:t,req:n},type:O}},t.logRequest=function(e){return{payload:e,type:P}},t.executeRequest=function(e){return function(t){var n=t.fn,r=t.specActions,o=t.specSelectors,u=t.getConfigs,s=t.oas3Selectors,l=e.pathName,c=e.method,f=e.operation,p=u(),v=p.requestInterceptor,m=p.responseInterceptor,y=f.toJS();if(y&&y.parameters&&y.parameters.length&&y.parameters.filter(function(e){return e&&!0===e.allowEmptyValue}).forEach(function(t){if(o.parameterInclusionSettingFor([l,c],t.name,t.in)){e.parameters=e.parameters||{};var n=e.parameters[t.name];(!n||n&&0===n.size)&&(e.parameters[t.name]="")}}),e.contextUrl=(0,d.default)(o.url()).toString(),y&&y.operationId?e.operationId=y.operationId:y&&l&&c&&(e.operationId=n.opId(y,l,c)),o.isOAS3()){var b=l+":"+c;e.server=s.selectedServer(b)||s.selectedServer();var _=s.serverVariables({server:e.server,namespace:b}).toJS(),w=s.serverVariables({server:e.server}).toJS();e.serverVariables=(0,a.default)(_).length?_:w,e.requestContentType=s.requestContentType(l,c),e.responseContentType=s.responseContentType(l,c)||"*/*";var E=s.requestBodyValue(l,c);(0,g.isJSONObject)(E)?e.requestBody=JSON.parse(E):E&&E.toJS?e.requestBody=E.toJS():e.requestBody=E}var x=(0,i.default)({},e);x=n.buildRequest(x),r.setRequest(e.pathName,e.method,x);e.requestInterceptor=function(t){var n=v.apply(this,[t]),o=(0,i.default)({},n);return r.setMutatedRequest(e.pathName,e.method,o),n},e.responseInterceptor=m;var S=Date.now();return n.execute(e).then(function(t){t.duration=Date.now()-S,r.setResponse(e.pathName,e.method,t)}).catch(function(t){return r.setResponse(e.pathName,e.method,{error:!0,err:(0,h.default)(t)})})}};t.execute=function(){var e=arguments.length>0&&void 0!==arguments[0]?arguments[0]:{},t=e.path,n=e.method,i=(0,o.default)(e,["path","method"]);return function(e){var o=e.fn.fetch,a=e.specSelectors,u=e.specActions,s=a.specJsonWithResolvedSubtrees().toJS(),l=a.operationScheme(t,n),c=a.contentTypeValues([t,n]).toJS(),f=c.requestContentType,p=c.responseContentType,d=/xml/i.test(f),h=a.parameterValues([t,n],d).toJS();return u.executeRequest((0,r.default)({},i,{fetch:o,spec:s,pathName:t,method:n,parameters:h,requestContentType:f,scheme:l,responseContentType:p}))}}},function(e,t,n){e.exports={default:n(732),__esModule:!0}},function(e,t){e.exports=function(e,t,n,r){if(!(e instanceof t)||void 0!==r&&r in e)throw TypeError(n+": incorrect invocation!");return e}},function(e,t,n){"use strict";var r=n(94);e.exports.f=function(e){return new function(e){var t,n;this.promise=new e(function(e,r){if(void 0!==t||void 0!==n)throw TypeError("Bad Promise constructor");t=e,n=r}),this.resolve=r(t),this.reject=r(n)}(e)}},function(e,t,n){var r=n(50);e.exports=function(e,t,n){for(var o in t)n&&e[o]?e[o]=t[o]:r(e,o,t[o]);return e}},function(e,t,n){"use strict";var r=n(741);e.exports=r},function(e,t,n){"use strict";var r=n(86);e.exports=new r({explicit:[n(744),n(745),n(746)]})},function(e,t,n){"use strict";(function(t){var r=n(761),o=n(762),i=/^([a-z][a-z0-9.+-]*:)?(\/\/)?([\S\s]*)/i,a=/^[A-Za-z][A-Za-z0-9+-.]*:\/\//,u=[["#","hash"],["?","query"],["/","pathname"],["@","auth",1],[NaN,"host",void 0,1,1],[/:(\d+)$/,"port",void 0,1],[NaN,"hostname",void 0,1,1]],s={hash:1,query:1};function l(e){var n,r={},o=typeof(e=e||t.location||{});if("blob:"===e.protocol)r=new f(unescape(e.pathname),{});else if("string"===o)for(n in r=new f(e,{}),s)delete r[n];else if("object"===o){for(n in e)n in s||(r[n]=e[n]);void 0===r.slashes&&(r.slashes=a.test(e.href))}return r}function c(e){var t=i.exec(e);return{protocol:t[1]?t[1].toLowerCase():"",slashes:!!t[2],rest:t[3]}}function f(e,t,n){if(!(this instanceof f))return new f(e,t,n);var i,a,s,p,d,h,v=u.slice(),m=typeof t,y=this,g=0;for("object"!==m&&"string"!==m&&(n=t,t=null),n&&"function"!=typeof n&&(n=o.parse),t=l(t),i=!(a=c(e||"")).protocol&&!a.slashes,y.slashes=a.slashes||i&&t.slashes,y.protocol=a.protocol||t.protocol||"",e=a.rest,a.slashes||(v[2]=[/(.*)/,"pathname"]);g-1||r("96",e),!l.plugins[n]){t.extractEvents||r("97",e),l.plugins[n]=t;var a=t.eventTypes;for(var s in a)u(a[s],t,s)||r("98",s,e)}}}function u(e,t,n){l.eventNameDispatchConfigs.hasOwnProperty(n)&&r("99",n),l.eventNameDispatchConfigs[n]=e;var o=e.phasedRegistrationNames;if(o){for(var i in o){if(o.hasOwnProperty(i))s(o[i],t,n)}return!0}return!!e.registrationName&&(s(e.registrationName,t,n),!0)}function s(e,t,n){l.registrationNameModules[e]&&r("100",e),l.registrationNameModules[e]=t,l.registrationNameDependencies[e]=t.eventTypes[n].dependencies}var l={plugins:[],eventNameDispatchConfigs:{},registrationNameModules:{},registrationNameDependencies:{},possibleRegistrationNames:null,injectEventPluginOrder:function(e){o&&r("101"),o=Array.prototype.slice.call(e),a()},injectEventPluginsByName:function(e){var t=!1;for(var n in e)if(e.hasOwnProperty(n)){var o=e[n];i.hasOwnProperty(n)&&i[n]===o||(i[n]&&r("102",n),i[n]=o,t=!0)}t&&a()},getPluginModuleForEvent:function(e){var t=e.dispatchConfig;if(t.registrationName)return l.registrationNameModules[t.registrationName]||null;if(void 0!==t.phasedRegistrationNames){var n=t.phasedRegistrationNames;for(var r in n)if(n.hasOwnProperty(r)){var o=l.registrationNameModules[n[r]];if(o)return o}}return null},_resetEventPlugins:function(){for(var e in o=null,i)i.hasOwnProperty(e)&&delete i[e];l.plugins.length=0;var t=l.eventNameDispatchConfigs;for(var n in t)t.hasOwnProperty(n)&&delete t[n];var r=l.registrationNameModules;for(var a in r)r.hasOwnProperty(a)&&delete r[a]}};e.exports=l},function(e,t,n){"use strict";var r,o,i=n(10),a=n(212);n(8),n(9);function u(e,t,n,r){var o=e.type||"unknown-event";e.currentTarget=s.getNodeFromInstance(r),t?a.invokeGuardedCallbackWithCatch(o,n,e):a.invokeGuardedCallback(o,n,e),e.currentTarget=null}var s={isEndish:function(e){return"topMouseUp"===e||"topTouchEnd"===e||"topTouchCancel"===e},isMoveish:function(e){return"topMouseMove"===e||"topTouchMove"===e},isStartish:function(e){return"topMouseDown"===e||"topTouchStart"===e},executeDirectDispatch:function(e){var t=e._dispatchListeners,n=e._dispatchInstances;Array.isArray(t)&&i("103"),e.currentTarget=t?s.getNodeFromInstance(n):null;var r=t?t(e):null;return e.currentTarget=null,e._dispatchListeners=null,e._dispatchInstances=null,r},executeDispatchesInOrder:function(e,t){var n=e._dispatchListeners,r=e._dispatchInstances;if(Array.isArray(n))for(var o=0;o0&&r.length<20?n+" (keys: "+r.join(", ")+")":n}function s(e,t){var n=o.get(e);return n||null}var l={isMounted:function(e){var t=o.get(e);return!!t&&!!t._renderedComponent},enqueueCallback:function(e,t,n){l.validateCallback(t,n);var r=s(e);if(!r)return null;r._pendingCallbacks?r._pendingCallbacks.push(t):r._pendingCallbacks=[t],a(r)},enqueueCallbackInternal:function(e,t){e._pendingCallbacks?e._pendingCallbacks.push(t):e._pendingCallbacks=[t],a(e)},enqueueForceUpdate:function(e){var t=s(e);t&&(t._pendingForceUpdate=!0,a(t))},enqueueReplaceState:function(e,t,n){var r=s(e);r&&(r._pendingStateQueue=[t],r._pendingReplaceState=!0,void 0!==n&&null!==n&&(l.validateCallback(n,"replaceState"),r._pendingCallbacks?r._pendingCallbacks.push(n):r._pendingCallbacks=[n]),a(r))},enqueueSetState:function(e,t){var n=s(e);n&&((n._pendingStateQueue||(n._pendingStateQueue=[])).push(t),a(n))},enqueueElementInternal:function(e,t,n){e._pendingElement=t,e._context=n,a(e)},validateCallback:function(e,t){e&&"function"!=typeof e&&r("122",t,u(e))}};e.exports=l},function(e,t,n){"use strict";n(13);var r=n(34),o=(n(9),r);e.exports=o},function(e,t,n){"use strict";e.exports=function(e){var t,n=e.keyCode;return"charCode"in e?0===(t=e.charCode)&&13===n&&(t=13):t=n,t>=32||13===t?t:0}},function(e,t,n){var r=n(61),o=n(228),i=n(47),a="[object Object]",u=Function.prototype,s=Object.prototype,l=u.toString,c=s.hasOwnProperty,f=l.call(Object);e.exports=function(e){if(!i(e)||r(e)!=a)return!1;var t=o(e);if(null===t)return!0;var n=c.call(t,"constructor")&&t.constructor;return"function"==typeof n&&n instanceof n&&l.call(n)==f}},function(e,t,n){var r=n(298)(Object.getPrototypeOf,Object);e.exports=r},function(e,t,n){var r=n(292);e.exports=function(e){var t=new e.constructor(e.byteLength);return new r(t).set(new r(e)),t}},function(e,t){var n=this&&this.__extends||function(e,t){for(var n in t)t.hasOwnProperty(n)&&(e[n]=t[n]);function r(){this.constructor=e}e.prototype=null===t?Object.create(t):(r.prototype=t.prototype,new r)},r=Object.prototype.hasOwnProperty; +/*! + * https://github.com/Starcounter-Jack/JSON-Patch + * (c) 2017 Joachim Wester + * MIT license + */function o(e,t){return r.call(e,t)}function i(e){if(Array.isArray(e)){for(var t=new Array(e.length),n=0;n=48&&t<=57))return!1;n++}return!0},t.escapePathComponent=a,t.unescapePathComponent=function(e){return e.replace(/~1/g,"/").replace(/~0/g,"~")},t._getPathRecursive=u,t.getPath=function(e,t){if(e===t)return"/";var n=u(e,t);if(""===n)throw new Error("Object not found in root");return"/"+n},t.hasUndefined=function e(t){if(void 0===t)return!0;if(t)if(Array.isArray(t)){for(var n=0,r=t.length;nw;w++)if((p||w in g)&&(m=b(v=g[w],w,y),e))if(n)E[w]=m;else if(m)switch(e){case 3:return!0;case 5:return v;case 6:return w;case 2:E.push(v)}else if(c)return!1;return f?-1:l||c?c:E}}},function(e,t,n){"use strict";Object.defineProperty(t,"__esModule",{value:!0}),t.authorizeRequest=t.authorizeAccessCodeWithBasicAuthentication=t.authorizeAccessCodeWithFormParams=t.authorizeApplication=t.authorizePassword=t.preAuthorizeImplicit=t.CONFIGURE_AUTH=t.VALIDATE=t.AUTHORIZE_OAUTH2=t.PRE_AUTHORIZE_OAUTH2=t.LOGOUT=t.AUTHORIZE=t.SHOW_AUTH_POPUP=void 0;var r=l(n(45)),o=l(n(23)),i=l(n(41));t.showDefinitions=function(e){return{type:c,payload:e}},t.authorize=function(e){return{type:f,payload:e}},t.logout=function(e){return{type:p,payload:e}},t.authorizeOauth2=function(e){return{type:d,payload:e}},t.configureAuth=function(e){return{type:h,payload:e}};var a=l(n(209)),u=l(n(32)),s=n(12);function l(e){return e&&e.__esModule?e:{default:e}}var c=t.SHOW_AUTH_POPUP="show_popup",f=t.AUTHORIZE="authorize",p=t.LOGOUT="logout",d=(t.PRE_AUTHORIZE_OAUTH2="pre_authorize_oauth2",t.AUTHORIZE_OAUTH2="authorize_oauth2"),h=(t.VALIDATE="validate",t.CONFIGURE_AUTH="configure_auth");t.preAuthorizeImplicit=function(e){return function(t){var n=t.authActions,r=t.errActions,o=e.auth,a=e.token,s=e.isValid,l=o.schema,c=o.name,f=l.get("flow");delete u.default.swaggerUIRedirectOauth2,"accessCode"===f||s||r.newAuthErr({authId:c,source:"auth",level:"warning",message:"Authorization may be unsafe, passed state was changed in server Passed state wasn't returned from auth server"}),a.error?r.newAuthErr({authId:c,source:"auth",level:"error",message:(0,i.default)(a)}):n.authorizeOauth2({auth:o,token:a})}};t.authorizePassword=function(e){return function(t){var n=t.authActions,r=e.schema,i=e.name,a=e.username,u=e.password,l=e.passwordType,c=e.clientId,f=e.clientSecret,p={grant_type:"password",scope:e.scopes.join(" ")},d={},h={};return"basic"===l?h.Authorization="Basic "+(0,s.btoa)(a+":"+u):((0,o.default)(p,{username:a},{password:u}),"query"===l?(c&&(d.client_id=c),f&&(d.client_secret=f)):h.Authorization="Basic "+(0,s.btoa)(c+":"+f)),n.authorizeRequest({body:(0,s.buildFormData)(p),url:r.get("tokenUrl"),name:i,headers:h,query:d,auth:e})}},t.authorizeApplication=function(e){return function(t){var n=t.authActions,r=e.schema,o=e.scopes,i=e.name,a=e.clientId,u=e.clientSecret,l={Authorization:"Basic "+(0,s.btoa)(a+":"+u)},c={grant_type:"client_credentials",scope:o.join(" ")};return n.authorizeRequest({body:(0,s.buildFormData)(c),name:i,url:r.get("tokenUrl"),auth:e,headers:l})}},t.authorizeAccessCodeWithFormParams=function(e){var t=e.auth,n=e.redirectUrl;return function(e){var r=e.authActions,o=t.schema,i=t.name,a=t.clientId,u=t.clientSecret,l={grant_type:"authorization_code",code:t.code,client_id:a,client_secret:u,redirect_uri:n};return r.authorizeRequest({body:(0,s.buildFormData)(l),name:i,url:o.get("tokenUrl"),auth:t})}},t.authorizeAccessCodeWithBasicAuthentication=function(e){var t=e.auth,n=e.redirectUrl;return function(e){var r=e.authActions,o=t.schema,i=t.name,a=t.clientId,u=t.clientSecret,l={Authorization:"Basic "+(0,s.btoa)(a+":"+u)},c={grant_type:"authorization_code",code:t.code,client_id:a,redirect_uri:n};return r.authorizeRequest({body:(0,s.buildFormData)(c),name:i,url:o.get("tokenUrl"),auth:t,headers:l})}},t.authorizeRequest=function(e){return function(t){var n=t.fn,u=t.getConfigs,s=t.authActions,l=t.errActions,c=t.oas3Selectors,f=t.specSelectors,p=t.authSelectors,d=e.body,h=e.query,v=void 0===h?{}:h,m=e.headers,y=void 0===m?{}:m,g=e.name,b=e.url,_=e.auth,w=(p.getConfigs()||{}).additionalQueryStringParams,E=void 0;E=f.isOAS3()?(0,a.default)(b,c.selectedServer(),!0):(0,a.default)(b,f.url(),!0),"object"===(void 0===w?"undefined":(0,r.default)(w))&&(E.query=(0,o.default)({},E.query,w));var x=E.toString(),S=(0,o.default)({Accept:"application/json, text/plain, */*","Content-Type":"application/x-www-form-urlencoded"},y);n.fetch({url:x,method:"post",headers:S,query:v,body:d,requestInterceptor:u().requestInterceptor,responseInterceptor:u().responseInterceptor}).then(function(e){var t=JSON.parse(e.data),n=t&&(t.error||""),r=t&&(t.parseError||"");e.ok?n||r?l.newAuthErr({authId:g,level:"error",source:"auth",message:(0,i.default)(t)}):s.authorizeOauth2({auth:_,token:t}):l.newAuthErr({authId:g,level:"error",source:"auth",message:e.statusText})}).catch(function(e){var t=new Error(e).message;if(e.response&&e.response.data){var n=e.response.data;try{var r="string"==typeof n?JSON.parse(n):n;r.error&&(t+=", error: "+r.error),r.error_description&&(t+=", description: "+r.error_description)}catch(e){}}l.newAuthErr({authId:g,level:"error",source:"auth",message:t})})}}},function(e,t,n){"use strict";Object.defineProperty(t,"__esModule",{value:!0}),t.parseYamlConfig=void 0;var r,o=n(207),i=(r=o)&&r.__esModule?r:{default:r};t.parseYamlConfig=function(e,t){try{return i.default.safeLoad(e)}catch(e){return t&&t.errActions.newThrownErr(new Error(e)),{}}}},function(e,t,n){"use strict";Object.defineProperty(t,"__esModule",{value:!0}),t.loaded=t.TOGGLE_CONFIGS=t.UPDATE_CONFIGS=void 0;var r,o=n(22),i=(r=o)&&r.__esModule?r:{default:r};t.update=function(e,t){return{type:a,payload:(0,i.default)({},e,t)}},t.toggle=function(e){return{type:u,payload:e}};var a=t.UPDATE_CONFIGS="configs_update",u=t.TOGGLE_CONFIGS="configs_toggle";t.loaded=function(){return function(){}}},function(e,t,n){"use strict";function r(e,t,n,r,o){this.src=e,this.env=r,this.options=n,this.parser=t,this.tokens=o,this.pos=0,this.posMax=this.src.length,this.level=0,this.pending="",this.pendingLevel=0,this.cache=[],this.isInLabel=!1,this.linkLevel=0,this.linkContent="",this.labelUnmatchedScopes=0}r.prototype.pushPending=function(){this.tokens.push({type:"text",content:this.pending,level:this.pendingLevel}),this.pending=""},r.prototype.push=function(e){this.pending&&this.pushPending(),this.tokens.push(e),this.pendingLevel=this.level},r.prototype.cacheSet=function(e,t){for(var n=this.cache.length;n<=e;n++)this.cache.push(0);this.cache[e]=t},r.prototype.cacheGet=function(e){return es;)r(u,n=t[s++])&&(~i(l,n)||l.push(n));return l}},function(e,t,n){var r=n(21).document;e.exports=r&&r.documentElement},function(e,t,n){var r=n(52),o=n(71),i=n(161)("IE_PROTO"),a=Object.prototype;e.exports=Object.getPrototypeOf||function(e){return e=o(e),r(e,i)?e[i]:"function"==typeof e.constructor&&e instanceof e.constructor?e.constructor.prototype:e instanceof Object?a:null}},function(e,t,n){var r=n(33),o=r["__core-js_shared__"]||(r["__core-js_shared__"]={});e.exports=function(e){return o[e]||(o[e]={})}},function(e,t){e.exports=function(e,t){return{enumerable:!(1&e),configurable:!(2&e),writable:!(4&e),value:t}}},function(e,t,n){"use strict";var r=n(245)(!0);n(246)(String,"String",function(e){this._t=String(e),this._i=0},function(){var e,t=this._t,n=this._i;return n>=t.length?{value:void 0,done:!0}:(e=r(t,n),this._i+=e.length,{value:e,done:!1})})},function(e,t,n){var r=n(119),o=n(53);e.exports=function(e){return function(t,n){var i,a,u=String(o(t)),s=r(n),l=u.length;return s<0||s>=l?e?"":void 0:(i=u.charCodeAt(s))<55296||i>56319||s+1===l||(a=u.charCodeAt(s+1))<56320||a>57343?e?u.charAt(s):i:e?u.slice(s,s+2):a-56320+(i-55296<<10)+65536}}},function(e,t,n){"use strict";var r=n(247),o=n(29),i=n(72),a=n(58),u=n(102),s=n(462),l=n(170),c=n(468),f=n(17)("iterator"),p=!([].keys&&"next"in[].keys()),d=function(){return this};e.exports=function(e,t,n,h,v,m,y){s(n,t,h);var g,b,_,w=function(e){if(!p&&e in C)return C[e];switch(e){case"keys":case"values":return function(){return new n(this,e)}}return function(){return new n(this,e)}},E=t+" Iterator",x="values"==v,S=!1,C=e.prototype,k=C[f]||C["@@iterator"]||v&&C[v],A=k||w(v),O=v?x?w("entries"):A:void 0,P="Array"==t&&C.entries||k;if(P&&(_=c(P.call(new e)))!==Object.prototype&&_.next&&(l(_,E,!0),r||"function"==typeof _[f]||a(_,f,d)),x&&k&&"values"!==k.name&&(S=!0,A=function(){return k.call(this)}),r&&!y||!p&&!S&&C[f]||a(C,f,A),u[t]=A,u[E]=d,v)if(g={values:x?A:w("values"),keys:m?A:w("keys"),entries:O},y)for(b in g)b in C||i(C,b,g[b]);else o(o.P+o.F*(p||S),t,g);return g}},function(e,t){e.exports=!1},function(e,t,n){var r=n(465),o=n(250);e.exports=Object.keys||function(e){return r(e,o)}},function(e,t,n){var r=n(119),o=Math.max,i=Math.min;e.exports=function(e,t){return(e=r(e))<0?o(e+t,0):i(e,t)}},function(e,t){e.exports="constructor,hasOwnProperty,isPrototypeOf,propertyIsEnumerable,toLocaleString,toString,valueOf".split(",")},function(e,t,n){var r=n(33).document;e.exports=r&&r.documentElement},function(e,t,n){var r=n(59),o=n(121),i=n(17)("species");e.exports=function(e,t){var n,a=r(e).constructor;return void 0===a||void 0==(n=r(a)[i])?t:o(n)}},function(e,t,n){var r,o,i,a=n(120),u=n(480),s=n(251),l=n(168),c=n(33),f=c.process,p=c.setImmediate,d=c.clearImmediate,h=c.MessageChannel,v=c.Dispatch,m=0,y={},g=function(){var e=+this;if(y.hasOwnProperty(e)){var t=y[e];delete y[e],t()}},b=function(e){g.call(e.data)};p&&d||(p=function(e){for(var t=[],n=1;arguments.length>n;)t.push(arguments[n++]);return y[++m]=function(){u("function"==typeof e?e:Function(e),t)},r(m),m},d=function(e){delete y[e]},"process"==n(99)(f)?r=function(e){f.nextTick(a(g,e,1))}:v&&v.now?r=function(e){v.now(a(g,e,1))}:h?(i=(o=new h).port2,o.port1.onmessage=b,r=a(i.postMessage,i,1)):c.addEventListener&&"function"==typeof postMessage&&!c.importScripts?(r=function(e){c.postMessage(e+"","*")},c.addEventListener("message",b,!1)):r="onreadystatechange"in l("script")?function(e){s.appendChild(l("script")).onreadystatechange=function(){s.removeChild(this),g.call(e)}}:function(e){setTimeout(a(g,e,1),0)}),e.exports={set:p,clear:d}},function(e,t){e.exports=function(e){try{return{e:!1,v:e()}}catch(e){return{e:!0,v:e}}}},function(e,t,n){var r=n(59),o=n(73),i=n(171);e.exports=function(e,t){if(r(e),o(t)&&t.constructor===e)return t;var n=i.f(e);return(0,n.resolve)(t),n.promise}},function(e,t,n){var r=n(73),o=n(99),i=n(17)("match");e.exports=function(e){var t;return r(e)&&(void 0!==(t=e[i])?!!t:"RegExp"==o(e))}},function(e,t,n){var r=n(20),o=n(15),i=n(51);e.exports=function(e,t){var n=(o.Object||{})[e]||Object[e],a={};a[e]=t(n),r(r.S+r.F*i(function(){n(1)}),"Object",a)}},function(e,t,n){var r=n(93);e.exports=Array.isArray||function(e){return"Array"==r(e)}},function(e,t,n){var r=n(239),o=n(163).concat("length","prototype");t.f=Object.getOwnPropertyNames||function(e){return r(e,o)}},function(e,t,n){var r=n(125),o=n(95),i=n(70),a=n(157),u=n(52),s=n(238),l=Object.getOwnPropertyDescriptor;t.f=n(44)?l:function(e,t){if(e=i(e),t=a(t,!0),s)try{return l(e,t)}catch(e){}if(u(e,t))return o(!r.f.call(e,t),e[t])}},function(e,t){var n={}.toString;e.exports=Array.isArray||function(e){return"[object Array]"==n.call(e)}},function(e,t,n){e.exports={default:n(532),__esModule:!0}},function(e,t,n){"use strict";var r=n(96),o=n(176),i=n(125),a=n(71),u=n(154),s=Object.assign;e.exports=!s||n(51)(function(){var e={},t={},n=Symbol(),r="abcdefghijklmnopqrst";return e[n]=7,r.split("").forEach(function(e){t[e]=e}),7!=s({},e)[n]||Object.keys(s({},t)).join("")!=r})?function(e,t){for(var n=a(e),s=arguments.length,l=1,c=o.f,f=i.f;s>l;)for(var p,d=u(arguments[l++]),h=c?r(d).concat(c(d)):r(d),v=h.length,m=0;v>m;)f.call(d,p=h[m++])&&(n[p]=d[p]);return n}:s},function(e,t,n){"use strict";var r=n(104),o=n(13),i=n(265),a=(n(266),n(126));n(8),n(536);function u(e,t,n){this.props=e,this.context=t,this.refs=a,this.updater=n||i}function s(e,t,n){this.props=e,this.context=t,this.refs=a,this.updater=n||i}function l(){}u.prototype.isReactComponent={},u.prototype.setState=function(e,t){"object"!=typeof e&&"function"!=typeof e&&null!=e&&r("85"),this.updater.enqueueSetState(this,e),t&&this.updater.enqueueCallback(this,t,"setState")},u.prototype.forceUpdate=function(e){this.updater.enqueueForceUpdate(this),e&&this.updater.enqueueCallback(this,e,"forceUpdate")},l.prototype=u.prototype,s.prototype=new l,s.prototype.constructor=s,o(s.prototype,u.prototype),s.prototype.isPureReactComponent=!0,e.exports={Component:u,PureComponent:s}},function(e,t,n){"use strict";n(9);var r={isMounted:function(e){return!1},enqueueCallback:function(e,t){},enqueueForceUpdate:function(e){},enqueueReplaceState:function(e,t){},enqueueSetState:function(e,t){}};e.exports=r},function(e,t,n){"use strict";var r=!1;e.exports=r},function(e,t,n){"use strict";var r="function"==typeof Symbol&&Symbol.for&&Symbol.for("react.element")||60103;e.exports=r},function(e,t,n){"use strict";var r=n(544);e.exports=function(e){return r(e,!1)}},function(e,t,n){"use strict";e.exports="SECRET_DO_NOT_PASS_THIS_OR_YOU_WILL_BE_FIRED"},function(e,t,n){"use strict";Object.defineProperty(t,"__esModule",{value:!0});var r=n(271),o=n(561),i=n(562),a=n(563),u=n(275);n(274);n.d(t,"createStore",function(){return r.b}),n.d(t,"combineReducers",function(){return o.a}),n.d(t,"bindActionCreators",function(){return i.a}),n.d(t,"applyMiddleware",function(){return a.a}),n.d(t,"compose",function(){return u.a})},function(e,t,n){"use strict";n.d(t,"a",function(){return i}),t.b=function e(t,n,a){var u;"function"==typeof n&&void 0===a&&(a=n,n=void 0);if(void 0!==a){if("function"!=typeof a)throw new Error("Expected the enhancer to be a function.");return a(e)(t,n)}if("function"!=typeof t)throw new Error("Expected the reducer to be a function.");var s=t;var l=n;var c=[];var f=c;var p=!1;function d(){f===c&&(f=c.slice())}function h(){return l}function v(e){if("function"!=typeof e)throw new Error("Expected listener to be a function.");var t=!0;return d(),f.push(e),function(){if(t){t=!1,d();var n=f.indexOf(e);f.splice(n,1)}}}function m(e){if(!r.a(e))throw new Error("Actions must be plain objects. Use custom middleware for async actions.");if(void 0===e.type)throw new Error('Actions may not have an undefined "type" property. Have you misspelled a constant?');if(p)throw new Error("Reducers may not dispatch actions.");try{p=!0,l=s(l,e)}finally{p=!1}for(var t=c=f,n=0;no?0:o+t),(n=n>o?o:n)<0&&(n+=o),o=t>n?0:n-t>>>0,t>>>=0;for(var i=Array(o);++rp))return!1;var h=c.get(e);if(h&&c.get(t))return h==t;var v=-1,m=!0,y=n&u?new r:void 0;for(c.set(e,t),c.set(t,e);++v0?("string"==typeof t||a.objectMode||Object.getPrototypeOf(t)===l.prototype||(t=function(e){return l.from(e)}(t)),r?a.endEmitted?e.emit("error",new Error("stream.unshift() after end event")):w(e,a,t,!0):a.ended?e.emit("error",new Error("stream.push() after EOF")):(a.reading=!1,a.decoder&&!n?(t=a.decoder.write(t),a.objectMode||0!==t.length?w(e,a,t,!1):k(e,a)):w(e,a,t,!1))):r||(a.reading=!1));return function(e){return!e.ended&&(e.needReadable||e.lengtht.highWaterMark&&(t.highWaterMark=function(e){return e>=E?e=E:(e--,e|=e>>>1,e|=e>>>2,e|=e>>>4,e|=e>>>8,e|=e>>>16,e++),e}(e)),e<=t.length?e:t.ended?t.length:(t.needReadable=!0,0))}function S(e){var t=e._readableState;t.needReadable=!1,t.emittedReadable||(d("emitReadable",t.flowing),t.emittedReadable=!0,t.sync?o.nextTick(C,e):C(e))}function C(e){d("emit readable"),e.emit("readable"),T(e)}function k(e,t){t.readingMore||(t.readingMore=!0,o.nextTick(A,e,t))}function A(e,t){for(var n=t.length;!t.reading&&!t.flowing&&!t.ended&&t.length=t.length?(n=t.decoder?t.buffer.join(""):1===t.buffer.length?t.buffer.head.data:t.buffer.concat(t.length),t.buffer.clear()):n=function(e,t,n){var r;ei.length?i.length:e;if(a===i.length?o+=i:o+=i.slice(0,e),0===(e-=a)){a===i.length?(++r,n.next?t.head=n.next:t.head=t.tail=null):(t.head=n,n.data=i.slice(a));break}++r}return t.length-=r,o}(e,t):function(e,t){var n=l.allocUnsafe(e),r=t.head,o=1;r.data.copy(n),e-=r.data.length;for(;r=r.next;){var i=r.data,a=e>i.length?i.length:e;if(i.copy(n,n.length-e,0,a),0===(e-=a)){a===i.length?(++o,r.next?t.head=r.next:t.head=t.tail=null):(t.head=r,r.data=i.slice(a));break}++o}return t.length-=o,n}(e,t);return r}(e,t.buffer,t.decoder),n);var n}function I(e){var t=e._readableState;if(t.length>0)throw new Error('"endReadable()" called on non-empty stream');t.endEmitted||(t.ended=!0,o.nextTick(j,t,e))}function j(e,t){e.endEmitted||0!==e.length||(e.endEmitted=!0,t.readable=!1,t.emit("end"))}function N(e,t){for(var n=0,r=e.length;n=t.highWaterMark||t.ended))return d("read: emitReadable",t.length,t.ended),0===t.length&&t.ended?I(this):S(this),null;if(0===(e=x(e,t))&&t.ended)return 0===t.length&&I(this),null;var r,o=t.needReadable;return d("need readable",o),(0===t.length||t.length-e0?M(e,t):null)?(t.needReadable=!0,e=0):t.length-=e,0===t.length&&(t.ended||(t.needReadable=!0),n!==e&&t.ended&&I(this)),null!==r&&this.emit("data",r),r},b.prototype._read=function(e){this.emit("error",new Error("_read() is not implemented"))},b.prototype.pipe=function(e,t){var n=this,i=this._readableState;switch(i.pipesCount){case 0:i.pipes=e;break;case 1:i.pipes=[i.pipes,e];break;default:i.pipes.push(e)}i.pipesCount+=1,d("pipe count=%d opts=%j",i.pipesCount,t);var s=(!t||!1!==t.end)&&e!==r.stdout&&e!==r.stderr?c:b;function l(t,r){d("onunpipe"),t===n&&r&&!1===r.hasUnpiped&&(r.hasUnpiped=!0,d("cleanup"),e.removeListener("close",y),e.removeListener("finish",g),e.removeListener("drain",f),e.removeListener("error",m),e.removeListener("unpipe",l),n.removeListener("end",c),n.removeListener("end",b),n.removeListener("data",v),p=!0,!i.awaitDrain||e._writableState&&!e._writableState.needDrain||f())}function c(){d("onend"),e.end()}i.endEmitted?o.nextTick(s):n.once("end",s),e.on("unpipe",l);var f=function(e){return function(){var t=e._readableState;d("pipeOnDrain",t.awaitDrain),t.awaitDrain&&t.awaitDrain--,0===t.awaitDrain&&u(e,"data")&&(t.flowing=!0,T(e))}}(n);e.on("drain",f);var p=!1;var h=!1;function v(t){d("ondata"),h=!1,!1!==e.write(t)||h||((1===i.pipesCount&&i.pipes===e||i.pipesCount>1&&-1!==N(i.pipes,e))&&!p&&(d("false write response, pause",n._readableState.awaitDrain),n._readableState.awaitDrain++,h=!0),n.pause())}function m(t){d("onerror",t),b(),e.removeListener("error",m),0===u(e,"error")&&e.emit("error",t)}function y(){e.removeListener("finish",g),b()}function g(){d("onfinish"),e.removeListener("close",y),b()}function b(){d("unpipe"),n.unpipe(e)}return n.on("data",v),function(e,t,n){if("function"==typeof e.prependListener)return e.prependListener(t,n);e._events&&e._events[t]?a(e._events[t])?e._events[t].unshift(n):e._events[t]=[n,e._events[t]]:e.on(t,n)}(e,"error",m),e.once("close",y),e.once("finish",g),e.emit("pipe",n),i.flowing||(d("pipe resume"),n.resume()),e},b.prototype.unpipe=function(e){var t=this._readableState,n={hasUnpiped:!1};if(0===t.pipesCount)return this;if(1===t.pipesCount)return e&&e!==t.pipes?this:(e||(e=t.pipes),t.pipes=null,t.pipesCount=0,t.flowing=!1,e&&e.emit("unpipe",this,n),this);if(!e){var r=t.pipes,o=t.pipesCount;t.pipes=null,t.pipesCount=0,t.flowing=!1;for(var i=0;i=0&&(e._idleTimeoutId=setTimeout(function(){e._onTimeout&&e._onTimeout()},t))},n(662),t.setImmediate="undefined"!=typeof self&&self.setImmediate||void 0!==e&&e.setImmediate||this&&this.setImmediate,t.clearImmediate="undefined"!=typeof self&&self.clearImmediate||void 0!==e&&e.clearImmediate||this&&this.clearImmediate}).call(t,n(31))},function(e,t,n){"use strict";var r=n(141).Buffer,o=r.isEncoding||function(e){switch((e=""+e)&&e.toLowerCase()){case"hex":case"utf8":case"utf-8":case"ascii":case"binary":case"base64":case"ucs2":case"ucs-2":case"utf16le":case"utf-16le":case"raw":return!0;default:return!1}};function i(e){var t;switch(this.encoding=function(e){var t=function(e){if(!e)return"utf8";for(var t;;)switch(e){case"utf8":case"utf-8":return"utf8";case"ucs2":case"ucs-2":case"utf16le":case"utf-16le":return"utf16le";case"latin1":case"binary":return"latin1";case"base64":case"ascii":case"hex":return e;default:if(t)return;e=(""+e).toLowerCase(),t=!0}}(e);if("string"!=typeof t&&(r.isEncoding===o||!o(e)))throw new Error("Unknown encoding: "+e);return t||e}(e),this.encoding){case"utf16le":this.text=s,this.end=l,t=4;break;case"utf8":this.fillLast=u,t=4;break;case"base64":this.text=c,this.end=f,t=3;break;default:return this.write=p,void(this.end=d)}this.lastNeed=0,this.lastTotal=0,this.lastChar=r.allocUnsafe(t)}function a(e){return e<=127?0:e>>5==6?2:e>>4==14?3:e>>3==30?4:e>>6==2?-1:-2}function u(e){var t=this.lastTotal-this.lastNeed,n=function(e,t,n){if(128!=(192&t[0]))return e.lastNeed=0,"�";if(e.lastNeed>1&&t.length>1){if(128!=(192&t[1]))return e.lastNeed=1,"�";if(e.lastNeed>2&&t.length>2&&128!=(192&t[2]))return e.lastNeed=2,"�"}}(this,e);return void 0!==n?n:this.lastNeed<=e.length?(e.copy(this.lastChar,t,0,this.lastNeed),this.lastChar.toString(this.encoding,0,this.lastTotal)):(e.copy(this.lastChar,t,0,e.length),void(this.lastNeed-=e.length))}function s(e,t){if((e.length-t)%2==0){var n=e.toString("utf16le",t);if(n){var r=n.charCodeAt(n.length-1);if(r>=55296&&r<=56319)return this.lastNeed=2,this.lastTotal=4,this.lastChar[0]=e[e.length-2],this.lastChar[1]=e[e.length-1],n.slice(0,-1)}return n}return this.lastNeed=1,this.lastTotal=2,this.lastChar[0]=e[e.length-1],e.toString("utf16le",t,e.length-1)}function l(e){var t=e&&e.length?this.write(e):"";if(this.lastNeed){var n=this.lastTotal-this.lastNeed;return t+this.lastChar.toString("utf16le",0,n)}return t}function c(e,t){var n=(e.length-t)%3;return 0===n?e.toString("base64",t):(this.lastNeed=3-n,this.lastTotal=3,1===n?this.lastChar[0]=e[e.length-1]:(this.lastChar[0]=e[e.length-2],this.lastChar[1]=e[e.length-1]),e.toString("base64",t,e.length-n))}function f(e){var t=e&&e.length?this.write(e):"";return this.lastNeed?t+this.lastChar.toString("base64",0,3-this.lastNeed):t}function p(e){return e.toString(this.encoding)}function d(e){return e&&e.length?this.write(e):""}t.StringDecoder=i,i.prototype.write=function(e){if(0===e.length)return"";var t,n;if(this.lastNeed){if(void 0===(t=this.fillLast(e)))return"";n=this.lastNeed,this.lastNeed=0}else n=0;return n=0)return o>0&&(e.lastNeed=o-1),o;if(--r=0)return o>0&&(e.lastNeed=o-2),o;if(--r=0)return o>0&&(2===o?o=0:e.lastNeed=o-3),o;return 0}(this,e,t);if(!this.lastNeed)return e.toString("utf8",t);this.lastTotal=n;var r=e.length-(n-this.lastNeed);return e.copy(this.lastChar,0,r),e.toString("utf8",t,r)},i.prototype.fillLast=function(e){if(this.lastNeed<=e.length)return e.copy(this.lastChar,this.lastTotal-this.lastNeed,0,this.lastNeed),this.lastChar.toString(this.encoding,0,this.lastTotal);e.copy(this.lastChar,this.lastTotal-this.lastNeed,0,e.length),this.lastNeed-=e.length}},function(e,t,n){"use strict";e.exports=i;var r=n(64),o=n(106);function i(e){if(!(this instanceof i))return new i(e);r.call(this,e),this._transformState={afterTransform:function(e,t){var n=this._transformState;n.transforming=!1;var r=n.writecb;if(!r)return this.emit("error",new Error("write callback called multiple times"));n.writechunk=null,n.writecb=null,null!=t&&this.push(t),r(e);var o=this._readableState;o.reading=!1,(o.needReadable||o.length=0?n&&o?o-1:o:1:!1!==e&&r(e)}},function(e,t,n){"use strict";e.exports=n(678)()?Object.assign:n(679)},function(e,t,n){"use strict";var r,o,i,a,u,s=n(66),l=function(e,t){return t};try{Object.defineProperty(l,"length",{configurable:!0,writable:!1,enumerable:!1,value:1})}catch(e){}1===l.length?(r={configurable:!0,writable:!1,enumerable:!1},o=Object.defineProperty,e.exports=function(e,t){return t=s(t),e.length===t?e:(r.value=t,o(e,"length",r))}):(a=n(317),u=[],i=function(e){var t,n=0;if(u[e])return u[e];for(t=[];e--;)t.push("a"+(++n).toString(36));return new Function("fn","return function ("+t.join(", ")+") { return fn.apply(this, arguments); };")},e.exports=function(e,t){var n;if(t=s(t),e.length===t)return e;n=i(t)(e);try{a(n,e)}catch(e){}return n})},function(e,t,n){"use strict";var r=n(82),o=Object.defineProperty,i=Object.getOwnPropertyDescriptor,a=Object.getOwnPropertyNames,u=Object.getOwnPropertySymbols;e.exports=function(e,t){var n,s=Object(r(t));if(e=Object(r(e)),a(s).forEach(function(r){try{o(e,r,i(t,r))}catch(e){n=e}}),"function"==typeof u&&u(s).forEach(function(r){try{o(e,r,i(t,r))}catch(e){n=e}}),void 0!==n)throw n;return e}},function(e,t,n){"use strict";var r=n(56),o=n(142),i=Function.prototype.call;e.exports=function(e,t){var n={},a=arguments[2];return r(t),o(e,function(e,r,o,u){n[r]=i.call(t,a,e,r,o,u)}),n}},function(e,t){e.exports=function(e){return!!e&&("object"==typeof e||"function"==typeof e)&&"function"==typeof e.then}},function(e,t,n){"use strict";Object.defineProperty(t,"__esModule",{value:!0}),t.default=function(e){return{statePlugins:{err:{reducers:(0,i.default)(e),actions:a,selectors:u}}}};var r,o=n(321),i=(r=o)&&r.__esModule?r:{default:r},a=s(n(127)),u=s(n(326));function s(e){if(e&&e.__esModule)return e;var t={};if(null!=e)for(var n in e)Object.prototype.hasOwnProperty.call(e,n)&&(t[n]=e[n]);return t.default=e,t}},function(e,t,n){"use strict";Object.defineProperty(t,"__esModule",{value:!0});var r=s(n(22)),o=s(n(23));t.default=function(e){var t;return t={},(0,r.default)(t,i.NEW_THROWN_ERR,function(t,n){var r=n.payload,i=(0,o.default)(l,r,{type:"thrown"});return t.update("errors",function(e){return(e||(0,a.List)()).push((0,a.fromJS)(i))}).update("errors",function(t){return(0,u.default)(t,e.getSystem())})}),(0,r.default)(t,i.NEW_THROWN_ERR_BATCH,function(t,n){var r=n.payload;return r=r.map(function(e){return(0,a.fromJS)((0,o.default)(l,e,{type:"thrown"}))}),t.update("errors",function(e){return(e||(0,a.List)()).concat((0,a.fromJS)(r))}).update("errors",function(t){return(0,u.default)(t,e.getSystem())})}),(0,r.default)(t,i.NEW_SPEC_ERR,function(t,n){var r=n.payload,o=(0,a.fromJS)(r);return o=o.set("type","spec"),t.update("errors",function(e){return(e||(0,a.List)()).push((0,a.fromJS)(o)).sortBy(function(e){return e.get("line")})}).update("errors",function(t){return(0,u.default)(t,e.getSystem())})}),(0,r.default)(t,i.NEW_SPEC_ERR_BATCH,function(t,n){var r=n.payload;return r=r.map(function(e){return(0,a.fromJS)((0,o.default)(l,e,{type:"spec"}))}),t.update("errors",function(e){return(e||(0,a.List)()).concat((0,a.fromJS)(r))}).update("errors",function(t){return(0,u.default)(t,e.getSystem())})}),(0,r.default)(t,i.NEW_AUTH_ERR,function(t,n){var r=n.payload,i=(0,a.fromJS)((0,o.default)({},r));return i=i.set("type","auth"),t.update("errors",function(e){return(e||(0,a.List)()).push((0,a.fromJS)(i))}).update("errors",function(t){return(0,u.default)(t,e.getSystem())})}),(0,r.default)(t,i.CLEAR,function(e,t){var n=t.payload;if(!n||!e.get("errors"))return e;var r=e.get("errors").filter(function(e){return e.keySeq().every(function(t){var r=e.get(t),o=n[t];return!o||r!==o})});return e.merge({errors:r})}),(0,r.default)(t,i.CLEAR_BY,function(e,t){var n=t.payload;if(!n||"function"!=typeof n)return e;var r=e.get("errors").filter(function(e){return n(e)});return e.merge({errors:r})}),t};var i=n(127),a=n(7),u=s(n(322));function s(e){return e&&e.__esModule?e:{default:e}}var l={line:0,level:"error",message:"Unknown error"}},function(e,t,n){"use strict";Object.defineProperty(t,"__esModule",{value:!0}),t.default=function(e,t){var n={jsSpec:t.specSelectors.specJson().toJS()};return(0,i.default)(u,function(e,t){try{var r=t.transform(e,n);return r.filter(function(e){return!!e})}catch(t){return console.error("Transformer error:",t),e}},e).filter(function(e){return!!e}).map(function(e){return!e.get("line")&&e.get("path"),e})};var r,o=n(726),i=(r=o)&&r.__esModule?r:{default:r};function a(e){if(e&&e.__esModule)return e;var t={};if(null!=e)for(var n in e)Object.prototype.hasOwnProperty.call(e,n)&&(t[n]=e[n]);return t.default=e,t}var u=[a(n(323)),a(n(324)),a(n(325))]},function(e,t,n){"use strict";Object.defineProperty(t,"__esModule",{value:!0}),t.transform=function(e){return e.map(function(e){var t=e.get("message").indexOf("is not of a type(s)");if(t>-1){var n=e.get("message").slice(t+"is not of a type(s)".length).split(",");return e.set("message",e.get("message").slice(0,t)+function(e){return e.reduce(function(e,t,n,r){return n===r.length-1&&r.length>1?e+"or "+t:r[n+1]&&r.length>2?e+t+", ":r[n+1]?e+t+" ":e+t},"should be a")}(n))}return e})}},function(e,t,n){"use strict";Object.defineProperty(t,"__esModule",{value:!0}),t.transform=function(e,t){t.jsSpec;return e};var r,o=n(138);(r=o)&&r.__esModule,n(7)},function(e,t,n){"use strict";Object.defineProperty(t,"__esModule",{value:!0}),t.transform=function(e){return e.map(function(e){return e.set("message",(t=e.get("message"),n="instance.",t.replace(new RegExp(n,"g"),"")));var t,n})}},function(e,t,n){"use strict";Object.defineProperty(t,"__esModule",{value:!0}),t.lastError=t.allErrors=void 0;var r=n(7),o=n(57),i=t.allErrors=(0,o.createSelector)(function(e){return e},function(e){return e.get("errors",(0,r.List)())});t.lastError=(0,o.createSelector)(i,function(e){return e.last()})},function(e,t,n){"use strict";Object.defineProperty(t,"__esModule",{value:!0}),t.default=function(){return{statePlugins:{layout:{reducers:i.default,actions:a,selectors:u}}}};var r,o=n(328),i=(r=o)&&r.__esModule?r:{default:r},a=s(n(200)),u=s(n(329));function s(e){if(e&&e.__esModule)return e;var t={};if(null!=e)for(var n in e)Object.prototype.hasOwnProperty.call(e,n)&&(t[n]=e[n]);return t.default=e,t}},function(e,t,n){"use strict";Object.defineProperty(t,"__esModule",{value:!0});var r,o,i=n(22),a=(r=i)&&r.__esModule?r:{default:r},u=n(7),s=n(200);t.default=(o={},(0,a.default)(o,s.UPDATE_LAYOUT,function(e,t){return e.set("layout",t.payload)}),(0,a.default)(o,s.UPDATE_FILTER,function(e,t){return e.set("filter",t.payload)}),(0,a.default)(o,s.SHOW,function(e,t){var n=t.payload.shown,r=(0,u.fromJS)(t.payload.thing);return e.update("shown",(0,u.fromJS)({}),function(e){return e.set(r,n)})}),(0,a.default)(o,s.UPDATE_MODE,function(e,t){var n=t.payload.thing,r=t.payload.mode;return e.setIn(["modes"].concat(n),(r||"")+"")}),o)},function(e,t,n){"use strict";Object.defineProperty(t,"__esModule",{value:!0}),t.showSummary=t.whatMode=t.isShown=t.currentFilter=t.current=void 0;var r,o=n(83),i=(r=o)&&r.__esModule?r:{default:r},a=n(57),u=n(12),s=n(7);t.current=function(e){return e.get("layout")},t.currentFilter=function(e){return e.get("filter")};var l=t.isShown=function(e,t,n){return t=(0,u.normalizeArray)(t),e.get("shown",(0,s.fromJS)({})).get((0,s.fromJS)(t),n)};t.whatMode=function(e,t){var n=arguments.length>2&&void 0!==arguments[2]?arguments[2]:"";return t=(0,u.normalizeArray)(t),e.getIn(["modes"].concat((0,i.default)(t)),n)},t.showSummary=(0,a.createSelector)(function(e){return e},function(e){return!l(e,"editor")})},function(e,t,n){var r=n(36);e.exports=function(e,t,n,o){try{return o?t(r(n)[0],n[1]):t(n)}catch(t){var i=e.return;throw void 0!==i&&r(i.call(e)),t}}},function(e,t,n){var r=n(69),o=n(19)("iterator"),i=Array.prototype;e.exports=function(e){return void 0!==e&&(r.Array===e||i[o]===e)}},function(e,t,n){var r=n(19)("iterator"),o=!1;try{var i=[7][r]();i.return=function(){o=!0},Array.from(i,function(){throw 2})}catch(e){}e.exports=function(e,t){if(!t&&!o)return!1;var n=!1;try{var i=[7],a=i[r]();a.next=function(){return{done:n=!0}},i[r]=function(){return a},e(i)}catch(e){}return n}},function(e,t,n){"use strict";Object.defineProperty(t,"__esModule",{value:!0}),t.default=function(){return{statePlugins:{spec:{wrapActions:s,reducers:i.default,actions:a,selectors:u}}}};var r,o=n(334),i=(r=o)&&r.__esModule?r:{default:r},a=l(n(202)),u=l(n(201)),s=l(n(347));function l(e){if(e&&e.__esModule)return e;var t={};if(null!=e)for(var n in e)Object.prototype.hasOwnProperty.call(e,n)&&(t[n]=e[n]);return t.default=e,t}},function(e,t,n){"use strict";Object.defineProperty(t,"__esModule",{value:!0});var r,o=p(n(22)),i=p(n(23)),a=p(n(83)),u=n(7),s=n(12),l=p(n(32)),c=n(201),f=n(202);function p(e){return e&&e.__esModule?e:{default:e}}t.default=(r={},(0,o.default)(r,f.UPDATE_SPEC,function(e,t){return"string"==typeof t.payload?e.set("spec",t.payload):e}),(0,o.default)(r,f.UPDATE_URL,function(e,t){return e.set("url",t.payload+"")}),(0,o.default)(r,f.UPDATE_JSON,function(e,t){return e.set("json",(0,s.fromJSOrdered)(t.payload))}),(0,o.default)(r,f.UPDATE_RESOLVED,function(e,t){return e.setIn(["resolved"],(0,s.fromJSOrdered)(t.payload))}),(0,o.default)(r,f.UPDATE_RESOLVED_SUBTREE,function(e,t){var n=t.payload,r=n.value,o=n.path;return e.setIn(["resolvedSubtrees"].concat((0,a.default)(o)),(0,s.fromJSOrdered)(r))}),(0,o.default)(r,f.UPDATE_PARAM,function(e,t){var n=t.payload,r=n.path,o=n.paramName,i=n.paramIn,u=n.param,s=n.value,l=n.isXml,c=void 0;c=u&&u.hashCode&&!i&&!o?u.get("name")+"."+u.get("in")+".hash-"+u.hashCode():o+"."+i;var f=l?"value_xml":"value";return e.setIn(["meta","paths"].concat((0,a.default)(r),["parameters",c,f]),s)}),(0,o.default)(r,f.UPDATE_EMPTY_PARAM_INCLUSION,function(e,t){var n=t.payload,r=n.pathMethod,o=n.paramName,i=n.paramIn,u=n.includeEmptyValue;if(!o||!i)return console.warn("Warning: UPDATE_EMPTY_PARAM_INCLUSION could not generate a paramKey."),e;var s=o+"."+i;return e.setIn(["meta","paths"].concat((0,a.default)(r),["parameter_inclusions",s]),u)}),(0,o.default)(r,f.VALIDATE_PARAMS,function(e,t){var n=t.payload,r=n.pathMethod,o=n.isOAS3,i=e.getIn(["meta","paths"].concat((0,a.default)(r)),(0,u.fromJS)({})),l=/xml/i.test(i.get("consumes_value")),f=c.operationWithMeta.apply(void 0,[e].concat((0,a.default)(r)));return e.updateIn(["meta","paths"].concat((0,a.default)(r),["parameters"]),(0,u.fromJS)({}),function(e){return f.get("parameters",(0,u.List)()).reduce(function(e,t){var n=(0,s.validateParam)(t,l,o);return e.setIn([t.get("name")+"."+t.get("in"),"errors"],(0,u.fromJS)(n))},e)})}),(0,o.default)(r,f.CLEAR_VALIDATE_PARAMS,function(e,t){var n=t.payload.pathMethod;return e.updateIn(["meta","paths"].concat((0,a.default)(n),["parameters"]),(0,u.fromJS)([]),function(e){return e.map(function(e){return e.set("errors",(0,u.fromJS)([]))})})}),(0,o.default)(r,f.SET_RESPONSE,function(e,t){var n=t.payload,r=n.res,o=n.path,a=n.method,u=void 0;(u=r.error?(0,i.default)({error:!0,name:r.err.name,message:r.err.message,statusCode:r.err.statusCode},r.err.response):r).headers=u.headers||{};var c=e.setIn(["responses",o,a],(0,s.fromJSOrdered)(u));return l.default.Blob&&r.data instanceof l.default.Blob&&(c=c.setIn(["responses",o,a,"text"],r.data)),c}),(0,o.default)(r,f.SET_REQUEST,function(e,t){var n=t.payload,r=n.req,o=n.path,i=n.method;return e.setIn(["requests",o,i],(0,s.fromJSOrdered)(r))}),(0,o.default)(r,f.SET_MUTATED_REQUEST,function(e,t){var n=t.payload,r=n.req,o=n.path,i=n.method;return e.setIn(["mutatedRequests",o,i],(0,s.fromJSOrdered)(r))}),(0,o.default)(r,f.UPDATE_OPERATION_META_VALUE,function(e,t){var n=t.payload,r=n.path,o=n.value,i=n.key,s=["paths"].concat((0,a.default)(r)),l=["meta","paths"].concat((0,a.default)(r));return e.getIn(["json"].concat((0,a.default)(s)))||e.getIn(["resolved"].concat((0,a.default)(s)))||e.getIn(["resolvedSubtrees"].concat((0,a.default)(s)))?e.setIn([].concat((0,a.default)(l),[i]),(0,u.fromJS)(o)):e}),(0,o.default)(r,f.CLEAR_RESPONSE,function(e,t){var n=t.payload,r=n.path,o=n.method;return e.deleteIn(["responses",r,o])}),(0,o.default)(r,f.CLEAR_REQUEST,function(e,t){var n=t.payload,r=n.path,o=n.method;return e.deleteIn(["requests",r,o])}),(0,o.default)(r,f.SET_SCHEME,function(e,t){var n=t.payload,r=n.scheme,o=n.path,i=n.method;return o&&i?e.setIn(["scheme",o,i],r):o||i?void 0:e.setIn(["scheme","_defaultScheme"],r)}),r)},function(e,t,n){var r=n(36),o=n(94),i=n(19)("species");e.exports=function(e,t){var n,a=r(e).constructor;return void 0===a||void 0==(n=r(a)[i])?t:o(n)}},function(e,t,n){var r,o,i,a=n(49),u=n(734),s=n(240),l=n(156),c=n(21),f=c.process,p=c.setImmediate,d=c.clearImmediate,h=c.MessageChannel,v=c.Dispatch,m=0,y={},g=function(){var e=+this;if(y.hasOwnProperty(e)){var t=y[e];delete y[e],t()}},b=function(e){g.call(e.data)};p&&d||(p=function(e){for(var t=[],n=1;arguments.length>n;)t.push(arguments[n++]);return y[++m]=function(){u("function"==typeof e?e:Function(e),t)},r(m),m},d=function(e){delete y[e]},"process"==n(93)(f)?r=function(e){f.nextTick(a(g,e,1))}:v&&v.now?r=function(e){v.now(a(g,e,1))}:h?(i=(o=new h).port2,o.port1.onmessage=b,r=a(i.postMessage,i,1)):c.addEventListener&&"function"==typeof postMessage&&!c.importScripts?(r=function(e){c.postMessage(e+"","*")},c.addEventListener("message",b,!1)):r="onreadystatechange"in l("script")?function(e){s.appendChild(l("script")).onreadystatechange=function(){s.removeChild(this),g.call(e)}}:function(e){setTimeout(a(g,e,1),0)}),e.exports={set:p,clear:d}},function(e,t){e.exports=function(e){try{return{e:!1,v:e()}}catch(e){return{e:!0,v:e}}}},function(e,t,n){var r=n(36),o=n(28),i=n(205);e.exports=function(e,t){if(r(e),o(t)&&t.constructor===e)return t;var n=i.f(e);return(0,n.resolve)(t),n.promise}},function(e,t,n){e.exports=n(739)},function(e,t,n){"use strict";t.__esModule=!0;var r,o=n(203),i=(r=o)&&r.__esModule?r:{default:r};t.default=function(e){return function(){var t=e.apply(this,arguments);return new i.default(function(e,n){return function r(o,a){try{var u=t[o](a),s=u.value}catch(e){return void n(e)}if(!u.done)return i.default.resolve(s).then(function(e){r("next",e)},function(e){r("throw",e)});e(s)}("next")})}}},function(e,t,n){"use strict";var r=n(86);e.exports=new r({include:[n(342)]})},function(e,t,n){"use strict";var r=n(86);e.exports=new r({include:[n(208)],implicit:[n(747),n(748),n(749),n(750)]})},function(e,t,n){var r=n(61),o=n(24),i=n(47),a="[object String]";e.exports=function(e){return"string"==typeof e||!o(e)&&i(e)&&r(e)==a}},function(e,t,n){var r=n(146),o=n(79),i=n(135),a=n(38),u=n(80);e.exports=function(e,t,n,s){if(!a(e))return e;for(var l=-1,c=(t=o(t,e)).length,f=c-1,p=e;null!=p&&++l.":"function"==typeof t?" Instead of passing a class like Foo, pass React.createElement(Foo) or .":null!=t&&void 0!==t.props?" This may be caused by unintentionally loading two independent copies of React.":"");var i,u=a.createElement(D,{child:t});if(e){var s=p.get(e);i=s._processChildContext(s._context)}else i=y;var l=N(n);if(l){var c=l._currentElement.props.child;if(_(c,t)){var f=l._renderedComponent.getPublicInstance(),d=o&&function(){o.call(f)};return L._updateRootComponent(l,u,i,n,d),f}L.unmountComponentAtNode(n)}var h=A(n),m=h&&!!O(h),g=I(n),b=m&&!l&&!g,w=L._renderNewRootComponent(u,n,b,i)._renderedComponent.getPublicInstance();return o&&o.call(w),w},render:function(e,t,n){return L._renderSubtreeIntoContainer(null,e,t,n)},unmountComponentAtNode:function(e){j(e)||r("40");var t=N(e);if(!t){I(e),1===e.nodeType&&e.hasAttribute(E);return!1}return delete k[t._instance.rootID],m.batchedUpdates(M,t,e,!1),!0},_mountImageIntoNode:function(e,t,n,i,a){if(j(t)||r("41"),i){var u=A(t);if(d.canReuseMarkup(e,u))return void s.precacheNode(n,u);var l=u.getAttribute(d.CHECKSUM_ATTR_NAME);u.removeAttribute(d.CHECKSUM_ATTR_NAME);var c=u.outerHTML;u.setAttribute(d.CHECKSUM_ATTR_NAME,l);var f=e,p=function(e,t){for(var n=Math.min(e.length,t.length),r=0;r1?r-1:0),a=1;a=o&&(t=console)[e].apply(t,i)}return i.warn=i.bind(null,"warn"),i.error=i.bind(null,"error"),i.info=i.bind(null,"info"),i.debug=i.bind(null,"debug"),{rootInjects:{log:i}}}},function(e,t,n){"use strict";var r,o=n(388),i=(r=o)&&r.__esModule?r:{default:r};e.exports=function(e){var t=e.configs;return{fn:{fetch:i.default.makeHttp(t.preFetch,t.postFetch),buildRequest:i.default.buildRequest,execute:i.default.execute,resolve:i.default.resolve,resolveSubtree:i.default.resolveSubtree,serializeRes:i.default.serializeRes,opId:i.default.helpers.opId}}}},function(e,t,n){e.exports=function(e){function t(r){if(n[r])return n[r].exports;var o=n[r]={i:r,l:!1,exports:{}};return e[r].call(o.exports,o,o.exports,t),o.l=!0,o.exports}var n={};return t.m=e,t.c=n,t.d=function(e,n,r){t.o(e,n)||Object.defineProperty(e,n,{configurable:!1,enumerable:!0,get:r})},t.n=function(e){var n=e&&e.__esModule?function(){return e.default}:function(){return e};return t.d(n,"a",n),n},t.o=function(e,t){return Object.prototype.hasOwnProperty.call(e,t)},t.p="",t(t.s=23)}([function(e,t){e.exports=n(42)},function(e,t){e.exports=n(45)},function(e,t){e.exports=n(23)},function(e,t){e.exports=n(25)},function(e,t){e.exports=n(339)},function(e,t,n){"use strict";function r(e){return e&&e.__esModule?e:{default:e}}function o(e,t){var n=arguments.length>2&&void 0!==arguments[2]?arguments[2]:"",r=(arguments.length>3&&void 0!==arguments[3]?arguments[3]:{}).v2OperationIdCompatibilityMode;return e&&"object"===(void 0===e?"undefined":(0,c.default)(e))?(e.operationId||"").replace(/\s/g,"").length?h(e.operationId):i(t,n,{v2OperationIdCompatibilityMode:r}):null}function i(e,t){if((arguments.length>2&&void 0!==arguments[2]?arguments[2]:{}).v2OperationIdCompatibilityMode){var n=(t.toLowerCase()+"_"+e).replace(/[\s!@#$%^&*()_+=[{\]};:<>|.\/?,\\'""-]/g,"_");return(n=n||e.substring(1)+"_"+t).replace(/((_){2,})/g,"_").replace(/^(_)*/g,"").replace(/([_])*$/g,"")}return""+d(t)+h(e)}function a(e,t){return d(t)+"-"+e}function u(e,t){return s(e,t,!0)||null}function s(e,t,n){if(!e||"object"!==(void 0===e?"undefined":(0,c.default)(e))||!e.paths||"object"!==(0,c.default)(e.paths))return null;var r=e.paths;for(var o in r)for(var i in r[o])if("PARAMETERS"!==i.toUpperCase()){var a=r[o][i];if(a&&"object"===(void 0===a?"undefined":(0,c.default)(a))){var u={spec:e,pathName:o,method:i.toUpperCase(),operation:a},s=t(u);if(n&&s)return u}}}Object.defineProperty(t,"__esModule",{value:!0});var l=r(n(18)),c=r(n(1));t.isOAS3=function(e){var t=e.openapi;return!!t&&(0,p.default)(t,"3")},t.isSwagger2=function(e){var t=e.swagger;return!!t&&(0,p.default)(t,"2")},t.opId=o,t.idFromPathMethod=i,t.legacyIdFromPathMethod=a,t.getOperationRaw=function(e,t){return e&&e.paths?u(e,function(e){var n=e.pathName,r=e.method,i=e.operation;if(!i||"object"!==(void 0===i?"undefined":(0,c.default)(i)))return!1;var u=i.operationId;return[o(i,n,r),a(n,r),u].some(function(e){return e&&e===t})}):null},t.findOperation=u,t.eachOperation=s,t.normalizeSwagger=function(e){var t=e.spec,n=t.paths,r={};if(!n||t.$$normalized)return e;for(var i in n){var a=n[i];if((0,f.default)(a)){var u=a.parameters;for(var s in a)!function(e){var n=a[e];if(!(0,f.default)(n))return"continue";var s=o(n,i,e);if(s){r[s]?r[s].push(n):r[s]=[n];var c=r[s];if(c.length>1)c.forEach(function(e,t){e.__originalOperationId=e.__originalOperationId||e.operationId,e.operationId=""+s+(t+1)});else if(void 0!==n.operationId){var p=c[0];p.__originalOperationId=p.__originalOperationId||n.operationId,p.operationId=s}}if("parameters"!==e){var d=[],h={};for(var v in t)"produces"!==v&&"consumes"!==v&&"security"!==v||(h[v]=t[v],d.push(h));if(u&&(h.parameters=u,d.push(h)),d.length){var m=!0,y=!1,g=void 0;try{for(var b,_=(0,l.default)(d);!(m=(b=_.next()).done);m=!0){var w=b.value;for(var E in w)if(n[E]){if("parameters"===E){var x=!0,S=!1,C=void 0;try{for(var k,A=(0,l.default)(w[E]);!(x=(k=A.next()).done);x=!0)!function(){var e=k.value;n[E].some(function(t){return t.name&&t.name===e.name||t.$ref&&t.$ref===e.$ref||t.$$ref&&t.$$ref===e.$$ref||t===e})||n[E].push(e)}()}catch(e){S=!0,C=e}finally{try{!x&&A.return&&A.return()}finally{if(S)throw C}}}}else n[E]=w[E]}}catch(e){y=!0,g=e}finally{try{!m&&_.return&&_.return()}finally{if(y)throw g}}}}}(s)}}return t.$$normalized=!0,e};var f=r(n(47)),p=r(n(14)),d=function(e){return String.prototype.toLowerCase.call(e)},h=function(e){return e.replace(/[^\w]/gi,"_")}},function(e,t){e.exports=n(892)},function(e,t,n){"use strict";function r(e){return e&&e.__esModule?e:{default:e}}function o(e,t){var n=(arguments.length>2&&void 0!==arguments[2]?arguments[2]:{}).loadSpec,r=void 0!==n&&n,o={ok:e.ok,url:e.url||t,status:e.status,statusText:e.statusText,headers:i(e.headers)},a=o.headers["content-type"],u=r||_(a);return(u?e.text:e.blob||e.buffer).call(e).then(function(e){if(o.text=e,o.data=e,u)try{var t=function(e,t){return"application/json"===t?JSON.parse(e):y.default.safeLoad(e)}(e,a);o.body=t,o.obj=t}catch(e){o.parseError=e}return o})}function i(){var e=arguments.length>0&&void 0!==arguments[0]?arguments[0]:{},t={};return"function"==typeof e.forEach?(e.forEach(function(e,n){void 0!==t[n]?(t[n]=Array.isArray(t[n])?t[n]:[t[n]],t[n].push(e)):t[n]=e}),t):t}function a(e){return"undefined"!=typeof File?e instanceof File:null!==e&&"object"===(void 0===e?"undefined":(0,h.default)(e))&&"function"==typeof e.pipe}function u(e,t){var n=e.collectionFormat,r=e.allowEmptyValue,o="object"===(void 0===e?"undefined":(0,h.default)(e))?e.value:e;if(void 0===o&&r)return"";if(a(o)||"boolean"==typeof o)return o;var i=encodeURIComponent;return t&&(i=(0,g.default)(o)?function(e){return e}:function(e){return(0,p.default)(e)}),"object"!==(void 0===o?"undefined":(0,h.default)(o))||Array.isArray(o)?Array.isArray(o)?Array.isArray(o)&&!n?o.map(i).join(","):"multi"===n?o.map(i):o.map(i).join({csv:",",ssv:"%20",tsv:"%09",pipes:"|"}[n]):i(o):""}function s(e){var t=(0,f.default)(e).reduce(function(t,n){var r=e[n],o=!!r.skipEncoding,i=o?n:encodeURIComponent(n),a=function(e){return e&&"object"===(void 0===e?"undefined":(0,h.default)(e))}(r)&&!Array.isArray(r);return t[i]=u(a?r:{value:r},o),t},{});return m.default.stringify(t,{encode:!1,indices:!1})||""}function l(){var e=arguments.length>0&&void 0!==arguments[0]?arguments[0]:{},t=e.url,r=void 0===t?"":t,o=e.query,i=e.form;if(i){var l=(0,f.default)(i).some(function(e){return a(i[e].value)}),p=e.headers["content-type"]||e.headers["Content-Type"];if(l||/multipart\/form-data/i.test(p)){var d=n(30);e.body=new d,(0,f.default)(i).forEach(function(t){e.body.append(t,u(i[t],!0))})}else e.body=s(i);delete e.form}if(o){var h=r.split("?"),v=(0,c.default)(h,2),y=v[0],g=v[1],b="";if(g){var _=m.default.parse(g);(0,f.default)(o).forEach(function(e){return delete _[e]}),b=m.default.stringify(_,{encode:!0})}var w=function(){for(var e=arguments.length,t=Array(e),n=0;n1&&void 0!==arguments[1]?arguments[1]:{};return d.default.wrap(function(e){for(;;)switch(e.prev=e.next){case 0:if("object"===(void 0===t?"undefined":(0,h.default)(t))&&(t=(a=t).url),a.headers=a.headers||{},b.mergeInQueryOrForm(a),!a.requestInterceptor){e.next=10;break}return e.next=6,a.requestInterceptor(a);case 6:if(e.t0=e.sent,e.t0){e.next=9;break}e.t0=a;case 9:a=e.t0;case 10:return n=a.headers["content-type"]||a.headers["Content-Type"],/multipart\/form-data/i.test(n)&&(delete a.headers["content-type"],delete a.headers["Content-Type"]),r=void 0,e.prev=13,e.next=16,(a.userFetch||fetch)(a.url,a);case 16:return r=e.sent,e.next=19,b.serializeRes(r,t,a);case 19:if(r=e.sent,!a.responseInterceptor){e.next=27;break}return e.next=23,a.responseInterceptor(r);case 23:if(e.t1=e.sent,e.t1){e.next=26;break}e.t1=r;case 26:r=e.t1;case 27:e.next=37;break;case 29:if(e.prev=29,e.t2=e.catch(13),r){e.next=33;break}throw e.t2;case 33:throw(o=new Error(r.statusText)).statusCode=o.status=r.status,o.responseError=e.t2,o;case 37:if(r.ok){e.next=42;break}throw(i=new Error(r.statusText)).statusCode=i.status=r.status,i.response=r,i;case 42:return e.abrupt("return",r);case 43:case"end":return e.stop()}},e,this,[[13,29]])}));return function(t){return e.apply(this,arguments)}}();var _=t.shouldDownloadAsText=function(){return/(json|xml|yaml|text)\b/.test(arguments.length>0&&void 0!==arguments[0]?arguments[0]:"")}},function(e,t){e.exports=n(41)},function(e,t,n){"use strict";function r(e){return e&&e.__esModule?e:{default:e}}function o(e){return Array.isArray(e)?e.length<1?"":"/"+e.map(function(e){return(e+"").replace(/~/g,"~0").replace(/\//g,"~1")}).join("/"):e}function i(e,t,n){return{op:"replace",path:e,value:t,meta:n}}function a(e,t,n){return f(c(e.filter(m).map(function(e){return t(e.value,n,e.path)})||[]))}function u(e,t,n){return n=n||[],Array.isArray(e)?e.map(function(e,r){return u(e,t,n.concat(r))}):p(e)?(0,w.default)(e).map(function(r){return u(e[r],t,n.concat(r))}):t(e,n[n.length-1],n)}function s(e,t,n){var r=[];if((n=n||[]).length>0){var o=t(e,n[n.length-1],n);o&&(r=r.concat(o))}if(Array.isArray(e)){var i=e.map(function(e,r){return s(e,t,n.concat(r))});i&&(r=r.concat(i))}else if(p(e)){var a=(0,w.default)(e).map(function(r){return s(e[r],t,n.concat(r))});a&&(r=r.concat(a))}return c(r)}function l(e){return Array.isArray(e)?e:[e]}function c(e){var t;return(t=[]).concat.apply(t,(0,_.default)(e.map(function(e){return Array.isArray(e)?c(e):e})))}function f(e){return e.filter(function(e){return void 0!==e})}function p(e){return e&&"object"===(void 0===e?"undefined":(0,b.default)(e))}function d(e){return e&&"function"==typeof e}function h(e){if(y(e)){var t=e.op;return"add"===t||"remove"===t||"replace"===t}return!1}function v(e){return h(e)||y(e)&&"mutation"===e.type}function m(e){return v(e)&&("add"===e.op||"replace"===e.op||"merge"===e.op||"mergeDeep"===e.op)}function y(e){return e&&"object"===(void 0===e?"undefined":(0,b.default)(e))}function g(e,t){try{return S.default.getValueByPointer(e,t)}catch(e){return console.error(e),{}}}Object.defineProperty(t,"__esModule",{value:!0});var b=r(n(1)),_=r(n(34)),w=r(n(0)),E=r(n(35)),x=r(n(2)),S=r(n(36)),C=r(n(4)),k=r(n(37)),A=r(n(38));t.default={add:function(e,t){return{op:"add",path:e,value:t}},replace:i,remove:function(e,t){return{op:"remove",path:e}},merge:function(e,t){return{type:"mutation",op:"merge",path:e,value:t}},mergeDeep:function(e,t){return{type:"mutation",op:"mergeDeep",path:e,value:t}},context:function(e,t){return{type:"context",path:e,value:t}},getIn:function(e,t){return t.reduce(function(e,t){return void 0!==t&&e?e[t]:e},e)},applyPatch:function(e,t,n){if(n=n||{},"merge"===(t=(0,x.default)({},t,{path:t.path&&o(t.path)})).op){var r=g(e,t.path);(0,x.default)(r,t.value),S.default.applyPatch(e,[i(t.path,r)])}else if("mergeDeep"===t.op){var a=g(e,t.path);for(var u in t.value){var s=t.value[u],l=Array.isArray(s);if(l){var c=a[u]||[];a[u]=c.concat(s)}else if(p(s)&&!l){var f=(0,x.default)({},a[u]);for(var d in s){if(Object.prototype.hasOwnProperty.call(f,d)){f=(0,k.default)((0,A.default)({},f),s);break}(0,x.default)(f,(0,E.default)({},d,s[d]))}a[u]=f}else a[u]=s}}else if("add"===t.op&&""===t.path&&p(t.value)){var h=(0,w.default)(t.value).reduce(function(e,n){return e.push({op:"add",path:"/"+o(n),value:t.value[n]}),e},[]);S.default.applyPatch(e,h)}else if("replace"===t.op&&""===t.path){var v=t.value;n.allowMetaPatches&&t.meta&&m(t)&&(Array.isArray(t.value)||p(t.value))&&(v=(0,x.default)({},v,t.meta)),e=v}else if(S.default.applyPatch(e,[t]),n.allowMetaPatches&&t.meta&&m(t)&&(Array.isArray(t.value)||p(t.value))){var y=g(e,t.path),b=(0,x.default)({},y,t.meta);S.default.applyPatch(e,[i(t.path,b)])}return e},parentPathMatch:function(e,t){if(!Array.isArray(t))return!1;for(var n=0,r=t.length;n1&&void 0!==arguments[1]?arguments[1]:{},n=t.requestInterceptor,r=t.responseInterceptor,o=e.withCredentials?"include":"same-origin";return function(t){return e({url:t,loadSpec:!0,requestInterceptor:n,responseInterceptor:r,headers:{Accept:"application/json"},credentials:o}).then(function(e){return e.body})}}Object.defineProperty(t,"__esModule",{value:!0});var i=r(n(4)),a=r(n(11));t.makeFetchJSON=o,t.clearCache=function(){s.plugins.refs.clearCache()},t.default=function(e){function t(e){var t=this;E&&(s.plugins.refs.docCache[E]=e),s.plugins.refs.fetchJSON=o(w,{requestInterceptor:g,responseInterceptor:b});var n=[s.plugins.refs];return"function"==typeof y&&n.push(s.plugins.parameters),"function"==typeof m&&n.push(s.plugins.properties),"strict"!==p&&n.push(s.plugins.allOf),(0,l.default)({spec:e,context:{baseDoc:E},plugins:n,allowMetaPatches:h,pathDiscriminator:v,parameterMacro:y,modelPropertyMacro:m}).then(_?function(){var e=(0,a.default)(i.default.mark(function e(n){return i.default.wrap(function(e){for(;;)switch(e.prev=e.next){case 0:return e.abrupt("return",n);case 1:case"end":return e.stop()}},e,t)}));return function(t){return e.apply(this,arguments)}}():c.normalizeSwagger)}var n=e.fetch,r=e.spec,f=e.url,p=e.mode,d=e.allowMetaPatches,h=void 0===d||d,v=e.pathDiscriminator,m=e.modelPropertyMacro,y=e.parameterMacro,g=e.requestInterceptor,b=e.responseInterceptor,_=e.skipNormalization,w=e.http,E=e.baseDoc;return E=E||f,w=n||w||u.default,r?t(r):o(w,{requestInterceptor:g,responseInterceptor:b})(E).then(t)};var u=r(n(7)),s=n(31),l=r(s),c=n(5)},function(e,t){e.exports=n(203)},function(e,t){e.exports=n(91)},function(e,t){e.exports=n(2)},function(e,t){e.exports=n(3)},function(e,t,n){"use strict";Object.defineProperty(t,"__esModule",{value:!0}),t.default=function(e,t){function n(){Error.captureStackTrace?Error.captureStackTrace(this,this.constructor):this.stack=(new Error).stack;for(var e=arguments.length,n=Array(e),r=0;r-1||o.indexOf(n)>-1||i.some(function(e){return n.indexOf(e)>-1})};var r=["properties"],o=["definitions","parameters","responses","securityDefinitions","components/schemas","components/responses","components/parameters","components/securitySchemes"],i=["schema/example"]},function(e,t,n){e.exports=n(24)},function(e,t,n){"use strict";function r(e){return e&&e.__esModule?e:{default:e}}function o(e){var t=this,n=arguments.length>1&&void 0!==arguments[1]?arguments[1]:{};if("string"==typeof e?n.url=e:n=e,!(this instanceof o))return new o(n);(0,a.default)(this,n);var r=this.resolve().then(function(){return t.disableInterfaces||(0,a.default)(t,o.makeApisTagOperation(t)),t});return r.client=this,r}Object.defineProperty(t,"__esModule",{value:!0});var i=r(n(3)),a=r((r(n(25)),n(6))),u=r(n(14)),s=r(n(10)),l=n(7),c=r(l),f=n(16),p=r(f),d=r(n(48)),h=n(49),v=n(51),m=n(5);o.http=c.default,o.makeHttp=l.makeHttp.bind(null,o.http),o.resolve=p.default,o.resolveSubtree=d.default,o.execute=v.execute,o.serializeRes=l.serializeRes,o.serializeHeaders=l.serializeHeaders,o.clearCache=f.clearCache,o.parameterBuilders=v.PARAMETER_BUILDERS,o.makeApisTagOperation=h.makeApisTagOperation,o.buildRequest=v.buildRequest,o.helpers={opId:m.opId},o.prototype={http:c.default,execute:function(e){return this.applyDefaults(),o.execute((0,i.default)({spec:this.spec,http:this.http,securities:{authorized:this.authorizations},contextUrl:"string"==typeof this.url?this.url:void 0},e))},resolve:function(){var e=this;return o.resolve({spec:this.spec,url:this.url,allowMetaPatches:this.allowMetaPatches,requestInterceptor:this.requestInterceptor||null,responseInterceptor:this.responseInterceptor||null}).then(function(t){return e.originalSpec=e.spec,e.spec=t.spec,e.errors=t.errors,e})}},o.prototype.applyDefaults=function(){var e=this.spec,t=this.url;if(t&&(0,u.default)(t,"http")){var n=s.default.parse(t);e.host||(e.host=n.host),e.schemes||(e.schemes=[n.protocol.replace(":","")]),e.basePath||(e.basePath="/")}},t.default=o,e.exports=t.default},function(e,t){e.exports=n(904)},function(e,t){e.exports=n(18)},function(e,t){e.exports=n(905)},function(e,t){e.exports=n(906)},function(e,t){e.exports=n(343)},function(e,t){e.exports=n(909)},function(e,t,n){"use strict";function r(e){return e&&e.__esModule?e:{default:e}}Object.defineProperty(t,"__esModule",{value:!0}),t.plugins=t.SpecMap=void 0;var o=r(n(8)),i=r(n(1)),a=r(n(17)),u=r(n(4)),s=r(n(0)),l=r(n(18)),c=r(n(32)),f=r(n(2)),p=r(n(19)),d=r(n(20));t.default=function(e){return new w(e).dispatch()};var h=r(n(33)),v=r(n(9)),m=r(n(39)),y=r(n(43)),g=r(n(44)),b=r(n(45)),_=r(n(46)),w=function(){function e(t){(0,p.default)(this,e),(0,f.default)(this,{spec:"",debugLevel:"info",plugins:[],pluginHistory:{},errors:[],mutations:[],promisedPatches:[],state:{},patches:[],context:{},contextTree:new _.default,showDebug:!1,allPatches:[],pluginProp:"specMap",libMethods:(0,f.default)((0,c.default)(this),v.default),allowMetaPatches:!1},t),this.get=this._get.bind(this),this.getContext=this._getContext.bind(this),this.hasRun=this._hasRun.bind(this),this.wrappedPlugins=this.plugins.map(this.wrapPlugin.bind(this)).filter(v.default.isFunction),this.patches.push(v.default.add([],this.spec)),this.patches.push(v.default.context([],this.context)),this.updatePatches(this.patches)}return(0,d.default)(e,[{key:"debug",value:function(e){if(this.debugLevel===e){for(var t,n=arguments.length,r=Array(n>1?n-1:0),o=1;o1?n-1:0),o=1;o0})}},{key:"nextPromisedPatch",value:function(){if(this.promisedPatches.length>0)return a.default.race(this.promisedPatches.map(function(e){return e.value}))}},{key:"getPluginHistory",value:function(e){var t=this.getPluginName(e);return this.pluginHistory[t]||[]}},{key:"getPluginRunCount",value:function(e){return this.getPluginHistory(e).length}},{key:"getPluginHistoryTip",value:function(e){var t=this.getPluginHistory(e);return t&&t[t.length-1]||{}}},{key:"getPluginMutationIndex",value:function(e){var t=this.getPluginHistoryTip(e).mutationIndex;return"number"!=typeof t?-1:t}},{key:"getPluginName",value:function(e){return e.pluginName}},{key:"updatePluginHistory",value:function(e,t){var n=this.getPluginName(e);(this.pluginHistory[n]=this.pluginHistory[n]||[]).push(t)}},{key:"updatePatches",value:function(e,t){var n=this;v.default.normalizeArray(e).forEach(function(e){if(e instanceof Error)n.errors.push(e);else try{if(!v.default.isObject(e))return void n.debug("updatePatches","Got a non-object patch",e);if(n.showDebug&&n.allPatches.push(e),v.default.isPromise(e.value))return n.promisedPatches.push(e),void n.promisedPatchThen(e);if(v.default.isContextPatch(e))return void n.setContext(e.path,e.value);if(v.default.isMutation(e))return void n.updateMutations(e)}catch(e){console.error(e),n.errors.push(e)}})}},{key:"updateMutations",value:function(e){"object"===(0,i.default)(e.value)&&!Array.isArray(e.value)&&this.allowMetaPatches&&(e.value=(0,f.default)({},e.value));var t=v.default.applyPatch(this.state,e,{allowMetaPatches:this.allowMetaPatches});t&&(this.mutations.push(e),this.state=t)}},{key:"removePromisedPatch",value:function(e){var t=this.promisedPatches.indexOf(e);t<0?this.debug("Tried to remove a promisedPatch that isn't there!"):this.promisedPatches.splice(t,1)}},{key:"promisedPatchThen",value:function(e){var t=this;return e.value=e.value.then(function(n){var r=(0,f.default)({},e,{value:n});t.removePromisedPatch(e),t.updatePatches(r)}).catch(function(n){t.removePromisedPatch(e),t.updatePatches(n)})}},{key:"getMutations",value:function(e,t){return e=e||0,"number"!=typeof t&&(t=this.mutations.length),this.mutations.slice(e,t)}},{key:"getCurrentMutations",value:function(){return this.getMutationsForPlugin(this.getCurrentPlugin())}},{key:"getMutationsForPlugin",value:function(e){var t=this.getPluginMutationIndex(e);return this.getMutations(t+1)}},{key:"getCurrentPlugin",value:function(){return this.currentPlugin}},{key:"getPatchesOfType",value:function(e,t){return e.filter(t)}},{key:"getLib",value:function(){return this.libMethods}},{key:"_get",value:function(e){return v.default.getIn(this.state,e)}},{key:"_getContext",value:function(e){return this.contextTree.get(e)}},{key:"setContext",value:function(e,t){return this.contextTree.set(e,t)}},{key:"_hasRun",value:function(e){return this.getPluginRunCount(this.getCurrentPlugin())>(e||0)}},{key:"_clone",value:function(e){return JSON.parse((0,o.default)(e))}},{key:"dispatch",value:function(){function e(e){e&&(e=v.default.fullyNormalizeArray(e),n.updatePatches(e,r))}var t=this,n=this,r=this.nextPlugin();if(!r){var o=this.nextPromisedPatch();if(o)return o.then(function(){return t.dispatch()}).catch(function(){return t.dispatch()});var i={spec:this.state,errors:this.errors};return this.showDebug&&(i.patches=this.allPatches),a.default.resolve(i)}if(n.pluginCount=n.pluginCount||{},n.pluginCount[r]=(n.pluginCount[r]||0)+1,n.pluginCount[r]>100)return a.default.resolve({spec:n.state,errors:n.errors.concat(new Error("We've reached a hard limit of 100 plugin runs"))});if(r!==this.currentPlugin&&this.promisedPatches.length){var u=this.promisedPatches.map(function(e){return e.value});return a.default.all(u.map(function(e){return e.then(Function,Function)})).then(function(){return t.dispatch()})}return function(){n.currentPlugin=r;var t=n.getCurrentMutations(),o=n.mutations.length-1;try{if(r.isGenerator){var i=!0,a=!1,u=void 0;try{for(var s,p=(0,l.default)(r(t,n.getLib()));!(i=(s=p.next()).done);i=!0)e(s.value)}catch(e){a=!0,u=e}finally{try{!i&&p.return&&p.return()}finally{if(a)throw u}}}else e(r(t,n.getLib()))}catch(t){console.error(t),e([(0,f.default)((0,c.default)(t),{plugin:r})])}finally{n.updatePluginHistory(r,{mutationIndex:o})}return n.dispatch()}()}}]),e}(),E={refs:m.default,allOf:y.default,parameters:g.default,properties:b.default};t.SpecMap=w,t.plugins=E},function(e,t){e.exports=n(350)},function(e,t){e.exports=n(288)},function(e,t){e.exports=n(83)},function(e,t){e.exports=n(22)},function(e,t){e.exports=n(910)},function(e,t){e.exports=n(178)},function(e,t){e.exports=n(913)},function(e,t,n){"use strict";function r(e){return e&&e.__esModule?e:{default:e}}function o(e,t){if(!A.test(e)){if(!t)throw new O("Tried to resolve a relative URL, without having a basePath. path: '"+e+"' basePath: '"+t+"'");return x.default.resolve(t,e)}return e}function i(e,t){return new O("Could not resolve reference because of: "+e.message,t,e)}function a(e){return(e+"").split("#")}function u(e,t){var n=P[e];if(n&&!S.default.isPromise(n))try{var r=l(t,n);return(0,b.default)(y.default.resolve(r),{__value:r})}catch(e){return y.default.reject(e)}return s(e).then(function(e){return l(t,e)})}function s(e){var t=P[e];return t?S.default.isPromise(t)?t:y.default.resolve(t):(P[e]=I.fetchJSON(e).then(function(t){return P[e]=t,t}),P[e])}function l(e,t){var n=c(e);if(n.length<1)return t;var r=S.default.getIn(t,n);if(void 0===r)throw new O("Could not resolve pointer: "+e+" does not exist in document",{pointer:e});return r}function c(e){if("string"!=typeof e)throw new TypeError("Expected a string, got a "+(void 0===e?"undefined":(0,v.default)(e)));return"/"===e[0]&&(e=e.substr(1)),""===e?[]:e.split("/").map(f)}function f(e){return"string"!=typeof e?e:E.default.unescape(e.replace(/~1/g,"/").replace(/~0/g,"~"))}function p(e){return E.default.escape(e.replace(/~/g,"~0").replace(/\//g,"~1"))}function d(e,t){if(j(t))return!0;var n=e.charAt(t.length),r=t.slice(-1);return 0===e.indexOf(t)&&(!n||"/"===n||"#"===n)&&"#"!==r}function h(e,t,n,r){var o=T.get(r);o||(o={},T.set(r,o));var i=function(e){return 0===e.length?"":"/"+e.map(p).join("/")}(n),a=(t||"")+"#"+e;if(t==r.contextTree.get([]).baseDoc&&d(i,e))return!0;var u="";if(n.some(function(e){return u=u+"/"+p(e),o[u]&&o[u].some(function(e){return d(e,a)||d(a,e)})}))return!0;o[i]=(o[i]||[]).concat(a)}Object.defineProperty(t,"__esModule",{value:!0});var v=r(n(1)),m=r(n(0)),y=r(n(17)),g=r(n(40)),b=r(n(2)),_=n(41),w=r(n(15)),E=r(n(42)),x=r(n(10)),S=r(n(9)),C=r(n(21)),k=n(22),A=new RegExp("^([a-z]+://|//)","i"),O=(0,C.default)("JSONRefError",function(e,t,n){this.originalError=n,(0,b.default)(this,t||{})}),P={},T=new g.default,M={key:"$ref",plugin:function(e,t,n,r){var s=n.slice(0,-1);if(!(0,k.isFreelyNamed)(s)){var l=r.getContext(n).baseDoc;if("string"!=typeof e)return new O("$ref: must be a string (JSON-Ref)",{$ref:e,baseDoc:l,fullPath:n});var f=a(e),p=f[0],d=f[1]||"",v=void 0;try{v=l||p?o(p,l):null}catch(t){return i(t,{pointer:d,$ref:e,basePath:v,fullPath:n})}var y=void 0,g=void 0;if(!h(d,v,s,r)){if(null==v?(g=c(d),void 0===(y=r.get(g))&&(y=new O("Could not resolve reference: "+e,{pointer:d,$ref:e,baseDoc:l,fullPath:n}))):y=null!=(y=u(v,d)).__value?y.__value:y.catch(function(t){throw i(t,{pointer:d,$ref:e,baseDoc:l,fullPath:n})}),y instanceof Error)return[S.default.remove(n),y];var b=S.default.replace(s,y,{$$ref:e});if(v&&v!==l)return[b,S.default.context(s,{baseDoc:v})];try{if(!function(e,t){var n=[e];return t.path.reduce(function(e,t){return n.push(e[t]),e[t]},e),function e(t){return S.default.isObject(t)&&(n.indexOf(t)>=0||(0,m.default)(t).some(function(n){return e(t[n])}))}(t.value)}(r.state,b))return b}catch(e){return null}}}}},I=(0,b.default)(M,{docCache:P,absoluteify:o,clearCache:function(e){void 0!==e?delete P[e]:(0,m.default)(P).forEach(function(e){delete P[e]})},JSONRefError:O,wrapError:i,getDoc:s,split:a,extractFromDoc:u,fetchJSON:function(e){return(0,_.fetch)(e,{headers:{Accept:"application/json, application/yaml"},loadSpec:!0}).then(function(e){return e.text()}).then(function(e){return w.default.safeLoad(e)})},extract:l,jsonPointerToArray:c,unescapeJsonPointerToken:f});t.default=I;var j=function(e){return!e||"/"===e||"#"===e};e.exports=t.default},function(e,t){e.exports=n(914)},function(e,t){e.exports=n(925)},function(e,t){e.exports=n(926)},function(e,t,n){"use strict";Object.defineProperty(t,"__esModule",{value:!0});var r=function(e){return e&&e.__esModule?e:{default:e}}(n(2)),o=n(22);t.default={key:"allOf",plugin:function(e,t,n,i,a){if(!a.meta||!a.meta.$$ref){var u=n.slice(0,-1);if(!(0,o.isFreelyNamed)(u)){if(!Array.isArray(e)){var s=new TypeError("allOf must be an array");return s.fullPath=n,s}var l=!1,c=a.value;u.forEach(function(e){c&&(c=c[e])}),delete(c=(0,r.default)({},c)).allOf;var f=[i.replace(u,{})].concat(e.map(function(e,t){if(!i.isObject(e)){if(l)return null;l=!0;var r=new TypeError("Elements in allOf must be objects");return r.fullPath=n,r}return i.mergeDeep(u,e)}));return f.push(i.mergeDeep(u,c)),c.$$ref||f.push(i.remove([].concat(u,"$$ref"))),f}}}},e.exports=t.default},function(e,t,n){"use strict";function r(e){return e&&e.__esModule?e:{default:e}}Object.defineProperty(t,"__esModule",{value:!0});var o=r(n(2)),i=r(n(9));t.default={key:"parameters",plugin:function(e,t,n,r,a){if(Array.isArray(e)&&e.length){var u=(0,o.default)([],e),s=n.slice(0,-1),l=(0,o.default)({},i.default.getIn(r.spec,s));return e.forEach(function(e,t){try{u[t].default=r.parameterMacro(l,e)}catch(e){var o=new Error(e);return o.fullPath=n,o}}),i.default.replace(n,u)}return i.default.replace(n,e)}},e.exports=t.default},function(e,t,n){"use strict";function r(e){return e&&e.__esModule?e:{default:e}}Object.defineProperty(t,"__esModule",{value:!0});var o=r(n(2)),i=r(n(9));t.default={key:"properties",plugin:function(e,t,n,r){var a=(0,o.default)({},e);for(var u in e)try{a[u].default=r.modelPropertyMacro(a[u])}catch(e){var s=new Error(e);return s.fullPath=n,s}return i.default.replace(n,a)}},e.exports=t.default},function(e,t,n){"use strict";function r(e){return e&&e.__esModule?e:{default:e}}function o(e,t){return i({children:{}},e,t)}function i(e,t,n){return e.value=t||{},e.protoValue=n?(0,u.default)({},n.protoValue,e.value):e.value,(0,a.default)(e.children).forEach(function(t){var n=e.children[t];e.children[t]=i(n,n.value,e)}),e}Object.defineProperty(t,"__esModule",{value:!0});var a=r(n(0)),u=r(n(3)),s=r(n(19)),l=r(n(20)),c=function(){function e(t){(0,s.default)(this,e),this.root=o(t||{})}return(0,l.default)(e,[{key:"set",value:function(e,t){var n=this.getParent(e,!0);if(n){var r=e[e.length-1],a=n.children;a[r]?i(a[r],t,n):a[r]=o(t,n)}else i(this.root,t,null)}},{key:"get",value:function(e){if((e=e||[]).length<1)return this.root.value;for(var t=this.root,n=void 0,r=void 0,o=0;o2&&void 0!==arguments[2]?arguments[2]:{};return o.default.wrap(function(e){for(;;)switch(e.prev=e.next){case 0:return r=g.returnEntireTree,a=g.baseDoc,c=g.requestInterceptor,f=g.responseInterceptor,p=g.parameterMacro,d=g.modelPropertyMacro,h={pathDiscriminator:n,baseDoc:a,requestInterceptor:c,responseInterceptor:f,parameterMacro:p,modelPropertyMacro:d},v=(0,l.normalizeSwagger)({spec:t}),m=v.spec,e.next=5,(0,s.default)((0,i.default)({},h,{spec:m,allowMetaPatches:!0,skipNormalization:!0}));case 5:return y=e.sent,!r&&Array.isArray(n)&&n.length&&(y.spec=(0,u.default)(y.spec,n)||null),e.abrupt("return",y);case 8:case"end":return e.stop()}},e,this)}));return function(t,n){return e.apply(this,arguments)}}(),e.exports=t.default},function(e,t,n){"use strict";function r(e){return e&&e.__esModule?e:{default:e}}function o(){var e=arguments.length>0&&void 0!==arguments[0]?arguments[0]:{};return function(t){var n=t.pathName,r=t.method,o=t.operationId;return function(t){var i=arguments.length>1&&void 0!==arguments[1]?arguments[1]:{};return e.execute((0,a.default)({spec:e.spec},(0,u.default)(e,"requestInterceptor","responseInterceptor","userFetch"),{pathName:n,method:r,parameters:t,operationId:o},i))}}}function i(e){var t=e.spec,n=e.cb,r=void 0===n?l:n,o=e.defaultTag,i=void 0===o?"default":o,a=e.v2OperationIdCompatibilityMode,u={},f={};return(0,s.eachOperation)(t,function(e){var n=e.pathName,o=e.method,l=e.operation;(l.tags?c(l.tags):[i]).forEach(function(e){if("string"==typeof e){var i=f[e]=f[e]||{},c=(0,s.opId)(l,n,o,{v2OperationIdCompatibilityMode:a}),p=r({spec:t,pathName:n,method:o,operation:l,operationId:c});if(u[c])u[c]++,i[""+c+u[c]]=p;else if(void 0!==i[c]){var d=u[c]||1;u[c]=d+1,i[""+c+u[c]]=p;var h=i[c];delete i[c],i[""+c+d]=h}else i[c]=p}})}),f}Object.defineProperty(t,"__esModule",{value:!0}),t.self=void 0;var a=r(n(3));t.makeExecute=o,t.makeApisTagOperationsOperationExecute=function(){var e=arguments.length>0&&void 0!==arguments[0]?arguments[0]:{},t=f.makeExecute(e),n=f.mapTagOperations({v2OperationIdCompatibilityMode:e.v2OperationIdCompatibilityMode,spec:e.spec,cb:t}),r={};for(var o in n)for(var i in r[o]={operations:{}},n[o])r[o].operations[i]={execute:n[o][i]};return{apis:r}},t.makeApisTagOperation=function(){var e=arguments.length>0&&void 0!==arguments[0]?arguments[0]:{},t=f.makeExecute(e);return{apis:f.mapTagOperations({v2OperationIdCompatibilityMode:e.v2OperationIdCompatibilityMode,spec:e.spec,cb:t})}},t.mapTagOperations=i;var u=r(n(50)),s=n(5),l=function(){return null},c=function(e){return Array.isArray(e)?e:[e]},f=t.self={mapTagOperations:i,makeExecute:o}},function(e,t){e.exports=n(927)},function(e,t,n){"use strict";function r(e){return e&&e.__esModule?e:{default:e}}function o(e){var t=e.spec,n=e.operationId,r=(e.securities,e.requestContentType,e.responseContentType),o=e.scheme,a=e.requestInterceptor,s=e.responseInterceptor,c=e.contextUrl,f=e.userFetch,p=(e.requestBody,e.server),d=e.serverVariables,h=e.http,y=e.parameters,g=e.parameterBuilders,O=(0,x.isOAS3)(t);g||(g=O?_.default:b.default);var P={url:"",credentials:h&&h.withCredentials?"include":"same-origin",headers:{},cookies:{}};a&&(P.requestInterceptor=a),s&&(P.responseInterceptor=s),f&&(P.userFetch=f);var T=(0,x.getOperationRaw)(t,n);if(!T)throw new C("Operation "+n+" not found");var M=T.operation,I=void 0===M?{}:M,j=T.method,N=T.pathName;if(P.url+=i({spec:t,scheme:o,contextUrl:c,server:p,serverVariables:d,pathName:N,method:j}),!n)return delete P.cookies,P;P.url+=N,P.method=(""+j).toUpperCase(),y=y||{};var R=t.paths[N]||{};r&&(P.headers.accept=r);var D=A([].concat(S(I.parameters)).concat(S(R.parameters)));D.forEach(function(e){var n=g[e.in],r=void 0;if("body"===e.in&&e.schema&&e.schema.properties&&(r=y),void 0===(r=e&&e.name&&y[e.name])?r=e&&e.name&&y[e.in+"."+e.name]:k(e.name,D).length>1&&console.warn("Parameter '"+e.name+"' is ambiguous because the defined spec has more than one parameter with the name: '"+e.name+"' and the passed-in parameter values did not define an 'in' value."),null!==r){if(void 0!==e.default&&void 0===r&&(r=e.default),void 0===r&&e.required&&!e.allowEmptyValue)throw new Error("Required parameter "+e.name+" is not provided");if(O&&e.schema&&"object"===e.schema.type&&"string"==typeof r)try{r=JSON.parse(r)}catch(e){throw new Error("Could not parse object parameter value string as JSON")}n&&n({req:P,parameter:e,value:r,operation:I,spec:t})}});var L=(0,u.default)({},e,{operation:I});if((P=O?(0,w.default)(L,P):(0,E.default)(L,P)).cookies&&(0,l.default)(P.cookies).length){var U=(0,l.default)(P.cookies).reduce(function(e,t){var n=P.cookies[t];return e+(e?"&":"")+v.default.serialize(t,n)},"");P.headers.Cookie=U}return P.cookies&&delete P.cookies,(0,m.mergeInQueryOrForm)(P),P}function i(e){return(0,x.isOAS3)(e.spec)?function(e){var t=e.spec,n=e.pathName,r=e.method,o=e.server,i=e.contextUrl,a=e.serverVariables,u=void 0===a?{}:a,s=(0,f.default)(t,["paths",n,(r||"").toLowerCase(),"servers"])||(0,f.default)(t,["paths",n,"servers"])||(0,f.default)(t,["servers"]),l="",c=null;if(o&&s&&s.length){var p=s.map(function(e){return e.url});p.indexOf(o)>-1&&(l=o,c=s[p.indexOf(o)])}!l&&s&&s.length&&(l=s[0].url,c=s[0]),l.indexOf("{")>-1&&function(e){for(var t=[],n=/{([^}]+)}/g,r=void 0;r=n.exec(e);)t.push(r[1]);return t}(l).forEach(function(e){if(c.variables&&c.variables[e]){var t=c.variables[e],n=u[e]||t.default,r=new RegExp("{"+e+"}","g");l=l.replace(r,n)}});return function(){var e=arguments.length>0&&void 0!==arguments[0]?arguments[0]:"",t=arguments.length>1&&void 0!==arguments[1]?arguments[1]:"",n=h.default.parse(e),r=h.default.parse(t),o=P(n.protocol)||P(r.protocol)||"",i=n.host||r.host,a=n.pathname||"",u=void 0;return"/"===(u=o&&i?o+"://"+(i+a):a)[u.length-1]?u.slice(0,-1):u}(l,i)}(e):function(e){var t=e.spec,n=e.scheme,r=e.contextUrl,o=void 0===r?"":r,i=h.default.parse(o),a=Array.isArray(t.schemes)?t.schemes[0]:null,u=n||a||P(i.protocol)||"http",s=t.host||i.host||"",l=t.basePath||"",c=void 0;return"/"===(c=u&&s?u+"://"+(s+l):l)[c.length-1]?c.slice(0,-1):c}(e)}Object.defineProperty(t,"__esModule",{value:!0}),t.self=void 0;var a=r(n(8)),u=r(n(3)),s=r(n(52)),l=r(n(0)),c=r(n(2));t.execute=function(e){var t=e.http,n=e.fetch,r=e.spec,o=e.operationId,i=e.pathName,l=e.method,c=e.parameters,f=e.securities,h=(0,s.default)(e,["http","fetch","spec","operationId","pathName","method","parameters","securities"]),v=t||n||y.default;i&&l&&!o&&(o=(0,x.legacyIdFromPathMethod)(i,l));var m=O.buildRequest((0,u.default)({spec:r,operationId:o,parameters:c,securities:f,http:v},h));return m.body&&((0,p.default)(m.body)||(0,d.default)(m.body))&&(m.body=(0,a.default)(m.body)),v(m)},t.buildRequest=o,t.baseUrl=i;var f=r((r(n(6)),n(12))),p=r(n(53)),d=r(n(54)),h=r((r(n(13)),n(10))),v=r(n(55)),m=n(7),y=r(m),g=r(n(21)),b=r(n(56)),_=r(n(57)),w=r(n(62)),E=r(n(64)),x=n(5),S=function(e){return Array.isArray(e)?e:[]},C=(0,g.default)("OperationNotFoundError",function(e,t,n){this.originalError=n,(0,c.default)(this,t||{})}),k=function(e,t){return t.filter(function(t){return t.name===e})},A=function(e){var t={};e.forEach(function(e){t[e.in]||(t[e.in]={}),t[e.in][e.name]=e});var n=[];return(0,l.default)(t).forEach(function(e){(0,l.default)(t[e]).forEach(function(r){n.push(t[e][r])})}),n},O=t.self={buildRequest:o},P=function(e){return e?e.replace(/\W/g,""):null}},function(e,t){e.exports=n(84)},function(e,t){e.exports=n(227)},function(e,t){e.exports=n(24)},function(e,t){e.exports=n(930)},function(e,t,n){"use strict";Object.defineProperty(t,"__esModule",{value:!0}),t.default={body:function(e){var t=e.req,n=e.value;t.body=n},header:function(e){var t=e.req,n=e.parameter,r=e.value;t.headers=t.headers||{},void 0!==r&&(t.headers[n.name]=r)},query:function(e){var t=e.req,n=e.value,r=e.parameter;if(t.query=t.query||{},!1===n&&"boolean"===r.type&&(n="false"),0===n&&["number","integer"].indexOf(r.type)>-1&&(n="0"),n)t.query[r.name]={collectionFormat:r.collectionFormat,value:n};else if(r.allowEmptyValue&&void 0!==n){var o=r.name;t.query[o]=t.query[o]||{},t.query[o].allowEmptyValue=!0}},path:function(e){var t=e.req,n=e.value,r=e.parameter;t.url=t.url.replace("{"+r.name+"}",encodeURIComponent(n))},formData:function(e){var t=e.req,n=e.value,r=e.parameter;(n||r.allowEmptyValue)&&(t.form=t.form||{},t.form[r.name]={value:n,allowEmptyValue:r.allowEmptyValue,collectionFormat:r.collectionFormat})}},e.exports=t.default},function(e,t,n){"use strict";function r(e){return e&&e.__esModule?e:{default:e}}Object.defineProperty(t,"__esModule",{value:!0});var o=r(n(0)),i=r(n(1)),a=r(n(58));t.default={path:function(e){var t=e.req,n=e.value,r=e.parameter,o=r.name,i=r.style,u=r.explode,s=(0,a.default)({key:r.name,value:n,style:i||"simple",explode:u||!1,escape:!1});t.url=t.url.replace("{"+o+"}",s)},query:function(e){var t=e.req,n=e.value,r=e.parameter;if(t.query=t.query||{},!1===n&&(n="false"),0===n&&(n="0"),n){var u=void 0===n?"undefined":(0,i.default)(n);"deepObject"===r.style?(0,o.default)(n).forEach(function(e){var o=n[e];t.query[r.name+"["+e+"]"]={value:(0,a.default)({key:e,value:o,style:"deepObject",escape:r.allowReserved?"unsafe":"reserved"}),skipEncoding:!0}}):"object"!==u||Array.isArray(n)||"form"!==r.style&&r.style||!r.explode&&void 0!==r.explode?t.query[r.name]={value:(0,a.default)({key:r.name,value:n,style:r.style||"form",explode:void 0===r.explode||r.explode,escape:r.allowReserved?"unsafe":"reserved"}),skipEncoding:!0}:(0,o.default)(n).forEach(function(e){var o=n[e];t.query[e]={value:(0,a.default)({key:e,value:o,style:r.style||"form",escape:r.allowReserved?"unsafe":"reserved"}),skipEncoding:!0}})}else if(r.allowEmptyValue&&void 0!==n){var s=r.name;t.query[s]=t.query[s]||{},t.query[s].allowEmptyValue=!0}},header:function(e){var t=e.req,n=e.parameter,r=e.value;t.headers=t.headers||{},u.indexOf(n.name.toLowerCase())>-1||void 0!==r&&(t.headers[n.name]=(0,a.default)({key:n.name,value:r,style:n.style||"simple",explode:void 0!==n.explode&&n.explode,escape:!1}))},cookie:function(e){var t=e.req,n=e.parameter,r=e.value;t.headers=t.headers||{};var o=void 0===r?"undefined":(0,i.default)(r);if("undefined"!==o){var u="object"===o&&!Array.isArray(r)&&n.explode?"":n.name+"=";t.headers.Cookie=u+(0,a.default)({key:n.name,value:r,escape:!1,style:n.style||"form",explode:void 0!==n.explode&&n.explode})}}};var u=["accept","authorization","content-type"];e.exports=t.default},function(e,t,n){"use strict";function r(e){return e&&e.__esModule?e:{default:e}}function o(e){var t=(arguments.length>1&&void 0!==arguments[1]?arguments[1]:{}).escape,n=arguments[2];return"number"==typeof e&&(e=e.toString()),"string"==typeof e&&e.length&&t?n?JSON.parse(e):(0,s.stringToCharArray)(e).map(function(e){return c(e)?e:l(e)&&"unsafe"===t?e:((0,u.default)(e)||[]).map(function(e){return e.toString(16).toUpperCase()}).map(function(e){return"%"+e}).join("")}).join(""):e}Object.defineProperty(t,"__esModule",{value:!0});var i=r(n(0)),a=r(n(1));t.encodeDisallowedCharacters=o,t.default=function(e){var t=e.value;return Array.isArray(t)?function(e){var t=e.key,n=e.value,r=e.style,i=e.explode,a=e.escape,u=function(e){return o(e,{escape:a})};if("simple"===r)return n.map(function(e){return u(e)}).join(",");if("label"===r)return"."+n.map(function(e){return u(e)}).join(".");if("matrix"===r)return n.map(function(e){return u(e)}).reduce(function(e,n){return!e||i?(e||"")+";"+t+"="+n:e+","+n},"");if("form"===r){var s=i?"&"+t+"=":",";return n.map(function(e){return u(e)}).join(s)}if("spaceDelimited"===r){var l=i?t+"=":"";return n.map(function(e){return u(e)}).join(" "+l)}if("pipeDelimited"===r){var c=i?t+"=":"";return n.map(function(e){return u(e)}).join("|"+c)}}(e):"object"===(void 0===t?"undefined":(0,a.default)(t))?function(e){var t=e.key,n=e.value,r=e.style,a=e.explode,u=e.escape,s=function(e){return o(e,{escape:u})},l=(0,i.default)(n);return"simple"===r?l.reduce(function(e,t){var r=s(n[t]);return(e?e+",":"")+t+(a?"=":",")+r},""):"label"===r?l.reduce(function(e,t){var r=s(n[t]);return(e?e+".":".")+t+(a?"=":".")+r},""):"matrix"===r&&a?l.reduce(function(e,t){var r=s(n[t]);return(e?e+";":";")+t+"="+r},""):"matrix"===r?l.reduce(function(e,r){var o=s(n[r]);return(e?e+",":";"+t+"=")+r+","+o},""):"form"===r?l.reduce(function(e,t){var r=s(n[t]);return(e?e+(a?"&":","):"")+t+(a?"=":",")+r},""):void 0}(e):function(e){var t=e.key,n=e.value,r=e.style,i=e.escape,a=function(e){return o(e,{escape:i})};return"simple"===r?a(n):"label"===r?"."+a(n):"matrix"===r?";"+t+"="+a(n):"form"===r?a(n):"deepObject"===r?a(n):void 0}(e)};var u=r((r(n(59)),n(60))),s=n(61),l=function(e){return":/?#[]@!$&'()*+,;=".indexOf(e)>-1},c=function(e){return/^[a-z0-9\-._~]+$/i.test(e)}},function(e,t){e.exports=n(931)},function(e,t){e.exports=n(932)},function(e,t){e.exports=n(933)},function(e,t,n){"use strict";function r(e){return e&&e.__esModule?e:{default:e}}function o(e){var t=e.request,n=e.securities,r=void 0===n?{}:n,o=e.operation,i=void 0===o?{}:o,a=e.spec,f=(0,s.default)({},t),p=r.authorized,d=void 0===p?{}:p,h=i.security||a.security||[],v=d&&!!(0,u.default)(d).length,m=(0,l.default)(a,["components","securitySchemes"])||{};return f.headers=f.headers||{},f.query=f.query||{},(0,u.default)(r).length&&v&&h&&(!Array.isArray(i.security)||i.security.length)?(h.forEach(function(e,t){for(var n in e){var r=d[n],o=m[n];if(r){var i=r.value||r,a=o.type;if(r)if("apiKey"===a)"query"===o.in&&(f.query[o.name]=i),"header"===o.in&&(f.headers[o.name]=i),"cookie"===o.in&&(f.cookies[o.name]=i);else if("http"===a){if("basic"===o.scheme){var u=i.username,s=i.password,l=(0,c.default)(u+":"+s);f.headers.Authorization="Basic "+l}"bearer"===o.scheme&&(f.headers.Authorization="Bearer "+i)}else if("oauth2"===a){var p=r.token||{},h=p.access_token,v=p.token_type;v&&"bearer"!==v.toLowerCase()||(v="Bearer"),f.headers.Authorization=v+" "+h}}}}),f):t}Object.defineProperty(t,"__esModule",{value:!0});var i=r(n(8)),a=r(n(1)),u=r(n(0));t.default=function(e,t){var n=e.operation,r=e.requestBody,s=e.securities,l=e.spec,c=e.attachContentTypeForEmptyPayload,p=e.requestContentType;t=o({request:t,securities:s,operation:n,spec:l});var d=n.requestBody||{},h=(0,u.default)(d.content||{}),v=p&&h.indexOf(p)>-1;if(r||c){if(p&&v)t.headers["Content-Type"]=p;else if(!p){var m=h[0];m&&(t.headers["Content-Type"]=m,p=m)}}else p&&v&&(t.headers["Content-Type"]=p);return r&&(p?h.indexOf(p)>-1&&("application/x-www-form-urlencoded"===p||0===p.indexOf("multipart/")?"object"===(void 0===r?"undefined":(0,a.default)(r))?(t.form={},(0,u.default)(r).forEach(function(e){var n,o=r[e],u=void 0;"undefined"!=typeof File&&(u=o instanceof File),"undefined"!=typeof Blob&&(u=u||o instanceof Blob),void 0!==f.Buffer&&(u=u||f.Buffer.isBuffer(o)),n="object"!==(void 0===o?"undefined":(0,a.default)(o))||u?o:Array.isArray(o)?o.toString():(0,i.default)(o),t.form[e]={value:n}})):t.form=r:t.body=r):t.body=r),t},t.applySecurities=o;var s=r(n(6)),l=r(n(12)),c=r(n(13)),f=n(63)},function(e,t){e.exports=n(54)},function(e,t,n){"use strict";function r(e){return e&&e.__esModule?e:{default:e}}function o(e){var t=e.request,n=e.securities,r=void 0===n?{}:n,o=e.operation,s=void 0===o?{}:o,l=e.spec,c=(0,u.default)({},t),f=r.authorized,p=void 0===f?{}:f,d=r.specSecurity,h=void 0===d?[]:d,v=s.security||h,m=p&&!!(0,i.default)(p).length,y=l.securityDefinitions;return c.headers=c.headers||{},c.query=c.query||{},(0,i.default)(r).length&&m&&v&&(!Array.isArray(s.security)||s.security.length)?(v.forEach(function(e,t){for(var n in e){var r=p[n];if(r){var o=r.token,i=r.value||r,u=y[n],s=u.type,l=o&&o.access_token,f=o&&o.token_type;if(r)if("apiKey"===s){var d="query"===u.in?"query":"headers";c[d]=c[d]||{},c[d][u.name]=i}else"basic"===s?i.header?c.headers.authorization=i.header:(i.base64=(0,a.default)(i.username+":"+i.password),c.headers.authorization="Basic "+i.base64):"oauth2"===s&&l&&(f=f&&"bearer"!==f.toLowerCase()?f:"Bearer",c.headers.authorization=f+" "+l)}}}),c):t}Object.defineProperty(t,"__esModule",{value:!0});var i=r(n(0));t.default=function(e,t){var n=e.spec,r=e.operation,i=e.securities,a=e.requestContentType,u=e.attachContentTypeForEmptyPayload;if((t=o({request:t,securities:i,operation:r,spec:n})).body||t.form||u)a?t.headers["Content-Type"]=a:Array.isArray(r.consumes)?t.headers["Content-Type"]=r.consumes[0]:Array.isArray(n.consumes)?t.headers["Content-Type"]=n.consumes[0]:r.parameters&&r.parameters.filter(function(e){return"file"===e.type}).length?t.headers["Content-Type"]="multipart/form-data":r.parameters&&r.parameters.filter(function(e){return"formData"===e.in}).length&&(t.headers["Content-Type"]="application/x-www-form-urlencoded");else if(a){var s=r.parameters&&r.parameters.filter(function(e){return"body"===e.in}).length>0,l=r.parameters&&r.parameters.filter(function(e){return"formData"===e.in}).length>0;(s||l)&&(t.headers["Content-Type"]=a)}return t},t.applySecurities=o;var a=r(n(13)),u=r(n(6));r(n(7))}])},function(e,t,n){"use strict";var r=Object.prototype.hasOwnProperty,o=function(){for(var e=[],t=0;t<256;++t)e.push("%"+((t<16?"0":"")+t.toString(16)).toUpperCase());return e}();t.arrayToObject=function(e,t){for(var n=t&&t.plainObjects?Object.create(null):{},r=0;r=48&&i<=57||i>=65&&i<=90||i>=97&&i<=122?n+=t.charAt(r):i<128?n+=o[i]:i<2048?n+=o[192|i>>6]+o[128|63&i]:i<55296||i>=57344?n+=o[224|i>>12]+o[128|i>>6&63]+o[128|63&i]:(r+=1,i=65536+((1023&i)<<10|1023&t.charCodeAt(r)),n+=o[240|i>>18]+o[128|i>>12&63]+o[128|i>>6&63]+o[128|63&i])}return n},t.compact=function(e){for(var t=[{obj:{o:e},prop:"o"}],n=[],r=0;r=0;l--)if(f[l]!=p[l])return!1;for(l=f.length-1;l>=0;l--)if(c=f[l],!a(e[c],t[c],n))return!1;return typeof e==typeof t}(e,t,n))};function u(e){return null===e||void 0===e}function s(e){return!(!e||"object"!=typeof e||"number"!=typeof e.length)&&("function"==typeof e.copy&&"function"==typeof e.slice&&!(e.length>0&&"number"!=typeof e[0]))}},function(e,t,n){var r={strict:!0},o=n(391),i=function(e,t){return o(e,t,r)},a=n(230);t.JsonPatchError=a.PatchError,t.deepClone=a._deepClone;var u={add:function(e,t,n){return e[t]=this.value,{newDocument:n}},remove:function(e,t,n){var r=e[t];return delete e[t],{newDocument:n,removed:r}},replace:function(e,t,n){var r=e[t];return e[t]=this.value,{newDocument:n,removed:r}},move:function(e,t,n){var r=l(n,this.path);r&&(r=a._deepClone(r));var o=c(n,{op:"remove",path:this.from}).removed;return c(n,{op:"add",path:this.path,value:o}),{newDocument:n,removed:r}},copy:function(e,t,n){var r=l(n,this.from);return c(n,{op:"add",path:this.path,value:a._deepClone(r)}),{newDocument:n}},test:function(e,t,n){return{newDocument:n,test:i(e[t],this.value)}},_get:function(e,t,n){return this.value=e[t],{newDocument:n}}},s={add:function(e,t,n){return a.isInteger(t)?e.splice(t,0,this.value):e[t]=this.value,{newDocument:n,index:t}},remove:function(e,t,n){return{newDocument:n,removed:e.splice(t,1)[0]}},replace:function(e,t,n){var r=e[t];return e[t]=this.value,{newDocument:n,removed:r}},move:u.move,copy:u.copy,test:u.test,_get:u._get};function l(e,t){if(""==t)return e;var n={op:"_get",path:t};return c(e,n),n.value}function c(e,n,r,o){if(void 0===r&&(r=!1),void 0===o&&(o=!0),r&&("function"==typeof r?r(n,0,e,n.path):p(n,0)),""===n.path){var c={newDocument:e};if("add"===n.op)return c.newDocument=n.value,c;if("replace"===n.op)return c.newDocument=n.value,c.removed=e,c;if("move"===n.op||"copy"===n.op)return c.newDocument=l(e,n.from),"move"===n.op&&(c.removed=e),c;if("test"===n.op){if(c.test=i(e,n.value),!1===c.test)throw new t.JsonPatchError("Test operation failed","TEST_OPERATION_FAILED",0,n,e);return c.newDocument=e,c}if("remove"===n.op)return c.removed=e,c.newDocument=null,c;if("_get"===n.op)return n.value=e,c;if(r)throw new t.JsonPatchError("Operation `op` property is not one of operations defined in RFC-6902","OPERATION_OP_INVALID",0,n,e);return c}o||(e=a._deepClone(e));var f=(n.path||"").split("/"),d=e,h=1,v=f.length,m=void 0,y=void 0,g=void 0;for(g="function"==typeof r?r:p;;){if(y=f[h],r&&void 0===m&&(void 0===d[y]?m=f.slice(0,h).join("/"):h==v-1&&(m=n.path),void 0!==m&&g(n,0,e,m)),h++,Array.isArray(d)){if("-"===y)y=d.length;else{if(r&&!a.isInteger(y))throw new t.JsonPatchError("Expected an unsigned base-10 integer value, making the new referenced value the array element with the zero-based index","OPERATION_PATH_ILLEGAL_ARRAY_INDEX",0,n.path,n);a.isInteger(y)&&(y=~~y)}if(h>=v){if(r&&"add"===n.op&&y>d.length)throw new t.JsonPatchError("The specified index MUST NOT be greater than the number of elements in the array","OPERATION_VALUE_OUT_OF_BOUNDS",0,n.path,n);if(!1===(c=s[n.op].call(n,d,y,e)).test)throw new t.JsonPatchError("Test operation failed","TEST_OPERATION_FAILED",0,n,e);return c}}else if(y&&-1!=y.indexOf("~")&&(y=a.unescapePathComponent(y)),h>=v){if(!1===(c=u[n.op].call(n,d,y,e)).test)throw new t.JsonPatchError("Test operation failed","TEST_OPERATION_FAILED",0,n,e);return c}d=d[y]}}function f(e,n,r,o){if(void 0===o&&(o=!0),r&&!Array.isArray(n))throw new t.JsonPatchError("Patch sequence must be an array","SEQUENCE_NOT_AN_ARRAY");o||(e=a._deepClone(e));for(var i=new Array(n.length),u=0,s=n.length;u0)throw new t.JsonPatchError('Operation `path` property must start with "/"',"OPERATION_PATH_INVALID",n,e,r);if(("move"===e.op||"copy"===e.op)&&"string"!=typeof e.from)throw new t.JsonPatchError("Operation `from` property is not present (applicable in `move` and `copy` operations)","OPERATION_FROM_REQUIRED",n,e,r);if(("add"===e.op||"replace"===e.op||"test"===e.op)&&void 0===e.value)throw new t.JsonPatchError("Operation `value` property is not present (applicable in `add`, `replace` and `test` operations)","OPERATION_VALUE_REQUIRED",n,e,r);if(("add"===e.op||"replace"===e.op||"test"===e.op)&&a.hasUndefined(e.value))throw new t.JsonPatchError("Operation `value` property is not present (applicable in `add`, `replace` and `test` operations)","OPERATION_VALUE_CANNOT_CONTAIN_UNDEFINED",n,e,r);if(r)if("add"==e.op){var i=e.path.split("/").length,s=o.split("/").length;if(i!==s+1&&i!==s)throw new t.JsonPatchError("Cannot perform an `add` operation at the desired path","OPERATION_PATH_CANNOT_ADD",n,e,r)}else if("replace"===e.op||"remove"===e.op||"_get"===e.op){if(e.path!==o)throw new t.JsonPatchError("Cannot perform the operation at a path that does not exist","OPERATION_PATH_UNRESOLVABLE",n,e,r)}else if("move"===e.op||"copy"===e.op){var l=d([{op:"_get",path:e.from,value:void 0}],r);if(l&&"OPERATION_PATH_UNRESOLVABLE"===l.name)throw new t.JsonPatchError("Cannot perform the operation from a path that does not exist","OPERATION_FROM_UNRESOLVABLE",n,e,r)}}function d(e,n,r){try{if(!Array.isArray(e))throw new t.JsonPatchError("Patch sequence must be an array","SEQUENCE_NOT_AN_ARRAY");if(n)f(a._deepClone(n),a._deepClone(e),r||!0);else{r=r||p;for(var o=0;o1&&void 0!==arguments[1]?arguments[1]:(0,a.List)();return function(e){return(e.authSelectors.definitionsToAuthorize()||(0,a.List)()).filter(function(e){return t.some(function(t){return t.get(e.keySeq().first())})})}},t.authorized=(0,i.createSelector)(s,function(e){return e.get("authorized")||(0,a.Map)()}),t.isAuthorized=function(e,t){return function(e){var n=e.authSelectors.authorized();return a.List.isList(t)?!!t.toJS().filter(function(e){return-1===(0,r.default)(e).map(function(e){return!!n.get(e)}).indexOf(!1)}).length:null}},t.getConfigs=(0,i.createSelector)(s,function(e){return e.get("configs")})},function(e,t,n){"use strict";Object.defineProperty(t,"__esModule",{value:!0}),t.execute=void 0;var r,o=n(25),i=(r=o)&&r.__esModule?r:{default:r};t.execute=function(e,t){var n=t.authSelectors,r=t.specSelectors;return function(t){var o=t.path,a=t.method,u=t.operation,s=t.extras,l={authorized:n.authorized()&&n.authorized().toJS(),definitions:r.securityDefinitions()&&r.securityDefinitions().toJS(),specSecurity:r.security()&&r.security().toJS()};return e((0,i.default)({path:o,method:a,operation:u,securities:l},s))}}},function(e,t,n){"use strict";Object.defineProperty(t,"__esModule",{value:!0}),t.default=function(){return{fn:{shallowEqualKeys:r.shallowEqualKeys}}};var r=n(12)},function(e,t,n){"use strict";Object.defineProperty(t,"__esModule",{value:!0});var r=s(n(41)),o=s(n(23));t.default=function(e){var t=e.fn,n={download:function(e){return function(n){var r=n.errActions,i=n.specSelectors,a=n.specActions,s=n.getConfigs,l=t.fetch,c=s();function f(t){if(t instanceof Error||t.status>=400)return a.updateLoadingStatus("failed"),r.newThrownErr((0,o.default)(new Error((t.message||t.statusText)+" "+e),{source:"fetch"})),void(!t.status&&t instanceof Error&&function(){try{var t=void 0;if("URL"in u.default?t=new URL(e):(t=document.createElement("a")).href=e,"https:"!==t.protocol&&"https:"===u.default.location.protocol){var n=(0,o.default)(new Error("Possible mixed-content issue? The page was loaded over https:// but a "+t.protocol+"// URL was specified. Check that you are not attempting to load mixed content."),{source:"fetch"});return void r.newThrownErr(n)}if(t.origin!==u.default.location.origin){var i=(0,o.default)(new Error("Possible cross-origin (CORS) issue? The URL origin ("+t.origin+") does not match the page ("+u.default.location.origin+"). Check the server returns the correct 'Access-Control-Allow-*' headers."),{source:"fetch"});r.newThrownErr(i)}}catch(e){return}}());a.updateLoadingStatus("success"),a.updateSpec(t.text),i.url()!==e&&a.updateUrl(e)}e=e||i.url(),a.updateLoadingStatus("loading"),r.clear({source:"fetch"}),l({url:e,loadSpec:!0,requestInterceptor:c.requestInterceptor||function(e){return e},responseInterceptor:c.responseInterceptor||function(e){return e},credentials:"same-origin",headers:{Accept:"application/json,*/*"}}).then(f,f)}},updateLoadingStatus:function(e){var t=[null,"loading","failed","success","failedConfig"];return-1===t.indexOf(e)&&console.error("Error: "+e+" is not one of "+(0,r.default)(t)),{type:"spec_update_loading_status",payload:e}}},s={loadingStatus:(0,i.createSelector)(function(e){return e||(0,a.Map)()},function(e){return e.get("loadingStatus")||null})};return{statePlugins:{spec:{actions:n,reducers:{spec_update_loading_status:function(e,t){return"string"==typeof t.payload?e.set("loadingStatus",t.payload):e}},selectors:s}}}};var i=n(57),a=n(7),u=s(n(32));function s(e){return e&&e.__esModule?e:{default:e}}},function(e,t,n){"use strict";Object.defineProperty(t,"__esModule",{value:!0}),t.default=function(){return{statePlugins:{spec:{actions:a,selectors:f},configs:{reducers:s.default,actions:i,selectors:u}}}};var r=c(n(934)),o=n(233),i=l(n(234)),a=l(n(401)),u=l(n(402)),s=c(n(403));function l(e){if(e&&e.__esModule)return e;var t={};if(null!=e)for(var n in e)Object.prototype.hasOwnProperty.call(e,n)&&(t[n]=e[n]);return t.default=e,t}function c(e){return e&&e.__esModule?e:{default:e}}var f={getLocalConfig:function(){return(0,o.parseYamlConfig)(r.default)}}},function(e,t,n){"use strict";Object.defineProperty(t,"__esModule",{value:!0}),t.getConfigByUrl=t.downloadConfig=void 0;var r=n(233);t.downloadConfig=function(e){return function(t){return(0,t.fn.fetch)(e)}},t.getConfigByUrl=function(e,t){return function(n){var o=n.specActions;if(e)return o.downloadConfig(e).then(i,i);function i(n){n instanceof Error||n.status>=400?(o.updateLoadingStatus("failedConfig"),o.updateLoadingStatus("failedConfig"),o.updateUrl(""),console.error(n.statusText+" "+e.url),t(null)):t((0,r.parseYamlConfig)(n.text))}}}},function(e,t,n){"use strict";Object.defineProperty(t,"__esModule",{value:!0});t.get=function(e,t){return e.getIn(Array.isArray(t)?t:[t])}},function(e,t,n){"use strict";Object.defineProperty(t,"__esModule",{value:!0});var r,o,i=n(22),a=(r=i)&&r.__esModule?r:{default:r},u=n(7),s=n(234);t.default=(o={},(0,a.default)(o,s.UPDATE_CONFIGS,function(e,t){return e.merge((0,u.fromJS)(t.payload))}),(0,a.default)(o,s.TOGGLE_CONFIGS,function(e,t){var n=t.payload,r=e.get(n);return e.set(n,!r)}),o)},function(e,t,n){"use strict";Object.defineProperty(t,"__esModule",{value:!0}),t.default=function(){return[r.default,{statePlugins:{configs:{wrapActions:{loaded:function(e,t){return function(){e.apply(void 0,arguments);var n=window.location.hash;t.layoutActions.parseDeepLinkHash(n)}}}}},wrapComponents:{operation:o.default,OperationTag:i.default}}]};var r=a(n(405)),o=a(n(407)),i=a(n(408));function a(e){return e&&e.__esModule?e:{default:e}}},function(e,t,n){"use strict";Object.defineProperty(t,"__esModule",{value:!0}),t.clearScrollTo=t.scrollToElement=t.readyToScroll=t.parseDeepLinkHash=t.scrollTo=t.show=void 0;var r,o=c(n(22)),i=c(n(18)),a=n(406),u=c(n(935)),s=n(7),l=c(s);function c(e){return e&&e.__esModule?e:{default:e}}var f=t.show=function(e,t){var n=t.getConfigs,r=t.layoutSelectors;return function(){for(var t=arguments.length,o=Array(t),u=0;u",Gt:"≫",gt:">",gtcc:"⪧",gtcir:"⩺",gtdot:"⋗",gtlPar:"⦕",gtquest:"⩼",gtrapprox:"⪆",gtrarr:"⥸",gtrdot:"⋗",gtreqless:"⋛",gtreqqless:"⪌",gtrless:"≷",gtrsim:"≳",gvertneqq:"≩︀",gvnE:"≩︀",Hacek:"ˇ",hairsp:" ",half:"½",hamilt:"ℋ",HARDcy:"Ъ",hardcy:"ъ",hArr:"⇔",harr:"↔",harrcir:"⥈",harrw:"↭",Hat:"^",hbar:"ℏ",Hcirc:"Ĥ",hcirc:"ĥ",hearts:"♥",heartsuit:"♥",hellip:"…",hercon:"⊹",Hfr:"ℌ",hfr:"𝔥",HilbertSpace:"ℋ",hksearow:"⤥",hkswarow:"⤦",hoarr:"⇿",homtht:"∻",hookleftarrow:"↩",hookrightarrow:"↪",Hopf:"ℍ",hopf:"𝕙",horbar:"―",HorizontalLine:"─",Hscr:"ℋ",hscr:"𝒽",hslash:"ℏ",Hstrok:"Ħ",hstrok:"ħ",HumpDownHump:"≎",HumpEqual:"≏",hybull:"⁃",hyphen:"‐",Iacute:"Í",iacute:"í",ic:"⁣",Icirc:"Î",icirc:"î",Icy:"И",icy:"и",Idot:"İ",IEcy:"Е",iecy:"е",iexcl:"¡",iff:"⇔",Ifr:"ℑ",ifr:"𝔦",Igrave:"Ì",igrave:"ì",ii:"ⅈ",iiiint:"⨌",iiint:"∭",iinfin:"⧜",iiota:"℩",IJlig:"IJ",ijlig:"ij",Im:"ℑ",Imacr:"Ī",imacr:"ī",image:"ℑ",ImaginaryI:"ⅈ",imagline:"ℐ",imagpart:"ℑ",imath:"ı",imof:"⊷",imped:"Ƶ",Implies:"⇒",in:"∈",incare:"℅",infin:"∞",infintie:"⧝",inodot:"ı",Int:"∬",int:"∫",intcal:"⊺",integers:"ℤ",Integral:"∫",intercal:"⊺",Intersection:"⋂",intlarhk:"⨗",intprod:"⨼",InvisibleComma:"⁣",InvisibleTimes:"⁢",IOcy:"Ё",iocy:"ё",Iogon:"Į",iogon:"į",Iopf:"𝕀",iopf:"𝕚",Iota:"Ι",iota:"ι",iprod:"⨼",iquest:"¿",Iscr:"ℐ",iscr:"𝒾",isin:"∈",isindot:"⋵",isinE:"⋹",isins:"⋴",isinsv:"⋳",isinv:"∈",it:"⁢",Itilde:"Ĩ",itilde:"ĩ",Iukcy:"І",iukcy:"і",Iuml:"Ï",iuml:"ï",Jcirc:"Ĵ",jcirc:"ĵ",Jcy:"Й",jcy:"й",Jfr:"𝔍",jfr:"𝔧",jmath:"ȷ",Jopf:"𝕁",jopf:"𝕛",Jscr:"𝒥",jscr:"𝒿",Jsercy:"Ј",jsercy:"ј",Jukcy:"Є",jukcy:"є",Kappa:"Κ",kappa:"κ",kappav:"ϰ",Kcedil:"Ķ",kcedil:"ķ",Kcy:"К",kcy:"к",Kfr:"𝔎",kfr:"𝔨",kgreen:"ĸ",KHcy:"Х",khcy:"х",KJcy:"Ќ",kjcy:"ќ",Kopf:"𝕂",kopf:"𝕜",Kscr:"𝒦",kscr:"𝓀",lAarr:"⇚",Lacute:"Ĺ",lacute:"ĺ",laemptyv:"⦴",lagran:"ℒ",Lambda:"Λ",lambda:"λ",Lang:"⟪",lang:"⟨",langd:"⦑",langle:"⟨",lap:"⪅",Laplacetrf:"ℒ",laquo:"«",Larr:"↞",lArr:"⇐",larr:"←",larrb:"⇤",larrbfs:"⤟",larrfs:"⤝",larrhk:"↩",larrlp:"↫",larrpl:"⤹",larrsim:"⥳",larrtl:"↢",lat:"⪫",lAtail:"⤛",latail:"⤙",late:"⪭",lates:"⪭︀",lBarr:"⤎",lbarr:"⤌",lbbrk:"❲",lbrace:"{",lbrack:"[",lbrke:"⦋",lbrksld:"⦏",lbrkslu:"⦍",Lcaron:"Ľ",lcaron:"ľ",Lcedil:"Ļ",lcedil:"ļ",lceil:"⌈",lcub:"{",Lcy:"Л",lcy:"л",ldca:"⤶",ldquo:"“",ldquor:"„",ldrdhar:"⥧",ldrushar:"⥋",ldsh:"↲",lE:"≦",le:"≤",LeftAngleBracket:"⟨",LeftArrow:"←",Leftarrow:"⇐",leftarrow:"←",LeftArrowBar:"⇤",LeftArrowRightArrow:"⇆",leftarrowtail:"↢",LeftCeiling:"⌈",LeftDoubleBracket:"⟦",LeftDownTeeVector:"⥡",LeftDownVector:"⇃",LeftDownVectorBar:"⥙",LeftFloor:"⌊",leftharpoondown:"↽",leftharpoonup:"↼",leftleftarrows:"⇇",LeftRightArrow:"↔",Leftrightarrow:"⇔",leftrightarrow:"↔",leftrightarrows:"⇆",leftrightharpoons:"⇋",leftrightsquigarrow:"↭",LeftRightVector:"⥎",LeftTee:"⊣",LeftTeeArrow:"↤",LeftTeeVector:"⥚",leftthreetimes:"⋋",LeftTriangle:"⊲",LeftTriangleBar:"⧏",LeftTriangleEqual:"⊴",LeftUpDownVector:"⥑",LeftUpTeeVector:"⥠",LeftUpVector:"↿",LeftUpVectorBar:"⥘",LeftVector:"↼",LeftVectorBar:"⥒",lEg:"⪋",leg:"⋚",leq:"≤",leqq:"≦",leqslant:"⩽",les:"⩽",lescc:"⪨",lesdot:"⩿",lesdoto:"⪁",lesdotor:"⪃",lesg:"⋚︀",lesges:"⪓",lessapprox:"⪅",lessdot:"⋖",lesseqgtr:"⋚",lesseqqgtr:"⪋",LessEqualGreater:"⋚",LessFullEqual:"≦",LessGreater:"≶",lessgtr:"≶",LessLess:"⪡",lesssim:"≲",LessSlantEqual:"⩽",LessTilde:"≲",lfisht:"⥼",lfloor:"⌊",Lfr:"𝔏",lfr:"𝔩",lg:"≶",lgE:"⪑",lHar:"⥢",lhard:"↽",lharu:"↼",lharul:"⥪",lhblk:"▄",LJcy:"Љ",ljcy:"љ",Ll:"⋘",ll:"≪",llarr:"⇇",llcorner:"⌞",Lleftarrow:"⇚",llhard:"⥫",lltri:"◺",Lmidot:"Ŀ",lmidot:"ŀ",lmoust:"⎰",lmoustache:"⎰",lnap:"⪉",lnapprox:"⪉",lnE:"≨",lne:"⪇",lneq:"⪇",lneqq:"≨",lnsim:"⋦",loang:"⟬",loarr:"⇽",lobrk:"⟦",LongLeftArrow:"⟵",Longleftarrow:"⟸",longleftarrow:"⟵",LongLeftRightArrow:"⟷",Longleftrightarrow:"⟺",longleftrightarrow:"⟷",longmapsto:"⟼",LongRightArrow:"⟶",Longrightarrow:"⟹",longrightarrow:"⟶",looparrowleft:"↫",looparrowright:"↬",lopar:"⦅",Lopf:"𝕃",lopf:"𝕝",loplus:"⨭",lotimes:"⨴",lowast:"∗",lowbar:"_",LowerLeftArrow:"↙",LowerRightArrow:"↘",loz:"◊",lozenge:"◊",lozf:"⧫",lpar:"(",lparlt:"⦓",lrarr:"⇆",lrcorner:"⌟",lrhar:"⇋",lrhard:"⥭",lrm:"‎",lrtri:"⊿",lsaquo:"‹",Lscr:"ℒ",lscr:"𝓁",Lsh:"↰",lsh:"↰",lsim:"≲",lsime:"⪍",lsimg:"⪏",lsqb:"[",lsquo:"‘",lsquor:"‚",Lstrok:"Ł",lstrok:"ł",LT:"<",Lt:"≪",lt:"<",ltcc:"⪦",ltcir:"⩹",ltdot:"⋖",lthree:"⋋",ltimes:"⋉",ltlarr:"⥶",ltquest:"⩻",ltri:"◃",ltrie:"⊴",ltrif:"◂",ltrPar:"⦖",lurdshar:"⥊",luruhar:"⥦",lvertneqq:"≨︀",lvnE:"≨︀",macr:"¯",male:"♂",malt:"✠",maltese:"✠",Map:"⤅",map:"↦",mapsto:"↦",mapstodown:"↧",mapstoleft:"↤",mapstoup:"↥",marker:"▮",mcomma:"⨩",Mcy:"М",mcy:"м",mdash:"—",mDDot:"∺",measuredangle:"∡",MediumSpace:" ",Mellintrf:"ℳ",Mfr:"𝔐",mfr:"𝔪",mho:"℧",micro:"µ",mid:"∣",midast:"*",midcir:"⫰",middot:"·",minus:"−",minusb:"⊟",minusd:"∸",minusdu:"⨪",MinusPlus:"∓",mlcp:"⫛",mldr:"…",mnplus:"∓",models:"⊧",Mopf:"𝕄",mopf:"𝕞",mp:"∓",Mscr:"ℳ",mscr:"𝓂",mstpos:"∾",Mu:"Μ",mu:"μ",multimap:"⊸",mumap:"⊸",nabla:"∇",Nacute:"Ń",nacute:"ń",nang:"∠⃒",nap:"≉",napE:"⩰̸",napid:"≋̸",napos:"ʼn",napprox:"≉",natur:"♮",natural:"♮",naturals:"ℕ",nbsp:" ",nbump:"≎̸",nbumpe:"≏̸",ncap:"⩃",Ncaron:"Ň",ncaron:"ň",Ncedil:"Ņ",ncedil:"ņ",ncong:"≇",ncongdot:"⩭̸",ncup:"⩂",Ncy:"Н",ncy:"н",ndash:"–",ne:"≠",nearhk:"⤤",neArr:"⇗",nearr:"↗",nearrow:"↗",nedot:"≐̸",NegativeMediumSpace:"​",NegativeThickSpace:"​",NegativeThinSpace:"​",NegativeVeryThinSpace:"​",nequiv:"≢",nesear:"⤨",nesim:"≂̸",NestedGreaterGreater:"≫",NestedLessLess:"≪",NewLine:"\n",nexist:"∄",nexists:"∄",Nfr:"𝔑",nfr:"𝔫",ngE:"≧̸",nge:"≱",ngeq:"≱",ngeqq:"≧̸",ngeqslant:"⩾̸",nges:"⩾̸",nGg:"⋙̸",ngsim:"≵",nGt:"≫⃒",ngt:"≯",ngtr:"≯",nGtv:"≫̸",nhArr:"⇎",nharr:"↮",nhpar:"⫲",ni:"∋",nis:"⋼",nisd:"⋺",niv:"∋",NJcy:"Њ",njcy:"њ",nlArr:"⇍",nlarr:"↚",nldr:"‥",nlE:"≦̸",nle:"≰",nLeftarrow:"⇍",nleftarrow:"↚",nLeftrightarrow:"⇎",nleftrightarrow:"↮",nleq:"≰",nleqq:"≦̸",nleqslant:"⩽̸",nles:"⩽̸",nless:"≮",nLl:"⋘̸",nlsim:"≴",nLt:"≪⃒",nlt:"≮",nltri:"⋪",nltrie:"⋬",nLtv:"≪̸",nmid:"∤",NoBreak:"⁠",NonBreakingSpace:" ",Nopf:"ℕ",nopf:"𝕟",Not:"⫬",not:"¬",NotCongruent:"≢",NotCupCap:"≭",NotDoubleVerticalBar:"∦",NotElement:"∉",NotEqual:"≠",NotEqualTilde:"≂̸",NotExists:"∄",NotGreater:"≯",NotGreaterEqual:"≱",NotGreaterFullEqual:"≧̸",NotGreaterGreater:"≫̸",NotGreaterLess:"≹",NotGreaterSlantEqual:"⩾̸",NotGreaterTilde:"≵",NotHumpDownHump:"≎̸",NotHumpEqual:"≏̸",notin:"∉",notindot:"⋵̸",notinE:"⋹̸",notinva:"∉",notinvb:"⋷",notinvc:"⋶",NotLeftTriangle:"⋪",NotLeftTriangleBar:"⧏̸",NotLeftTriangleEqual:"⋬",NotLess:"≮",NotLessEqual:"≰",NotLessGreater:"≸",NotLessLess:"≪̸",NotLessSlantEqual:"⩽̸",NotLessTilde:"≴",NotNestedGreaterGreater:"⪢̸",NotNestedLessLess:"⪡̸",notni:"∌",notniva:"∌",notnivb:"⋾",notnivc:"⋽",NotPrecedes:"⊀",NotPrecedesEqual:"⪯̸",NotPrecedesSlantEqual:"⋠",NotReverseElement:"∌",NotRightTriangle:"⋫",NotRightTriangleBar:"⧐̸",NotRightTriangleEqual:"⋭",NotSquareSubset:"⊏̸",NotSquareSubsetEqual:"⋢",NotSquareSuperset:"⊐̸",NotSquareSupersetEqual:"⋣",NotSubset:"⊂⃒",NotSubsetEqual:"⊈",NotSucceeds:"⊁",NotSucceedsEqual:"⪰̸",NotSucceedsSlantEqual:"⋡",NotSucceedsTilde:"≿̸",NotSuperset:"⊃⃒",NotSupersetEqual:"⊉",NotTilde:"≁",NotTildeEqual:"≄",NotTildeFullEqual:"≇",NotTildeTilde:"≉",NotVerticalBar:"∤",npar:"∦",nparallel:"∦",nparsl:"⫽⃥",npart:"∂̸",npolint:"⨔",npr:"⊀",nprcue:"⋠",npre:"⪯̸",nprec:"⊀",npreceq:"⪯̸",nrArr:"⇏",nrarr:"↛",nrarrc:"⤳̸",nrarrw:"↝̸",nRightarrow:"⇏",nrightarrow:"↛",nrtri:"⋫",nrtrie:"⋭",nsc:"⊁",nsccue:"⋡",nsce:"⪰̸",Nscr:"𝒩",nscr:"𝓃",nshortmid:"∤",nshortparallel:"∦",nsim:"≁",nsime:"≄",nsimeq:"≄",nsmid:"∤",nspar:"∦",nsqsube:"⋢",nsqsupe:"⋣",nsub:"⊄",nsubE:"⫅̸",nsube:"⊈",nsubset:"⊂⃒",nsubseteq:"⊈",nsubseteqq:"⫅̸",nsucc:"⊁",nsucceq:"⪰̸",nsup:"⊅",nsupE:"⫆̸",nsupe:"⊉",nsupset:"⊃⃒",nsupseteq:"⊉",nsupseteqq:"⫆̸",ntgl:"≹",Ntilde:"Ñ",ntilde:"ñ",ntlg:"≸",ntriangleleft:"⋪",ntrianglelefteq:"⋬",ntriangleright:"⋫",ntrianglerighteq:"⋭",Nu:"Ν",nu:"ν",num:"#",numero:"№",numsp:" ",nvap:"≍⃒",nVDash:"⊯",nVdash:"⊮",nvDash:"⊭",nvdash:"⊬",nvge:"≥⃒",nvgt:">⃒",nvHarr:"⤄",nvinfin:"⧞",nvlArr:"⤂",nvle:"≤⃒",nvlt:"<⃒",nvltrie:"⊴⃒",nvrArr:"⤃",nvrtrie:"⊵⃒",nvsim:"∼⃒",nwarhk:"⤣",nwArr:"⇖",nwarr:"↖",nwarrow:"↖",nwnear:"⤧",Oacute:"Ó",oacute:"ó",oast:"⊛",ocir:"⊚",Ocirc:"Ô",ocirc:"ô",Ocy:"О",ocy:"о",odash:"⊝",Odblac:"Ő",odblac:"ő",odiv:"⨸",odot:"⊙",odsold:"⦼",OElig:"Œ",oelig:"œ",ofcir:"⦿",Ofr:"𝔒",ofr:"𝔬",ogon:"˛",Ograve:"Ò",ograve:"ò",ogt:"⧁",ohbar:"⦵",ohm:"Ω",oint:"∮",olarr:"↺",olcir:"⦾",olcross:"⦻",oline:"‾",olt:"⧀",Omacr:"Ō",omacr:"ō",Omega:"Ω",omega:"ω",Omicron:"Ο",omicron:"ο",omid:"⦶",ominus:"⊖",Oopf:"𝕆",oopf:"𝕠",opar:"⦷",OpenCurlyDoubleQuote:"“",OpenCurlyQuote:"‘",operp:"⦹",oplus:"⊕",Or:"⩔",or:"∨",orarr:"↻",ord:"⩝",order:"ℴ",orderof:"ℴ",ordf:"ª",ordm:"º",origof:"⊶",oror:"⩖",orslope:"⩗",orv:"⩛",oS:"Ⓢ",Oscr:"𝒪",oscr:"ℴ",Oslash:"Ø",oslash:"ø",osol:"⊘",Otilde:"Õ",otilde:"õ",Otimes:"⨷",otimes:"⊗",otimesas:"⨶",Ouml:"Ö",ouml:"ö",ovbar:"⌽",OverBar:"‾",OverBrace:"⏞",OverBracket:"⎴",OverParenthesis:"⏜",par:"∥",para:"¶",parallel:"∥",parsim:"⫳",parsl:"⫽",part:"∂",PartialD:"∂",Pcy:"П",pcy:"п",percnt:"%",period:".",permil:"‰",perp:"⊥",pertenk:"‱",Pfr:"𝔓",pfr:"𝔭",Phi:"Φ",phi:"φ",phiv:"ϕ",phmmat:"ℳ",phone:"☎",Pi:"Π",pi:"π",pitchfork:"⋔",piv:"ϖ",planck:"ℏ",planckh:"ℎ",plankv:"ℏ",plus:"+",plusacir:"⨣",plusb:"⊞",pluscir:"⨢",plusdo:"∔",plusdu:"⨥",pluse:"⩲",PlusMinus:"±",plusmn:"±",plussim:"⨦",plustwo:"⨧",pm:"±",Poincareplane:"ℌ",pointint:"⨕",Popf:"ℙ",popf:"𝕡",pound:"£",Pr:"⪻",pr:"≺",prap:"⪷",prcue:"≼",prE:"⪳",pre:"⪯",prec:"≺",precapprox:"⪷",preccurlyeq:"≼",Precedes:"≺",PrecedesEqual:"⪯",PrecedesSlantEqual:"≼",PrecedesTilde:"≾",preceq:"⪯",precnapprox:"⪹",precneqq:"⪵",precnsim:"⋨",precsim:"≾",Prime:"″",prime:"′",primes:"ℙ",prnap:"⪹",prnE:"⪵",prnsim:"⋨",prod:"∏",Product:"∏",profalar:"⌮",profline:"⌒",profsurf:"⌓",prop:"∝",Proportion:"∷",Proportional:"∝",propto:"∝",prsim:"≾",prurel:"⊰",Pscr:"𝒫",pscr:"𝓅",Psi:"Ψ",psi:"ψ",puncsp:" ",Qfr:"𝔔",qfr:"𝔮",qint:"⨌",Qopf:"ℚ",qopf:"𝕢",qprime:"⁗",Qscr:"𝒬",qscr:"𝓆",quaternions:"ℍ",quatint:"⨖",quest:"?",questeq:"≟",QUOT:'"',quot:'"',rAarr:"⇛",race:"∽̱",Racute:"Ŕ",racute:"ŕ",radic:"√",raemptyv:"⦳",Rang:"⟫",rang:"⟩",rangd:"⦒",range:"⦥",rangle:"⟩",raquo:"»",Rarr:"↠",rArr:"⇒",rarr:"→",rarrap:"⥵",rarrb:"⇥",rarrbfs:"⤠",rarrc:"⤳",rarrfs:"⤞",rarrhk:"↪",rarrlp:"↬",rarrpl:"⥅",rarrsim:"⥴",Rarrtl:"⤖",rarrtl:"↣",rarrw:"↝",rAtail:"⤜",ratail:"⤚",ratio:"∶",rationals:"ℚ",RBarr:"⤐",rBarr:"⤏",rbarr:"⤍",rbbrk:"❳",rbrace:"}",rbrack:"]",rbrke:"⦌",rbrksld:"⦎",rbrkslu:"⦐",Rcaron:"Ř",rcaron:"ř",Rcedil:"Ŗ",rcedil:"ŗ",rceil:"⌉",rcub:"}",Rcy:"Р",rcy:"р",rdca:"⤷",rdldhar:"⥩",rdquo:"”",rdquor:"”",rdsh:"↳",Re:"ℜ",real:"ℜ",realine:"ℛ",realpart:"ℜ",reals:"ℝ",rect:"▭",REG:"®",reg:"®",ReverseElement:"∋",ReverseEquilibrium:"⇋",ReverseUpEquilibrium:"⥯",rfisht:"⥽",rfloor:"⌋",Rfr:"ℜ",rfr:"𝔯",rHar:"⥤",rhard:"⇁",rharu:"⇀",rharul:"⥬",Rho:"Ρ",rho:"ρ",rhov:"ϱ",RightAngleBracket:"⟩",RightArrow:"→",Rightarrow:"⇒",rightarrow:"→",RightArrowBar:"⇥",RightArrowLeftArrow:"⇄",rightarrowtail:"↣",RightCeiling:"⌉",RightDoubleBracket:"⟧",RightDownTeeVector:"⥝",RightDownVector:"⇂",RightDownVectorBar:"⥕",RightFloor:"⌋",rightharpoondown:"⇁",rightharpoonup:"⇀",rightleftarrows:"⇄",rightleftharpoons:"⇌",rightrightarrows:"⇉",rightsquigarrow:"↝",RightTee:"⊢",RightTeeArrow:"↦",RightTeeVector:"⥛",rightthreetimes:"⋌",RightTriangle:"⊳",RightTriangleBar:"⧐",RightTriangleEqual:"⊵",RightUpDownVector:"⥏",RightUpTeeVector:"⥜",RightUpVector:"↾",RightUpVectorBar:"⥔",RightVector:"⇀",RightVectorBar:"⥓",ring:"˚",risingdotseq:"≓",rlarr:"⇄",rlhar:"⇌",rlm:"‏",rmoust:"⎱",rmoustache:"⎱",rnmid:"⫮",roang:"⟭",roarr:"⇾",robrk:"⟧",ropar:"⦆",Ropf:"ℝ",ropf:"𝕣",roplus:"⨮",rotimes:"⨵",RoundImplies:"⥰",rpar:")",rpargt:"⦔",rppolint:"⨒",rrarr:"⇉",Rrightarrow:"⇛",rsaquo:"›",Rscr:"ℛ",rscr:"𝓇",Rsh:"↱",rsh:"↱",rsqb:"]",rsquo:"’",rsquor:"’",rthree:"⋌",rtimes:"⋊",rtri:"▹",rtrie:"⊵",rtrif:"▸",rtriltri:"⧎",RuleDelayed:"⧴",ruluhar:"⥨",rx:"℞",Sacute:"Ś",sacute:"ś",sbquo:"‚",Sc:"⪼",sc:"≻",scap:"⪸",Scaron:"Š",scaron:"š",sccue:"≽",scE:"⪴",sce:"⪰",Scedil:"Ş",scedil:"ş",Scirc:"Ŝ",scirc:"ŝ",scnap:"⪺",scnE:"⪶",scnsim:"⋩",scpolint:"⨓",scsim:"≿",Scy:"С",scy:"с",sdot:"⋅",sdotb:"⊡",sdote:"⩦",searhk:"⤥",seArr:"⇘",searr:"↘",searrow:"↘",sect:"§",semi:";",seswar:"⤩",setminus:"∖",setmn:"∖",sext:"✶",Sfr:"𝔖",sfr:"𝔰",sfrown:"⌢",sharp:"♯",SHCHcy:"Щ",shchcy:"щ",SHcy:"Ш",shcy:"ш",ShortDownArrow:"↓",ShortLeftArrow:"←",shortmid:"∣",shortparallel:"∥",ShortRightArrow:"→",ShortUpArrow:"↑",shy:"­",Sigma:"Σ",sigma:"σ",sigmaf:"ς",sigmav:"ς",sim:"∼",simdot:"⩪",sime:"≃",simeq:"≃",simg:"⪞",simgE:"⪠",siml:"⪝",simlE:"⪟",simne:"≆",simplus:"⨤",simrarr:"⥲",slarr:"←",SmallCircle:"∘",smallsetminus:"∖",smashp:"⨳",smeparsl:"⧤",smid:"∣",smile:"⌣",smt:"⪪",smte:"⪬",smtes:"⪬︀",SOFTcy:"Ь",softcy:"ь",sol:"/",solb:"⧄",solbar:"⌿",Sopf:"𝕊",sopf:"𝕤",spades:"♠",spadesuit:"♠",spar:"∥",sqcap:"⊓",sqcaps:"⊓︀",sqcup:"⊔",sqcups:"⊔︀",Sqrt:"√",sqsub:"⊏",sqsube:"⊑",sqsubset:"⊏",sqsubseteq:"⊑",sqsup:"⊐",sqsupe:"⊒",sqsupset:"⊐",sqsupseteq:"⊒",squ:"□",Square:"□",square:"□",SquareIntersection:"⊓",SquareSubset:"⊏",SquareSubsetEqual:"⊑",SquareSuperset:"⊐",SquareSupersetEqual:"⊒",SquareUnion:"⊔",squarf:"▪",squf:"▪",srarr:"→",Sscr:"𝒮",sscr:"𝓈",ssetmn:"∖",ssmile:"⌣",sstarf:"⋆",Star:"⋆",star:"☆",starf:"★",straightepsilon:"ϵ",straightphi:"ϕ",strns:"¯",Sub:"⋐",sub:"⊂",subdot:"⪽",subE:"⫅",sube:"⊆",subedot:"⫃",submult:"⫁",subnE:"⫋",subne:"⊊",subplus:"⪿",subrarr:"⥹",Subset:"⋐",subset:"⊂",subseteq:"⊆",subseteqq:"⫅",SubsetEqual:"⊆",subsetneq:"⊊",subsetneqq:"⫋",subsim:"⫇",subsub:"⫕",subsup:"⫓",succ:"≻",succapprox:"⪸",succcurlyeq:"≽",Succeeds:"≻",SucceedsEqual:"⪰",SucceedsSlantEqual:"≽",SucceedsTilde:"≿",succeq:"⪰",succnapprox:"⪺",succneqq:"⪶",succnsim:"⋩",succsim:"≿",SuchThat:"∋",Sum:"∑",sum:"∑",sung:"♪",Sup:"⋑",sup:"⊃",sup1:"¹",sup2:"²",sup3:"³",supdot:"⪾",supdsub:"⫘",supE:"⫆",supe:"⊇",supedot:"⫄",Superset:"⊃",SupersetEqual:"⊇",suphsol:"⟉",suphsub:"⫗",suplarr:"⥻",supmult:"⫂",supnE:"⫌",supne:"⊋",supplus:"⫀",Supset:"⋑",supset:"⊃",supseteq:"⊇",supseteqq:"⫆",supsetneq:"⊋",supsetneqq:"⫌",supsim:"⫈",supsub:"⫔",supsup:"⫖",swarhk:"⤦",swArr:"⇙",swarr:"↙",swarrow:"↙",swnwar:"⤪",szlig:"ß",Tab:"\t",target:"⌖",Tau:"Τ",tau:"τ",tbrk:"⎴",Tcaron:"Ť",tcaron:"ť",Tcedil:"Ţ",tcedil:"ţ",Tcy:"Т",tcy:"т",tdot:"⃛",telrec:"⌕",Tfr:"𝔗",tfr:"𝔱",there4:"∴",Therefore:"∴",therefore:"∴",Theta:"Θ",theta:"θ",thetasym:"ϑ",thetav:"ϑ",thickapprox:"≈",thicksim:"∼",ThickSpace:"  ",thinsp:" ",ThinSpace:" ",thkap:"≈",thksim:"∼",THORN:"Þ",thorn:"þ",Tilde:"∼",tilde:"˜",TildeEqual:"≃",TildeFullEqual:"≅",TildeTilde:"≈",times:"×",timesb:"⊠",timesbar:"⨱",timesd:"⨰",tint:"∭",toea:"⤨",top:"⊤",topbot:"⌶",topcir:"⫱",Topf:"𝕋",topf:"𝕥",topfork:"⫚",tosa:"⤩",tprime:"‴",TRADE:"™",trade:"™",triangle:"▵",triangledown:"▿",triangleleft:"◃",trianglelefteq:"⊴",triangleq:"≜",triangleright:"▹",trianglerighteq:"⊵",tridot:"◬",trie:"≜",triminus:"⨺",TripleDot:"⃛",triplus:"⨹",trisb:"⧍",tritime:"⨻",trpezium:"⏢",Tscr:"𝒯",tscr:"𝓉",TScy:"Ц",tscy:"ц",TSHcy:"Ћ",tshcy:"ћ",Tstrok:"Ŧ",tstrok:"ŧ",twixt:"≬",twoheadleftarrow:"↞",twoheadrightarrow:"↠",Uacute:"Ú",uacute:"ú",Uarr:"↟",uArr:"⇑",uarr:"↑",Uarrocir:"⥉",Ubrcy:"Ў",ubrcy:"ў",Ubreve:"Ŭ",ubreve:"ŭ",Ucirc:"Û",ucirc:"û",Ucy:"У",ucy:"у",udarr:"⇅",Udblac:"Ű",udblac:"ű",udhar:"⥮",ufisht:"⥾",Ufr:"𝔘",ufr:"𝔲",Ugrave:"Ù",ugrave:"ù",uHar:"⥣",uharl:"↿",uharr:"↾",uhblk:"▀",ulcorn:"⌜",ulcorner:"⌜",ulcrop:"⌏",ultri:"◸",Umacr:"Ū",umacr:"ū",uml:"¨",UnderBar:"_",UnderBrace:"⏟",UnderBracket:"⎵",UnderParenthesis:"⏝",Union:"⋃",UnionPlus:"⊎",Uogon:"Ų",uogon:"ų",Uopf:"𝕌",uopf:"𝕦",UpArrow:"↑",Uparrow:"⇑",uparrow:"↑",UpArrowBar:"⤒",UpArrowDownArrow:"⇅",UpDownArrow:"↕",Updownarrow:"⇕",updownarrow:"↕",UpEquilibrium:"⥮",upharpoonleft:"↿",upharpoonright:"↾",uplus:"⊎",UpperLeftArrow:"↖",UpperRightArrow:"↗",Upsi:"ϒ",upsi:"υ",upsih:"ϒ",Upsilon:"Υ",upsilon:"υ",UpTee:"⊥",UpTeeArrow:"↥",upuparrows:"⇈",urcorn:"⌝",urcorner:"⌝",urcrop:"⌎",Uring:"Ů",uring:"ů",urtri:"◹",Uscr:"𝒰",uscr:"𝓊",utdot:"⋰",Utilde:"Ũ",utilde:"ũ",utri:"▵",utrif:"▴",uuarr:"⇈",Uuml:"Ü",uuml:"ü",uwangle:"⦧",vangrt:"⦜",varepsilon:"ϵ",varkappa:"ϰ",varnothing:"∅",varphi:"ϕ",varpi:"ϖ",varpropto:"∝",vArr:"⇕",varr:"↕",varrho:"ϱ",varsigma:"ς",varsubsetneq:"⊊︀",varsubsetneqq:"⫋︀",varsupsetneq:"⊋︀",varsupsetneqq:"⫌︀",vartheta:"ϑ",vartriangleleft:"⊲",vartriangleright:"⊳",Vbar:"⫫",vBar:"⫨",vBarv:"⫩",Vcy:"В",vcy:"в",VDash:"⊫",Vdash:"⊩",vDash:"⊨",vdash:"⊢",Vdashl:"⫦",Vee:"⋁",vee:"∨",veebar:"⊻",veeeq:"≚",vellip:"⋮",Verbar:"‖",verbar:"|",Vert:"‖",vert:"|",VerticalBar:"∣",VerticalLine:"|",VerticalSeparator:"❘",VerticalTilde:"≀",VeryThinSpace:" ",Vfr:"𝔙",vfr:"𝔳",vltri:"⊲",vnsub:"⊂⃒",vnsup:"⊃⃒",Vopf:"𝕍",vopf:"𝕧",vprop:"∝",vrtri:"⊳",Vscr:"𝒱",vscr:"𝓋",vsubnE:"⫋︀",vsubne:"⊊︀",vsupnE:"⫌︀",vsupne:"⊋︀",Vvdash:"⊪",vzigzag:"⦚",Wcirc:"Ŵ",wcirc:"ŵ",wedbar:"⩟",Wedge:"⋀",wedge:"∧",wedgeq:"≙",weierp:"℘",Wfr:"𝔚",wfr:"𝔴",Wopf:"𝕎",wopf:"𝕨",wp:"℘",wr:"≀",wreath:"≀",Wscr:"𝒲",wscr:"𝓌",xcap:"⋂",xcirc:"◯",xcup:"⋃",xdtri:"▽",Xfr:"𝔛",xfr:"𝔵",xhArr:"⟺",xharr:"⟷",Xi:"Ξ",xi:"ξ",xlArr:"⟸",xlarr:"⟵",xmap:"⟼",xnis:"⋻",xodot:"⨀",Xopf:"𝕏",xopf:"𝕩",xoplus:"⨁",xotime:"⨂",xrArr:"⟹",xrarr:"⟶",Xscr:"𝒳",xscr:"𝓍",xsqcup:"⨆",xuplus:"⨄",xutri:"△",xvee:"⋁",xwedge:"⋀",Yacute:"Ý",yacute:"ý",YAcy:"Я",yacy:"я",Ycirc:"Ŷ",ycirc:"ŷ",Ycy:"Ы",ycy:"ы",yen:"¥",Yfr:"𝔜",yfr:"𝔶",YIcy:"Ї",yicy:"ї",Yopf:"𝕐",yopf:"𝕪",Yscr:"𝒴",yscr:"𝓎",YUcy:"Ю",yucy:"ю",Yuml:"Ÿ",yuml:"ÿ",Zacute:"Ź",zacute:"ź",Zcaron:"Ž",zcaron:"ž",Zcy:"З",zcy:"з",Zdot:"Ż",zdot:"ż",zeetrf:"ℨ",ZeroWidthSpace:"​",Zeta:"Ζ",zeta:"ζ",Zfr:"ℨ",zfr:"𝔷",ZHcy:"Ж",zhcy:"ж",zigrarr:"⇝",Zopf:"ℤ",zopf:"𝕫",Zscr:"𝒵",zscr:"𝓏",zwj:"‍",zwnj:"‌"}},function(e,t,n){"use strict";var r=n(419),o=n(27).unescapeMd;e.exports=function(e,t){var n,i,a,u=t,s=e.posMax;if(60===e.src.charCodeAt(t)){for(t++;t8&&n<14);)if(92===n&&t+11)break;if(41===n&&--i<0)break;t++}return u!==t&&(a=o(e.src.slice(u,t)),!!e.parser.validateLink(a)&&(e.linkContent=a,e.pos=t,!0))}},function(e,t,n){"use strict";var r=n(27).replaceEntities;e.exports=function(e){var t=r(e);try{t=decodeURI(t)}catch(e){}return encodeURI(t)}},function(e,t,n){"use strict";var r=n(27).unescapeMd;e.exports=function(e,t){var n,o=t,i=e.posMax,a=e.src.charCodeAt(t);if(34!==a&&39!==a&&40!==a)return!1;for(t++,40===a&&(a=41);t1?r-1:0),i=1;i1?t-1:0),r=1;r0?Array(e+1).join(" ")+t:t}).join("\n")}(0,(0,r.default)(a,null,2))||"{}",c.default.createElement("br",null)))}}]),t}(l.Component);t.default=p},function(e,t,n){"use strict";Object.defineProperty(t,"__esModule",{value:!0});var r=c(n(4)),o=c(n(2)),i=c(n(3)),a=c(n(5)),u=c(n(6)),s=c(n(0)),l=n(7);c(n(1)),c(n(11));function c(e){return e&&e.__esModule?e:{default:e}}var f=function(e){function t(){var e,n,i,u;(0,o.default)(this,t);for(var s=arguments.length,l=Array(s),c=0;c=e.length?(this._t=void 0,o(1)):o(0,"keys"==t?n:"values"==t?e[n]:[n,e[n]])},"values"),i.Arguments=i.Array,r("keys"),r("values"),r("entries")},function(e,t){e.exports=function(){}},function(e,t){e.exports=function(e,t){return{value:t,done:!!e}}},function(e,t,n){"use strict";var r=n(159),o=n(95),i=n(97),a={};n(50)(a,n(19)("iterator"),function(){return this}),e.exports=function(e,t,n){e.prototype=r(a,{next:o(1,n)}),i(e,t+" Iterator")}},function(e,t,n){var r=n(40),o=n(36),i=n(96);e.exports=n(44)?Object.defineProperties:function(e,t){o(e);for(var n,a=i(t),u=a.length,s=0;u>s;)r.f(e,n=a[s++],t[n]);return e}},function(e,t,n){var r=n(70),o=n(115),i=n(455);e.exports=function(e){return function(t,n,a){var u,s=r(t),l=o(s.length),c=i(a,l);if(e&&n!=n){for(;l>c;)if((u=s[c++])!=u)return!0}else for(;l>c;c++)if((e||c in s)&&s[c]===n)return e||c||0;return!e&&-1}}},function(e,t,n){var r=n(160),o=Math.max,i=Math.min;e.exports=function(e,t){return(e=r(e))<0?o(e+t,0):i(e,t)}},function(e,t,n){var r=n(160),o=n(155);e.exports=function(e){return function(t,n){var i,a,u=String(o(t)),s=r(n),l=u.length;return s<0||s>=l?e?"":void 0:(i=u.charCodeAt(s))<55296||i>56319||s+1===l||(a=u.charCodeAt(s+1))<56320||a>57343?e?u.charAt(s):i:e?u.slice(s,s+2):a-56320+(i-55296<<10)+65536}}},function(e,t,n){var r=n(36),o=n(164);e.exports=n(15).getIterator=function(e){var t=o(e);if("function"!=typeof t)throw TypeError(e+" is not iterable!");return r(t.call(e))}},function(e,t,n){n(459),n(244),n(470),n(474),n(485),n(486),e.exports=n(60).Promise},function(e,t,n){"use strict";var r=n(166),o={};o[n(17)("toStringTag")]="z",o+""!="[object z]"&&n(72)(Object.prototype,"toString",function(){return"[object "+r(this)+"]"},!0)},function(e,t,n){e.exports=!n(100)&&!n(101)(function(){return 7!=Object.defineProperty(n(168)("div"),"a",{get:function(){return 7}}).a})},function(e,t,n){var r=n(73);e.exports=function(e,t){if(!r(e))return e;var n,o;if(t&&"function"==typeof(n=e.toString)&&!r(o=n.call(e)))return o;if("function"==typeof(n=e.valueOf)&&!r(o=n.call(e)))return o;if(!t&&"function"==typeof(n=e.toString)&&!r(o=n.call(e)))return o;throw TypeError("Can't convert object to primitive value")}},function(e,t,n){"use strict";var r=n(463),o=n(243),i=n(170),a={};n(58)(a,n(17)("iterator"),function(){return this}),e.exports=function(e,t,n){e.prototype=r(a,{next:o(1,n)}),i(e,t+" Iterator")}},function(e,t,n){var r=n(59),o=n(464),i=n(250),a=n(169)("IE_PROTO"),u=function(){},s=function(){var e,t=n(168)("iframe"),r=i.length;for(t.style.display="none",n(251).appendChild(t),t.src="javascript:",(e=t.contentWindow.document).open(),e.write(" - - + + + + Swagger UI + + + - - - -

API DOCS

-
- -
-
-
- -
-
- /Games/ByGameID?id=1,2,3,4 -
-
-

This API will return a list or a single game entry based on the provided parameter(s).

-

This API call expects `id`, and `apikey`, while `include` and `fields` are optional.

-

Please look at "`/Games/*` Common" section below

-
-
- -
-
- /Games/ByPlatformID?id=12,13,14 -
-
-

This API will return a list or a single game entry based on the platform id(s) provided.

-

This API call expects `id`, and `apikey`, while `include` and `fields` are optional.

-

Please look at "`/Games/*` Common" section below

-
-
- -
-
- /Games/ByGameName?name=God+Of+War -
-
-

This API will return a list or a single game entry based the provided parameter(s).

-

This API call expects `name`, and `apikey`, while `include` and `fields` are optional.

-

This API call can also take argument `filter[platform]=id,id2` to return search for specific platform(s)

-

Please look at "`/Games/*` Common" section below

-
-
- -
-
- `/Games/*` Common (`/Games/Updates`) -
-
-

This API will return a list or a single game entry based on the provided parameter(s).

-

This API calls can expects `name`, `id`, and `apikey`, while `include` and `fields` are optional.

-

`include` valid options: `boxart,platform`.

-

`fields` valid options: `id,game_title,players,release_date,developers,publisher(deprecated),publishers,genres,overview,last_updated,rating,platform,coop,youtube,os,processor,ram,hdd,video,sound,alternates(format changed),`

-

Note: these options are subject to change.

-

Note: some of the fields options are reminent of old database and will be removed, while others will be renamed, so please keep an eye on this.

-
-
- -
-
- /Games/Updates?time=minutes
- /Games/Updates?last_edit_id=edit_id -
-
-

This API will return user edits.

-

This API call expects `last_edit_id` or `time`, and `apikey`.

-

`last_edit_id` refers to the edit id and no `games_id`, `last_edit_id` will take preferance over `time` if both are specified.

-
-
- -
-
- /Games/Images?games_id=22,15,72&filter[type]=boxart,fanart -
-
-

This API will return a list or a single graphics entry based the provided parameter(s).

-

This API call expects `games_id`, and `apikey`, while `filter` is optional.

-

`filter` valid options: `fanart,banner,boxart,screenshot,clearlogo`.

-

`filter` default value is `boxart`.

-

Note: these options are subject to change.

-
-
- -
-
- /Platforms -
-
-

This API will return the platform console list

-

This API has an optional paramter`fields`.

-

Please look at "`/Platforms*` Common" section below

-
-
- -
-
- /Platforms/ByPlatformID?id=1,11 -
-
-

This API will return a list or a single platform entry based on the provided parameter(s).

-

This API call expects `id`, and `apikey`, while `fields` are optional.

-

Please look at "`/Platforms*` Common" section below

-
-
- -
-
- /Platforms/ByPlatformName?name=Sony -
-
-

This API will return a list or a single platform entry based on the provided parameter(s).

-

This API call expects `name`, and `apikey`, while `fields` are optional.

-

Please look at "`/Platforms*` Common" section below

-
-
- -
-
- `/Platforms*` Common -
-
-

These APIs will return a list or a single platform entry based on the provided parameter(s).

-

These API call expects `platforms_id`, `name,` and `apikey`, while `fields` are optional.

-

`fields` valid options: `id,name,alias,icon,console,controller,developer,manufacturer,media,cpu,memory,graphics,sound,maxcontrollers,display,overview,youtube`

-

Note: these options are subject to change.

-

Note: some of the fields options are reminent of old database and will be removed, while others will be renamed, so please stay informed for any changes.

-
-
- -
-
- /Platforms/images?platforms_id=1,2,4&filter[type]=boxart -
-
-

This API will return a list or a single graphics entry based the provided parameter(s).

-

This API call expects `platforms_id`, and `apikey` param, while `filter` param is optional.

-

`filter[type]` valid options: `banner,fanart,boxart`.

-
-
- -
-
- /Genres -
-
-

This API will return the list of genres with associated name and id.

-

This API call expects `apikey`.

-
-
- -
-
- /Developers -
-
-

This API will return the list of developers with associated name and id.

-

This API call expects `apikey`.

-
-
- -
-
- /Publishers -
-
-

This API will return the list of publishers with associated name and id.

-

This API call expects `apikey`.

-
-
-
-
- -
- - - \ No newline at end of file + + + +
+ + + + + + From d149fd719906c03faed3be560cf3e98027337c17 Mon Sep 17 00:00:00 2001 From: Mahmood - Zer0xFF <5013823+Zer0xFF@users.noreply.github.com> Date: Sun, 4 Nov 2018 19:23:05 +0000 Subject: [PATCH 05/76] Cleanup --- website/list_devs.php | 6 ++++-- website/list_pubs.php | 6 ++++-- 2 files changed, 8 insertions(+), 4 deletions(-) diff --git a/website/list_devs.php b/website/list_devs.php index f639442..1bf19d9 100644 --- a/website/list_devs.php +++ b/website/list_devs.php @@ -11,7 +11,7 @@ $alpha_list = array(); foreach($DevsList as $Dev) { - $alpha_list[strtoupper($Dev->name[0])][] = $Dev; + $alpha_list[mb_strtoupper(mb_substr($Dev->name, 0, 1))][] = $Dev; } @@ -73,7 +73,9 @@
- Devs +
+ Devs +
$val_Devlist) : ?>


diff --git a/website/list_pubs.php b/website/list_pubs.php index ba86cdc..8022764 100644 --- a/website/list_pubs.php +++ b/website/list_pubs.php @@ -11,7 +11,7 @@ $alpha_list = array(); foreach($PubsList as $pub) { - $alpha_list[strtoupper($pub->name[0])][] = $pub; + $alpha_list[mb_strtoupper(mb_substr($pub->name, 0, 1))][] = $pub; } @@ -73,7 +73,9 @@
- Pubs +
+ Pubs +
$val_publist) : ?>


From ad266f79613332cac8395a23953a6e4384280359 Mon Sep 17 00:00:00 2001 From: Mahmood - Zer0xFF <5013823+Zer0xFF@users.noreply.github.com> Date: Sun, 4 Nov 2018 20:54:17 +0000 Subject: [PATCH 06/76] Add link to my games collection --- website/include/header.footer.class.php | 1 + 1 file changed, 1 insertion(+) diff --git a/website/include/header.footer.class.php b/website/include/header.footer.class.php index 1138125..b0f5be2 100644 --- a/website/include/header.footer.class.php +++ b/website/include/header.footer.class.php @@ -121,6 +121,7 @@ public function print()
diff --git a/website/edit_game.php b/website/edit_game.php index 7b67536..3fa5cab 100644 --- a/website/edit_game.php +++ b/website/edit_game.php @@ -36,7 +36,7 @@ if(isset($_REQUEST['id']) && !empty($_REQUEST['id']) && is_numeric($_REQUEST['id'])) { $options = array("release_date" => true, "overview" => true, "players" => true, "rating" => true, "ESRB" => true, "boxart" => true, "coop" => true, - "genres" => true, "publishers" => true, "platform" => true, "youtube" => true); + "genres" => true, "publishers" => true, "platform" => true, "youtube" => true, "alternates" => true, "serials" => true); $API = TGDB::getInstance(); $GenreList = $API->GetGenres(); $ESRBRating = $API->GetESRBRating(); @@ -488,43 +488,59 @@ function delete_image(image_id) }); }); - @@ -598,19 +614,19 @@ function add_more()

-
+
alternates) && !empty($alt_name = array_shift($Game->alternates))) : ?>
- +
- +
@@ -655,6 +671,24 @@ function add_more()
+
diff --git a/website/game.php b/website/game.php index 8283b45..7ef5fa9 100755 --- a/website/game.php +++ b/website/game.php @@ -18,7 +18,7 @@ if(isset($_REQUEST['id']) && !empty($_REQUEST['id']) && is_numeric($_REQUEST['id'])) { $options = array("overview" => true, "players" => true, "rating" => true, "ESRB" => true, "boxart" => true, "coop" => true, - "genres" => true, "publishers" => true, "platform" => true, "youtube" => true, "alternates" => true); + "genres" => true, "publishers" => true, "platform" => true, "youtube" => true, "alternates" => true, "serials" => true); $API = TGDB::getInstance(); $list = $API->GetGameByID($_REQUEST['id'], 0, 1, $options); if(empty($list)) @@ -314,6 +314,8 @@

ESRB Rating: rating; ?>

genres)) : //$gens_id = (json_decode($Game->genres)); ?>

Genre(s): genres as $gen_id) { echo $GenresList[$gen_id]->name . " | "; } ?>

+ serials)) : ?> +

Serial(s): serials) ?>

diff --git a/website/search.php b/website/search.php index 4e24229..34e40fa 100755 --- a/website/search.php +++ b/website/search.php @@ -102,6 +102,7 @@ From 183245ad87d480ca175573ccd4732c2f9e189be8 Mon Sep 17 00:00:00 2001 From: Mahmood - Zer0xFF <5013823+Zer0xFF@users.noreply.github.com> Date: Mon, 21 Jan 2019 14:59:51 +0000 Subject: [PATCH 38/76] Recently Added Page, index.php pagination --- website/index.php | 15 +++++++- website/recently_added.php | 75 ++++++++++++++++++++++++++++++++++++++ 2 files changed, 88 insertions(+), 2 deletions(-) create mode 100644 website/recently_added.php diff --git a/website/index.php b/website/index.php index 53de695..7dbd20f 100755 --- a/website/index.php +++ b/website/index.php @@ -3,6 +3,7 @@ require_once __DIR__ . "/include/TGDBUtils.class.php"; require_once __DIR__ . "/include/WebUtils.class.php"; require_once __DIR__ . "/../include/TGDB.API.php"; +require_once __DIR__ . "/include/PaginationUtils.class.php"; $API = TGDB::getInstance(); $soon = $API->GetGamesByDate(date("d/m/Y"), 0, 5, array('AFTER' => true), "release_date", 'ASC'); @@ -16,7 +17,17 @@ $IDs[] = $Game->id; $PlatformIDs[] = $Game->platform; } -$lastupdated = $API->GetAllGames(0, 10, array('overview' => true), "id", 'DESC'); + +$API = TGDB::getInstance(); +$limit = 18; +$page = 1; +$offset = ($page - 1) * $limit; +$lastupdated = $API->GetAllGames($offset, $limit + 1, array('overview' => true), "id", 'DESC'); +if($has_next_page = count($lastupdated) > $limit) +{ + unset($lastupdated[$limit]); +} + foreach($lastupdated as $Game) { $IDs[] = $Game->id; @@ -121,7 +132,7 @@ - + diff --git a/website/recently_added.php b/website/recently_added.php new file mode 100644 index 0000000..819fbc1 --- /dev/null +++ b/website/recently_added.php @@ -0,0 +1,75 @@ +GetAllGames($offset, $limit + 1, array('overview' => true), "id", 'DESC'); +if($has_next_page = count($lastupdated) > $limit) +{ + unset($lastupdated[$limit]); +} +foreach($lastupdated as $Game) +{ + $IDs[] = $Game->id; + $PlatformIDs[] = $Game->platform; +} +$Platforms = $API->GetPlatforms($PlatformIDs); +$covers = $API->GetGameBoxartByID($IDs, 0, 9999); + +foreach($lastupdated as $Game) +{ + if(isset($covers[$Game->id])) + { + $Game->boxart = $covers[$Game->id]; + } +} +$Game = null; + +$Header = new HEADER(); +$Header->setTitle("TGDB - Homepage"); +$Header->appendRawHeader(function() { ?> + + + + + +print(); ?> + +
+ + +
+ +
+

Recently Added


+ +
+
+ + <?= $game->gamr_title?> + +
+
+

game_title ?>

+
Platform: platform]->name ?>
+

+ overview) ? WebUtils::truncate($game->overview, 200) : "No overview is currently available for this title, please feel free to add one."; ?>... Read More

+
+
+
+ +
+ +
+ + +
+ + From 5a41a11132c3725c494c21c2ed741b37c626ddd3 Mon Sep 17 00:00:00 2001 From: Mahmood - Zer0xFF <5013823+Zer0xFF@users.noreply.github.com> Date: Mon, 21 Jan 2019 15:05:32 +0000 Subject: [PATCH 39/76] Allow mods to see user contribution, will enable to all soon TM --- include/TGDB.API.php | 46 ++++++++++++ website/contr.php | 151 +++++++++++++++++++++++++++++++++++++++ website/game.php | 3 + website/user_contrib.php | 141 ++++++++++++++++++++++++++++++++++++ 4 files changed, 341 insertions(+) create mode 100644 website/contr.php create mode 100644 website/user_contrib.php diff --git a/include/TGDB.API.php b/include/TGDB.API.php index f018c8e..5a0e7b2 100644 --- a/include/TGDB.API.php +++ b/include/TGDB.API.php @@ -2981,6 +2981,52 @@ function ResolveGameReport($user_id, $username, $id) return $res; } } + + function GetGameEditContributors($game_id) + { + $qry = "SELECT UE.id, UE.timestamp, UE.type, UE.value, UE.users_id, BB.username FROM user_edits UE, phpBB.phpbb_users BB WHERE UE.games_id = :games_id and BB.user_id = UE.users_id order by UE.id DESC;"; + + $dbh = $this->database->dbh; + $sth = $dbh->prepare($qry); + $sth->bindValue(':games_id', $game_id, PDO::PARAM_INT); + if($sth->execute()) + { + $res = $sth->fetchAll(PDO::FETCH_OBJ); + return $res; + } + } + + function GetUserEditsByUserID($user, $offset = 0, $limit = 100) + { + $dbh = $this->database->dbh; + $sth = $dbh->prepare("Select * from games where id IN (Select games_id FROM user_edits + WHERE users_id = :user_id) LIMIT :limit OFFSET :offset"); + $sth->bindValue(':user_id', $user, PDO::PARAM_INT); + $sth->bindValue(':limit', $limit, PDO::PARAM_INT); + $sth->bindValue(':offset', $offset, PDO::PARAM_INT); + if($sth->execute()) + { + return $sth->fetchAll(PDO::FETCH_OBJ); + } + } + + function GetLegacyCopy($id) + { + $dbh = $this->database->dbh; + + $sth = $dbh->prepare("SELECT GameTitle as game_title, Players as players, ReleaseDate as release_date, Developer as developer, Publisher as publisher, Genre as genre, + Overview as overview, Platform as platform, coop, Youtube as youtube, Alternates as alternates, username as lastupdatedby + from games_legacy + left join users on updatedby = users.id + where games_legacy.id = :games_id limit 1"); + $sth->bindValue(':games_id', $id); + + if($sth->execute()) + { + return $sth->fetch(PDO::FETCH_OBJ); + } + } + } ?> diff --git a/website/contr.php b/website/contr.php new file mode 100644 index 0000000..de36d5b --- /dev/null +++ b/website/contr.php @@ -0,0 +1,151 @@ +SetHeader(ErrorPage::$HEADER_OOPS_ERROR); + $errorPage->SetMSG(ErrorPage::$MSG_MISSING_PARAM_ERROR); + $errorPage->print_die(); +} +require_once __DIR__ . "/include/header.footer.class.php"; +require_once __DIR__ . "/include/TGDBUtils.class.php"; +require_once __DIR__ . "/../include/TGDB.API.php"; +require_once __DIR__ . "/../include/CommonUtils.class.php"; +require_once __DIR__ . "/include/login.phpbb.class.php"; + +$_user = phpBBuser::getInstance(); + +{ + $game_id = $_REQUEST['id']; + $API = TGDB::getInstance(); + $list = $API->GetGameEditContributors($_REQUEST['id']); + if($_REQUEST['id'] < 60000) + { + $legacy = $API->GetLegacyCopy($_REQUEST['id']); + } + +} + + +$Header = new HEADER(); +$Header->setTitle("TGDB - Browse - Game - $Game->game_title"); +$Header->appendRawHeader(function() { global $Game, $box_cover, $_user; ?> + + + + + + + + + + + + + + + +print(); ?> + +
+ +
+
+ + + + + + + + + + + + + + + + + + + + + + +
Edit IDUsernameTimestampTypeValue
id; ?>username; ?>timestamp; ?>type; ?>value; ?>
+ +

No user edits on record. You can check legacy edit below.

+ +
+
+ + +
+
+

legacy data (reference only)

+ + + + + + + + + $value): ?> + + + + + + +
TypeValue
+
+
+ +
+ + + diff --git a/website/game.php b/website/game.php index 454de65..eb52638 100755 --- a/website/game.php +++ b/website/game.php @@ -435,6 +435,9 @@

Edit

+ isLoggedIn() && $_user->hasPermission('m_delete_games')) : ?> +

View Edits

+ diff --git a/website/user_contrib.php b/website/user_contrib.php new file mode 100644 index 0000000..69ba61d --- /dev/null +++ b/website/user_contrib.php @@ -0,0 +1,141 @@ +SetHeader(ErrorPage::$HEADER_OOPS_ERROR); + $errorPage->SetMSG(ErrorPage::$MSG_MISSING_PARAM_ERROR); + $errorPage->print_die(); +} +require_once __DIR__ . "/include/header.footer.class.php"; +require_once __DIR__ . "/include/TGDBUtils.class.php"; +require_once __DIR__ . "/../include/TGDB.API.php"; +require_once __DIR__ . "/include/login.phpbb.class.php"; +require_once __DIR__ . "/include/PaginationUtils.class.php"; + +$API = TGDB::getInstance(); +$page = PaginationUtils::getPage(); +$limit = 18; +$offset = ($page - 1) * $limit; +$list = $API->GetUserEditsByUserID($_REQUEST['id'], $offset, 10000); + +if($has_next_page = count($list) > $limit) +{ + unset($list[$limit]); +} + +foreach($list as $Game) +{ + $IDs[] = $Game->id; +} +if(isset($IDs) && !empty($IDs)) +{ + $covers = $API->GetGameBoxartByID($IDs, 0, 9999); + foreach($list as $Game) + { + if(isset($covers[$Game->id])) + { + $Game->boxart = $covers[$Game->id]; + } + } +} +//print_r($list); + +$Header = new HEADER(); +$Header->setTitle("TGDB - Browse - Game - $Game->game_title"); +$Header->appendRawHeader(function() { global $Game, $box_cover, $_user; ?> + + + + + + + + + + + + + + + +print(); ?> + +
+ +
+ +

+ + + +
+
+
+

This User has no contributions.

+
+
+
+ +
+ +
+ + + From 79cc89dc04c8e1d9d373362eb5239c340568bac3 Mon Sep 17 00:00:00 2001 From: Mahmood - Zer0xFF <5013823+Zer0xFF@users.noreply.github.com> Date: Mon, 21 Jan 2019 16:42:33 +0000 Subject: [PATCH 40/76] Cleanup --- include/TGDB.API.php | 21 +++++++++++++-------- website/edit_game.php | 2 +- website/game.php | 9 ++++++++- 3 files changed, 22 insertions(+), 10 deletions(-) diff --git a/include/TGDB.API.php b/include/TGDB.API.php index 5a0e7b2..1b4cff3 100644 --- a/include/TGDB.API.php +++ b/include/TGDB.API.php @@ -47,7 +47,7 @@ private function PopulateOtherData(&$res, $fields) if(isset($fields['uids'])) { - $uids = $this->GetGamesUIDs($GameIDs, false); + $uids = $this->GetGamesUIDs($GameIDs, false, true, false); } if(isset($fields['hashes'])) @@ -1697,7 +1697,7 @@ function GetGamesAlts($games_id, $include_id = true) } } - function GetGamesUIDs($games_id, $include_id = true, $include_type = true) + function GetGamesUIDs($games_id, $include_id = true, $include_type = true, $simple_col = true) { $dbh = $this->database->dbh; $Games_IDs; @@ -1733,8 +1733,12 @@ function GetGamesUIDs($games_id, $include_id = true, $include_type = true) $sth = $dbh->prepare($qry); if($sth->execute()) { - return $sth->fetchAll(PDO::FETCH_OBJ | PDO::FETCH_GROUP | PDO::FETCH_COLUMN); - return $res; + $flags = PDO::FETCH_OBJ | PDO::FETCH_GROUP; + if($simple_col) + { + $flags |= PDO::FETCH_COLUMN; + } + return $sth->fetchAll($flags); } } @@ -2128,12 +2132,13 @@ function UpdateGamesAltName($user_id, $games_id, $new_alt_names) return true; } - function InsertGamesUID($game_id, $uid) + function InsertGamesUID($game_id, $uid, $pattern_id) { $dbh = $this->database->dbh; - $sth = $dbh->prepare("INSERT IGNORE INTO games_uids (games_id, uid) VALUES (:games_id, :uid);"); + $sth = $dbh->prepare("INSERT IGNORE INTO games_uids (games_id, uid, games_uids_patterns_id) VALUES (:games_id, :uid, :games_uids_patterns_id);"); $sth->bindValue(':games_id', $game_id, PDO::PARAM_INT); $sth->bindValue(':uid', $uid, PDO::PARAM_STR); + $sth->bindValue(':games_uids_patterns_id', $pattern_id, PDO::PARAM_STR); return $sth->execute(); } @@ -2173,7 +2178,7 @@ function UpdateGamesUID($user_id, $games_id, $platform, $new_uids) $pattern_id = 0; foreach($patterns as $pattern) { - if(preg_match_all("/$pattern->regex_pattern/", $new_hash, $matches)) + if(preg_match_all("/$pattern->regex_pattern/", $new_uid, $matches)) { if(count($matches[0]) == 1 && $matches[0][0] == $new_hash) { @@ -2635,7 +2640,7 @@ function UpdateGame($user_id, $game_id, $game_title, $overview, $youtube, $relea { $this->UpdateGamesAltName($user_id, $game_id, $alternate_names); - $this->UpdateGamesUID($user_id, $game_id, $Game->platform, $uids); + $this->UpdateGamesUID($user_id, $game_id, $Game["platform"], $uids); if(!empty($new_genres)) { diff --git a/website/edit_game.php b/website/edit_game.php index 1d00cc0..09d06ed 100644 --- a/website/edit_game.php +++ b/website/edit_game.php @@ -675,7 +675,7 @@ function add_more(type)
uids) && !empty($uid = array_shift($Game->uids))) : ?>
- +
diff --git a/website/game.php b/website/game.php index eb52638..05a9f85 100755 --- a/website/game.php +++ b/website/game.php @@ -315,7 +315,14 @@ genres)) : //$gens_id = (json_decode($Game->genres)); ?>

Genre(s): genres as $gen_id) { echo $GenresList[$gen_id]->name . " | "; } ?>

uids)) : ?> -

UID(s): uids) ?>

+ uids as $item) + { + $uids[] = $item->uid; + } + ?> +

UID(s):

isLoggedIn() && $_user->hasPermission('m_delete_games')) : ?>

View Edits

+
From 6229d83e216e089feca617d9d25479e029b748c5 Mon Sep 17 00:00:00 2001 From: Mahmood - Zer0xFF <5013823+Zer0xFF@users.noreply.github.com> Date: Tue, 9 Apr 2019 13:30:55 +0100 Subject: [PATCH 44/76] Fix: Display UIDs changes in Discord bot --- website/include/DiscordUtils.class.php | 10 ++++++++++ 1 file changed, 10 insertions(+) diff --git a/website/include/DiscordUtils.class.php b/website/include/DiscordUtils.class.php index ca80327..8b030f7 100644 --- a/website/include/DiscordUtils.class.php +++ b/website/include/DiscordUtils.class.php @@ -92,6 +92,16 @@ static function PostGameUpdate($_user, $old_game_data, $new_game_data, $type = 0 if(!empty($val) && (empty($old_game_data) || empty($old_game_data->$key) || $val != $old_game_data->$key)) { + if($key == "uids") + { + $uids = []; + foreach($val as $item) + { + $uids[] = $item->uid; + } + $val = $uids; + } + if(is_array($val)) $val = implode(",", $val); $data = ["name" => $key, "value" => $val]; From 1273eafcd81c3c6bdffcdd2560b79060dc3dbd08 Mon Sep 17 00:00:00 2001 From: Mahmood - Zer0xFF <5013823+Zer0xFF@users.noreply.github.com> Date: Tue, 9 Apr 2019 13:31:02 +0100 Subject: [PATCH 45/76] Fix pagination --- website/include/PaginationUtils.class.php | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/website/include/PaginationUtils.class.php b/website/include/PaginationUtils.class.php index 1d8e99e..71f1f3e 100755 --- a/website/include/PaginationUtils.class.php +++ b/website/include/PaginationUtils.class.php @@ -12,7 +12,7 @@ static function getPage() return 1; } - public static function Create($has_next_page) + public static function Create($has_next_page, $custom_url = '') { $page = PaginationUtils::getPage(); { @@ -26,10 +26,10 @@ public static function Create($has_next_page) From 4a72029465c9111a548fb3cd165bdd21051ee6bb Mon Sep 17 00:00:00 2001 From: Mahmood - Zer0xFF <5013823+Zer0xFF@users.noreply.github.com> Date: Tue, 9 Apr 2019 13:36:38 +0100 Subject: [PATCH 46/76] Allow Mods to edit game's platform --- include/TGDB.API.php | 5 +++-- website/actions/edit_game.php | 7 ++++++- website/edit_game.php | 18 ++++++++++++++---- 3 files changed, 23 insertions(+), 7 deletions(-) diff --git a/include/TGDB.API.php b/include/TGDB.API.php index 1b4cff3..3b5fbde 100644 --- a/include/TGDB.API.php +++ b/include/TGDB.API.php @@ -2620,7 +2620,7 @@ function UpdateGamesPub($user_id, $games_id, $new_ids) return true; } - function UpdateGame($user_id, $game_id, $game_title, $overview, $youtube, $release_date, $players, $coop, $new_developers, $new_publishers, $new_genres, $ratings, $alternate_names, $uids) + function UpdateGame($user_id, $game_id, $game_title, $overview, $youtube, $release_date, $players, $coop, $new_developers, $new_publishers, $new_genres, $ratings, $alternate_names, $uids, $platform) { $dbh = $this->database->dbh; { @@ -2688,7 +2688,7 @@ function UpdateGame($user_id, $game_id, $game_title, $overview, $youtube, $relea $dbh->beginTransaction(); $sth = $dbh->prepare("UPDATE games SET game_title=:game_title, overview=:overview, release_date=:release_date, players=:players, - coop=:coop, youtube=:YouTube, rating=:rating WHERE id=:game_id"); + coop=:coop, youtube=:YouTube, rating=:rating, platform=:platform WHERE id=:game_id"); $sth->bindValue(':game_id', $game_id, PDO::PARAM_INT); $sth->bindValue(':game_title', htmlspecialchars($game_title), PDO::PARAM_STR); $sth->bindValue(':overview', htmlspecialchars($overview), PDO::PARAM_STR); @@ -2697,6 +2697,7 @@ function UpdateGame($user_id, $game_id, $game_title, $overview, $youtube, $relea $sth->bindValue(':YouTube', htmlspecialchars($youtube), PDO::PARAM_STR); $sth->bindValue(':coop', $coop, PDO::PARAM_INT); $sth->bindValue(':rating', $rating, PDO::PARAM_STR); + $sth->bindValue(':platform', $platform, PDO::PARAM_INT); $sth->execute(); { diff --git a/website/actions/edit_game.php b/website/actions/edit_game.php index b0c12ae..4711cae 100644 --- a/website/actions/edit_game.php +++ b/website/actions/edit_game.php @@ -94,9 +94,14 @@ function returnJSONAndDie($code, $msg) } } + if(!$_user->hasPermission('m_delete_games')) + { + $_REQUEST['platform'] = $old_game_data->platform; + } + $res = $API->UpdateGame( $_user->GetUserID(), $_REQUEST['game_id'], $_REQUEST['game_title'], $_REQUEST['overview'], $_REQUEST['youtube'], $_REQUEST['release_date'], $_REQUEST['players'], $_REQUEST['coop'], $_REQUEST['developers'], $_REQUEST['publishers'], $_REQUEST['genres'], $_REQUEST['rating'], $_REQUEST['alternate_names'], - $_REQUEST['uids']); + $_REQUEST['uids'], $_REQUEST['platform']); if($res) { diff --git a/website/edit_game.php b/website/edit_game.php index 09d06ed..2c47b42 100644 --- a/website/edit_game.php +++ b/website/edit_game.php @@ -41,6 +41,7 @@ $GenreList = $API->GetGenres(); $ESRBRating = $API->GetESRBRating(); $list = $API->GetGameByID($_REQUEST['id'], 0, 1, $options); + $PlatformList = $API->GetPlatformsList(); if(empty($list)) { @@ -58,10 +59,10 @@ $Game->boxart = $covers[$_REQUEST['id']]; } } - $Platform = $API->GetPlatforms($Game->platform, array("icon" => true, "overview" => true, "developer" => true)); - if(isset($Platform[$Game->platform])) + $Current_Platform = $API->GetPlatforms($Game->platform, array("icon" => true, "overview" => true, "developer" => true)); + if(isset($Current_Platform[$Game->platform])) { - $Platform = $Platform[$Game->platform]; + $Current_Platform = $Current_Platform[$Game->platform]; } } @@ -586,7 +587,16 @@ function add_more(type)
-

Platform: name; ?>

+ hasPermission('m_delete_games')): ?> +

Platform: +

+ +

Platform: name; ?>

+

ReleaseDate*:

Players:

-

Players: - +

Co-op:

ReleaseDate*:

-

Players: - -

+

Players:

Co-op:

- +

Players:

Co-op: + +

+

+ + +
+
+

Publisher

+ + +

+
+
+ + + + diff --git a/website/include/header.footer.class.php b/website/include/header.footer.class.php index e66280c..b323011 100644 --- a/website/include/header.footer.class.php +++ b/website/include/header.footer.class.php @@ -125,6 +125,7 @@ public function print() Forum Profile hasPermission('m_delete_games')) : ?> + Add Devs/Pubs Merge Devs/Pubs Duplicates Reports From 0995c447cff21806561ab7f60cb4a33269c6082e Mon Sep 17 00:00:00 2001 From: Mahmood - Zer0xFF <5013823+Zer0xFF@users.noreply.github.com> Date: Mon, 6 Apr 2020 16:09:43 +0100 Subject: [PATCH 66/76] fix title --- website/add_dev_pub.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/website/add_dev_pub.php b/website/add_dev_pub.php index a8a38cf..0488a7b 100644 --- a/website/add_dev_pub.php +++ b/website/add_dev_pub.php @@ -30,7 +30,7 @@ $pubs_list = $API->GetPubsList(); $Header = new HEADER(); -$Header->setTitle("TGDB - Merge"); +$Header->setTitle("TGDB - Add Dev/Pub"); $Header->appendRawHeader(function() { global $_user, $devs_list, $pubs_list; ?> From 6495f572b9fddabd73f7a7301806ff551df87fec Mon Sep 17 00:00:00 2001 From: Mahmood - Zer0xFF <5013823+Zer0xFF@users.noreply.github.com> Date: Wed, 8 Apr 2020 13:50:24 +0100 Subject: [PATCH 67/76] fix typos --- website/add_dev_pub.php | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/website/add_dev_pub.php b/website/add_dev_pub.php index 0488a7b..08980bb 100644 --- a/website/add_dev_pub.php +++ b/website/add_dev_pub.php @@ -94,14 +94,14 @@ function getRequest(form, arg_name) } $("#dev_form").submit(function(e) { - var input = getRequest(e, "dev_id"); + var input = getRequest(e.target, "dev_id"); $.ajax(input); e.preventDefault(); }); $("#pub_form").submit(function(e) { - var input = getRequest(e, "pub_id"); + var input = getRequest(e.target, "pub_id"); $.ajax(input); e.preventDefault(); @@ -116,7 +116,7 @@ function getRequest(form, arg_name)

Developer

@@ -127,7 +127,7 @@ function getRequest(form, arg_name)

Publisher

From a49b7bfc939efc3d24247f3243dd37a1d60de706 Mon Sep 17 00:00:00 2001 From: Basile Cornet Date: Tue, 7 Apr 2020 23:32:04 +0200 Subject: [PATCH 68/76] Allow upload of title screen --- API/spec.yaml | 2 +- include/TGDB.API.php | 1 + website/actions/uploads.php | 1 + website/edit_game.php | 19 ++++++++++++++++++- website/game.php | 15 ++++++++++++++- website/stats.php | 15 +++++++++++++++ 6 files changed, 50 insertions(+), 3 deletions(-) diff --git a/API/spec.yaml b/API/spec.yaml index 69c60eb..5af29e8 100644 --- a/API/spec.yaml +++ b/API/spec.yaml @@ -224,7 +224,7 @@ paths: type: string - in: query name: filter[type] - description: "(Optional) - valid `,` delimited options: `fanart`, `banner`, `boxart`, `screenshot`, `clearlogo`" + description: "(Optional) - valid `,` delimited options: `fanart`, `banner`, `boxart`, `screenshot`, `clearlogo`, `titlescreen`" required: false type: string - in: query diff --git a/include/TGDB.API.php b/include/TGDB.API.php index 25aeaba..06f5e8c 100644 --- a/include/TGDB.API.php +++ b/include/TGDB.API.php @@ -1115,6 +1115,7 @@ private function CreateBoxartFilterQuery($filter, &$is_filter) case 'banner': case 'boxart': case 'screenshot': + case 'titlescreen': case 'icon': case 'clearlogo': if(!$is_filter) diff --git a/website/actions/uploads.php b/website/actions/uploads.php index 13e6995..a397111 100644 --- a/website/actions/uploads.php +++ b/website/actions/uploads.php @@ -76,6 +76,7 @@ function returnJSONAndDie($msg) break; } returnJSONAndDie("Invalid subtype selection: " . $_REQUEST['subtype']); + case 'titlescreen': case 'fanart': case 'banner': case 'screenshot': diff --git a/website/edit_game.php b/website/edit_game.php index ab93223..4647432 100644 --- a/website/edit_game.php +++ b/website/edit_game.php @@ -76,7 +76,8 @@ $screenshots = TGDBUtils::GetAllCovers($Game, 'screenshot', ''); $banners = TGDBUtils::GetAllCovers($Game, 'banner', ''); $clearlogos = TGDBUtils::GetAllCovers($Game, 'clearlogo', ''); -$is_graphics_empty = empty($fanarts) && empty($screenshots) && empty($banners) && empty($clearlogos); +$titlescreens = TGDBUtils::GetAllCovers($Game, 'titlescreen', ''); +$is_graphics_empty = empty($fanarts) && empty($screenshots) && empty($banners) && empty($clearlogos) && empty($titlescreens); $box_cover = new \stdClass(); $box_cover->front = TGDBUtils::GetAllCovers($Game, 'boxart', 'front'); @@ -719,6 +720,20 @@ function add_more(type)
+ + +
+ + + + + + + +
+ + + +
+ + titlescreen(s) + titlescreen ribbon + + + + +
+ + + + +
Missing Screenshots From 8612e97b4f494cf12f4e66d23a2e14dc2ba949ac Mon Sep 17 00:00:00 2001 From: Basile Cornet Date: Mon, 13 Apr 2020 14:31:08 +0200 Subject: [PATCH 69/76] Update the ribbons --- website/edit_game.php | 2 +- website/game.php | 2 +- website/images/ribbon.xcf | Bin 194095 -> 186680 bytes website/images/ribbonBanners.png | Bin 32081 -> 31162 bytes website/images/ribbonClearlogos.png | Bin 37808 -> 34192 bytes website/images/ribbonFanarts.png | Bin 31279 -> 30623 bytes website/images/ribbonScreens.png | Bin 37197 -> 36371 bytes website/images/ribbonTitlescreens.png | Bin 0 -> 34587 bytes 8 files changed, 2 insertions(+), 2 deletions(-) create mode 100644 website/images/ribbonTitlescreens.png diff --git a/website/edit_game.php b/website/edit_game.php index 4647432..84cab2d 100644 --- a/website/edit_game.php +++ b/website/edit_game.php @@ -725,7 +725,7 @@ function add_more(type)
- + titlescreen(s) - titlescreen ribbon + titlescreen ribbon

|Cd z9M?!}y1n3U25VS9;lgcKZ6~(oo^IsF=5m(%6Smku!no4c0qOM=QGFiPbk?dwEt){V zs1-Iih5<-1f07JMPGgO7@y=u&NlrUjExYc zs&k|rO~WQe$Y-IC$$P7jI}R61orDiHZrP73l838lR>OS~LBQUn$ubNVv!YVX+j#>c z9v!dgB)rYcTy+*Y(y)1Ym9Wr^Bw=B($jO?Gp_-a80zYl_Wgw>zpwN`v`1%S%tdf_u z?66u34sj;uRU7TbmV(F%w=E@3cFR_nfDSc2V8bF=GnCL2d&~}5ZQPaYG<3+37gv5g ztoiRDB5XrnYvjSkEh~-|7O|N&xWNKXHG9g>QX2A)alfIId19kpvb#O zN-Ey->b|wA%#sSmO#Sw%U6@X@l)_U>UR5uuBzn=ERt5&bWvA-P_|Dr`xjuR)OKWm+ zz6xEfC(I*zD%bJ56{gsUX>#;lTisD8d4iSSZ`cCq-q(a=>`UxP%JhVUZ%9lFRW51- zOv%Rr0>4QDlUCEX{SgUI>M*!&wxa5LU40%GY;)?$Gb$hGY~Cq19V#$JSA8n-KCBi-;bZdZN75u*{|id7+>25dYobqRV)Jg`fgW4mI- zetGa7WsE?$1yy-0%Tuc#v~n#KzP}PZHO83%i@vYbXXOeFv!k4SY+Xh3#ZU)8egZ7+LV<8Hh;KWThKwLgV^+Pa}Auk zcF1$%u?=n78_6H?9fnW8FcTUa0BHa{(c0dTzg)w;s!qp`!};h;6$wbvDnO8*-M;NU zWqRHjuo#3c^5*HgNL*{Ah+-)Ww|6AN>BIY6R$&F%EE~Lo=H4^Qq1g4uw^umM*KzEV z%uI3O^xb!KjW|Vx;F&u7KV6rf?OmyKR$@jUi3K40xN=*;xiOt4yw`TFrKwu)*c8KU z9`t{WHR5QecOiV$-e_JjNcJM-S@!7KXvNeFEYg_4-i1G1zZX$ZdgngPNZd11nLe-Q zV;qw8@j5!c{;?8uuE~6JpENK)eJ|-P>{+1B!SaMl0&N@+8H%BNOlM>XCjKygv>`}v zr))r`lZogqWZo*?nFc4hPP&SIt%YXaixZ2#p_WB9qXO)S&PnGw5YGZ6U&sG2-3u6CBiwdV+O*cQUpx1I1HbB zQL97jTHar`R5}PWn9=+l9jh`ow0$XHMOAWgOB^-*T?JcObCiP)?CK_CDde(gKjUoV zk^0dJAKq5iI6yeBZMhnBo*)!FmmEoGGdvUg*OW=GpW(?6lh`4WJ{#+^!l~xRnIjeZGrL@u!VA38B6!hf=4c z@edcuTEbrit!Elw`fyM>+VC&%tA(o7p09Gd?nBs*S3M6qsq5lS@Wwdl^2R)+N=(c1 z;vcSZyA30*KX^d};_i0b%9xVHMxz6_w>0Yw^PdA^+`>8H7X7b}pR|!=kV)^R3A%`T zGXXbkXT8JipJFr_{Y*T%Z*ora<(ZOlyiJeKTB2GAP-UC+wCHKB1GH_Oboq=f|NqNQ z`!8gx{l#iHfASkiTL1VztPuVytG|Z7mZQJT(ZBKNbNi!@JbHf9qi?mNkEC94^wq!h z=&L#U7_>S&w-8#J!Ljzli<+Na&wg%^iZS30*NU!yr6($tZS~6ejrE*z(1chi7eDKq z;Fs2_N0G;Ho{Gn5np-?EUQ=EYZZZzA3>#z^@x)woQsX4Xft%C(M<~D|ODh7yM+>)p z0H*X|q5e3@%bQw0O*@mB1hO<`<|@;C(C!WBnO^-ef6cx^N})=-G|i6|u4udH>Eo>s z489zyTO-c|&bf9sv#qEOnGaTD&U5XueA)X-ne{*}VBU~AKBzDdz5;HKIk^KYJMCFqcbBhk4FTB=PDAJ6!mipd74)cT~8Rvd03vz zOI1X<-KKeioAps(n78z%Y)rusGrNi6VR(clmi02PKWnw7Y9m$yv5B0WmnGM>eeF~h zhC-}=n$`LG@#bH0k(R+vI_^Js1`vqTk2e3^{}$D>&G6XPW?nDrX?>p)=kx*whkY4% z_NTAwI~+Z?E^F!WtM9`0++dma{v{{>cP{X>e?0WJga3*HD!=xfdu{dkoU;GQ9R*XK zWqRb1|BL_jf2E3lh1bc$C9jDE&L49S?@Ip$a5uZh|Hogk^6tVNKT!(G^sg3H@cSH~ z06%1$^d$eHI>^iGjsLS+KV*1E7E2EQ_4>KhL&3XvZ{yfsfQ}vnjjHpqk|Qv4jKsn?g@#8o}A+Di^Hf2uj6dRJt7wtk0EGPh%2WgJUYddcVUaDZFk;Cn>_|) zy1q1@HqYVI+|zOI;0@B51P|BH1v!N-EvGn&nokC8gm}vaTcBAtoLTRDF$CdrZo@gq zA*aLT$M~)mO6X~iF9y0~iY)E&;j+-%__#>KQtlhvJ_l$W2QOkw6r3-uPsht-7pss( zd_inq*Urz;%#`-}{#|qTa8lE}1=c}LAf-<>NIYJ~#iaL4jP8I($1hNe9K)4RDUUCo zUIwF3%^A|jH+FOG0Tm$*KwN=>>&u7Himo+X-ZQQ(0=}FdbACf5>s<+)&MR`6zyTtG z3<+1J(=B}(FX|>9VC;)8^P`od1=0&`PN&OHt{@On>k;i+K{Xd7Da)gu&E-c|(Bu%W zYiav%i$fJ)^!jvjdAO2c${5skUce_Aq&1xwuedK3+aCI(Z!-dr7W~As)0GP%>Vf0N z1>(zz-Jh>)@LQ`tK&L0;>2i5}W!`zRpQQ_@r7l-g8@8+Cp!6KME9R zOUt8_@uyA3F3uBDY#6%J`5ta7b za^;$cJo*w5DUZ^QzyHj+P(d^%B#_Wc|9o@LnKNh3H*;pb@4Mf8BNO6Y{sx}*BFLISLH8PZNK!rH=cfh=C9Y1vh z<*ZN7x>DHhHp>w&>@kuIX<%SK(Mz))mB8 z@^PFG$eY1-FiM-M#-S|24KB*3*>_%^a?+`MAd*N0R3!IF=ViT6Xq&(pPkKy@b8Ccu zT$+n9XQj~YBJ?O?Wl5Eha!w?o7zf6vGo%J1U2%$>!`<>5OoF|X0=1-iE=wcoZ{kn6ugDO!{rnY()mnx z3f2vJ`<0Iu5|mWO09(-zc~xMV0;6un=9AiO-s^RKyLP9X1%3FZ#Yd8?VfT<6cpL0p=*N_yMai-S0EHw++0~scpt~TJG;8#C{FR<(b0gQGANwtB;NQc z@jsFGah;1h$(e?unWKK|dbOvF$}Y5ug1E45lMLGWW~AUufl{WOZKMxDR?P6*;z%v_ zcSy8Ye$C-z$}MHkNh#(T0{8^fEKM(H&862|#% zJv@8Apw$PxiVjsWYv`O-C`1K}2Wi;|di$jHoT<&X;Q` zbe>#Jp>yPl3Y{$%Rp?B)u0p3*?X(jhAyyRPacP8@CXF>R0(y)L9!IZl%HQY_6O zAu{nPVMli<7~Vf6u}^S1kcGmTBiMpn*@F;U0so^PtZ{xdgdqt7blhtOibzvax_o(J zmnhd}=$ZqWpF#rWB)_aOb0z6yPI3_=%ZbAxlSGP{>5`wmu!m^IWoE}tP=;MVlb#6r zu{TTvj12A-YBMrYhyCmU?}w)3HDLau^Q!lT{T&3-;q4{JQ=cC5s`ZjR<#`KvtGKZ< zYbb2aW#8ZFn6BRw*+t=WxOqP}zq4!;|I=2HyFUNz{{CN)fNppFuD}2F^(6{H?hZyJ zQosHYE8#w{k%T_)fOnPP^JoI4n-V~RL*OeN$aUc_UwLs*HikM0cl_X!K+;w zf?4HSdgiEf#i+FEqHFaT4@&8(QRy1eD!240BT>p%m!!keNfVyR`SjH)r#QBs7yAJC z5PbHx^Wo|DO?dia@Fn;T6u>EP4p3iim9y$(D8HiIX?PVfSF6}$o7 z1_!}M;B)W|h{17i1`ILylz}X$2Q6R~xF0+MwtyXAFUWz{!CT-x@B#P~90EUrpFtnE zz;mTQ4VVEMK|8n?YyyviZD2Qe3A_g01pCDch5>ua5qx2DC5)ASBY#W05gp^tjXW65 zpI{$->DHo|RX)ucv5qIui|}j$rB^3_1P^+cn$6pv*}m<$r+4p~^U&74JC&_85S0c& z4L+qokeT47gJ5-Xt@1Fdpf@neQ=s{=LhUiQdkpIk!Cj5Px3D4pyaF%i6EaT7FS4{ZFToazd)&5)qVC*>8 z0=_okpPztl!C`O&}+i0dBSx>bK%rqqJ>9)blK=Phx=bBka;qma*`w4NYM=qINr) z!wR&B4m66DXcw!{G*+W^tU&`=i#DwIJcnnmhX=Fa#VmL-6W+{#N7LceGJVG`7{A4do{&89ofNDrD zK>aN68-y`Tl8Bszg}(w2{D;`^;m_3_^K@g^%qwrdO`lniB4w_*`@oki^4!&?lkA5m ziYms+!Nb8_IQ_)Oq|@jL$81^DPXg>FX6!eE7$)@#12Slh4FwpASW@cprGB3e8^*n3 z8a3?erUjoqiNpGvXPk0KCG~$vBNq(~hNCa*7t7Yj!Nww3Q}lV1BK|4C9HxiE;=-5@ zhtjYM{~ofvnK@Jr;HFD~c{Z?nF-1PwhFz0ie-mmszeoHP2v>7k^K%IbGY`bwsdI~f zzX8Ww)0x=-uXh14pyK)nC^ISu%AA? zX`TCTbF%yTN|^ofulWS*&SrOH=6J#deoa-0L|+5#00gb zpj5r7!(V*SUGZ2f!cr^=&NuDCQk5zSY;+v-IMSkgOtP55IkYjwVbQD0-JiBDpECub zo=W}g+eh`2$wi7?-4-L@?PEk5DL8tB)QW6bbM-r=utoYS4zI|h$b^In$upp(sRqa( zaj?q~fnoRU$EI=+DtcXU1!9GVz{heHCtg8n$T95lLeoV^wVhKe=#5kxa&2h*MTl=W zyX_mN%Y5YR=xS3h0JwCMAn)gw6LM|%7XQaTSB}tQ_q;af^~kiuX{AW1`?l(qz;oAm z@o%DtUuMyX^CyBP_S_CkG0{^H&P|31pyPCuviQSOx~T%W^J$7eT$I|e+D`eaCjG`J ziHuFm5>)(>3l>95@?t4MVal_q^PY6N+u+Tav$P>w}?adtfG%n7q1-_I!3;9hS)IK zBjE@S-v8wMW8p}EWZ6y~1FJKg4F2hNkTevMN!?e#JHXb(hD9jCI|(!<8Be-Mll&>l zSoxa8uFutl>5KYzh8G&y*Qh+H$%YWudmVCZD}AftTNw=>meUeReHRh4Ip|_EGBU)( z>}qOSZLLD;Q!M%k8_+t*&CYWnc_CfhfvR+r2wLodwu^O1da)>{$|Als&=v^tuu6r+ zyvH~6e6|!Gt2PO8eq+5OwCaCoM;d#Z@Lx~~rWH;-y zsERo$=4Gg{dvC2U`M6Fn4?#8cq)ek^3<%K+$qV?!>~DfPBzk9ZmCZaygB!njSRtHm zm5kWAN=OB4)!3ps-zn?ZU+cJ&3S|xS{y+%I|E&){wrb<BKhwncI;oGt~!b~fcxE4hlL)~@g+NZcrL(HK5oVY#J zLudxoSq=(sWL-@WlL@`$$gz!7Y;Z~3y2?{$Oan3j79Mt76-7&B3S#&}W#6b7RVt_E z2VK)F;^u?VsLn%6_02ys!Ga>K;z$4*Sn?KxuJTkTY-9QM1@l85y*lhA%;Un7l=JVJ zZ@VW0BR?T2*AL6|V_db>hQTKxAT9TH%7JFSEe$@#RR|srcmew*t2EeB#zmtzov_P; zn$43XqW4Y0Zw*A6z)QVF5=bN+Jnh<{E>_Ub)U%(jhN9roEg`?Zo#1oqUJh=*YB*uW zWk9PsEKaj_irJbTLH;h{a>L*TeuCUcmq-f}A;H85t+X|g% zkF6S2Uo|`s6VJF2T$3s2cG@v;f$^?(fA$?5k$@(+ndWw<=o-riUEARbG^rD*oG;Yk zr*WpwStL7GCa{ee&ZwExGH+h&hk4{6I(Ft?TGSw)N|mZ`?{9nn8OW<-?-|BvUZycW z6H!0>7c(f7^KkWAfWp=FSsx0Kb5~W5$Ucx7n}gMbUg^AmcFbC4E%sEd-~gxTn~JU6 ztyS~Sm_?5AyVjKBiZvpE;p)PBgjq3YkbRImF7cuj@~a^s_hLV{tKZ`zi>Qj6O|e2L zw~t8sbT&w5l66!%yR)~@J3P&q_l2gFoe3X>gq6#BfiVcFeYwcvcdx%b_3naK4(8Nl zGhADc)DB@OL!?GGsx_O`*rneCG;iuO z>*DsnQkdE%ilPi0J>10KUts%~spo_SG_rR->WtqJyhWzM3I$xrXX%!={MiK#rlf2W zHbYkFl!wc0L#9i_`oCgNa|xFprLQ(g$r@tH@4SD&0)f6gb|@+~!Di^ol#8?!vf+u+izR3htZwa+@M`ujgcbp_+K&#Qas|8gxKoI{w zI%6KF247Z4yKD@!=2WN*G-oQzgeb@VRi>bG;Q$s1*qnjTjH}%~J6us@=G57lW-LB{ zA4~pp>gcKKs`F!2TBRkS=6!*s-7-bU&+mwwcRho6Mn!`2-3-DuDwCBDS!qJDyAjg0 z(xW`QL}F3FEA4*G#IA%x3LxhS^Rvr^lbev2SuO& zaUnSty$5CDPp1GDV~xobwkCV#7Ck1B!h<#k)K(Sq#&~0?kk^ID(?`k*`eKZ5S?2pD z=D(IM!MYL~n>Fk-)^XhB-NqEw5kfxI#xtX6-H7L%ADHEbe%t~ZeShH6%{yk7P8?J* zLS4jy5syDpZ~#?^Z|xn3g5%Wu+1?4b;gqx#6mJ)%Qg+pArO*&RA|DWGz*Kv+U`hNm zn*mbn{x~TbQSentbI(b}27&uBrfoZA$+68DHZ3(dfd)oN2?)PQ!Q_wZO7ZH%^qtv4 z`kb4`K>bE7Ng`**FAIQ3j*CcfXtA5JQ>3R$y= zP8H^&S)`baqMV&Obf(oUn)WZdMh&{3BH39kwhov=mHQS|dmw5Z?{4~Mf&TZhqK?Q2D`i~BiqRLgA z&Xv*Uy*!{yrdWqx&kO5SE z6)EN7Q5{V`$=Y@{h;pR-a~Baw`LJ~I7psTJ1Z*zvf9@m$v{uGL-myb1u>KI3B@~zh zCu1L4SA0?gWhSLPO1f81R2be6KQ8fY$z8>5-oV(x|4K_g1}uFi6W``OBYjF5phEjV zjRm<@ONQw`ZW@Y{YGbFmlyZ~K^;Z)GvwuLc4eMBDKlXi)w_rKPkip2rw3@kpUG$|aQjWE&WEH83 z&JA|

-

overview) ? $Game->overview : "No overview is currently available for this title, please feel free to add one.";?>

+

overview) ? $Game->overview : "No overview is currently available for this title, please feel free to add one.";?>

youtube)) : ?>

Trailer: YouTube

rating)) : ?> From 440597eff3ea7ee2069b40b6fd4bf8c96ef75b02 Mon Sep 17 00:00:00 2001 From: Basile Cornet Date: Sat, 16 May 2020 23:04:56 +0200 Subject: [PATCH 72/76] Ensure the last | is not visible on genre --- website/game.php | 13 ++++++++++--- 1 file changed, 10 insertions(+), 3 deletions(-) diff --git a/website/game.php b/website/game.php index 4305d67..78f51fe 100755 --- a/website/game.php +++ b/website/game.php @@ -312,9 +312,16 @@

Trailer: YouTube

rating)) : ?>

ESRB Rating: rating; ?>

- genres)) : //$gens_id = (json_decode($Game->genres)); ?> -

Genre(s): genres as $gen_id) { echo $GenresList[$gen_id]->name . " | "; } ?>

- uids)) : ?> + genres)) : ?> + genres as $gen_id) + { + $genres[] = $GenresList[$gen_id]->name; + } + ?> +

Genre(s):

+ uids)) : ?> uids as $item) From 8d3d84b0c5cccaf8f6a50676ecb037f63111b74a Mon Sep 17 00:00:00 2001 From: Mahmood - Zer0xFF <5013823+Zer0xFF@users.noreply.github.com> Date: Thu, 21 May 2020 03:41:38 +0100 Subject: [PATCH 73/76] increase screenshot limit --- website/actions/uploads.php | 6 +++--- website/edit_game.php | 2 +- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/website/actions/uploads.php b/website/actions/uploads.php index 13e6995..c9ad8ec 100644 --- a/website/actions/uploads.php +++ b/website/actions/uploads.php @@ -129,9 +129,9 @@ function get_request_method() $API = TGDB::getInstance(); $covers = $API->GetGameBoxartByID($_REQUEST['game_id'], 0, 30, $_REQUEST['type']); - if(!empty($covers) && ($covers = $covers[$_REQUEST['game_id']]) && count($covers) > 5) + if(!empty($covers) && ($covers = $covers[$_REQUEST['game_id']]) && count($covers) > 10) { - returnJSONAndDie("Max (5) allowed uploaded images has been reached."); + returnJSONAndDie("Max (10) allowed uploaded images has been reached."); } if($_REQUEST['type'] == 'clearlogo') @@ -149,7 +149,7 @@ function get_request_method() } if(!isset($image_name)) { - for($i = 1; $i < 6; ++$i) + for($i = 1; $i <= 10; ++$i) { $tmp_name = $_REQUEST['game_id'] . "-$i.$type"; if(!file_exists($path . "/" . $tmp_name)) diff --git a/website/edit_game.php b/website/edit_game.php index 76f14b6..8baf8a6 100644 --- a/website/edit_game.php +++ b/website/edit_game.php @@ -428,7 +428,7 @@ function delete_image(image_id) }, validation: { - itemLimit: 5, + itemLimit: 10, acceptFiles: 'image/*', allowedExtensions: ['jpe', 'jpg', 'jpeg', 'gif', 'png', 'bmp'] }, From 80acfb5c1e32680be3abe176fcbae7ef3b6ac127 Mon Sep 17 00:00:00 2001 From: Mahmood - Zer0xFF <5013823+Zer0xFF@users.noreply.github.com> Date: Thu, 21 May 2020 14:43:16 +0100 Subject: [PATCH 74/76] Revert "add notice to all pages... will remove is 1 week" This reverts commit 00159d347e60373a74565fb8ed3d08dd7f23e329. --- website/include/header.footer.class.php | 6 ------ 1 file changed, 6 deletions(-) diff --git a/website/include/header.footer.class.php b/website/include/header.footer.class.php index b323011..32b9a98 100644 --- a/website/include/header.footer.class.php +++ b/website/include/header.footer.class.php @@ -141,12 +141,6 @@ public function print()
-
- -
From 82926cca010fd58830728022685dd3b7fc37db44 Mon Sep 17 00:00:00 2001 From: Mahmood - Zer0xFF <5013823+Zer0xFF@users.noreply.github.com> Date: Sun, 21 Jun 2020 16:55:20 +0100 Subject: [PATCH 75/76] fix warning --- website/my_games.php | 14 ++++++++------ 1 file changed, 8 insertions(+), 6 deletions(-) diff --git a/website/my_games.php b/website/my_games.php index 263d04c..f8d251c 100644 --- a/website/my_games.php +++ b/website/my_games.php @@ -52,16 +52,18 @@ } } } + +$platforms = []; if(isset($Platform_IDs) && !empty($Platform_IDs)) { $platforms = $API->GetPlatforms(array_unique($Platform_IDs), ['name']); -} -$icons = $API->GetPlatformBoxartByID($Platform_IDs, 0, 99999, ['icon']); -foreach($platforms as &$platform) -{ - if(isset($icons[$platform->id])) + $icons = $API->GetPlatformBoxartByID($Platform_IDs, 0, 99999, ['icon']); + foreach($platforms as &$platform) { - $platform->boxart = &$icons[$platform->id]; + if(isset($icons[$platform->id])) + { + $platform->boxart = &$icons[$platform->id]; + } } } unset($platform); From df83194004b5e62fd2a810d595415f2559e16c97 Mon Sep 17 00:00:00 2001 From: Zer0xFF <5013823+Zer0xFF@users.noreply.github.com> Date: Sun, 5 Jul 2020 01:54:20 +0100 Subject: [PATCH 76/76] fix typo --- website/edit_game.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/website/edit_game.php b/website/edit_game.php index 1147db0..34f33d8 100644 --- a/website/edit_game.php +++ b/website/edit_game.php @@ -728,7 +728,7 @@ function add_more(type) -